Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Amitkumar Karwar | 658f37b | 2012-06-06 21:12:42 -0700 | [diff] [blame] | 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 |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | { |
Yogesh Ashok Powar | 270e58e | 2011-05-03 20:11:46 -0700 | [diff] [blame] | 123 | u8 *oui; |
| 124 | struct ie_body *iebody; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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) + |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 131 | RSN_GTK_OUI_OFFSET); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | { |
Yogesh Ashok Powar | 270e58e | 2011-05-03 20:11:46 -0700 | [diff] [blame] | 150 | u8 *oui; |
| 151 | struct ie_body *iebody; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 152 | u8 ret = MWIFIEX_OUI_NOT_PRESENT; |
| 153 | |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 154 | if (((bss_desc->bcn_wpa_ie) && |
| 155 | ((*(bss_desc->bcn_wpa_ie)).vend_hdr.element_id == |
Arend van Spriel | 04b2312 | 2012-10-12 12:28:14 +0200 | [diff] [blame] | 156 | WLAN_EID_VENDOR_SPECIFIC))) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 |
Amitkumar Karwar | b9be5f3 | 2012-02-27 22:04:14 -0800 | [diff] [blame] | 170 | mwifiex_ssid_cmp(struct cfg80211_ssid *ssid1, struct cfg80211_ssid *ssid2) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 178 | * This function checks if wapi is enabled in driver and scanned network is |
| 179 | * compatible with it. |
| 180 | */ |
| 181 | static bool |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 182 | mwifiex_is_bss_wapi(struct mwifiex_private *priv, |
| 183 | struct mwifiex_bssdescriptor *bss_desc) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 199 | mwifiex_is_bss_no_sec(struct mwifiex_private *priv, |
| 200 | struct mwifiex_bssdescriptor *bss_desc) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 201 | { |
Amitkumar Karwar | 5eb02e4 | 2012-02-24 21:36:04 -0800 | [diff] [blame] | 202 | if (!priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled && |
| 203 | !priv->sec_info.wpa2_enabled && ((!bss_desc->bcn_wpa_ie) || |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 204 | ((*(bss_desc->bcn_wpa_ie)).vend_hdr.element_id != |
Arend van Spriel | 04b2312 | 2012-10-12 12:28:14 +0200 | [diff] [blame] | 205 | WLAN_EID_VENDOR_SPECIFIC)) && |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 206 | ((!bss_desc->bcn_rsn_ie) || |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 207 | ((*(bss_desc->bcn_rsn_ie)).ieee_hdr.element_id != |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 208 | WLAN_EID_RSN)) && |
| 209 | !priv->sec_info.encryption_mode && !bss_desc->privacy) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 220 | mwifiex_is_bss_static_wep(struct mwifiex_private *priv, |
| 221 | struct mwifiex_bssdescriptor *bss_desc) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 222 | { |
Amitkumar Karwar | 5eb02e4 | 2012-02-24 21:36:04 -0800 | [diff] [blame] | 223 | if (priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled && |
| 224 | !priv->sec_info.wpa2_enabled && bss_desc->privacy) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 235 | mwifiex_is_bss_wpa(struct mwifiex_private *priv, |
| 236 | struct mwifiex_bssdescriptor *bss_desc) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 237 | { |
Amitkumar Karwar | 5eb02e4 | 2012-02-24 21:36:04 -0800 | [diff] [blame] | 238 | if (!priv->sec_info.wep_enabled && priv->sec_info.wpa_enabled && |
| 239 | !priv->sec_info.wpa2_enabled && ((bss_desc->bcn_wpa_ie) && |
Arend van Spriel | 04b2312 | 2012-10-12 12:28:14 +0200 | [diff] [blame] | 240 | ((*(bss_desc->bcn_wpa_ie)). |
| 241 | vend_hdr.element_id == WLAN_EID_VENDOR_SPECIFIC)) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 242 | /* |
| 243 | * Privacy bit may NOT be set in some APs like |
| 244 | * LinkSys WRT54G && bss_desc->privacy |
| 245 | */ |
| 246 | ) { |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 247 | dev_dbg(priv->adapter->dev, "info: %s: WPA:" |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 248 | " wpa_ie=%#x wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s " |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 249 | "EncMode=%#x privacy=%#x\n", __func__, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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, |
Amitkumar Karwar | 5eb02e4 | 2012-02-24 21:36:04 -0800 | [diff] [blame] | 256 | (priv->sec_info.wep_enabled) ? "e" : "d", |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 271 | mwifiex_is_bss_wpa2(struct mwifiex_private *priv, |
| 272 | struct mwifiex_bssdescriptor *bss_desc) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 273 | { |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 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 | */ |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 283 | dev_dbg(priv->adapter->dev, "info: %s: WPA2: " |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 284 | " wpa_ie=%#x wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s " |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 285 | "EncMode=%#x privacy=%#x\n", __func__, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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, |
Amitkumar Karwar | 5eb02e4 | 2012-02-24 21:36:04 -0800 | [diff] [blame] | 292 | (priv->sec_info.wep_enabled) ? "e" : "d", |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 307 | mwifiex_is_bss_adhoc_aes(struct mwifiex_private *priv, |
| 308 | struct mwifiex_bssdescriptor *bss_desc) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 309 | { |
Amitkumar Karwar | 5eb02e4 | 2012-02-24 21:36:04 -0800 | [diff] [blame] | 310 | if (!priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled && |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 311 | !priv->sec_info.wpa2_enabled && |
| 312 | ((!bss_desc->bcn_wpa_ie) || |
Arend van Spriel | 04b2312 | 2012-10-12 12:28:14 +0200 | [diff] [blame] | 313 | ((*(bss_desc->bcn_wpa_ie)). |
| 314 | vend_hdr.element_id != WLAN_EID_VENDOR_SPECIFIC)) && |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 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) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 328 | mwifiex_is_bss_dynamic_wep(struct mwifiex_private *priv, |
| 329 | struct mwifiex_bssdescriptor *bss_desc) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 330 | { |
Amitkumar Karwar | 5eb02e4 | 2012-02-24 21:36:04 -0800 | [diff] [blame] | 331 | if (!priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled && |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 332 | !priv->sec_info.wpa2_enabled && |
| 333 | ((!bss_desc->bcn_wpa_ie) || |
Arend van Spriel | 04b2312 | 2012-10-12 12:28:14 +0200 | [diff] [blame] | 334 | ((*(bss_desc->bcn_wpa_ie)). |
| 335 | vend_hdr.element_id != WLAN_EID_VENDOR_SPECIFIC)) && |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 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) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 339 | dev_dbg(priv->adapter->dev, "info: %s: dynamic " |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 340 | "WEP: wpa_ie=%#x wpa2_ie=%#x " |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 341 | "EncMode=%#x privacy=%#x\n", |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 342 | __func__, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 375 | mwifiex_is_network_compatible(struct mwifiex_private *priv, |
| 376 | struct mwifiex_bssdescriptor *bss_desc, u32 mode) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 377 | { |
| 378 | struct mwifiex_adapter *adapter = priv->adapter; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 379 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 380 | bss_desc->disable_11n = false; |
| 381 | |
| 382 | /* Don't check for compatibility if roaming */ |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 383 | if (priv->media_connected && |
| 384 | (priv->bss_mode == NL80211_IFTYPE_STATION) && |
| 385 | (bss_desc->bss_mode == NL80211_IFTYPE_STATION)) |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 386 | return 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 387 | |
| 388 | if (priv->wps.session_enable) { |
| 389 | dev_dbg(adapter->dev, |
| 390 | "info: return success directly in WPS period\n"); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 391 | return 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 392 | } |
| 393 | |
Amitkumar Karwar | 2a7305c | 2013-06-19 08:49:05 -0700 | [diff] [blame] | 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 | |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 400 | if (mwifiex_is_bss_wapi(priv, bss_desc)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 401 | dev_dbg(adapter->dev, "info: return success for WAPI AP\n"); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 402 | return 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | if (bss_desc->bss_mode == mode) { |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 406 | if (mwifiex_is_bss_no_sec(priv, bss_desc)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 407 | /* No security */ |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 408 | return 0; |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 409 | } else if (mwifiex_is_bss_static_wep(priv, bss_desc)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 410 | /* Static WEP enabled */ |
| 411 | dev_dbg(adapter->dev, "info: Disable 11n in WEP mode.\n"); |
| 412 | bss_desc->disable_11n = true; |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 413 | return 0; |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 414 | } else if (mwifiex_is_bss_wpa(priv, bss_desc)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 415 | /* WPA enabled */ |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 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)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 421 | |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 422 | if (mwifiex_is_wpa_oui_present |
| 423 | (bss_desc, CIPHER_SUITE_TKIP)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | } |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 432 | return 0; |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 433 | } else if (mwifiex_is_bss_wpa2(priv, bss_desc)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 434 | /* WPA2 enabled */ |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 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)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 440 | |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 441 | if (mwifiex_is_rsn_oui_present |
| 442 | (bss_desc, CIPHER_SUITE_TKIP)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | } |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 451 | return 0; |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 452 | } else if (mwifiex_is_bss_adhoc_aes(priv, bss_desc)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 453 | /* Ad-hoc AES enabled */ |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 454 | return 0; |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 455 | } else if (mwifiex_is_bss_dynamic_wep(priv, bss_desc)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 456 | /* Dynamic WEP enabled */ |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 457 | return 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | /* Security doesn't match */ |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 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); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 472 | return -1; |
| 473 | } |
| 474 | |
| 475 | /* Mode doesn't match */ |
| 476 | return -1; |
| 477 | } |
| 478 | |
| 479 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | */ |
Amitkumar Karwar | 658f37b | 2012-06-06 21:12:42 -0700 | [diff] [blame] | 486 | static int |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 487 | mwifiex_scan_create_channel_list(struct mwifiex_private *priv, |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 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) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Amitkumar Karwar | d06b7b9 | 2011-09-21 21:43:22 -0700 | [diff] [blame] | 507 | for (i = 0; (i < sband->n_channels) ; i++) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 508 | ch = &sband->channels[i]; |
| 509 | if (ch->flags & IEEE80211_CHAN_DISABLED) |
| 510 | continue; |
| 511 | scan_chan_list[chan_idx].radio_type = band; |
Amitkumar Karwar | 186630c | 2011-12-15 21:00:37 -0800 | [diff] [blame] | 512 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 513 | if (user_scan_in && |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 514 | user_scan_in->chan_list[0].scan_time) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 515 | scan_chan_list[chan_idx].max_scan_time = |
| 516 | cpu_to_le16((u16) user_scan_in-> |
| 517 | chan_list[0].scan_time); |
Luis R. Rodriguez | 8fe02e1 | 2013-10-21 19:22:25 +0200 | [diff] [blame] | 518 | else if (ch->flags & IEEE80211_CHAN_NO_IR) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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); |
Amitkumar Karwar | 186630c | 2011-12-15 21:00:37 -0800 | [diff] [blame] | 524 | |
Luis R. Rodriguez | 8fe02e1 | 2013-10-21 19:22:25 +0200 | [diff] [blame] | 525 | if (ch->flags & IEEE80211_CHAN_NO_IR) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | } |
Amitkumar Karwar | d06b7b9 | 2011-09-21 21:43:22 -0700 | [diff] [blame] | 539 | chan_idx++; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | } |
Amitkumar Karwar | 658f37b | 2012-06-06 21:12:42 -0700 | [diff] [blame] | 543 | return chan_idx; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 544 | } |
| 545 | |
Avinash Patil | 78dfca6 | 2013-07-30 17:18:56 -0700 | [diff] [blame] | 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 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 587 | mwifiex_scan_channel_list(struct mwifiex_private *priv, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Amitkumar Karwar | 21f58d20 | 2014-02-11 18:39:56 -0800 | [diff] [blame^] | 598 | u32 tlv_idx, rates_size, cmd_no; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 599 | u32 total_scan_time; |
| 600 | u32 done_early; |
Avinash Patil | 78dfca6 | 2013-07-30 17:18:56 -0700 | [diff] [blame] | 601 | u8 radio_type; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Amitkumar Karwar | b887664 | 2013-06-18 16:36:58 -0700 | [diff] [blame] | 610 | /* Check csa channel expiry before preparing scan list */ |
| 611 | mwifiex_11h_get_csa_closed_channel(priv); |
| 612 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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; |
Avinash Patil | 78dfca6 | 2013-07-30 17:18:56 -0700 | [diff] [blame] | 626 | radio_type = 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | */ |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 640 | while (tlv_idx < max_chan_per_scan && |
| 641 | tmp_chan_list->chan_number && !done_early) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 642 | |
Amitkumar Karwar | b887664 | 2013-06-18 16:36:58 -0700 | [diff] [blame] | 643 | if (tmp_chan_list->chan_number == priv->csa_chan) { |
| 644 | tmp_chan_list++; |
| 645 | continue; |
| 646 | } |
| 647 | |
Avinash Patil | 78dfca6 | 2013-07-30 17:18:56 -0700 | [diff] [blame] | 648 | radio_type = tmp_chan_list->radio_type; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 649 | dev_dbg(priv->adapter->dev, |
| 650 | "info: Scan: Chan(%3d), Radio(%d)," |
| 651 | " Mode(%d, %d), Dur(%d)\n", |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 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)); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 */ |
Wei Yongjun | 5570a91 | 2012-09-28 12:59:43 +0800 | [diff] [blame] | 668 | le16_add_cpu(&chan_tlv_out->header.len, |
| 669 | sizeof(chan_tlv_out->chan_scan_param)); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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. */ |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 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)) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 */ |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 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)) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Avinash Patil | 78dfca6 | 2013-07-30 17:18:56 -0700 | [diff] [blame] | 729 | rates_size = mwifiex_append_rate_tlv(priv, scan_cfg_out, |
| 730 | radio_type); |
| 731 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 732 | priv->adapter->scan_channels = start_chan; |
| 733 | |
| 734 | /* Send the scan command to the firmware with the specified |
| 735 | cfg */ |
Amitkumar Karwar | 21f58d20 | 2014-02-11 18:39:56 -0800 | [diff] [blame^] | 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_async(priv, cmd_no, HostCmd_ACT_GEN_SET, |
| 742 | 0, scan_cfg_out); |
Avinash Patil | 78dfca6 | 2013-07-30 17:18:56 -0700 | [diff] [blame] | 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 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 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) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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; |
Amitkumar Karwar | 21f58d20 | 2014-02-11 18:39:56 -0800 | [diff] [blame^] | 793 | struct mwifiex_ie_types_bssid_list *bssid_tlv; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 794 | u8 *tlv_pos; |
| 795 | u32 num_probes; |
| 796 | u32 ssid_len; |
| 797 | u32 chan_idx; |
Amitkumar Karwar | 658f37b | 2012-06-06 21:12:42 -0700 | [diff] [blame] | 798 | u32 chan_num; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 799 | u32 scan_type; |
| 800 | u16 scan_dur; |
| 801 | u8 channel; |
| 802 | u8 radio_type; |
Amitkumar Karwar | be0b281 | 2012-02-27 22:04:15 -0800 | [diff] [blame] | 803 | int i; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 804 | u8 ssid_filter; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Amitkumar Karwar | 21f58d20 | 2014-02-11 18:39:56 -0800 | [diff] [blame^] | 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 | |
Amitkumar Karwar | be0b281 | 2012-02-27 22:04:15 -0800 | [diff] [blame] | 867 | for (i = 0; i < user_scan_in->num_ssids; i++) { |
| 868 | ssid_len = user_scan_in->ssid_list[i].ssid_len; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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))); |
Amitkumar Karwar | fada105 | 2011-11-09 21:36:21 -0800 | [diff] [blame] | 878 | |
Amitkumar Karwar | be0b281 | 2012-02-27 22:04:15 -0800 | [diff] [blame] | 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; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 890 | |
| 891 | memcpy(wildcard_ssid_tlv->ssid, |
Amitkumar Karwar | be0b281 | 2012-02-27 22:04:15 -0800 | [diff] [blame] | 892 | user_scan_in->ssid_list[i].ssid, ssid_len); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 893 | |
| 894 | tlv_pos += (sizeof(wildcard_ssid_tlv->header) |
| 895 | + le16_to_cpu(wildcard_ssid_tlv->header.len)); |
| 896 | |
Amitkumar Karwar | be0b281 | 2012-02-27 22:04:15 -0800 | [diff] [blame] | 897 | dev_dbg(adapter->dev, "info: scan: ssid[%d]: %s, %d\n", |
| 898 | i, wildcard_ssid_tlv->ssid, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | */ |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 915 | if ((i && ssid_filter) || |
Bing Zhao | 84f6a95 | 2012-08-27 20:32:54 -0700 | [diff] [blame] | 916 | !is_zero_ether_addr(scan_cfg_out->specific_bssid)) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 |
Amitkumar Karwar | 658f37b | 2012-06-06 21:12:42 -0700 | [diff] [blame] | 930 | *max_chan_per_scan = MWIFIEX_DEF_CHANNELS_PER_SCAN_CMD; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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", |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 937 | num_probes); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 950 | if (ISSUPP_11NENABLED(priv->adapter->fw_cap_info) && |
| 951 | (priv->adapter->config_bands & BAND_GN || |
| 952 | priv->adapter->config_bands & BAND_AN)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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)); |
Amitkumar Karwar | a46b7b5 | 2011-04-27 19:13:12 -0700 | [diff] [blame] | 958 | radio_type = |
| 959 | mwifiex_band_to_radio_type(priv->adapter->config_bands); |
| 960 | mwifiex_fill_cap_info(priv, radio_type, ht_cap); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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; |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 981 | chan_idx < MWIFIEX_USER_SCAN_CHAN_MAX && |
| 982 | user_scan_in->chan_list[chan_idx].chan_number; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Amitkumar Karwar | f3e1af3 | 2012-10-19 19:19:18 -0700 | [diff] [blame] | 1003 | if (*filtered_scan) |
| 1004 | (scan_chan_list + |
| 1005 | chan_idx)->chan_scan_mode_bitmap |
| 1006 | |= MWIFIEX_DISABLE_CHAN_FILT; |
| 1007 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 */ |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1027 | if ((chan_idx == 1) && |
| 1028 | (user_scan_in->chan_list[0].chan_number == |
| 1029 | priv->curr_bss_params.bss_descriptor.channel)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1030 | *scan_current_only = true; |
| 1031 | dev_dbg(adapter->dev, |
| 1032 | "info: Scan: Scanning current channel only\n"); |
| 1033 | } |
Amitkumar Karwar | 658f37b | 2012-06-06 21:12:42 -0700 | [diff] [blame] | 1034 | chan_num = chan_idx; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1035 | } else { |
| 1036 | dev_dbg(adapter->dev, |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1037 | "info: Scan: Creating full region channel list\n"); |
Amitkumar Karwar | 658f37b | 2012-06-06 21:12:42 -0700 | [diff] [blame] | 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; |
Amitkumar Karwar | b7525db | 2012-08-03 18:06:03 -0700 | [diff] [blame] | 1056 | else |
| 1057 | *max_chan_per_scan = 4; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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", |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1086 | tlv_buf_size); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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); |
Joe Perches | 2c20889 | 2012-06-04 12:44:17 +0000 | [diff] [blame] | 1103 | *tlv_data = current_tlv; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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); |
Joe Perches | 2c20889 | 2012-06-04 12:44:17 +0000 | [diff] [blame] | 1108 | *tlv_data = current_tlv; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | /* |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1132 | * This function parses provided beacon buffer and updates |
| 1133 | * respective fields in bss descriptor structure. |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1134 | */ |
Amitkumar Karwar | 9558a40 | 2012-04-16 21:36:51 -0700 | [diff] [blame] | 1135 | int mwifiex_update_bss_desc_with_ie(struct mwifiex_adapter *adapter, |
| 1136 | struct mwifiex_bssdescriptor *bss_entry) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1150 | u8 found_data_rate_ie; |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1151 | u32 bytes_left; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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; |
Amitkumar Karwar | 9558a40 | 2012-04-16 21:36:51 -0700 | [diff] [blame] | 1158 | current_ptr = bss_entry->beacon_buf; |
| 1159 | bytes_left = bss_entry->beacon_buf_size; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1160 | |
| 1161 | /* Process variable IE */ |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1162 | while (bytes_left >= 2) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1163 | element_id = *current_ptr; |
| 1164 | element_len = *(current_ptr + 1); |
| 1165 | total_ie_len = element_len + sizeof(struct ieee_types_header); |
| 1166 | |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1167 | if (bytes_left < total_ie_len) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1168 | dev_err(adapter->dev, "err: InterpretIE: in processing" |
| 1169 | " IE, bytes left < IE length\n"); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1170 | return -1; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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); |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1177 | dev_dbg(adapter->dev, |
| 1178 | "info: InterpretIE: ssid: %-32s\n", |
| 1179 | bss_entry->ssid.ssid); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Amitkumar Karwar | 2a7305c | 2013-06-19 08:49:05 -0700 | [diff] [blame] | 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 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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; |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1280 | bss_entry->wpa_offset = (u16) |
| 1281 | (current_ptr - bss_entry->beacon_buf); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1282 | } else if (!memcmp(vendor_ie->vend_hdr.oui, wmm_oui, |
| 1283 | sizeof(wmm_oui))) { |
| 1284 | if (total_ie_len == |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1285 | sizeof(struct ieee_types_wmm_parameter) || |
| 1286 | total_ie_len == |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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; |
Johannes Berg | 074d46d | 2012-03-15 19:45:16 +0100 | [diff] [blame] | 1317 | case WLAN_EID_HT_OPERATION: |
| 1318 | bss_entry->bcn_ht_oper = |
| 1319 | (struct ieee80211_ht_operation *)(current_ptr + |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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; |
Yogesh Ashok Powar | a5f3905 | 2013-02-15 21:44:30 -0800 | [diff] [blame] | 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; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1342 | case WLAN_EID_BSS_COEX_2040: |
Joe Perches | 2c20889 | 2012-06-04 12:44:17 +0000 | [diff] [blame] | 1343 | bss_entry->bcn_bss_co_2040 = current_ptr + |
| 1344 | sizeof(struct ieee_types_header); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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: |
Joe Perches | 2c20889 | 2012-06-04 12:44:17 +0000 | [diff] [blame] | 1350 | bss_entry->bcn_ext_cap = current_ptr + |
| 1351 | sizeof(struct ieee_types_header); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1352 | bss_entry->ext_cap_offset = (u16) (current_ptr + |
| 1353 | sizeof(struct ieee_types_header) - |
| 1354 | bss_entry->beacon_buf); |
| 1355 | break; |
Yogesh Ashok Powar | a5f3905 | 2013-02-15 21:44:30 -0800 | [diff] [blame] | 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; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1364 | default: |
| 1365 | break; |
| 1366 | } |
| 1367 | |
| 1368 | current_ptr += element_len + 2; |
| 1369 | |
| 1370 | /* Need to account for IE ID and IE Len */ |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1371 | bytes_left -= (element_len + 2); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1372 | |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1373 | } /* while (bytes_left > 2) */ |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1374 | return ret; |
| 1375 | } |
| 1376 | |
| 1377 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1384 | switch (radio_type) { |
| 1385 | case HostCmd_SCAN_RADIO_TYPE_A: |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 1386 | return BAND_A; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1387 | case HostCmd_SCAN_RADIO_TYPE_BG: |
| 1388 | default: |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 1389 | return BAND_G; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1390 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1391 | } |
| 1392 | |
| 1393 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | */ |
Amitkumar Karwar | 1a1fb97 | 2012-06-27 19:57:56 -0700 | [diff] [blame] | 1401 | int mwifiex_scan_networks(struct mwifiex_private *priv, |
| 1402 | const struct mwifiex_user_scan_cfg *user_scan_in) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1403 | { |
Bing Zhao | c247633 | 2012-10-05 20:21:40 -0700 | [diff] [blame] | 1404 | int ret; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1405 | struct mwifiex_adapter *adapter = priv->adapter; |
Yogesh Ashok Powar | 270e58e | 2011-05-03 20:11:46 -0700 | [diff] [blame] | 1406 | struct cmd_ctrl_node *cmd_node; |
| 1407 | union mwifiex_scan_cmd_config_tlv *scan_cfg_out; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1408 | struct mwifiex_ie_types_chan_list_param_set *chan_list_out; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1409 | struct mwifiex_chan_scan_param_set *scan_chan_list; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1410 | u8 filtered_scan; |
| 1411 | u8 scan_current_chan_only; |
| 1412 | u8 max_chan_per_scan; |
| 1413 | unsigned long flags; |
| 1414 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1415 | if (adapter->scan_processing) { |
Bing Zhao | c247633 | 2012-10-05 20:21:40 -0700 | [diff] [blame] | 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; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1430 | scan_cfg_out = kzalloc(sizeof(union mwifiex_scan_cmd_config_tlv), |
Joe Perches | 0d2e7a5 | 2013-02-03 17:28:14 +0000 | [diff] [blame] | 1431 | GFP_KERNEL); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1432 | if (!scan_cfg_out) { |
Amitkumar Karwar | 061f2e6 | 2012-10-05 20:21:41 -0700 | [diff] [blame] | 1433 | ret = -ENOMEM; |
| 1434 | goto done; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1435 | } |
| 1436 | |
Joe Perches | 0d2e7a5 | 2013-02-03 17:28:14 +0000 | [diff] [blame] | 1437 | scan_chan_list = kcalloc(MWIFIEX_USER_SCAN_CHAN_MAX, |
| 1438 | sizeof(struct mwifiex_chan_scan_param_set), |
| 1439 | GFP_KERNEL); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1440 | if (!scan_chan_list) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1441 | kfree(scan_cfg_out); |
Amitkumar Karwar | 061f2e6 | 2012-10-05 20:21:41 -0700 | [diff] [blame] | 1442 | ret = -ENOMEM; |
| 1443 | goto done; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1444 | } |
| 1445 | |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 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); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1449 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 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); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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, |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1459 | struct cmd_ctrl_node, list); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1460 | list_del(&cmd_node->list); |
| 1461 | spin_unlock_irqrestore(&adapter->scan_pending_q_lock, |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1462 | flags); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1463 | mwifiex_insert_cmd_to_pending_q(adapter, cmd_node, |
| 1464 | true); |
Amitkumar Karwar | 1a1fb97 | 2012-06-27 19:57:56 -0700 | [diff] [blame] | 1465 | queue_work(adapter->workqueue, &adapter->main_work); |
Amitkumar Karwar | 00d7ea1 | 2013-03-15 18:47:05 -0700 | [diff] [blame] | 1466 | |
| 1467 | /* Perform internal scan synchronously */ |
Bing Zhao | 21de979 | 2013-04-01 12:44:45 -0700 | [diff] [blame] | 1468 | if (!priv->scan_request) { |
| 1469 | dev_dbg(adapter->dev, "wait internal scan\n"); |
Amitkumar Karwar | 00d7ea1 | 2013-03-15 18:47:05 -0700 | [diff] [blame] | 1470 | mwifiex_wait_queue_complete(adapter, cmd_node); |
Bing Zhao | 21de979 | 2013-04-01 12:44:45 -0700 | [diff] [blame] | 1471 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1472 | } else { |
| 1473 | spin_unlock_irqrestore(&adapter->scan_pending_q_lock, |
| 1474 | flags); |
| 1475 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1476 | } |
| 1477 | |
| 1478 | kfree(scan_cfg_out); |
| 1479 | kfree(scan_chan_list); |
Amitkumar Karwar | 061f2e6 | 2012-10-05 20:21:41 -0700 | [diff] [blame] | 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 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | */ |
Amitkumar Karwar | a5ffddb | 2011-06-20 15:21:48 -0700 | [diff] [blame] | 1503 | int mwifiex_cmd_802_11_scan(struct host_cmd_ds_command *cmd, |
| 1504 | struct mwifiex_scan_cmd_config *scan_cfg) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1505 | { |
| 1506 | struct host_cmd_ds_802_11_scan *scan_cmd = &cmd->params.scan; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | /* |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 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 | |
Yogesh Ashok Powar | 6685d10 | 2012-03-12 19:35:10 -0700 | [diff] [blame] | 1536 | if ((mwifiex_get_cfp(priv, (u8) bss_desc->bss_band, |
| 1537 | (u16) bss_desc->channel, 0))) { |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 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) |
Amitkumar Karwar | 0697588 | 2012-10-05 20:21:42 -0700 | [diff] [blame] | 1544 | dev_err(priv->adapter->dev, |
| 1545 | "Incompatible network settings\n"); |
Fengguang Wu | 2f9279b | 2012-08-07 10:26:53 +0800 | [diff] [blame] | 1546 | break; |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1547 | default: |
Fengguang Wu | 2f9279b | 2012-08-07 10:26:53 +0800 | [diff] [blame] | 1548 | ret = 0; |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1549 | } |
| 1550 | } |
| 1551 | |
| 1552 | return ret; |
| 1553 | } |
| 1554 | |
Amitkumar Karwar | 9558a40 | 2012-04-16 21:36:51 -0700 | [diff] [blame] | 1555 | static int mwifiex_update_curr_bss_params(struct mwifiex_private *priv, |
| 1556 | struct cfg80211_bss *bss) |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1557 | { |
Jesper Juhl | db652e4 | 2011-11-06 22:58:31 +0100 | [diff] [blame] | 1558 | struct mwifiex_bssdescriptor *bss_desc; |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1559 | int ret; |
| 1560 | unsigned long flags; |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1561 | |
| 1562 | /* Allocate and fill new bss descriptor */ |
Joe Perches | 0d2e7a5 | 2013-02-03 17:28:14 +0000 | [diff] [blame] | 1563 | bss_desc = kzalloc(sizeof(struct mwifiex_bssdescriptor), GFP_KERNEL); |
| 1564 | if (!bss_desc) |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1565 | return -ENOMEM; |
Yogesh Ashok Powar | 5982b47 | 2011-08-29 13:21:10 -0700 | [diff] [blame] | 1566 | |
Amitkumar Karwar | 9558a40 | 2012-04-16 21:36:51 -0700 | [diff] [blame] | 1567 | ret = mwifiex_fill_new_bss_desc(priv, bss, bss_desc); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1568 | if (ret) |
| 1569 | goto done; |
| 1570 | |
| 1571 | ret = mwifiex_check_network_compatibility(priv, bss_desc); |
| 1572 | if (ret) |
| 1573 | goto done; |
| 1574 | |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1575 | spin_lock_irqsave(&priv->curr_bcn_buf_lock, flags); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1576 | /* Make a copy of current BSSID descriptor */ |
| 1577 | memcpy(&priv->curr_bss_params.bss_descriptor, bss_desc, |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1578 | sizeof(priv->curr_bss_params.bss_descriptor)); |
Bing Zhao | d837a2a | 2013-04-12 10:34:17 -0700 | [diff] [blame] | 1579 | |
| 1580 | /* The contents of beacon_ie will be copied to its own buffer |
| 1581 | * in mwifiex_save_curr_bcn() |
| 1582 | */ |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1583 | mwifiex_save_curr_bcn(priv); |
| 1584 | spin_unlock_irqrestore(&priv->curr_bcn_buf_lock, flags); |
| 1585 | |
| 1586 | done: |
Bing Zhao | d837a2a | 2013-04-12 10:34:17 -0700 | [diff] [blame] | 1587 | /* beacon_ie buffer was allocated in function |
| 1588 | * mwifiex_fill_new_bss_desc(). Free it now. |
| 1589 | */ |
| 1590 | kfree(bss_desc->beacon_buf); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1591 | kfree(bss_desc); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1592 | return 0; |
| 1593 | } |
| 1594 | |
Amitkumar Karwar | 3b4d5c6 | 2014-02-07 16:23:35 -0800 | [diff] [blame] | 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, |
Amitkumar Karwar | 21f58d20 | 2014-02-11 18:39:56 -0800 | [diff] [blame^] | 1598 | bool ext_scan, s32 rssi_val) |
Amitkumar Karwar | 3b4d5c6 | 2014-02-07 16:23:35 -0800 | [diff] [blame] | 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); |
Amitkumar Karwar | 21f58d20 | 2014-02-11 18:39:56 -0800 | [diff] [blame^] | 1661 | } else { |
| 1662 | rssi = rssi_val; |
Amitkumar Karwar | 3b4d5c6 | 2014-02-07 16:23:35 -0800 | [diff] [blame] | 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 | |
Amitkumar Karwar | d44b5c2 | 2014-02-07 16:23:36 -0800 | [diff] [blame] | 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 | |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1817 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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, |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1837 | struct host_cmd_ds_command *resp) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1838 | { |
| 1839 | int ret = 0; |
| 1840 | struct mwifiex_adapter *adapter = priv->adapter; |
Yogesh Ashok Powar | 270e58e | 2011-05-03 20:11:46 -0700 | [diff] [blame] | 1841 | struct host_cmd_ds_802_11_scan_rsp *scan_rsp; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1847 | u32 idx; |
| 1848 | u32 tlv_buf_size; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1849 | struct mwifiex_ie_types_chan_band_list_param_set *chan_band_tlv; |
| 1850 | struct chan_band_param_set *chan_band; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1851 | u8 is_bgscan_resp; |
Amitkumar Karwar | 3b4d5c6 | 2014-02-07 16:23:35 -0800 | [diff] [blame] | 1852 | __le64 fw_tsf = 0; |
| 1853 | u8 *radio_type; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1854 | |
| 1855 | is_bgscan_resp = (le16_to_cpu(resp->command) |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1856 | == HostCmd_CMD_802_11_BG_SCAN_QUERY); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Bing Zhao | 67a5003 | 2011-07-13 18:38:34 -0700 | [diff] [blame] | 1863 | if (scan_rsp->number_of_sets > MWIFIEX_MAX_AP) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1864 | dev_err(adapter->dev, "SCAN_RESP: too many AP returned (%d)\n", |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1865 | scan_rsp->number_of_sets); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1866 | ret = -1; |
Bing Zhao | 8a7d7cb | 2013-01-29 14:38:02 -0800 | [diff] [blame] | 1867 | goto check_next_scan; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1868 | } |
| 1869 | |
Amitkumar Karwar | b887664 | 2013-06-18 16:36:58 -0700 | [diff] [blame] | 1870 | /* Check csa channel expiry before parsing scan response */ |
| 1871 | mwifiex_11h_get_csa_closed_channel(priv); |
| 1872 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1873 | bytes_left = le16_to_cpu(scan_rsp->bss_descript_size); |
| 1874 | dev_dbg(adapter->dev, "info: SCAN_RESP: bss_descript_size %d\n", |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1875 | bytes_left); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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", |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 1881 | scan_rsp->number_of_sets); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1882 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1914 | for (idx = 0; idx < scan_rsp->number_of_sets && bytes_left; idx++) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1915 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1916 | * If the TSF TLV was appended to the scan results, save this |
Amitkumar Karwar | b5abcf0 | 2012-04-16 21:36:52 -0700 | [diff] [blame] | 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. |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1920 | */ |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1921 | if (tsf_tlv) |
Amitkumar Karwar | b5abcf0 | 2012-04-16 21:36:52 -0700 | [diff] [blame] | 1922 | memcpy(&fw_tsf, &tsf_tlv->tsf_data[idx * TSF_DATA_SIZE], |
| 1923 | sizeof(fw_tsf)); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1924 | |
Amitkumar Karwar | 3b4d5c6 | 2014-02-07 16:23:35 -0800 | [diff] [blame] | 1925 | if (chan_band_tlv) { |
| 1926 | chan_band = &chan_band_tlv->chan_band_param[idx]; |
| 1927 | radio_type = &chan_band->radio_type; |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1928 | } else { |
Amitkumar Karwar | 3b4d5c6 | 2014-02-07 16:23:35 -0800 | [diff] [blame] | 1929 | radio_type = NULL; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1930 | } |
Amitkumar Karwar | 3b4d5c6 | 2014-02-07 16:23:35 -0800 | [diff] [blame] | 1931 | |
| 1932 | ret = mwifiex_parse_single_response_buf(priv, &bss_info, |
| 1933 | &bytes_left, |
| 1934 | le64_to_cpu(fw_tsf), |
Amitkumar Karwar | 21f58d20 | 2014-02-11 18:39:56 -0800 | [diff] [blame^] | 1935 | radio_type, false, 0); |
Amitkumar Karwar | 3b4d5c6 | 2014-02-07 16:23:35 -0800 | [diff] [blame] | 1936 | if (ret) |
| 1937 | goto check_next_scan; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1938 | } |
| 1939 | |
Bing Zhao | 8a7d7cb | 2013-01-29 14:38:02 -0800 | [diff] [blame] | 1940 | check_next_scan: |
Amitkumar Karwar | d44b5c2 | 2014-02-07 16:23:36 -0800 | [diff] [blame] | 1941 | mwifiex_check_next_scan_command(priv); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1942 | return ret; |
| 1943 | } |
| 1944 | |
| 1945 | /* |
Amitkumar Karwar | 21f58d20 | 2014-02-11 18:39:56 -0800 | [diff] [blame^] | 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 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | */ |
Amitkumar Karwar | 572e8f3 | 2011-04-13 17:27:08 -0700 | [diff] [blame] | 2114 | int mwifiex_cmd_802_11_bg_scan_query(struct host_cmd_ds_command *cmd) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 2138 | cmd_node->wait_q_enabled = true; |
Amitkumar Karwar | efaaa8b | 2011-10-12 20:28:06 -0700 | [diff] [blame] | 2139 | cmd_node->condition = &adapter->scan_wait_q_woken; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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, |
Amitkumar Karwar | b9be5f3 | 2012-02-27 22:04:14 -0800 | [diff] [blame] | 2150 | struct cfg80211_ssid *req_ssid) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2151 | { |
| 2152 | struct mwifiex_adapter *adapter = priv->adapter; |
Bing Zhao | dcd5c79 | 2012-10-19 19:01:59 -0700 | [diff] [blame] | 2153 | int ret; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2154 | struct mwifiex_user_scan_cfg *scan_cfg; |
| 2155 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 2156 | if (adapter->scan_processing) { |
Bing Zhao | dcd5c79 | 2012-10-19 19:01:59 -0700 | [diff] [blame] | 2157 | dev_err(adapter->dev, "cmd: Scan already in process...\n"); |
| 2158 | return -EBUSY; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2159 | } |
| 2160 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 2161 | if (priv->scan_block) { |
Bing Zhao | dcd5c79 | 2012-10-19 19:01:59 -0700 | [diff] [blame] | 2162 | dev_err(adapter->dev, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2163 | "cmd: Scan is blocked during association...\n"); |
Bing Zhao | dcd5c79 | 2012-10-19 19:01:59 -0700 | [diff] [blame] | 2164 | return -EBUSY; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2165 | } |
| 2166 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2167 | scan_cfg = kzalloc(sizeof(struct mwifiex_user_scan_cfg), GFP_KERNEL); |
Joe Perches | 0d2e7a5 | 2013-02-03 17:28:14 +0000 | [diff] [blame] | 2168 | if (!scan_cfg) |
Christoph Fritz | b53575e | 2011-05-08 22:50:09 +0200 | [diff] [blame] | 2169 | return -ENOMEM; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2170 | |
Amitkumar Karwar | be0b281 | 2012-02-27 22:04:15 -0800 | [diff] [blame] | 2171 | scan_cfg->ssid_list = req_ssid; |
| 2172 | scan_cfg->num_ssids = 1; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2173 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 2174 | ret = mwifiex_scan_networks(priv, scan_cfg); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | */ |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 2189 | int mwifiex_request_scan(struct mwifiex_private *priv, |
Amitkumar Karwar | b9be5f3 | 2012-02-27 22:04:14 -0800 | [diff] [blame] | 2190 | struct cfg80211_ssid *req_ssid) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2191 | { |
Yogesh Ashok Powar | 270e58e | 2011-05-03 20:11:46 -0700 | [diff] [blame] | 2192 | int ret; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2193 | |
| 2194 | if (down_interruptible(&priv->async_sem)) { |
| 2195 | dev_err(priv->adapter->dev, "%s: acquire semaphore\n", |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 2196 | __func__); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2197 | return -1; |
| 2198 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2199 | |
Amitkumar Karwar | efaaa8b | 2011-10-12 20:28:06 -0700 | [diff] [blame] | 2200 | priv->adapter->scan_wait_q_woken = false; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2201 | |
| 2202 | if (req_ssid && req_ssid->ssid_len != 0) |
| 2203 | /* Specific SSID scan */ |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 2204 | ret = mwifiex_scan_specific_ssid(priv, req_ssid); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2205 | else |
| 2206 | /* Normal scan */ |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 2207 | ret = mwifiex_scan_networks(priv, NULL); |
| 2208 | |
Amitkumar Karwar | b0e70c2 | 2012-10-19 19:19:17 -0700 | [diff] [blame] | 2209 | up(&priv->async_sem); |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 2210 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | |
Amitkumar Karwar | 030fe79 | 2011-04-27 19:13:13 -0700 | [diff] [blame] | 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 || |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 2274 | priv->curr_bcn_size != curr_bss->beacon_buf_size) { |
Amitkumar Karwar | 030fe79 | 2011-04-27 19:13:13 -0700 | [diff] [blame] | 2275 | priv->curr_bcn_size = curr_bss->beacon_buf_size; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2276 | |
| 2277 | kfree(priv->curr_bcn_buf); |
Yogesh Ashok Powar | 5982b47 | 2011-08-29 13:21:10 -0700 | [diff] [blame] | 2278 | priv->curr_bcn_buf = kmalloc(curr_bss->beacon_buf_size, |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 2279 | GFP_ATOMIC); |
Joe Perches | 0d2e7a5 | 2013-02-03 17:28:14 +0000 | [diff] [blame] | 2280 | if (!priv->curr_bcn_buf) |
Amitkumar Karwar | 030fe79 | 2011-04-27 19:13:13 -0700 | [diff] [blame] | 2281 | return; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 2282 | } |
Amitkumar Karwar | 030fe79 | 2011-04-27 19:13:13 -0700 | [diff] [blame] | 2283 | |
| 2284 | memcpy(priv->curr_bcn_buf, curr_bss->beacon_buf, |
Yogesh Ashok Powar | cff23ce | 2012-03-13 19:22:38 -0700 | [diff] [blame] | 2285 | curr_bss->beacon_buf_size); |
Amitkumar Karwar | 030fe79 | 2011-04-27 19:13:13 -0700 | [diff] [blame] | 2286 | dev_dbg(priv->adapter->dev, "info: current beacon saved %d\n", |
| 2287 | priv->curr_bcn_size); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 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 | |
Johannes Berg | 074d46d | 2012-03-15 19:45:16 +0100 | [diff] [blame] | 2308 | if (curr_bss->bcn_ht_oper) |
| 2309 | curr_bss->bcn_ht_oper = (struct ieee80211_ht_operation *) |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 2310 | (curr_bss->beacon_buf + |
| 2311 | curr_bss->ht_info_offset); |
| 2312 | |
Yogesh Ashok Powar | a5f3905 | 2013-02-15 21:44:30 -0800 | [diff] [blame] | 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 | |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 2321 | if (curr_bss->bcn_bss_co_2040) |
| 2322 | curr_bss->bcn_bss_co_2040 = |
Joe Perches | 2c20889 | 2012-06-04 12:44:17 +0000 | [diff] [blame] | 2323 | (curr_bss->beacon_buf + curr_bss->bss_co_2040_offset); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 2324 | |
| 2325 | if (curr_bss->bcn_ext_cap) |
Joe Perches | 2c20889 | 2012-06-04 12:44:17 +0000 | [diff] [blame] | 2326 | curr_bss->bcn_ext_cap = curr_bss->beacon_buf + |
| 2327 | curr_bss->ext_cap_offset; |
Yogesh Ashok Powar | a5f3905 | 2013-02-15 21:44:30 -0800 | [diff] [blame] | 2328 | |
| 2329 | if (curr_bss->oper_mode) |
| 2330 | curr_bss->oper_mode = (void *)(curr_bss->beacon_buf + |
| 2331 | curr_bss->oper_mode_offset); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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 | } |