2 * Marvell Wireless LAN device driver: scan ioctl and command handling
4 * Copyright (C) 2011, Marvell International Ltd.
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.
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.
28 /* The maximum number of channels the firmware can scan per command */
29 #define MWIFIEX_MAX_CHANNELS_PER_SPECIFIC_SCAN 14
31 #define MWIFIEX_CHANNELS_PER_SCAN_CMD 4
33 /* Memory needed to store a max sized Channel List TLV for a firmware scan */
34 #define CHAN_TLV_MAX_SIZE (sizeof(struct mwifiex_ie_types_header) \
35 + (MWIFIEX_MAX_CHANNELS_PER_SPECIFIC_SCAN \
36 *sizeof(struct mwifiex_chan_scan_param_set)))
38 /* Memory needed to store supported rate */
39 #define RATE_TLV_MAX_SIZE (sizeof(struct mwifiex_ie_types_rates_param_set) \
40 + HOSTCMD_SUPPORTED_RATES)
42 /* Memory needed to store a max number/size WildCard SSID TLV for a firmware
44 #define WILDCARD_SSID_TLV_MAX_SIZE \
45 (MWIFIEX_MAX_SSID_LIST_LENGTH * \
46 (sizeof(struct mwifiex_ie_types_wildcard_ssid_params) \
47 + IEEE80211_MAX_SSID_LEN))
49 /* Maximum memory needed for a mwifiex_scan_cmd_config with all TLVs at max */
50 #define MAX_SCAN_CFG_ALLOC (sizeof(struct mwifiex_scan_cmd_config) \
51 + sizeof(struct mwifiex_ie_types_num_probes) \
52 + sizeof(struct mwifiex_ie_types_htcap) \
55 + WILDCARD_SSID_TLV_MAX_SIZE)
58 union mwifiex_scan_cmd_config_tlv
{
59 /* Scan configuration (variable length) */
60 struct mwifiex_scan_cmd_config config
;
61 /* Max allocated block */
62 u8 config_alloc_buf
[MAX_SCAN_CFG_ALLOC
];
70 static u8 mwifiex_wpa_oui
[CIPHER_SUITE_MAX
][4] = {
71 { 0x00, 0x50, 0xf2, 0x02 }, /* TKIP */
72 { 0x00, 0x50, 0xf2, 0x04 }, /* AES */
74 static u8 mwifiex_rsn_oui
[CIPHER_SUITE_MAX
][4] = {
75 { 0x00, 0x0f, 0xac, 0x02 }, /* TKIP */
76 { 0x00, 0x0f, 0xac, 0x04 }, /* AES */
80 * This function parses a given IE for a given OUI.
82 * This is used to parse a WPA/RSN IE to find if it has
86 mwifiex_search_oui_in_ie(struct ie_body
*iebody
, u8
*oui
)
90 count
= iebody
->ptk_cnt
[0];
92 /* There could be multiple OUIs for PTK hence
94 2) Check all the OUIs for AES.
95 3) If one of them is AES then pass success. */
97 if (!memcmp(iebody
->ptk_body
, oui
, sizeof(iebody
->ptk_body
)))
98 return MWIFIEX_OUI_PRESENT
;
102 iebody
= (struct ie_body
*) ((u8
*) iebody
+
103 sizeof(iebody
->ptk_body
));
106 pr_debug("info: %s: OUI is not found in PTK\n", __func__
);
107 return MWIFIEX_OUI_NOT_PRESENT
;
111 * This function checks if a given OUI is present in a RSN IE.
113 * The function first checks if a RSN IE is present or not in the
114 * BSS descriptor. It tries to locate the OUI only if such an IE is
118 mwifiex_is_rsn_oui_present(struct mwifiex_bssdescriptor
*bss_desc
, u32 cipher
)
121 struct ie_body
*iebody
;
122 u8 ret
= MWIFIEX_OUI_NOT_PRESENT
;
124 if (((bss_desc
->bcn_rsn_ie
) && ((*(bss_desc
->bcn_rsn_ie
)).
125 ieee_hdr
.element_id
== WLAN_EID_RSN
))) {
126 iebody
= (struct ie_body
*)
127 (((u8
*) bss_desc
->bcn_rsn_ie
->data
) +
129 oui
= &mwifiex_rsn_oui
[cipher
][0];
130 ret
= mwifiex_search_oui_in_ie(iebody
, oui
);
138 * This function checks if a given OUI is present in a WPA IE.
140 * The function first checks if a WPA IE is present or not in the
141 * BSS descriptor. It tries to locate the OUI only if such an IE is
145 mwifiex_is_wpa_oui_present(struct mwifiex_bssdescriptor
*bss_desc
, u32 cipher
)
148 struct ie_body
*iebody
;
149 u8 ret
= MWIFIEX_OUI_NOT_PRESENT
;
151 if (((bss_desc
->bcn_wpa_ie
) && ((*(bss_desc
->bcn_wpa_ie
)).
152 vend_hdr
.element_id
== WLAN_EID_WPA
))) {
153 iebody
= (struct ie_body
*) bss_desc
->bcn_wpa_ie
->data
;
154 oui
= &mwifiex_wpa_oui
[cipher
][0];
155 ret
= mwifiex_search_oui_in_ie(iebody
, oui
);
163 * This function compares two SSIDs and checks if they match.
166 mwifiex_ssid_cmp(struct mwifiex_802_11_ssid
*ssid1
,
167 struct mwifiex_802_11_ssid
*ssid2
)
169 if (!ssid1
|| !ssid2
|| (ssid1
->ssid_len
!= ssid2
->ssid_len
))
171 return memcmp(ssid1
->ssid
, ssid2
->ssid
, ssid1
->ssid_len
);
175 * This function checks if wapi is enabled in driver and scanned network is
176 * compatible with it.
179 mwifiex_is_network_compatible_for_wapi(struct mwifiex_private
*priv
,
180 struct mwifiex_bssdescriptor
*bss_desc
)
182 if (priv
->sec_info
.wapi_enabled
&&
183 (bss_desc
->bcn_wapi_ie
&&
184 ((*(bss_desc
->bcn_wapi_ie
)).ieee_hdr
.element_id
==
185 WLAN_EID_BSS_AC_ACCESS_DELAY
))) {
192 * This function checks if driver is configured with no security mode and
193 * scanned network is compatible with it.
196 mwifiex_is_network_compatible_for_no_sec(struct mwifiex_private
*priv
,
197 struct mwifiex_bssdescriptor
*bss_desc
)
199 if (priv
->sec_info
.wep_status
== MWIFIEX_802_11_WEP_DISABLED
200 && !priv
->sec_info
.wpa_enabled
&& !priv
->sec_info
.wpa2_enabled
201 && ((!bss_desc
->bcn_wpa_ie
) ||
202 ((*(bss_desc
->bcn_wpa_ie
)).vend_hdr
.element_id
!=
204 && ((!bss_desc
->bcn_rsn_ie
) ||
205 ((*(bss_desc
->bcn_rsn_ie
)).ieee_hdr
.element_id
!=
207 && !priv
->sec_info
.encryption_mode
208 && !bss_desc
->privacy
) {
215 * This function checks if static WEP is enabled in driver and scanned network
216 * is compatible with it.
219 mwifiex_is_network_compatible_for_static_wep(struct mwifiex_private
*priv
,
220 struct mwifiex_bssdescriptor
*bss_desc
)
222 if (priv
->sec_info
.wep_status
== MWIFIEX_802_11_WEP_ENABLED
223 && !priv
->sec_info
.wpa_enabled
&& !priv
->sec_info
.wpa2_enabled
224 && bss_desc
->privacy
) {
231 * This function checks if wpa is enabled in driver and scanned network is
232 * compatible with it.
235 mwifiex_is_network_compatible_for_wpa(struct mwifiex_private
*priv
,
236 struct mwifiex_bssdescriptor
*bss_desc
)
238 if (priv
->sec_info
.wep_status
== MWIFIEX_802_11_WEP_DISABLED
239 && priv
->sec_info
.wpa_enabled
&& !priv
->sec_info
.wpa2_enabled
240 && ((bss_desc
->bcn_wpa_ie
) && ((*(bss_desc
->bcn_wpa_ie
)).vend_hdr
.
241 element_id
== WLAN_EID_WPA
))
243 * Privacy bit may NOT be set in some APs like
244 * LinkSys WRT54G && bss_desc->privacy
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_status
==
257 MWIFIEX_802_11_WEP_ENABLED
) ? "e" : "d",
258 (priv
->sec_info
.wpa_enabled
) ? "e" : "d",
259 (priv
->sec_info
.wpa2_enabled
) ? "e" : "d",
260 priv
->sec_info
.encryption_mode
,
268 * This function checks if wpa2 is enabled in driver and scanned network is
269 * compatible with it.
272 mwifiex_is_network_compatible_for_wpa2(struct mwifiex_private
*priv
,
273 struct mwifiex_bssdescriptor
*bss_desc
)
275 if (priv
->sec_info
.wep_status
== MWIFIEX_802_11_WEP_DISABLED
276 && !priv
->sec_info
.wpa_enabled
&& priv
->sec_info
.wpa2_enabled
277 && ((bss_desc
->bcn_rsn_ie
) && ((*(bss_desc
->bcn_rsn_ie
)).ieee_hdr
.
278 element_id
== WLAN_EID_RSN
))
280 * Privacy bit may NOT be set in some APs like
281 * LinkSys WRT54G && bss_desc->privacy
284 dev_dbg(priv
->adapter
->dev
, "info: %s: WPA2: "
285 " wpa_ie=%#x wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s "
286 "EncMode=%#x privacy=%#x\n", __func__
,
287 (bss_desc
->bcn_wpa_ie
) ?
288 (*(bss_desc
->bcn_wpa_ie
)).
289 vend_hdr
.element_id
: 0,
290 (bss_desc
->bcn_rsn_ie
) ?
291 (*(bss_desc
->bcn_rsn_ie
)).
292 ieee_hdr
.element_id
: 0,
293 (priv
->sec_info
.wep_status
==
294 MWIFIEX_802_11_WEP_ENABLED
) ? "e" : "d",
295 (priv
->sec_info
.wpa_enabled
) ? "e" : "d",
296 (priv
->sec_info
.wpa2_enabled
) ? "e" : "d",
297 priv
->sec_info
.encryption_mode
,
305 * This function checks if adhoc AES is enabled in driver and scanned network is
306 * compatible with it.
309 mwifiex_is_network_compatible_for_adhoc_aes(struct mwifiex_private
*priv
,
310 struct mwifiex_bssdescriptor
*bss_desc
)
312 if (priv
->sec_info
.wep_status
== MWIFIEX_802_11_WEP_DISABLED
313 && !priv
->sec_info
.wpa_enabled
&& !priv
->sec_info
.wpa2_enabled
314 && ((!bss_desc
->bcn_wpa_ie
) || ((*(bss_desc
->bcn_wpa_ie
)).vend_hdr
.
315 element_id
!= WLAN_EID_WPA
))
316 && ((!bss_desc
->bcn_rsn_ie
) || ((*(bss_desc
->bcn_rsn_ie
)).ieee_hdr
.
317 element_id
!= WLAN_EID_RSN
))
318 && !priv
->sec_info
.encryption_mode
319 && bss_desc
->privacy
) {
326 * This function checks if dynamic WEP is enabled in driver and scanned network
327 * is compatible with it.
330 mwifiex_is_network_compatible_for_dynamic_wep(struct mwifiex_private
*priv
,
331 struct mwifiex_bssdescriptor
*bss_desc
)
333 if (priv
->sec_info
.wep_status
== MWIFIEX_802_11_WEP_DISABLED
334 && !priv
->sec_info
.wpa_enabled
&& !priv
->sec_info
.wpa2_enabled
335 && ((!bss_desc
->bcn_wpa_ie
) || ((*(bss_desc
->bcn_wpa_ie
)).vend_hdr
.
336 element_id
!= WLAN_EID_WPA
))
337 && ((!bss_desc
->bcn_rsn_ie
) || ((*(bss_desc
->bcn_rsn_ie
)).ieee_hdr
.
338 element_id
!= WLAN_EID_RSN
))
339 && priv
->sec_info
.encryption_mode
340 && bss_desc
->privacy
) {
341 dev_dbg(priv
->adapter
->dev
, "info: %s: dynamic "
342 "WEP: wpa_ie=%#x wpa2_ie=%#x "
343 "EncMode=%#x privacy=%#x\n",
345 (bss_desc
->bcn_wpa_ie
) ?
346 (*(bss_desc
->bcn_wpa_ie
)).
347 vend_hdr
.element_id
: 0,
348 (bss_desc
->bcn_rsn_ie
) ?
349 (*(bss_desc
->bcn_rsn_ie
)).
350 ieee_hdr
.element_id
: 0,
351 priv
->sec_info
.encryption_mode
,
359 * This function checks if a scanned network is compatible with the driver
362 * WEP WPA WPA2 ad-hoc encrypt Network
363 * enabled enabled enabled AES mode Privacy WPA WPA2 Compatible
364 * 0 0 0 0 NONE 0 0 0 yes No security
365 * 0 1 0 0 x 1x 1 x yes WPA (disable
367 * 0 0 1 0 x 1x x 1 yes WPA2 (disable
369 * 0 0 0 1 NONE 1 0 0 yes Ad-hoc AES
370 * 1 0 0 0 NONE 1 0 0 yes Static WEP
372 * 0 0 0 0 !=NONE 1 0 0 yes Dynamic WEP
374 * Compatibility is not matched while roaming, except for mode.
377 mwifiex_is_network_compatible(struct mwifiex_private
*priv
,
378 struct mwifiex_bssdescriptor
*bss_desc
, u32 mode
)
380 struct mwifiex_adapter
*adapter
= priv
->adapter
;
382 bss_desc
->disable_11n
= false;
384 /* Don't check for compatibility if roaming */
385 if (priv
->media_connected
&& (priv
->bss_mode
== NL80211_IFTYPE_STATION
)
386 && (bss_desc
->bss_mode
== NL80211_IFTYPE_STATION
))
389 if (priv
->wps
.session_enable
) {
390 dev_dbg(adapter
->dev
,
391 "info: return success directly in WPS period\n");
395 if (mwifiex_is_network_compatible_for_wapi(priv
, bss_desc
)) {
396 dev_dbg(adapter
->dev
, "info: return success for WAPI AP\n");
400 if (bss_desc
->bss_mode
== mode
) {
401 if (mwifiex_is_network_compatible_for_no_sec(priv
, bss_desc
)) {
404 } else if (mwifiex_is_network_compatible_for_static_wep(priv
,
406 /* Static WEP enabled */
407 dev_dbg(adapter
->dev
, "info: Disable 11n in WEP mode.\n");
408 bss_desc
->disable_11n
= true;
410 } else if (mwifiex_is_network_compatible_for_wpa(priv
,
413 if (((priv
->adapter
->config_bands
& BAND_GN
414 || priv
->adapter
->config_bands
& BAND_AN
)
415 && bss_desc
->bcn_ht_cap
)
416 && !mwifiex_is_wpa_oui_present(bss_desc
,
417 CIPHER_SUITE_CCMP
)) {
419 if (mwifiex_is_wpa_oui_present(bss_desc
,
420 CIPHER_SUITE_TKIP
)) {
421 dev_dbg(adapter
->dev
,
422 "info: Disable 11n if AES "
423 "is not supported by AP\n");
424 bss_desc
->disable_11n
= true;
430 } else if (mwifiex_is_network_compatible_for_wpa2(priv
,
433 if (((priv
->adapter
->config_bands
& BAND_GN
434 || priv
->adapter
->config_bands
& BAND_AN
)
435 && bss_desc
->bcn_ht_cap
)
436 && !mwifiex_is_rsn_oui_present(bss_desc
,
437 CIPHER_SUITE_CCMP
)) {
439 if (mwifiex_is_rsn_oui_present(bss_desc
,
440 CIPHER_SUITE_TKIP
)) {
441 dev_dbg(adapter
->dev
,
442 "info: Disable 11n if AES "
443 "is not supported by AP\n");
444 bss_desc
->disable_11n
= true;
450 } else if (mwifiex_is_network_compatible_for_adhoc_aes(priv
,
452 /* Ad-hoc AES enabled */
454 } else if (mwifiex_is_network_compatible_for_dynamic_wep(priv
,
456 /* Dynamic WEP enabled */
460 /* Security doesn't match */
461 dev_dbg(adapter
->dev
, "info: %s: failed: "
462 "wpa_ie=%#x wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s EncMode"
463 "=%#x privacy=%#x\n",
465 (bss_desc
->bcn_wpa_ie
) ?
466 (*(bss_desc
->bcn_wpa_ie
)).vend_hdr
.
468 (bss_desc
->bcn_rsn_ie
) ?
469 (*(bss_desc
->bcn_rsn_ie
)).ieee_hdr
.
471 (priv
->sec_info
.wep_status
==
472 MWIFIEX_802_11_WEP_ENABLED
) ? "e" : "d",
473 (priv
->sec_info
.wpa_enabled
) ? "e" : "d",
474 (priv
->sec_info
.wpa2_enabled
) ? "e" : "d",
475 priv
->sec_info
.encryption_mode
, bss_desc
->privacy
);
479 /* Mode doesn't match */
484 * This function creates a channel list for the driver to scan, based
485 * on region/band information.
487 * This routine is used for any scan that is not provided with a
488 * specific channel list to scan.
491 mwifiex_scan_create_channel_list(struct mwifiex_private
*priv
,
492 const struct mwifiex_user_scan_cfg
494 struct mwifiex_chan_scan_param_set
498 enum ieee80211_band band
;
499 struct ieee80211_supported_band
*sband
;
500 struct ieee80211_channel
*ch
;
501 struct mwifiex_adapter
*adapter
= priv
->adapter
;
504 for (band
= 0; (band
< IEEE80211_NUM_BANDS
) ; band
++) {
506 if (!priv
->wdev
->wiphy
->bands
[band
])
509 sband
= priv
->wdev
->wiphy
->bands
[band
];
511 for (i
= 0; (i
< sband
->n_channels
) ; i
++) {
512 ch
= &sband
->channels
[i
];
513 if (ch
->flags
& IEEE80211_CHAN_DISABLED
)
515 scan_chan_list
[chan_idx
].radio_type
= band
;
518 user_scan_in
->chan_list
[0].scan_time
)
519 scan_chan_list
[chan_idx
].max_scan_time
=
520 cpu_to_le16((u16
) user_scan_in
->
521 chan_list
[0].scan_time
);
522 else if (ch
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
523 scan_chan_list
[chan_idx
].max_scan_time
=
524 cpu_to_le16(adapter
->passive_scan_time
);
526 scan_chan_list
[chan_idx
].max_scan_time
=
527 cpu_to_le16(adapter
->active_scan_time
);
529 if (ch
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
530 scan_chan_list
[chan_idx
].chan_scan_mode_bitmap
531 |= MWIFIEX_PASSIVE_SCAN
;
533 scan_chan_list
[chan_idx
].chan_scan_mode_bitmap
534 &= ~MWIFIEX_PASSIVE_SCAN
;
535 scan_chan_list
[chan_idx
].chan_number
=
538 scan_chan_list
[chan_idx
].max_scan_time
=
539 cpu_to_le16(adapter
->specific_scan_time
);
540 scan_chan_list
[chan_idx
].chan_scan_mode_bitmap
541 |= MWIFIEX_DISABLE_CHAN_FILT
;
550 * This function constructs and sends multiple scan config commands to
553 * Previous routines in the code flow have created a scan command configuration
554 * with any requested TLVs. This function splits the channel TLV into maximum
555 * channels supported per scan lists and sends the portion of the channel TLV,
556 * along with the other TLVs, to the firmware.
559 mwifiex_scan_channel_list(struct mwifiex_private
*priv
,
560 u32 max_chan_per_scan
, u8 filtered_scan
,
561 struct mwifiex_scan_cmd_config
*scan_cfg_out
,
562 struct mwifiex_ie_types_chan_list_param_set
564 struct mwifiex_chan_scan_param_set
*scan_chan_list
)
567 struct mwifiex_chan_scan_param_set
*tmp_chan_list
;
568 struct mwifiex_chan_scan_param_set
*start_chan
;
574 if (!scan_cfg_out
|| !chan_tlv_out
|| !scan_chan_list
) {
575 dev_dbg(priv
->adapter
->dev
,
576 "info: Scan: Null detect: %p, %p, %p\n",
577 scan_cfg_out
, chan_tlv_out
, scan_chan_list
);
581 chan_tlv_out
->header
.type
= cpu_to_le16(TLV_TYPE_CHANLIST
);
583 /* Set the temp channel struct pointer to the start of the desired
585 tmp_chan_list
= scan_chan_list
;
587 /* Loop through the desired channel list, sending a new firmware scan
588 commands for each max_chan_per_scan channels (or for 1,6,11
589 individually if configured accordingly) */
590 while (tmp_chan_list
->chan_number
) {
594 chan_tlv_out
->header
.len
= 0;
595 start_chan
= tmp_chan_list
;
599 * Construct the Channel TLV for the scan command. Continue to
600 * insert channel TLVs until:
601 * - the tlv_idx hits the maximum configured per scan command
602 * - the next channel to insert is 0 (end of desired channel
604 * - done_early is set (controlling individual scanning of
607 while (tlv_idx
< max_chan_per_scan
608 && tmp_chan_list
->chan_number
&& !done_early
) {
610 dev_dbg(priv
->adapter
->dev
,
611 "info: Scan: Chan(%3d), Radio(%d),"
612 " Mode(%d, %d), Dur(%d)\n",
613 tmp_chan_list
->chan_number
,
614 tmp_chan_list
->radio_type
,
615 tmp_chan_list
->chan_scan_mode_bitmap
616 & MWIFIEX_PASSIVE_SCAN
,
617 (tmp_chan_list
->chan_scan_mode_bitmap
618 & MWIFIEX_DISABLE_CHAN_FILT
) >> 1,
619 le16_to_cpu(tmp_chan_list
->max_scan_time
));
621 /* Copy the current channel TLV to the command being
623 memcpy(chan_tlv_out
->chan_scan_param
+ tlv_idx
,
625 sizeof(chan_tlv_out
->chan_scan_param
));
627 /* Increment the TLV header length by the size
629 chan_tlv_out
->header
.len
=
630 cpu_to_le16(le16_to_cpu(chan_tlv_out
->header
.len
) +
631 (sizeof(chan_tlv_out
->chan_scan_param
)));
634 * The tlv buffer length is set to the number of bytes
635 * of the between the channel tlv pointer and the start
636 * of the tlv buffer. This compensates for any TLVs
637 * that were appended before the channel list.
639 scan_cfg_out
->tlv_buf_len
= (u32
) ((u8
*) chan_tlv_out
-
640 scan_cfg_out
->tlv_buf
);
642 /* Add the size of the channel tlv header and the data
644 scan_cfg_out
->tlv_buf_len
+=
645 (sizeof(chan_tlv_out
->header
)
646 + le16_to_cpu(chan_tlv_out
->header
.len
));
648 /* Increment the index to the channel tlv we are
652 /* Count the total scan time per command */
654 le16_to_cpu(tmp_chan_list
->max_scan_time
);
658 /* Stop the loop if the *current* channel is in the
659 1,6,11 set and we are not filtering on a BSSID
661 if (!filtered_scan
&& (tmp_chan_list
->chan_number
== 1
662 || tmp_chan_list
->chan_number
== 6
663 || tmp_chan_list
->chan_number
== 11))
666 /* Increment the tmp pointer to the next channel to
670 /* Stop the loop if the *next* channel is in the 1,6,11
671 set. This will cause it to be the only channel
672 scanned on the next interation */
673 if (!filtered_scan
&& (tmp_chan_list
->chan_number
== 1
674 || tmp_chan_list
->chan_number
== 6
675 || tmp_chan_list
->chan_number
== 11))
679 /* The total scan time should be less than scan command timeout
681 if (total_scan_time
> MWIFIEX_MAX_TOTAL_SCAN_TIME
) {
682 dev_err(priv
->adapter
->dev
, "total scan time %dms"
683 " is over limit (%dms), scan skipped\n",
684 total_scan_time
, MWIFIEX_MAX_TOTAL_SCAN_TIME
);
689 priv
->adapter
->scan_channels
= start_chan
;
691 /* Send the scan command to the firmware with the specified
693 ret
= mwifiex_send_cmd_async(priv
, HostCmd_CMD_802_11_SCAN
,
694 HostCmd_ACT_GEN_SET
, 0,
707 * This function constructs a scan command configuration structure to use
710 * Application layer or other functions can invoke network scanning
711 * with a scan configuration supplied in a user scan configuration structure.
712 * This structure is used as the basis of one or many scan command configuration
713 * commands that are sent to the command processing module and eventually to the
716 * This function creates a scan command configuration structure based on the
717 * following user supplied parameters (if present):
720 * - Number of Probes to be sent
723 * If the SSID or BSSID filter is not present, the filter is disabled/cleared.
724 * If the number of probes is not set, adapter default setting is used.
727 mwifiex_scan_setup_scan_config(struct mwifiex_private
*priv
,
728 const struct mwifiex_user_scan_cfg
*user_scan_in
,
729 struct mwifiex_scan_cmd_config
*scan_cfg_out
,
730 struct mwifiex_ie_types_chan_list_param_set
732 struct mwifiex_chan_scan_param_set
734 u8
*max_chan_per_scan
, u8
*filtered_scan
,
735 u8
*scan_current_only
)
737 struct mwifiex_adapter
*adapter
= priv
->adapter
;
738 struct mwifiex_ie_types_num_probes
*num_probes_tlv
;
739 struct mwifiex_ie_types_wildcard_ssid_params
*wildcard_ssid_tlv
;
740 struct mwifiex_ie_types_rates_param_set
*rates_tlv
;
741 const u8 zero_mac
[ETH_ALEN
] = { 0, 0, 0, 0, 0, 0 };
752 u8 rates
[MWIFIEX_SUPPORTED_RATES
];
754 struct mwifiex_ie_types_htcap
*ht_cap
;
756 /* The tlv_buf_len is calculated for each scan command. The TLVs added
757 in this routine will be preserved since the routine that sends the
758 command will append channelTLVs at *chan_list_out. The difference
759 between the *chan_list_out and the tlv_buf start will be used to
760 calculate the size of anything we add in this routine. */
761 scan_cfg_out
->tlv_buf_len
= 0;
763 /* Running tlv pointer. Assigned to chan_list_out at end of function
764 so later routines know where channels can be added to the command
766 tlv_pos
= scan_cfg_out
->tlv_buf
;
768 /* Initialize the scan as un-filtered; the flag is later set to TRUE
769 below if a SSID or BSSID filter is sent in the command */
770 *filtered_scan
= false;
772 /* Initialize the scan as not being only on the current channel. If
773 the channel list is customized, only contains one channel, and is
774 the active channel, this is set true and data flow is not halted. */
775 *scan_current_only
= false;
779 /* Default the ssid_filter flag to TRUE, set false under
780 certain wildcard conditions and qualified by the existence
781 of an SSID list before marking the scan as filtered */
784 /* Set the BSS type scan filter, use Adapter setting if
786 scan_cfg_out
->bss_mode
=
787 (user_scan_in
->bss_mode
? (u8
) user_scan_in
->
788 bss_mode
: (u8
) adapter
->scan_mode
);
790 /* Set the number of probes to send, use Adapter setting
793 (user_scan_in
->num_probes
? user_scan_in
->
794 num_probes
: adapter
->scan_probes
);
797 * Set the BSSID filter to the incoming configuration,
798 * if non-zero. If not set, it will remain disabled
801 memcpy(scan_cfg_out
->specific_bssid
,
802 user_scan_in
->specific_bssid
,
803 sizeof(scan_cfg_out
->specific_bssid
));
806 ((ssid_idx
< ARRAY_SIZE(user_scan_in
->ssid_list
))
807 && (*user_scan_in
->ssid_list
[ssid_idx
].ssid
808 || user_scan_in
->ssid_list
[ssid_idx
].max_len
));
811 ssid_len
= strlen(user_scan_in
->ssid_list
[ssid_idx
].
815 (struct mwifiex_ie_types_wildcard_ssid_params
*)
817 wildcard_ssid_tlv
->header
.type
=
818 cpu_to_le16(TLV_TYPE_WILDCARDSSID
);
819 wildcard_ssid_tlv
->header
.len
= cpu_to_le16(
820 (u16
) (ssid_len
+ sizeof(wildcard_ssid_tlv
->
823 /* max_ssid_length = 0 tells firmware to perform
824 specific scan for the SSID filled */
825 wildcard_ssid_tlv
->max_ssid_length
= 0;
827 memcpy(wildcard_ssid_tlv
->ssid
,
828 user_scan_in
->ssid_list
[ssid_idx
].ssid
,
831 tlv_pos
+= (sizeof(wildcard_ssid_tlv
->header
)
832 + le16_to_cpu(wildcard_ssid_tlv
->header
.len
));
834 dev_dbg(adapter
->dev
, "info: scan: ssid_list[%d]: %s, %d\n",
835 ssid_idx
, wildcard_ssid_tlv
->ssid
,
836 wildcard_ssid_tlv
->max_ssid_length
);
838 /* Empty wildcard ssid with a maxlen will match many or
839 potentially all SSIDs (maxlen == 32), therefore do
840 not treat the scan as
842 if (!ssid_len
&& wildcard_ssid_tlv
->max_ssid_length
)
848 * The default number of channels sent in the command is low to
849 * ensure the response buffer from the firmware does not
850 * truncate scan results. That is not an issue with an SSID
851 * or BSSID filter applied to the scan results in the firmware.
853 if ((ssid_idx
&& ssid_filter
)
854 || memcmp(scan_cfg_out
->specific_bssid
, &zero_mac
,
856 *filtered_scan
= true;
858 scan_cfg_out
->bss_mode
= (u8
) adapter
->scan_mode
;
859 num_probes
= adapter
->scan_probes
;
863 * If a specific BSSID or SSID is used, the number of channels in the
864 * scan command will be increased to the absolute maximum.
867 *max_chan_per_scan
= MWIFIEX_MAX_CHANNELS_PER_SPECIFIC_SCAN
;
869 *max_chan_per_scan
= MWIFIEX_CHANNELS_PER_SCAN_CMD
;
871 /* If the input config or adapter has the number of Probes set,
875 dev_dbg(adapter
->dev
, "info: scan: num_probes = %d\n",
878 num_probes_tlv
= (struct mwifiex_ie_types_num_probes
*) tlv_pos
;
879 num_probes_tlv
->header
.type
= cpu_to_le16(TLV_TYPE_NUMPROBES
);
880 num_probes_tlv
->header
.len
=
881 cpu_to_le16(sizeof(num_probes_tlv
->num_probes
));
882 num_probes_tlv
->num_probes
= cpu_to_le16((u16
) num_probes
);
884 tlv_pos
+= sizeof(num_probes_tlv
->header
) +
885 le16_to_cpu(num_probes_tlv
->header
.len
);
889 /* Append rates tlv */
890 memset(rates
, 0, sizeof(rates
));
892 rates_size
= mwifiex_get_supported_rates(priv
, rates
);
894 rates_tlv
= (struct mwifiex_ie_types_rates_param_set
*) tlv_pos
;
895 rates_tlv
->header
.type
= cpu_to_le16(WLAN_EID_SUPP_RATES
);
896 rates_tlv
->header
.len
= cpu_to_le16((u16
) rates_size
);
897 memcpy(rates_tlv
->rates
, rates
, rates_size
);
898 tlv_pos
+= sizeof(rates_tlv
->header
) + rates_size
;
900 dev_dbg(adapter
->dev
, "info: SCAN_CMD: Rates size = %d\n", rates_size
);
902 if (ISSUPP_11NENABLED(priv
->adapter
->fw_cap_info
)
903 && (priv
->adapter
->config_bands
& BAND_GN
904 || priv
->adapter
->config_bands
& BAND_AN
)) {
905 ht_cap
= (struct mwifiex_ie_types_htcap
*) tlv_pos
;
906 memset(ht_cap
, 0, sizeof(struct mwifiex_ie_types_htcap
));
907 ht_cap
->header
.type
= cpu_to_le16(WLAN_EID_HT_CAPABILITY
);
909 cpu_to_le16(sizeof(struct ieee80211_ht_cap
));
911 mwifiex_band_to_radio_type(priv
->adapter
->config_bands
);
912 mwifiex_fill_cap_info(priv
, radio_type
, ht_cap
);
913 tlv_pos
+= sizeof(struct mwifiex_ie_types_htcap
);
916 /* Append vendor specific IE TLV */
917 mwifiex_cmd_append_vsie_tlv(priv
, MWIFIEX_VSIE_MASK_SCAN
, &tlv_pos
);
920 * Set the output for the channel TLV to the address in the tlv buffer
921 * past any TLVs that were added in this function (SSID, num_probes).
922 * Channel TLVs will be added past this for each scan command,
923 * preserving the TLVs that were previously added.
926 (struct mwifiex_ie_types_chan_list_param_set
*) tlv_pos
;
928 if (user_scan_in
&& user_scan_in
->chan_list
[0].chan_number
) {
930 dev_dbg(adapter
->dev
, "info: Scan: Using supplied channel list\n");
933 chan_idx
< MWIFIEX_USER_SCAN_CHAN_MAX
934 && user_scan_in
->chan_list
[chan_idx
].chan_number
;
937 channel
= user_scan_in
->chan_list
[chan_idx
].chan_number
;
938 (scan_chan_list
+ chan_idx
)->chan_number
= channel
;
941 user_scan_in
->chan_list
[chan_idx
].radio_type
;
942 (scan_chan_list
+ chan_idx
)->radio_type
= radio_type
;
944 scan_type
= user_scan_in
->chan_list
[chan_idx
].scan_type
;
946 if (scan_type
== MWIFIEX_SCAN_TYPE_PASSIVE
)
948 chan_idx
)->chan_scan_mode_bitmap
949 |= MWIFIEX_PASSIVE_SCAN
;
952 chan_idx
)->chan_scan_mode_bitmap
953 &= ~MWIFIEX_PASSIVE_SCAN
;
955 if (user_scan_in
->chan_list
[chan_idx
].scan_time
) {
956 scan_dur
= (u16
) user_scan_in
->
957 chan_list
[chan_idx
].scan_time
;
959 if (scan_type
== MWIFIEX_SCAN_TYPE_PASSIVE
)
960 scan_dur
= adapter
->passive_scan_time
;
961 else if (*filtered_scan
)
962 scan_dur
= adapter
->specific_scan_time
;
964 scan_dur
= adapter
->active_scan_time
;
967 (scan_chan_list
+ chan_idx
)->min_scan_time
=
968 cpu_to_le16(scan_dur
);
969 (scan_chan_list
+ chan_idx
)->max_scan_time
=
970 cpu_to_le16(scan_dur
);
973 /* Check if we are only scanning the current channel */
975 && (user_scan_in
->chan_list
[0].chan_number
976 == priv
->curr_bss_params
.bss_descriptor
.channel
)) {
977 *scan_current_only
= true;
978 dev_dbg(adapter
->dev
,
979 "info: Scan: Scanning current channel only\n");
983 dev_dbg(adapter
->dev
,
984 "info: Scan: Creating full region channel list\n");
985 mwifiex_scan_create_channel_list(priv
, user_scan_in
,
992 * This function inspects the scan response buffer for pointers to
995 * TLVs can be included at the end of the scan response BSS information.
997 * Data in the buffer is parsed pointers to TLVs that can potentially
998 * be passed back in the response.
1001 mwifiex_ret_802_11_scan_get_tlv_ptrs(struct mwifiex_adapter
*adapter
,
1002 struct mwifiex_ie_types_data
*tlv
,
1003 u32 tlv_buf_size
, u32 req_tlv_type
,
1004 struct mwifiex_ie_types_data
**tlv_data
)
1006 struct mwifiex_ie_types_data
*current_tlv
;
1012 tlv_buf_left
= tlv_buf_size
;
1015 dev_dbg(adapter
->dev
, "info: SCAN_RESP: tlv_buf_size = %d\n",
1018 while (tlv_buf_left
>= sizeof(struct mwifiex_ie_types_header
)) {
1020 tlv_type
= le16_to_cpu(current_tlv
->header
.type
);
1021 tlv_len
= le16_to_cpu(current_tlv
->header
.len
);
1023 if (sizeof(tlv
->header
) + tlv_len
> tlv_buf_left
) {
1024 dev_err(adapter
->dev
, "SCAN_RESP: TLV buffer corrupt\n");
1028 if (req_tlv_type
== tlv_type
) {
1030 case TLV_TYPE_TSFTIMESTAMP
:
1031 dev_dbg(adapter
->dev
, "info: SCAN_RESP: TSF "
1032 "timestamp TLV, len = %d\n", tlv_len
);
1033 *tlv_data
= (struct mwifiex_ie_types_data
*)
1036 case TLV_TYPE_CHANNELBANDLIST
:
1037 dev_dbg(adapter
->dev
, "info: SCAN_RESP: channel"
1038 " band list TLV, len = %d\n", tlv_len
);
1039 *tlv_data
= (struct mwifiex_ie_types_data
*)
1043 dev_err(adapter
->dev
,
1044 "SCAN_RESP: unhandled TLV = %d\n",
1046 /* Give up, this seems corrupted */
1055 tlv_buf_left
-= (sizeof(tlv
->header
) + tlv_len
);
1057 (struct mwifiex_ie_types_data
*) (current_tlv
->data
+
1064 * This function parses provided beacon buffer and updates
1065 * respective fields in bss descriptor structure.
1068 mwifiex_update_bss_desc_with_ie(struct mwifiex_adapter
*adapter
,
1069 struct mwifiex_bssdescriptor
*bss_entry
,
1070 u8
*ie_buf
, u32 ie_len
)
1074 struct ieee_types_fh_param_set
*fh_param_set
;
1075 struct ieee_types_ds_param_set
*ds_param_set
;
1076 struct ieee_types_cf_param_set
*cf_param_set
;
1077 struct ieee_types_ibss_param_set
*ibss_param_set
;
1084 u8 found_data_rate_ie
;
1086 struct ieee_types_vendor_specific
*vendor_ie
;
1087 const u8 wpa_oui
[4] = { 0x00, 0x50, 0xf2, 0x01 };
1088 const u8 wmm_oui
[4] = { 0x00, 0x50, 0xf2, 0x02 };
1090 found_data_rate_ie
= false;
1092 current_ptr
= ie_buf
;
1093 bytes_left
= ie_len
;
1094 bss_entry
->beacon_buf
= ie_buf
;
1095 bss_entry
->beacon_buf_size
= ie_len
;
1097 /* Process variable IE */
1098 while (bytes_left
>= 2) {
1099 element_id
= *current_ptr
;
1100 element_len
= *(current_ptr
+ 1);
1101 total_ie_len
= element_len
+ sizeof(struct ieee_types_header
);
1103 if (bytes_left
< total_ie_len
) {
1104 dev_err(adapter
->dev
, "err: InterpretIE: in processing"
1105 " IE, bytes left < IE length\n");
1108 switch (element_id
) {
1110 bss_entry
->ssid
.ssid_len
= element_len
;
1111 memcpy(bss_entry
->ssid
.ssid
, (current_ptr
+ 2),
1113 dev_dbg(adapter
->dev
, "info: InterpretIE: ssid: "
1114 "%-32s\n", bss_entry
->ssid
.ssid
);
1117 case WLAN_EID_SUPP_RATES
:
1118 memcpy(bss_entry
->data_rates
, current_ptr
+ 2,
1120 memcpy(bss_entry
->supported_rates
, current_ptr
+ 2,
1122 rate_size
= element_len
;
1123 found_data_rate_ie
= true;
1126 case WLAN_EID_FH_PARAMS
:
1128 (struct ieee_types_fh_param_set
*) current_ptr
;
1129 memcpy(&bss_entry
->phy_param_set
.fh_param_set
,
1131 sizeof(struct ieee_types_fh_param_set
));
1134 case WLAN_EID_DS_PARAMS
:
1136 (struct ieee_types_ds_param_set
*) current_ptr
;
1138 bss_entry
->channel
= ds_param_set
->current_chan
;
1140 memcpy(&bss_entry
->phy_param_set
.ds_param_set
,
1142 sizeof(struct ieee_types_ds_param_set
));
1145 case WLAN_EID_CF_PARAMS
:
1147 (struct ieee_types_cf_param_set
*) current_ptr
;
1148 memcpy(&bss_entry
->ss_param_set
.cf_param_set
,
1150 sizeof(struct ieee_types_cf_param_set
));
1153 case WLAN_EID_IBSS_PARAMS
:
1155 (struct ieee_types_ibss_param_set
*)
1157 memcpy(&bss_entry
->ss_param_set
.ibss_param_set
,
1159 sizeof(struct ieee_types_ibss_param_set
));
1162 case WLAN_EID_ERP_INFO
:
1163 bss_entry
->erp_flags
= *(current_ptr
+ 2);
1166 case WLAN_EID_EXT_SUPP_RATES
:
1168 * Only process extended supported rate
1169 * if data rate is already found.
1170 * Data rate IE should come before
1171 * extended supported rate IE
1173 if (found_data_rate_ie
) {
1174 if ((element_len
+ rate_size
) >
1175 MWIFIEX_SUPPORTED_RATES
)
1177 (MWIFIEX_SUPPORTED_RATES
-
1180 bytes_to_copy
= element_len
;
1182 rate
= (u8
*) bss_entry
->data_rates
;
1184 memcpy(rate
, current_ptr
+ 2, bytes_to_copy
);
1186 rate
= (u8
*) bss_entry
->supported_rates
;
1188 memcpy(rate
, current_ptr
+ 2, bytes_to_copy
);
1192 case WLAN_EID_VENDOR_SPECIFIC
:
1193 vendor_ie
= (struct ieee_types_vendor_specific
*)
1197 (vendor_ie
->vend_hdr
.oui
, wpa_oui
,
1199 bss_entry
->bcn_wpa_ie
=
1200 (struct ieee_types_vendor_specific
*)
1202 bss_entry
->wpa_offset
= (u16
) (current_ptr
-
1203 bss_entry
->beacon_buf
);
1204 } else if (!memcmp(vendor_ie
->vend_hdr
.oui
, wmm_oui
,
1207 sizeof(struct ieee_types_wmm_parameter
)
1209 sizeof(struct ieee_types_wmm_info
))
1211 * Only accept and copy the WMM IE if
1212 * it matches the size expected for the
1213 * WMM Info IE or the WMM Parameter IE.
1215 memcpy((u8
*) &bss_entry
->wmm_ie
,
1216 current_ptr
, total_ie_len
);
1220 bss_entry
->bcn_rsn_ie
=
1221 (struct ieee_types_generic
*) current_ptr
;
1222 bss_entry
->rsn_offset
= (u16
) (current_ptr
-
1223 bss_entry
->beacon_buf
);
1225 case WLAN_EID_BSS_AC_ACCESS_DELAY
:
1226 bss_entry
->bcn_wapi_ie
=
1227 (struct ieee_types_generic
*) current_ptr
;
1228 bss_entry
->wapi_offset
= (u16
) (current_ptr
-
1229 bss_entry
->beacon_buf
);
1231 case WLAN_EID_HT_CAPABILITY
:
1232 bss_entry
->bcn_ht_cap
= (struct ieee80211_ht_cap
*)
1234 sizeof(struct ieee_types_header
));
1235 bss_entry
->ht_cap_offset
= (u16
) (current_ptr
+
1236 sizeof(struct ieee_types_header
) -
1237 bss_entry
->beacon_buf
);
1239 case WLAN_EID_HT_INFORMATION
:
1240 bss_entry
->bcn_ht_info
= (struct ieee80211_ht_info
*)
1242 sizeof(struct ieee_types_header
));
1243 bss_entry
->ht_info_offset
= (u16
) (current_ptr
+
1244 sizeof(struct ieee_types_header
) -
1245 bss_entry
->beacon_buf
);
1247 case WLAN_EID_BSS_COEX_2040
:
1248 bss_entry
->bcn_bss_co_2040
= (u8
*) (current_ptr
+
1249 sizeof(struct ieee_types_header
));
1250 bss_entry
->bss_co_2040_offset
= (u16
) (current_ptr
+
1251 sizeof(struct ieee_types_header
) -
1252 bss_entry
->beacon_buf
);
1254 case WLAN_EID_EXT_CAPABILITY
:
1255 bss_entry
->bcn_ext_cap
= (u8
*) (current_ptr
+
1256 sizeof(struct ieee_types_header
));
1257 bss_entry
->ext_cap_offset
= (u16
) (current_ptr
+
1258 sizeof(struct ieee_types_header
) -
1259 bss_entry
->beacon_buf
);
1265 current_ptr
+= element_len
+ 2;
1267 /* Need to account for IE ID and IE Len */
1268 bytes_left
-= (element_len
+ 2);
1270 } /* while (bytes_left > 2) */
1275 * This function converts radio type scan parameter to a band configuration
1276 * to be used in join command.
1279 mwifiex_radio_type_to_band(u8 radio_type
)
1281 switch (radio_type
) {
1282 case HostCmd_SCAN_RADIO_TYPE_A
:
1284 case HostCmd_SCAN_RADIO_TYPE_BG
:
1291 * This is an internal function used to start a scan based on an input
1294 * This uses the input user scan configuration information when provided in
1295 * order to send the appropriate scan commands to firmware to populate or
1296 * update the internal driver scan table.
1298 static int mwifiex_scan_networks(struct mwifiex_private
*priv
,
1299 const struct mwifiex_user_scan_cfg
*user_scan_in
)
1302 struct mwifiex_adapter
*adapter
= priv
->adapter
;
1303 struct cmd_ctrl_node
*cmd_node
;
1304 union mwifiex_scan_cmd_config_tlv
*scan_cfg_out
;
1305 struct mwifiex_ie_types_chan_list_param_set
*chan_list_out
;
1307 struct mwifiex_chan_scan_param_set
*scan_chan_list
;
1309 u8 scan_current_chan_only
;
1310 u8 max_chan_per_scan
;
1311 unsigned long flags
;
1313 if (adapter
->scan_processing
) {
1314 dev_dbg(adapter
->dev
, "cmd: Scan already in process...\n");
1318 spin_lock_irqsave(&adapter
->mwifiex_cmd_lock
, flags
);
1319 adapter
->scan_processing
= true;
1320 spin_unlock_irqrestore(&adapter
->mwifiex_cmd_lock
, flags
);
1322 if (priv
->scan_block
) {
1323 dev_dbg(adapter
->dev
,
1324 "cmd: Scan is blocked during association...\n");
1328 scan_cfg_out
= kzalloc(sizeof(union mwifiex_scan_cmd_config_tlv
),
1330 if (!scan_cfg_out
) {
1331 dev_err(adapter
->dev
, "failed to alloc scan_cfg_out\n");
1335 buf_size
= sizeof(struct mwifiex_chan_scan_param_set
) *
1336 MWIFIEX_USER_SCAN_CHAN_MAX
;
1337 scan_chan_list
= kzalloc(buf_size
, GFP_KERNEL
);
1338 if (!scan_chan_list
) {
1339 dev_err(adapter
->dev
, "failed to alloc scan_chan_list\n");
1340 kfree(scan_cfg_out
);
1344 mwifiex_scan_setup_scan_config(priv
, user_scan_in
,
1345 &scan_cfg_out
->config
, &chan_list_out
,
1346 scan_chan_list
, &max_chan_per_scan
,
1347 &filtered_scan
, &scan_current_chan_only
);
1349 ret
= mwifiex_scan_channel_list(priv
, max_chan_per_scan
, filtered_scan
,
1350 &scan_cfg_out
->config
, chan_list_out
,
1353 /* Get scan command from scan_pending_q and put to cmd_pending_q */
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
,
1358 struct cmd_ctrl_node
, list
);
1359 list_del(&cmd_node
->list
);
1360 spin_unlock_irqrestore(&adapter
->scan_pending_q_lock
,
1362 adapter
->cmd_queued
= cmd_node
;
1363 mwifiex_insert_cmd_to_pending_q(adapter
, cmd_node
,
1366 spin_unlock_irqrestore(&adapter
->scan_pending_q_lock
,
1370 spin_lock_irqsave(&adapter
->mwifiex_cmd_lock
, flags
);
1371 adapter
->scan_processing
= true;
1372 spin_unlock_irqrestore(&adapter
->mwifiex_cmd_lock
, flags
);
1375 kfree(scan_cfg_out
);
1376 kfree(scan_chan_list
);
1381 * Sends IOCTL request to start a scan with user configurations.
1383 * This function allocates the IOCTL request buffer, fills it
1384 * with requisite parameters and calls the IOCTL handler.
1386 * Upon completion, it also generates a wireless event to notify
1389 int mwifiex_set_user_scan_ioctl(struct mwifiex_private
*priv
,
1390 struct mwifiex_user_scan_cfg
*scan_req
)
1394 status
= mwifiex_scan_networks(priv
, scan_req
);
1395 queue_work(priv
->adapter
->workqueue
, &priv
->adapter
->main_work
);
1401 * This function prepares a scan command to be sent to the firmware.
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.
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.
1410 * Preparation also includes -
1411 * - Setting command ID, and proper size
1412 * - Ensuring correct endian-ness
1414 int mwifiex_cmd_802_11_scan(struct host_cmd_ds_command
*cmd
,
1415 struct mwifiex_scan_cmd_config
*scan_cfg
)
1417 struct host_cmd_ds_802_11_scan
*scan_cmd
= &cmd
->params
.scan
;
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
);
1425 cmd
->command
= cpu_to_le16(HostCmd_CMD_802_11_SCAN
);
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
));
1436 * This function checks compatibility of requested network with current
1439 int mwifiex_check_network_compatibility(struct mwifiex_private
*priv
,
1440 struct mwifiex_bssdescriptor
*bss_desc
)
1447 if ((mwifiex_get_cfp_by_band_and_channel_from_cfg80211(priv
,
1448 (u8
) bss_desc
->bss_band
, (u16
) bss_desc
->channel
))) {
1449 switch (priv
->bss_mode
) {
1450 case NL80211_IFTYPE_STATION
:
1451 case NL80211_IFTYPE_ADHOC
:
1452 ret
= mwifiex_is_network_compatible(priv
, bss_desc
,
1455 dev_err(priv
->adapter
->dev
, "cannot find ssid "
1456 "%s\n", bss_desc
->ssid
.ssid
);
1467 mwifiex_update_curr_bss_params(struct mwifiex_private
*priv
, u8
*bssid
,
1468 s32 rssi
, const u8
*ie_buf
, size_t ie_len
,
1469 u16 beacon_period
, u16 cap_info_bitmap
, u8 band
)
1471 struct mwifiex_bssdescriptor
*bss_desc
;
1473 unsigned long flags
;
1476 /* Allocate and fill new bss descriptor */
1477 bss_desc
= kzalloc(sizeof(struct mwifiex_bssdescriptor
),
1480 dev_err(priv
->adapter
->dev
, " failed to alloc bss_desc\n");
1484 beacon_ie
= kmemdup(ie_buf
, ie_len
, GFP_KERNEL
);
1487 dev_err(priv
->adapter
->dev
, " failed to alloc beacon_ie\n");
1491 ret
= mwifiex_fill_new_bss_desc(priv
, bssid
, rssi
, beacon_ie
,
1492 ie_len
, beacon_period
,
1493 cap_info_bitmap
, band
, bss_desc
);
1497 ret
= mwifiex_check_network_compatibility(priv
, bss_desc
);
1501 /* Update current bss descriptor parameters */
1502 spin_lock_irqsave(&priv
->curr_bcn_buf_lock
, flags
);
1503 priv
->curr_bss_params
.bss_descriptor
.bcn_wpa_ie
= NULL
;
1504 priv
->curr_bss_params
.bss_descriptor
.wpa_offset
= 0;
1505 priv
->curr_bss_params
.bss_descriptor
.bcn_rsn_ie
= NULL
;
1506 priv
->curr_bss_params
.bss_descriptor
.rsn_offset
= 0;
1507 priv
->curr_bss_params
.bss_descriptor
.bcn_wapi_ie
= NULL
;
1508 priv
->curr_bss_params
.bss_descriptor
.wapi_offset
= 0;
1509 priv
->curr_bss_params
.bss_descriptor
.bcn_ht_cap
= NULL
;
1510 priv
->curr_bss_params
.bss_descriptor
.ht_cap_offset
=
1512 priv
->curr_bss_params
.bss_descriptor
.bcn_ht_info
= NULL
;
1513 priv
->curr_bss_params
.bss_descriptor
.ht_info_offset
=
1515 priv
->curr_bss_params
.bss_descriptor
.bcn_bss_co_2040
=
1517 priv
->curr_bss_params
.bss_descriptor
.
1518 bss_co_2040_offset
= 0;
1519 priv
->curr_bss_params
.bss_descriptor
.bcn_ext_cap
= NULL
;
1520 priv
->curr_bss_params
.bss_descriptor
.ext_cap_offset
= 0;
1521 priv
->curr_bss_params
.bss_descriptor
.beacon_buf
= NULL
;
1522 priv
->curr_bss_params
.bss_descriptor
.beacon_buf_size
=
1525 /* Make a copy of current BSSID descriptor */
1526 memcpy(&priv
->curr_bss_params
.bss_descriptor
, bss_desc
,
1527 sizeof(priv
->curr_bss_params
.bss_descriptor
));
1528 mwifiex_save_curr_bcn(priv
);
1529 spin_unlock_irqrestore(&priv
->curr_bcn_buf_lock
, flags
);
1538 * This function handles the command response of scan.
1540 * The response buffer for the scan command has the following
1543 * .-------------------------------------------------------------.
1544 * | Header (4 * sizeof(t_u16)): Standard command response hdr |
1545 * .-------------------------------------------------------------.
1546 * | BufSize (t_u16) : sizeof the BSS Description data |
1547 * .-------------------------------------------------------------.
1548 * | NumOfSet (t_u8) : Number of BSS Descs returned |
1549 * .-------------------------------------------------------------.
1550 * | BSSDescription data (variable, size given in BufSize) |
1551 * .-------------------------------------------------------------.
1552 * | TLV data (variable, size calculated using Header->Size, |
1553 * | BufSize and sizeof the fixed fields above) |
1554 * .-------------------------------------------------------------.
1556 int mwifiex_ret_802_11_scan(struct mwifiex_private
*priv
,
1557 struct host_cmd_ds_command
*resp
)
1560 struct mwifiex_adapter
*adapter
= priv
->adapter
;
1561 struct cmd_ctrl_node
*cmd_node
;
1562 struct host_cmd_ds_802_11_scan_rsp
*scan_rsp
;
1563 struct mwifiex_ie_types_data
*tlv_data
;
1564 struct mwifiex_ie_types_tsf_timestamp
*tsf_tlv
;
1570 struct mwifiex_chan_freq_power
*cfp
;
1571 struct mwifiex_ie_types_chan_band_list_param_set
*chan_band_tlv
;
1572 struct chan_band_param_set
*chan_band
;
1574 unsigned long flags
;
1575 struct cfg80211_bss
*bss
;
1577 is_bgscan_resp
= (le16_to_cpu(resp
->command
)
1578 == HostCmd_CMD_802_11_BG_SCAN_QUERY
);
1580 scan_rsp
= &resp
->params
.bg_scan_query_resp
.scan_resp
;
1582 scan_rsp
= &resp
->params
.scan_resp
;
1585 if (scan_rsp
->number_of_sets
> MWIFIEX_MAX_AP
) {
1586 dev_err(adapter
->dev
, "SCAN_RESP: too many AP returned (%d)\n",
1587 scan_rsp
->number_of_sets
);
1592 bytes_left
= le16_to_cpu(scan_rsp
->bss_descript_size
);
1593 dev_dbg(adapter
->dev
, "info: SCAN_RESP: bss_descript_size %d\n",
1596 scan_resp_size
= le16_to_cpu(resp
->size
);
1598 dev_dbg(adapter
->dev
,
1599 "info: SCAN_RESP: returned %d APs before parsing\n",
1600 scan_rsp
->number_of_sets
);
1602 bss_info
= scan_rsp
->bss_desc_and_tlv_buffer
;
1605 * The size of the TLV buffer is equal to the entire command response
1606 * size (scan_resp_size) minus the fixed fields (sizeof()'s), the
1607 * BSS Descriptions (bss_descript_size as bytesLef) and the command
1608 * response header (S_DS_GEN)
1610 tlv_buf_size
= scan_resp_size
- (bytes_left
1611 + sizeof(scan_rsp
->bss_descript_size
)
1612 + sizeof(scan_rsp
->number_of_sets
)
1615 tlv_data
= (struct mwifiex_ie_types_data
*) (scan_rsp
->
1616 bss_desc_and_tlv_buffer
+
1619 /* Search the TLV buffer space in the scan response for any valid
1621 mwifiex_ret_802_11_scan_get_tlv_ptrs(adapter
, tlv_data
, tlv_buf_size
,
1622 TLV_TYPE_TSFTIMESTAMP
,
1623 (struct mwifiex_ie_types_data
**)
1626 /* Search the TLV buffer space in the scan response for any valid
1628 mwifiex_ret_802_11_scan_get_tlv_ptrs(adapter
, tlv_data
, tlv_buf_size
,
1629 TLV_TYPE_CHANNELBANDLIST
,
1630 (struct mwifiex_ie_types_data
**)
1633 for (idx
= 0; idx
< scan_rsp
->number_of_sets
&& bytes_left
; idx
++) {
1639 u64 network_tsf
= 0;
1640 u16 beacon_size
= 0;
1644 u16 cap_info_bitmap
;
1646 struct mwifiex_bcn_param
*bcn_param
;
1648 if (bytes_left
>= sizeof(beacon_size
)) {
1649 /* Extract & convert beacon size from command buffer */
1650 memcpy(&beacon_size
, bss_info
, sizeof(beacon_size
));
1651 bytes_left
-= sizeof(beacon_size
);
1652 bss_info
+= sizeof(beacon_size
);
1655 if (!beacon_size
|| beacon_size
> bytes_left
) {
1656 bss_info
+= bytes_left
;
1661 /* Initialize the current working beacon pointer for this BSS
1663 current_ptr
= bss_info
;
1665 /* Advance the return beacon pointer past the current beacon */
1666 bss_info
+= beacon_size
;
1667 bytes_left
-= beacon_size
;
1669 curr_bcn_bytes
= beacon_size
;
1672 * First 5 fields are bssid, RSSI, time stamp, beacon interval,
1673 * and capability information
1675 if (curr_bcn_bytes
< sizeof(struct mwifiex_bcn_param
)) {
1676 dev_err(adapter
->dev
, "InterpretIE: not enough bytes left\n");
1679 bcn_param
= (struct mwifiex_bcn_param
*)current_ptr
;
1680 current_ptr
+= sizeof(*bcn_param
);
1681 curr_bcn_bytes
-= sizeof(*bcn_param
);
1683 memcpy(bssid
, bcn_param
->bssid
, ETH_ALEN
);
1685 rssi
= (s32
) (bcn_param
->rssi
);
1686 dev_dbg(adapter
->dev
, "info: InterpretIE: RSSI=%02X\n",
1689 beacon_period
= le16_to_cpu(bcn_param
->beacon_period
);
1691 cap_info_bitmap
= le16_to_cpu(bcn_param
->cap_info_bitmap
);
1692 dev_dbg(adapter
->dev
, "info: InterpretIE: capabilities=0x%X\n",
1695 /* Rest of the current buffer are IE's */
1696 ie_buf
= current_ptr
;
1697 ie_len
= curr_bcn_bytes
;
1698 dev_dbg(adapter
->dev
, "info: InterpretIE: IELength for this AP"
1699 " = %d\n", curr_bcn_bytes
);
1701 while (curr_bcn_bytes
>= sizeof(struct ieee_types_header
)) {
1702 u8 element_id
, element_len
;
1704 element_id
= *current_ptr
;
1705 element_len
= *(current_ptr
+ 1);
1706 if (curr_bcn_bytes
< element_len
+
1707 sizeof(struct ieee_types_header
)) {
1708 dev_err(priv
->adapter
->dev
, "%s: in processing"
1709 " IE, bytes left < IE length\n",
1713 if (element_id
== WLAN_EID_DS_PARAMS
) {
1714 channel
= *(u8
*) (current_ptr
+
1715 sizeof(struct ieee_types_header
));
1719 current_ptr
+= element_len
+
1720 sizeof(struct ieee_types_header
);
1721 curr_bcn_bytes
-= element_len
+
1722 sizeof(struct ieee_types_header
);
1726 * If the TSF TLV was appended to the scan results, save this
1727 * entry's TSF value in the networkTSF field.The networkTSF is
1728 * the firmware's TSF value at the time the beacon or probe
1729 * response was received.
1732 memcpy(&network_tsf
,
1733 &tsf_tlv
->tsf_data
[idx
* TSF_DATA_SIZE
],
1734 sizeof(network_tsf
));
1736 if (channel
!= -1) {
1737 struct ieee80211_channel
*chan
;
1741 if (chan_band_tlv
) {
1743 &chan_band_tlv
->chan_band_param
[idx
];
1744 band
= mwifiex_radio_type_to_band(
1745 chan_band
->radio_type
1746 & (BIT(0) | BIT(1)));
1749 cfp
= mwifiex_get_cfp_by_band_and_channel_from_cfg80211(
1750 priv
, (u8
)band
, (u16
)channel
);
1752 freq
= cfp
? cfp
->freq
: 0;
1754 chan
= ieee80211_get_channel(priv
->wdev
->wiphy
, freq
);
1756 if (chan
&& !(chan
->flags
& IEEE80211_CHAN_DISABLED
)) {
1757 bss
= cfg80211_inform_bss(priv
->wdev
->wiphy
,
1758 chan
, bssid
, network_tsf
,
1759 cap_info_bitmap
, beacon_period
,
1760 ie_buf
, ie_len
, rssi
, GFP_KERNEL
);
1761 *(u8
*)bss
->priv
= band
;
1762 cfg80211_put_bss(bss
);
1764 if (priv
->media_connected
&& !memcmp(bssid
,
1765 priv
->curr_bss_params
.bss_descriptor
1766 .mac_address
, ETH_ALEN
))
1767 mwifiex_update_curr_bss_params(priv
,
1768 bssid
, rssi
, ie_buf
,
1769 ie_len
, beacon_period
,
1770 cap_info_bitmap
, band
);
1773 dev_dbg(adapter
->dev
, "missing BSS channel IE\n");
1777 spin_lock_irqsave(&adapter
->scan_pending_q_lock
, flags
);
1778 if (list_empty(&adapter
->scan_pending_q
)) {
1779 spin_unlock_irqrestore(&adapter
->scan_pending_q_lock
, flags
);
1780 spin_lock_irqsave(&adapter
->mwifiex_cmd_lock
, flags
);
1781 adapter
->scan_processing
= false;
1782 spin_unlock_irqrestore(&adapter
->mwifiex_cmd_lock
, flags
);
1784 /* Need to indicate IOCTL complete */
1785 if (adapter
->curr_cmd
->wait_q_enabled
) {
1786 adapter
->cmd_wait_q
.status
= 0;
1787 mwifiex_complete_cmd(adapter
, adapter
->curr_cmd
);
1789 if (priv
->report_scan_result
)
1790 priv
->report_scan_result
= false;
1791 if (priv
->scan_pending_on_block
) {
1792 priv
->scan_pending_on_block
= false;
1793 up(&priv
->async_sem
);
1796 if (priv
->user_scan_cfg
) {
1797 dev_dbg(priv
->adapter
->dev
, "info: %s: sending scan "
1798 "results\n", __func__
);
1799 cfg80211_scan_done(priv
->scan_request
, 0);
1800 priv
->scan_request
= NULL
;
1801 kfree(priv
->user_scan_cfg
);
1802 priv
->user_scan_cfg
= NULL
;
1805 /* Get scan command from scan_pending_q and put to
1807 cmd_node
= list_first_entry(&adapter
->scan_pending_q
,
1808 struct cmd_ctrl_node
, list
);
1809 list_del(&cmd_node
->list
);
1810 spin_unlock_irqrestore(&adapter
->scan_pending_q_lock
, flags
);
1812 mwifiex_insert_cmd_to_pending_q(adapter
, cmd_node
, true);
1820 * This function prepares command for background scan query.
1822 * Preparation includes -
1823 * - Setting command ID and proper size
1824 * - Setting background scan flush parameter
1825 * - Ensuring correct endian-ness
1827 int mwifiex_cmd_802_11_bg_scan_query(struct host_cmd_ds_command
*cmd
)
1829 struct host_cmd_ds_802_11_bg_scan_query
*bg_query
=
1830 &cmd
->params
.bg_scan_query
;
1832 cmd
->command
= cpu_to_le16(HostCmd_CMD_802_11_BG_SCAN_QUERY
);
1833 cmd
->size
= cpu_to_le16(sizeof(struct host_cmd_ds_802_11_bg_scan_query
)
1836 bg_query
->flush
= 1;
1842 * This function inserts scan command node to the scan pending queue.
1845 mwifiex_queue_scan_cmd(struct mwifiex_private
*priv
,
1846 struct cmd_ctrl_node
*cmd_node
)
1848 struct mwifiex_adapter
*adapter
= priv
->adapter
;
1849 unsigned long flags
;
1851 cmd_node
->wait_q_enabled
= true;
1852 cmd_node
->condition
= &adapter
->scan_wait_q_woken
;
1853 spin_lock_irqsave(&adapter
->scan_pending_q_lock
, flags
);
1854 list_add_tail(&cmd_node
->list
, &adapter
->scan_pending_q
);
1855 spin_unlock_irqrestore(&adapter
->scan_pending_q_lock
, flags
);
1859 * This function sends a scan command for all available channels to the
1860 * firmware, filtered on a specific SSID.
1862 static int mwifiex_scan_specific_ssid(struct mwifiex_private
*priv
,
1863 struct mwifiex_802_11_ssid
*req_ssid
)
1865 struct mwifiex_adapter
*adapter
= priv
->adapter
;
1867 struct mwifiex_user_scan_cfg
*scan_cfg
;
1872 if (adapter
->scan_processing
) {
1873 dev_dbg(adapter
->dev
, "cmd: Scan already in process...\n");
1877 if (priv
->scan_block
) {
1878 dev_dbg(adapter
->dev
,
1879 "cmd: Scan is blocked during association...\n");
1883 scan_cfg
= kzalloc(sizeof(struct mwifiex_user_scan_cfg
), GFP_KERNEL
);
1885 dev_err(adapter
->dev
, "failed to alloc scan_cfg\n");
1889 memcpy(scan_cfg
->ssid_list
[0].ssid
, req_ssid
->ssid
,
1890 req_ssid
->ssid_len
);
1892 ret
= mwifiex_scan_networks(priv
, scan_cfg
);
1899 * Sends IOCTL request to start a scan.
1901 * This function allocates the IOCTL request buffer, fills it
1902 * with requisite parameters and calls the IOCTL handler.
1904 * Scan command can be issued for both normal scan and specific SSID
1905 * scan, depending upon whether an SSID is provided or not.
1907 int mwifiex_request_scan(struct mwifiex_private
*priv
,
1908 struct mwifiex_802_11_ssid
*req_ssid
)
1912 if (down_interruptible(&priv
->async_sem
)) {
1913 dev_err(priv
->adapter
->dev
, "%s: acquire semaphore\n",
1917 priv
->scan_pending_on_block
= true;
1919 priv
->adapter
->scan_wait_q_woken
= false;
1921 if (req_ssid
&& req_ssid
->ssid_len
!= 0)
1922 /* Specific SSID scan */
1923 ret
= mwifiex_scan_specific_ssid(priv
, req_ssid
);
1926 ret
= mwifiex_scan_networks(priv
, NULL
);
1929 ret
= mwifiex_wait_queue_complete(priv
->adapter
);
1932 priv
->scan_pending_on_block
= false;
1933 up(&priv
->async_sem
);
1940 * This function appends the vendor specific IE TLV to a buffer.
1943 mwifiex_cmd_append_vsie_tlv(struct mwifiex_private
*priv
,
1944 u16 vsie_mask
, u8
**buffer
)
1946 int id
, ret_len
= 0;
1947 struct mwifiex_ie_types_vendor_param_set
*vs_param_set
;
1955 * Traverse through the saved vendor specific IE array and append
1956 * the selected(scan/assoc/adhoc) IE as TLV to the command
1958 for (id
= 0; id
< MWIFIEX_MAX_VSIE_NUM
; id
++) {
1959 if (priv
->vs_ie
[id
].mask
& vsie_mask
) {
1961 (struct mwifiex_ie_types_vendor_param_set
*)
1963 vs_param_set
->header
.type
=
1964 cpu_to_le16(TLV_TYPE_PASSTHROUGH
);
1965 vs_param_set
->header
.len
=
1966 cpu_to_le16((((u16
) priv
->vs_ie
[id
].ie
[1])
1968 memcpy(vs_param_set
->ie
, priv
->vs_ie
[id
].ie
,
1969 le16_to_cpu(vs_param_set
->header
.len
));
1970 *buffer
+= le16_to_cpu(vs_param_set
->header
.len
) +
1971 sizeof(struct mwifiex_ie_types_header
);
1972 ret_len
+= le16_to_cpu(vs_param_set
->header
.len
) +
1973 sizeof(struct mwifiex_ie_types_header
);
1980 * This function saves a beacon buffer of the current BSS descriptor.
1982 * The current beacon buffer is saved so that it can be restored in the
1983 * following cases that makes the beacon buffer not to contain the current
1984 * ssid's beacon buffer.
1985 * - The current ssid was not found somehow in the last scan.
1986 * - The current ssid was the last entry of the scan table and overloaded.
1989 mwifiex_save_curr_bcn(struct mwifiex_private
*priv
)
1991 struct mwifiex_bssdescriptor
*curr_bss
=
1992 &priv
->curr_bss_params
.bss_descriptor
;
1994 if (!curr_bss
->beacon_buf_size
)
1997 /* allocate beacon buffer at 1st time; or if it's size has changed */
1998 if (!priv
->curr_bcn_buf
||
1999 priv
->curr_bcn_size
!= curr_bss
->beacon_buf_size
) {
2000 priv
->curr_bcn_size
= curr_bss
->beacon_buf_size
;
2002 kfree(priv
->curr_bcn_buf
);
2003 priv
->curr_bcn_buf
= kmalloc(curr_bss
->beacon_buf_size
,
2005 if (!priv
->curr_bcn_buf
) {
2006 dev_err(priv
->adapter
->dev
,
2007 "failed to alloc curr_bcn_buf\n");
2012 memcpy(priv
->curr_bcn_buf
, curr_bss
->beacon_buf
,
2013 curr_bss
->beacon_buf_size
);
2014 dev_dbg(priv
->adapter
->dev
, "info: current beacon saved %d\n",
2015 priv
->curr_bcn_size
);
2017 curr_bss
->beacon_buf
= priv
->curr_bcn_buf
;
2019 /* adjust the pointers in the current BSS descriptor */
2020 if (curr_bss
->bcn_wpa_ie
)
2021 curr_bss
->bcn_wpa_ie
=
2022 (struct ieee_types_vendor_specific
*)
2023 (curr_bss
->beacon_buf
+
2024 curr_bss
->wpa_offset
);
2026 if (curr_bss
->bcn_rsn_ie
)
2027 curr_bss
->bcn_rsn_ie
= (struct ieee_types_generic
*)
2028 (curr_bss
->beacon_buf
+
2029 curr_bss
->rsn_offset
);
2031 if (curr_bss
->bcn_ht_cap
)
2032 curr_bss
->bcn_ht_cap
= (struct ieee80211_ht_cap
*)
2033 (curr_bss
->beacon_buf
+
2034 curr_bss
->ht_cap_offset
);
2036 if (curr_bss
->bcn_ht_info
)
2037 curr_bss
->bcn_ht_info
= (struct ieee80211_ht_info
*)
2038 (curr_bss
->beacon_buf
+
2039 curr_bss
->ht_info_offset
);
2041 if (curr_bss
->bcn_bss_co_2040
)
2042 curr_bss
->bcn_bss_co_2040
=
2043 (u8
*) (curr_bss
->beacon_buf
+
2044 curr_bss
->bss_co_2040_offset
);
2046 if (curr_bss
->bcn_ext_cap
)
2047 curr_bss
->bcn_ext_cap
= (u8
*) (curr_bss
->beacon_buf
+
2048 curr_bss
->ext_cap_offset
);
2052 * This function frees the current BSS descriptor beacon buffer.
2055 mwifiex_free_curr_bcn(struct mwifiex_private
*priv
)
2057 kfree(priv
->curr_bcn_buf
);
2058 priv
->curr_bcn_buf
= NULL
;