Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1 | /** |
| 2 | * Functions implementing wlan scan IOCTL and firmware command APIs |
| 3 | * |
| 4 | * IOCTL handlers as well as command preperation and response routines |
| 5 | * for sending scan commands to the firmware. |
| 6 | */ |
| 7 | #include <linux/ctype.h> |
| 8 | #include <linux/if.h> |
| 9 | #include <linux/netdevice.h> |
| 10 | #include <linux/wireless.h> |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 11 | #include <linux/etherdevice.h> |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 12 | |
| 13 | #include <net/ieee80211.h> |
| 14 | #include <net/iw_handler.h> |
| 15 | |
| 16 | #include "host.h" |
| 17 | #include "decl.h" |
| 18 | #include "dev.h" |
| 19 | #include "scan.h" |
Dan Williams | 8c51276 | 2007-08-02 11:40:45 -0400 | [diff] [blame] | 20 | #include "join.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 21 | |
| 22 | //! Approximate amount of data needed to pass a scan result back to iwlist |
| 23 | #define MAX_SCAN_CELL_SIZE (IW_EV_ADDR_LEN \ |
| 24 | + IW_ESSID_MAX_SIZE \ |
| 25 | + IW_EV_UINT_LEN \ |
| 26 | + IW_EV_FREQ_LEN \ |
| 27 | + IW_EV_QUAL_LEN \ |
| 28 | + IW_ESSID_MAX_SIZE \ |
| 29 | + IW_EV_PARAM_LEN \ |
| 30 | + 40) /* 40 for WPAIE */ |
| 31 | |
| 32 | //! Memory needed to store a max sized channel List TLV for a firmware scan |
| 33 | #define CHAN_TLV_MAX_SIZE (sizeof(struct mrvlietypesheader) \ |
| 34 | + (MRVDRV_MAX_CHANNELS_PER_SCAN \ |
| 35 | * sizeof(struct chanscanparamset))) |
| 36 | |
| 37 | //! Memory needed to store a max number/size SSID TLV for a firmware scan |
| 38 | #define SSID_TLV_MAX_SIZE (1 * sizeof(struct mrvlietypes_ssidparamset)) |
| 39 | |
| 40 | //! Maximum memory needed for a wlan_scan_cmd_config with all TLVs at max |
| 41 | #define MAX_SCAN_CFG_ALLOC (sizeof(struct wlan_scan_cmd_config) \ |
| 42 | + sizeof(struct mrvlietypes_numprobes) \ |
| 43 | + CHAN_TLV_MAX_SIZE \ |
| 44 | + SSID_TLV_MAX_SIZE) |
| 45 | |
| 46 | //! The maximum number of channels the firmware can scan per command |
| 47 | #define MRVDRV_MAX_CHANNELS_PER_SCAN 14 |
| 48 | |
| 49 | /** |
| 50 | * @brief Number of channels to scan per firmware scan command issuance. |
| 51 | * |
| 52 | * Number restricted to prevent hitting the limit on the amount of scan data |
| 53 | * returned in a single firmware scan command. |
| 54 | */ |
| 55 | #define MRVDRV_CHANNELS_PER_SCAN_CMD 4 |
| 56 | |
| 57 | //! Scan time specified in the channel TLV for each channel for passive scans |
| 58 | #define MRVDRV_PASSIVE_SCAN_CHAN_TIME 100 |
| 59 | |
| 60 | //! Scan time specified in the channel TLV for each channel for active scans |
| 61 | #define MRVDRV_ACTIVE_SCAN_CHAN_TIME 100 |
| 62 | |
Dan Williams | 123e0e0 | 2007-05-25 23:23:43 -0400 | [diff] [blame] | 63 | static const u8 zeromac[ETH_ALEN] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; |
| 64 | static const u8 bcastmac[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 65 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 66 | static inline void clear_bss_descriptor (struct bss_descriptor * bss) |
| 67 | { |
| 68 | /* Don't blow away ->list, just BSS data */ |
| 69 | memset(bss, 0, offsetof(struct bss_descriptor, list)); |
| 70 | } |
| 71 | |
| 72 | static inline int match_bss_no_security(struct wlan_802_11_security * secinfo, |
| 73 | struct bss_descriptor * match_bss) |
| 74 | { |
| 75 | if ( !secinfo->wep_enabled |
| 76 | && !secinfo->WPAenabled |
| 77 | && !secinfo->WPA2enabled |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 78 | && match_bss->wpa_ie[0] != MFIE_TYPE_GENERIC |
| 79 | && match_bss->rsn_ie[0] != MFIE_TYPE_RSN |
Dan Williams | 0c9ca69 | 2007-08-02 10:43:44 -0400 | [diff] [blame] | 80 | && !(match_bss->capability & WLAN_CAPABILITY_PRIVACY)) { |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 81 | return 1; |
| 82 | } |
| 83 | return 0; |
| 84 | } |
| 85 | |
| 86 | static inline int match_bss_static_wep(struct wlan_802_11_security * secinfo, |
| 87 | struct bss_descriptor * match_bss) |
| 88 | { |
| 89 | if ( secinfo->wep_enabled |
| 90 | && !secinfo->WPAenabled |
| 91 | && !secinfo->WPA2enabled |
Dan Williams | 0c9ca69 | 2007-08-02 10:43:44 -0400 | [diff] [blame] | 92 | && (match_bss->capability & WLAN_CAPABILITY_PRIVACY)) { |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 93 | return 1; |
| 94 | } |
| 95 | return 0; |
| 96 | } |
| 97 | |
| 98 | static inline int match_bss_wpa(struct wlan_802_11_security * secinfo, |
| 99 | struct bss_descriptor * match_bss) |
| 100 | { |
| 101 | if ( !secinfo->wep_enabled |
| 102 | && secinfo->WPAenabled |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 103 | && (match_bss->wpa_ie[0] == MFIE_TYPE_GENERIC) |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 104 | /* privacy bit may NOT be set in some APs like LinkSys WRT54G |
Dan Williams | 0c9ca69 | 2007-08-02 10:43:44 -0400 | [diff] [blame] | 105 | && (match_bss->capability & WLAN_CAPABILITY_PRIVACY)) { |
| 106 | */ |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 107 | ) { |
| 108 | return 1; |
| 109 | } |
| 110 | return 0; |
| 111 | } |
| 112 | |
| 113 | static inline int match_bss_wpa2(struct wlan_802_11_security * secinfo, |
| 114 | struct bss_descriptor * match_bss) |
| 115 | { |
| 116 | if ( !secinfo->wep_enabled |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 117 | && secinfo->WPA2enabled |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 118 | && (match_bss->rsn_ie[0] == MFIE_TYPE_RSN) |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 119 | /* privacy bit may NOT be set in some APs like LinkSys WRT54G |
Dan Williams | 0c9ca69 | 2007-08-02 10:43:44 -0400 | [diff] [blame] | 120 | && (match_bss->capability & WLAN_CAPABILITY_PRIVACY)) { |
| 121 | */ |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 122 | ) { |
| 123 | return 1; |
| 124 | } |
| 125 | return 0; |
| 126 | } |
| 127 | |
| 128 | static inline int match_bss_dynamic_wep(struct wlan_802_11_security * secinfo, |
| 129 | struct bss_descriptor * match_bss) |
| 130 | { |
| 131 | if ( !secinfo->wep_enabled |
| 132 | && !secinfo->WPAenabled |
| 133 | && !secinfo->WPA2enabled |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 134 | && (match_bss->wpa_ie[0] != MFIE_TYPE_GENERIC) |
| 135 | && (match_bss->rsn_ie[0] != MFIE_TYPE_RSN) |
Dan Williams | 0c9ca69 | 2007-08-02 10:43:44 -0400 | [diff] [blame] | 136 | && (match_bss->capability & WLAN_CAPABILITY_PRIVACY)) { |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 137 | return 1; |
| 138 | } |
| 139 | return 0; |
| 140 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 141 | |
| 142 | /** |
| 143 | * @brief Check if a scanned network compatible with the driver settings |
| 144 | * |
| 145 | * WEP WPA WPA2 ad-hoc encrypt Network |
| 146 | * enabled enabled enabled AES mode privacy WPA WPA2 Compatible |
| 147 | * 0 0 0 0 NONE 0 0 0 yes No security |
| 148 | * 1 0 0 0 NONE 1 0 0 yes Static WEP |
| 149 | * 0 1 0 0 x 1x 1 x yes WPA |
| 150 | * 0 0 1 0 x 1x x 1 yes WPA2 |
| 151 | * 0 0 0 1 NONE 1 0 0 yes Ad-hoc AES |
| 152 | * 0 0 0 0 !=NONE 1 0 0 yes Dynamic WEP |
| 153 | * |
| 154 | * |
| 155 | * @param adapter A pointer to wlan_adapter |
| 156 | * @param index Index in scantable to check against current driver settings |
| 157 | * @param mode Network mode: Infrastructure or IBSS |
| 158 | * |
| 159 | * @return Index in scantable, or error code if negative |
| 160 | */ |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 161 | static int is_network_compatible(wlan_adapter * adapter, |
| 162 | struct bss_descriptor * bss, u8 mode) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 163 | { |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 164 | int matched = 0; |
| 165 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 166 | lbs_deb_enter(LBS_DEB_ASSOC); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 167 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 168 | if (bss->mode != mode) |
| 169 | goto done; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 170 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 171 | if ((matched = match_bss_no_security(&adapter->secinfo, bss))) { |
| 172 | goto done; |
| 173 | } else if ((matched = match_bss_static_wep(&adapter->secinfo, bss))) { |
| 174 | goto done; |
| 175 | } else if ((matched = match_bss_wpa(&adapter->secinfo, bss))) { |
| 176 | lbs_deb_scan( |
| 177 | "is_network_compatible() WPA: wpa_ie=%#x " |
| 178 | "wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s " |
| 179 | "privacy=%#x\n", bss->wpa_ie[0], bss->rsn_ie[0], |
Dan Williams | 889c05b | 2007-05-10 22:57:23 -0400 | [diff] [blame] | 180 | adapter->secinfo.wep_enabled ? "e" : "d", |
| 181 | adapter->secinfo.WPAenabled ? "e" : "d", |
| 182 | adapter->secinfo.WPA2enabled ? "e" : "d", |
Dan Williams | 0c9ca69 | 2007-08-02 10:43:44 -0400 | [diff] [blame] | 183 | (bss->capability & WLAN_CAPABILITY_PRIVACY)); |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 184 | goto done; |
| 185 | } else if ((matched = match_bss_wpa2(&adapter->secinfo, bss))) { |
| 186 | lbs_deb_scan( |
| 187 | "is_network_compatible() WPA2: wpa_ie=%#x " |
| 188 | "wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s " |
| 189 | "privacy=%#x\n", bss->wpa_ie[0], bss->rsn_ie[0], |
| 190 | adapter->secinfo.wep_enabled ? "e" : "d", |
| 191 | adapter->secinfo.WPAenabled ? "e" : "d", |
| 192 | adapter->secinfo.WPA2enabled ? "e" : "d", |
Dan Williams | 0c9ca69 | 2007-08-02 10:43:44 -0400 | [diff] [blame] | 193 | (bss->capability & WLAN_CAPABILITY_PRIVACY)); |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 194 | goto done; |
| 195 | } else if ((matched = match_bss_dynamic_wep(&adapter->secinfo, bss))) { |
| 196 | lbs_deb_scan( |
| 197 | "is_network_compatible() dynamic WEP: " |
| 198 | "wpa_ie=%#x wpa2_ie=%#x privacy=%#x\n", |
Dan Williams | 0c9ca69 | 2007-08-02 10:43:44 -0400 | [diff] [blame] | 199 | bss->wpa_ie[0], bss->rsn_ie[0], |
| 200 | (bss->capability & WLAN_CAPABILITY_PRIVACY)); |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 201 | goto done; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 202 | } |
| 203 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 204 | /* bss security settings don't match those configured on card */ |
| 205 | lbs_deb_scan( |
| 206 | "is_network_compatible() FAILED: wpa_ie=%#x " |
| 207 | "wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s privacy=%#x\n", |
| 208 | bss->wpa_ie[0], bss->rsn_ie[0], |
| 209 | adapter->secinfo.wep_enabled ? "e" : "d", |
| 210 | adapter->secinfo.WPAenabled ? "e" : "d", |
| 211 | adapter->secinfo.WPA2enabled ? "e" : "d", |
Dan Williams | 0c9ca69 | 2007-08-02 10:43:44 -0400 | [diff] [blame] | 212 | (bss->capability & WLAN_CAPABILITY_PRIVACY)); |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 213 | |
| 214 | done: |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 215 | lbs_deb_leave(LBS_DEB_SCAN); |
| 216 | return matched; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | /** |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 220 | * @brief Create a channel list for the driver to scan based on region info |
| 221 | * |
| 222 | * Use the driver region/band information to construct a comprehensive list |
| 223 | * of channels to scan. This routine is used for any scan that is not |
| 224 | * provided a specific channel list to scan. |
| 225 | * |
| 226 | * @param priv A pointer to wlan_private structure |
| 227 | * @param scanchanlist Output parameter: resulting channel list to scan |
| 228 | * @param filteredscan Flag indicating whether or not a BSSID or SSID filter |
| 229 | * is being sent in the command to firmware. Used to |
| 230 | * increase the number of channels sent in a scan |
| 231 | * command and to disable the firmware channel scan |
| 232 | * filter. |
| 233 | * |
| 234 | * @return void |
| 235 | */ |
| 236 | static void wlan_scan_create_channel_list(wlan_private * priv, |
| 237 | struct chanscanparamset * scanchanlist, |
| 238 | u8 filteredscan) |
| 239 | { |
| 240 | |
| 241 | wlan_adapter *adapter = priv->adapter; |
| 242 | struct region_channel *scanregion; |
| 243 | struct chan_freq_power *cfp; |
| 244 | int rgnidx; |
| 245 | int chanidx; |
| 246 | int nextchan; |
| 247 | u8 scantype; |
| 248 | |
| 249 | chanidx = 0; |
| 250 | |
| 251 | /* Set the default scan type to the user specified type, will later |
| 252 | * be changed to passive on a per channel basis if restricted by |
| 253 | * regulatory requirements (11d or 11h) |
| 254 | */ |
Holger Schurig | 4f2fdaa | 2007-08-02 13:12:27 -0400 | [diff] [blame] | 255 | scantype = CMD_SCAN_TYPE_ACTIVE; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 256 | |
| 257 | for (rgnidx = 0; rgnidx < ARRAY_SIZE(adapter->region_channel); rgnidx++) { |
| 258 | if (priv->adapter->enable11d && |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 259 | adapter->connect_status != LIBERTAS_CONNECTED) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 260 | /* Scan all the supported chan for the first scan */ |
| 261 | if (!adapter->universal_channel[rgnidx].valid) |
| 262 | continue; |
| 263 | scanregion = &adapter->universal_channel[rgnidx]; |
| 264 | |
| 265 | /* clear the parsed_region_chan for the first scan */ |
| 266 | memset(&adapter->parsed_region_chan, 0x00, |
| 267 | sizeof(adapter->parsed_region_chan)); |
| 268 | } else { |
| 269 | if (!adapter->region_channel[rgnidx].valid) |
| 270 | continue; |
| 271 | scanregion = &adapter->region_channel[rgnidx]; |
| 272 | } |
| 273 | |
| 274 | for (nextchan = 0; |
| 275 | nextchan < scanregion->nrcfp; nextchan++, chanidx++) { |
| 276 | |
| 277 | cfp = scanregion->CFP + nextchan; |
| 278 | |
| 279 | if (priv->adapter->enable11d) { |
| 280 | scantype = |
| 281 | libertas_get_scan_type_11d(cfp->channel, |
| 282 | &adapter-> |
| 283 | parsed_region_chan); |
| 284 | } |
| 285 | |
| 286 | switch (scanregion->band) { |
| 287 | case BAND_B: |
| 288 | case BAND_G: |
| 289 | default: |
| 290 | scanchanlist[chanidx].radiotype = |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 291 | CMD_SCAN_RADIO_TYPE_BG; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 292 | break; |
| 293 | } |
| 294 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 295 | if (scantype == CMD_SCAN_TYPE_PASSIVE) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 296 | scanchanlist[chanidx].maxscantime = |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 297 | cpu_to_le16(MRVDRV_PASSIVE_SCAN_CHAN_TIME); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 298 | scanchanlist[chanidx].chanscanmode.passivescan = |
| 299 | 1; |
| 300 | } else { |
| 301 | scanchanlist[chanidx].maxscantime = |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 302 | cpu_to_le16(MRVDRV_ACTIVE_SCAN_CHAN_TIME); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 303 | scanchanlist[chanidx].chanscanmode.passivescan = |
| 304 | 0; |
| 305 | } |
| 306 | |
| 307 | scanchanlist[chanidx].channumber = cfp->channel; |
| 308 | |
| 309 | if (filteredscan) { |
| 310 | scanchanlist[chanidx].chanscanmode. |
| 311 | disablechanfilt = 1; |
| 312 | } |
| 313 | } |
| 314 | } |
| 315 | } |
| 316 | |
Dan Williams | 2afc0c5 | 2007-08-02 13:19:04 -0400 | [diff] [blame] | 317 | |
| 318 | /* Delayed partial scan worker */ |
| 319 | void libertas_scan_worker(struct work_struct *work) |
| 320 | { |
| 321 | wlan_private *priv = container_of(work, wlan_private, scan_work.work); |
| 322 | |
| 323 | wlan_scan_networks(priv, NULL, 0); |
| 324 | } |
| 325 | |
| 326 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 327 | /** |
| 328 | * @brief Construct a wlan_scan_cmd_config structure to use in issue scan cmds |
| 329 | * |
| 330 | * Application layer or other functions can invoke wlan_scan_networks |
| 331 | * with a scan configuration supplied in a wlan_ioctl_user_scan_cfg struct. |
| 332 | * This structure is used as the basis of one or many wlan_scan_cmd_config |
| 333 | * commands that are sent to the command processing module and sent to |
| 334 | * firmware. |
| 335 | * |
| 336 | * Create a wlan_scan_cmd_config based on the following user supplied |
| 337 | * parameters (if present): |
| 338 | * - SSID filter |
| 339 | * - BSSID filter |
| 340 | * - Number of Probes to be sent |
| 341 | * - channel list |
| 342 | * |
| 343 | * If the SSID or BSSID filter is not present, disable/clear the filter. |
| 344 | * If the number of probes is not set, use the adapter default setting |
| 345 | * Qualify the channel |
| 346 | * |
| 347 | * @param priv A pointer to wlan_private structure |
| 348 | * @param puserscanin NULL or pointer to scan configuration parameters |
| 349 | * @param ppchantlvout Output parameter: Pointer to the start of the |
| 350 | * channel TLV portion of the output scan config |
| 351 | * @param pscanchanlist Output parameter: Pointer to the resulting channel |
| 352 | * list to scan |
| 353 | * @param pmaxchanperscan Output parameter: Number of channels to scan for |
| 354 | * each issuance of the firmware scan command |
| 355 | * @param pfilteredscan Output parameter: Flag indicating whether or not |
| 356 | * a BSSID or SSID filter is being sent in the |
| 357 | * command to firmware. Used to increase the number |
| 358 | * of channels sent in a scan command and to |
| 359 | * disable the firmware channel scan filter. |
| 360 | * @param pscancurrentonly Output parameter: Flag indicating whether or not |
| 361 | * we are only scanning our current active channel |
| 362 | * |
| 363 | * @return resulting scan configuration |
| 364 | */ |
| 365 | static struct wlan_scan_cmd_config * |
| 366 | wlan_scan_setup_scan_config(wlan_private * priv, |
| 367 | const struct wlan_ioctl_user_scan_cfg * puserscanin, |
| 368 | struct mrvlietypes_chanlistparamset ** ppchantlvout, |
| 369 | struct chanscanparamset * pscanchanlist, |
| 370 | int *pmaxchanperscan, |
| 371 | u8 * pfilteredscan, |
| 372 | u8 * pscancurrentonly) |
| 373 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 374 | struct mrvlietypes_numprobes *pnumprobestlv; |
| 375 | struct mrvlietypes_ssidparamset *pssidtlv; |
| 376 | struct wlan_scan_cmd_config * pscancfgout = NULL; |
| 377 | u8 *ptlvpos; |
| 378 | u16 numprobes; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 379 | int chanidx; |
| 380 | int scantype; |
| 381 | int scandur; |
| 382 | int channel; |
| 383 | int radiotype; |
| 384 | |
| 385 | pscancfgout = kzalloc(MAX_SCAN_CFG_ALLOC, GFP_KERNEL); |
| 386 | if (pscancfgout == NULL) |
| 387 | goto out; |
| 388 | |
| 389 | /* The tlvbufferlen is calculated for each scan command. The TLVs added |
| 390 | * in this routine will be preserved since the routine that sends |
| 391 | * the command will append channelTLVs at *ppchantlvout. The difference |
| 392 | * between the *ppchantlvout and the tlvbuffer start will be used |
| 393 | * to calculate the size of anything we add in this routine. |
| 394 | */ |
| 395 | pscancfgout->tlvbufferlen = 0; |
| 396 | |
| 397 | /* Running tlv pointer. Assigned to ppchantlvout at end of function |
| 398 | * so later routines know where channels can be added to the command buf |
| 399 | */ |
| 400 | ptlvpos = pscancfgout->tlvbuffer; |
| 401 | |
| 402 | /* |
| 403 | * Set the initial scan paramters for progressive scanning. If a specific |
| 404 | * BSSID or SSID is used, the number of channels in the scan command |
| 405 | * will be increased to the absolute maximum |
| 406 | */ |
| 407 | *pmaxchanperscan = MRVDRV_CHANNELS_PER_SCAN_CMD; |
| 408 | |
| 409 | /* Initialize the scan as un-filtered by firmware, set to TRUE below if |
| 410 | * a SSID or BSSID filter is sent in the command |
| 411 | */ |
| 412 | *pfilteredscan = 0; |
| 413 | |
| 414 | /* Initialize the scan as not being only on the current channel. If |
| 415 | * the channel list is customized, only contains one channel, and |
| 416 | * is the active channel, this is set true and data flow is not halted. |
| 417 | */ |
| 418 | *pscancurrentonly = 0; |
| 419 | |
| 420 | if (puserscanin) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 421 | /* Set the bss type scan filter, use adapter setting if unset */ |
| 422 | pscancfgout->bsstype = |
Holger Schurig | d65ead8 | 2007-08-02 13:12:12 -0400 | [diff] [blame] | 423 | puserscanin->bsstype ? puserscanin->bsstype : CMD_BSS_TYPE_ANY; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 424 | |
| 425 | /* Set the number of probes to send, use adapter setting if unset */ |
Holger Schurig | e2aa334 | 2007-08-02 13:05:53 -0400 | [diff] [blame] | 426 | numprobes = puserscanin->numprobes ? puserscanin->numprobes : 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 427 | |
| 428 | /* |
| 429 | * Set the BSSID filter to the incoming configuration, |
| 430 | * if non-zero. If not set, it will remain disabled (all zeros). |
| 431 | */ |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 432 | memcpy(pscancfgout->bssid, puserscanin->bssid, |
| 433 | sizeof(pscancfgout->bssid)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 434 | |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 435 | if (puserscanin->ssid_len) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 436 | pssidtlv = |
| 437 | (struct mrvlietypes_ssidparamset *) pscancfgout-> |
| 438 | tlvbuffer; |
| 439 | pssidtlv->header.type = cpu_to_le16(TLV_TYPE_SSID); |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 440 | pssidtlv->header.len = cpu_to_le16(puserscanin->ssid_len); |
| 441 | memcpy(pssidtlv->ssid, puserscanin->ssid, |
| 442 | puserscanin->ssid_len); |
| 443 | ptlvpos += sizeof(pssidtlv->header) + puserscanin->ssid_len; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | /* |
| 447 | * The default number of channels sent in the command is low to |
| 448 | * ensure the response buffer from the firmware does not truncate |
| 449 | * scan results. That is not an issue with an SSID or BSSID |
| 450 | * filter applied to the scan results in the firmware. |
| 451 | */ |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 452 | if ( puserscanin->ssid_len |
| 453 | || (compare_ether_addr(pscancfgout->bssid, &zeromac[0]) != 0)) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 454 | *pmaxchanperscan = MRVDRV_MAX_CHANNELS_PER_SCAN; |
| 455 | *pfilteredscan = 1; |
| 456 | } |
| 457 | } else { |
Holger Schurig | d65ead8 | 2007-08-02 13:12:12 -0400 | [diff] [blame] | 458 | pscancfgout->bsstype = CMD_BSS_TYPE_ANY; |
Holger Schurig | e2aa334 | 2007-08-02 13:05:53 -0400 | [diff] [blame] | 459 | numprobes = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 460 | } |
| 461 | |
| 462 | /* If the input config or adapter has the number of Probes set, add tlv */ |
| 463 | if (numprobes) { |
| 464 | pnumprobestlv = (struct mrvlietypes_numprobes *) ptlvpos; |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 465 | pnumprobestlv->header.type = cpu_to_le16(TLV_TYPE_NUMPROBES); |
| 466 | pnumprobestlv->header.len = cpu_to_le16(2); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 467 | pnumprobestlv->numprobes = cpu_to_le16(numprobes); |
| 468 | |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 469 | ptlvpos += sizeof(*pnumprobestlv); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | /* |
| 473 | * Set the output for the channel TLV to the address in the tlv buffer |
| 474 | * past any TLVs that were added in this fuction (SSID, numprobes). |
| 475 | * channel TLVs will be added past this for each scan command, preserving |
| 476 | * the TLVs that were previously added. |
| 477 | */ |
| 478 | *ppchantlvout = (struct mrvlietypes_chanlistparamset *) ptlvpos; |
| 479 | |
Dan Williams | 2afc0c5 | 2007-08-02 13:19:04 -0400 | [diff] [blame] | 480 | if (!puserscanin || !puserscanin->chanlist[0].channumber) { |
| 481 | /* Create a default channel scan list */ |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 482 | lbs_deb_scan("Scan: Creating full region channel list\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 483 | wlan_scan_create_channel_list(priv, pscanchanlist, |
| 484 | *pfilteredscan); |
Dan Williams | 2afc0c5 | 2007-08-02 13:19:04 -0400 | [diff] [blame] | 485 | goto out; |
| 486 | } |
| 487 | |
| 488 | lbs_deb_scan("Scan: Using supplied channel list\n"); |
| 489 | for (chanidx = 0; |
| 490 | chanidx < WLAN_IOCTL_USER_SCAN_CHAN_MAX |
| 491 | && puserscanin->chanlist[chanidx].channumber; chanidx++) { |
| 492 | |
| 493 | channel = puserscanin->chanlist[chanidx].channumber; |
| 494 | (pscanchanlist + chanidx)->channumber = channel; |
| 495 | |
| 496 | radiotype = puserscanin->chanlist[chanidx].radiotype; |
| 497 | (pscanchanlist + chanidx)->radiotype = radiotype; |
| 498 | |
| 499 | scantype = puserscanin->chanlist[chanidx].scantype; |
| 500 | |
| 501 | if (scantype == CMD_SCAN_TYPE_PASSIVE) { |
| 502 | (pscanchanlist + |
| 503 | chanidx)->chanscanmode.passivescan = 1; |
| 504 | } else { |
| 505 | (pscanchanlist + |
| 506 | chanidx)->chanscanmode.passivescan = 0; |
| 507 | } |
| 508 | |
| 509 | if (puserscanin->chanlist[chanidx].scantime) { |
| 510 | scandur = puserscanin->chanlist[chanidx].scantime; |
| 511 | } else { |
| 512 | if (scantype == CMD_SCAN_TYPE_PASSIVE) { |
| 513 | scandur = MRVDRV_PASSIVE_SCAN_CHAN_TIME; |
| 514 | } else { |
| 515 | scandur = MRVDRV_ACTIVE_SCAN_CHAN_TIME; |
| 516 | } |
| 517 | } |
| 518 | |
| 519 | (pscanchanlist + chanidx)->minscantime = |
| 520 | cpu_to_le16(scandur); |
| 521 | (pscanchanlist + chanidx)->maxscantime = |
| 522 | cpu_to_le16(scandur); |
| 523 | } |
| 524 | |
| 525 | /* Check if we are only scanning the current channel */ |
| 526 | if ((chanidx == 1) && |
| 527 | (puserscanin->chanlist[0].channumber == |
| 528 | priv->adapter->curbssparams.channel)) { |
| 529 | *pscancurrentonly = 1; |
| 530 | lbs_deb_scan("Scan: Scanning current channel only"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | out: |
| 534 | return pscancfgout; |
| 535 | } |
| 536 | |
| 537 | /** |
| 538 | * @brief Construct and send multiple scan config commands to the firmware |
| 539 | * |
| 540 | * Previous routines have created a wlan_scan_cmd_config with any requested |
| 541 | * TLVs. This function splits the channel TLV into maxchanperscan lists |
| 542 | * and sends the portion of the channel TLV along with the other TLVs |
| 543 | * to the wlan_cmd routines for execution in the firmware. |
| 544 | * |
| 545 | * @param priv A pointer to wlan_private structure |
| 546 | * @param maxchanperscan Maximum number channels to be included in each |
| 547 | * scan command sent to firmware |
| 548 | * @param filteredscan Flag indicating whether or not a BSSID or SSID |
| 549 | * filter is being used for the firmware command |
| 550 | * scan command sent to firmware |
| 551 | * @param pscancfgout Scan configuration used for this scan. |
| 552 | * @param pchantlvout Pointer in the pscancfgout where the channel TLV |
| 553 | * should start. This is past any other TLVs that |
| 554 | * must be sent down in each firmware command. |
| 555 | * @param pscanchanlist List of channels to scan in maxchanperscan segments |
| 556 | * |
| 557 | * @return 0 or error return otherwise |
| 558 | */ |
| 559 | static int wlan_scan_channel_list(wlan_private * priv, |
| 560 | int maxchanperscan, |
| 561 | u8 filteredscan, |
| 562 | struct wlan_scan_cmd_config * pscancfgout, |
| 563 | struct mrvlietypes_chanlistparamset * pchantlvout, |
Marcelo Tosatti | 064827e | 2007-05-24 23:37:28 -0400 | [diff] [blame] | 564 | struct chanscanparamset * pscanchanlist, |
Marcelo Tosatti | 2be9219 | 2007-05-25 00:33:28 -0400 | [diff] [blame] | 565 | const struct wlan_ioctl_user_scan_cfg * puserscanin, |
| 566 | int full_scan) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 567 | { |
| 568 | struct chanscanparamset *ptmpchan; |
| 569 | struct chanscanparamset *pstartchan; |
| 570 | u8 scanband; |
| 571 | int doneearly; |
| 572 | int tlvidx; |
| 573 | int ret = 0; |
Marcelo Tosatti | 064827e | 2007-05-24 23:37:28 -0400 | [diff] [blame] | 574 | int scanned = 0; |
| 575 | union iwreq_data wrqu; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 576 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 577 | lbs_deb_enter(LBS_DEB_ASSOC); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 578 | |
| 579 | if (pscancfgout == 0 || pchantlvout == 0 || pscanchanlist == 0) { |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 580 | lbs_deb_scan("Scan: Null detect: %p, %p, %p\n", |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 581 | pscancfgout, pchantlvout, pscanchanlist); |
| 582 | return -1; |
| 583 | } |
| 584 | |
| 585 | pchantlvout->header.type = cpu_to_le16(TLV_TYPE_CHANLIST); |
| 586 | |
| 587 | /* Set the temp channel struct pointer to the start of the desired list */ |
| 588 | ptmpchan = pscanchanlist; |
| 589 | |
Marcelo Tosatti | 064827e | 2007-05-24 23:37:28 -0400 | [diff] [blame] | 590 | if (priv->adapter->last_scanned_channel && !puserscanin) |
| 591 | ptmpchan += priv->adapter->last_scanned_channel; |
| 592 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 593 | /* Loop through the desired channel list, sending a new firmware scan |
| 594 | * commands for each maxchanperscan channels (or for 1,6,11 individually |
| 595 | * if configured accordingly) |
| 596 | */ |
| 597 | while (ptmpchan->channumber) { |
| 598 | |
| 599 | tlvidx = 0; |
| 600 | pchantlvout->header.len = 0; |
| 601 | scanband = ptmpchan->radiotype; |
| 602 | pstartchan = ptmpchan; |
| 603 | doneearly = 0; |
| 604 | |
| 605 | /* Construct the channel TLV for the scan command. Continue to |
| 606 | * insert channel TLVs until: |
| 607 | * - the tlvidx hits the maximum configured per scan command |
| 608 | * - the next channel to insert is 0 (end of desired channel list) |
| 609 | * - doneearly is set (controlling individual scanning of 1,6,11) |
| 610 | */ |
| 611 | while (tlvidx < maxchanperscan && ptmpchan->channumber |
Marcelo Tosatti | 064827e | 2007-05-24 23:37:28 -0400 | [diff] [blame] | 612 | && !doneearly && scanned < 2) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 613 | |
Dan Williams | 2afc0c5 | 2007-08-02 13:19:04 -0400 | [diff] [blame] | 614 | lbs_deb_scan("Scan: Chan(%3d), Radio(%d), mode(%d,%d), " |
| 615 | "Dur(%d)\n", |
| 616 | ptmpchan->channumber, ptmpchan->radiotype, |
| 617 | ptmpchan->chanscanmode.passivescan, |
| 618 | ptmpchan->chanscanmode.disablechanfilt, |
| 619 | ptmpchan->maxscantime); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 620 | |
| 621 | /* Copy the current channel TLV to the command being prepared */ |
| 622 | memcpy(pchantlvout->chanscanparam + tlvidx, |
| 623 | ptmpchan, sizeof(pchantlvout->chanscanparam)); |
| 624 | |
| 625 | /* Increment the TLV header length by the size appended */ |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 626 | /* Ew, it would be _so_ nice if we could just declare the |
| 627 | variable little-endian and let GCC handle it for us */ |
| 628 | pchantlvout->header.len = |
| 629 | cpu_to_le16(le16_to_cpu(pchantlvout->header.len) + |
| 630 | sizeof(pchantlvout->chanscanparam)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 631 | |
| 632 | /* |
| 633 | * The tlv buffer length is set to the number of bytes of the |
| 634 | * between the channel tlv pointer and the start of the |
| 635 | * tlv buffer. This compensates for any TLVs that were appended |
| 636 | * before the channel list. |
| 637 | */ |
| 638 | pscancfgout->tlvbufferlen = ((u8 *) pchantlvout |
| 639 | - pscancfgout->tlvbuffer); |
| 640 | |
| 641 | /* Add the size of the channel tlv header and the data length */ |
| 642 | pscancfgout->tlvbufferlen += |
| 643 | (sizeof(pchantlvout->header) |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 644 | + le16_to_cpu(pchantlvout->header.len)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 645 | |
| 646 | /* Increment the index to the channel tlv we are constructing */ |
| 647 | tlvidx++; |
| 648 | |
| 649 | doneearly = 0; |
| 650 | |
| 651 | /* Stop the loop if the *current* channel is in the 1,6,11 set |
| 652 | * and we are not filtering on a BSSID or SSID. |
| 653 | */ |
| 654 | if (!filteredscan && (ptmpchan->channumber == 1 |
| 655 | || ptmpchan->channumber == 6 |
| 656 | || ptmpchan->channumber == 11)) { |
| 657 | doneearly = 1; |
| 658 | } |
| 659 | |
| 660 | /* Increment the tmp pointer to the next channel to be scanned */ |
| 661 | ptmpchan++; |
Marcelo Tosatti | 064827e | 2007-05-24 23:37:28 -0400 | [diff] [blame] | 662 | scanned++; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 663 | |
| 664 | /* Stop the loop if the *next* channel is in the 1,6,11 set. |
| 665 | * This will cause it to be the only channel scanned on the next |
| 666 | * interation |
| 667 | */ |
| 668 | if (!filteredscan && (ptmpchan->channumber == 1 |
| 669 | || ptmpchan->channumber == 6 |
| 670 | || ptmpchan->channumber == 11)) { |
| 671 | doneearly = 1; |
| 672 | } |
| 673 | } |
| 674 | |
| 675 | /* Send the scan command to the firmware with the specified cfg */ |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 676 | ret = libertas_prepare_and_send_command(priv, CMD_802_11_SCAN, 0, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 677 | 0, 0, pscancfgout); |
Marcelo Tosatti | 2be9219 | 2007-05-25 00:33:28 -0400 | [diff] [blame] | 678 | if (scanned >= 2 && !full_scan) { |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 679 | ret = 0; |
| 680 | goto done; |
Marcelo Tosatti | 064827e | 2007-05-24 23:37:28 -0400 | [diff] [blame] | 681 | } |
Marcelo Tosatti | 2be9219 | 2007-05-25 00:33:28 -0400 | [diff] [blame] | 682 | scanned = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 683 | } |
| 684 | |
Dan Williams | d9ad2f5 | 2007-05-25 22:38:41 -0400 | [diff] [blame] | 685 | done: |
Marcelo Tosatti | 064827e | 2007-05-24 23:37:28 -0400 | [diff] [blame] | 686 | priv->adapter->last_scanned_channel = ptmpchan->channumber; |
| 687 | |
Dan Williams | 2afc0c5 | 2007-08-02 13:19:04 -0400 | [diff] [blame] | 688 | if (priv->adapter->last_scanned_channel) { |
| 689 | /* Schedule the next part of the partial scan */ |
| 690 | if (!full_scan && !priv->adapter->surpriseremoved) { |
| 691 | cancel_delayed_work(&priv->scan_work); |
| 692 | queue_delayed_work(priv->work_thread, &priv->scan_work, |
| 693 | msecs_to_jiffies(300)); |
| 694 | } |
| 695 | } else { |
| 696 | /* All done, tell userspace the scan table has been updated */ |
| 697 | memset(&wrqu, 0, sizeof(union iwreq_data)); |
| 698 | wireless_send_event(priv->dev, SIOCGIWSCAN, &wrqu, NULL); |
| 699 | } |
Marcelo Tosatti | 064827e | 2007-05-24 23:37:28 -0400 | [diff] [blame] | 700 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 701 | lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 702 | return ret; |
| 703 | } |
| 704 | |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 705 | static void |
| 706 | clear_selected_scan_list_entries(wlan_adapter * adapter, |
| 707 | const struct wlan_ioctl_user_scan_cfg * scan_cfg) |
| 708 | { |
| 709 | struct bss_descriptor * bss; |
| 710 | struct bss_descriptor * safe; |
| 711 | u32 clear_ssid_flag = 0, clear_bssid_flag = 0; |
| 712 | |
| 713 | if (!scan_cfg) |
| 714 | return; |
| 715 | |
| 716 | if (scan_cfg->clear_ssid && scan_cfg->ssid_len) |
| 717 | clear_ssid_flag = 1; |
| 718 | |
| 719 | if (scan_cfg->clear_bssid |
| 720 | && (compare_ether_addr(scan_cfg->bssid, &zeromac[0]) != 0) |
| 721 | && (compare_ether_addr(scan_cfg->bssid, &bcastmac[0]) != 0)) { |
| 722 | clear_bssid_flag = 1; |
| 723 | } |
| 724 | |
| 725 | if (!clear_ssid_flag && !clear_bssid_flag) |
| 726 | return; |
| 727 | |
| 728 | mutex_lock(&adapter->lock); |
| 729 | list_for_each_entry_safe (bss, safe, &adapter->network_list, list) { |
| 730 | u32 clear = 0; |
| 731 | |
| 732 | /* Check for an SSID match */ |
| 733 | if ( clear_ssid_flag |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 734 | && (bss->ssid_len == scan_cfg->ssid_len) |
| 735 | && !memcmp(bss->ssid, scan_cfg->ssid, bss->ssid_len)) |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 736 | clear = 1; |
| 737 | |
| 738 | /* Check for a BSSID match */ |
| 739 | if ( clear_bssid_flag |
| 740 | && !compare_ether_addr(bss->bssid, scan_cfg->bssid)) |
| 741 | clear = 1; |
| 742 | |
| 743 | if (clear) { |
| 744 | list_move_tail (&bss->list, &adapter->network_free_list); |
| 745 | clear_bss_descriptor(bss); |
| 746 | } |
| 747 | } |
| 748 | mutex_unlock(&adapter->lock); |
| 749 | } |
| 750 | |
| 751 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 752 | /** |
| 753 | * @brief Internal function used to start a scan based on an input config |
| 754 | * |
| 755 | * Use the input user scan configuration information when provided in |
| 756 | * order to send the appropriate scan commands to firmware to populate or |
| 757 | * update the internal driver scan table |
| 758 | * |
| 759 | * @param priv A pointer to wlan_private structure |
| 760 | * @param puserscanin Pointer to the input configuration for the requested |
| 761 | * scan. |
| 762 | * |
| 763 | * @return 0 or < 0 if error |
| 764 | */ |
| 765 | int wlan_scan_networks(wlan_private * priv, |
Dan Williams | 2afc0c5 | 2007-08-02 13:19:04 -0400 | [diff] [blame] | 766 | const struct wlan_ioctl_user_scan_cfg * puserscanin, |
| 767 | int full_scan) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 768 | { |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 769 | wlan_adapter * adapter = priv->adapter; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 770 | struct mrvlietypes_chanlistparamset *pchantlvout; |
| 771 | struct chanscanparamset * scan_chan_list = NULL; |
| 772 | struct wlan_scan_cmd_config * scan_cfg = NULL; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 773 | u8 filteredscan; |
| 774 | u8 scancurrentchanonly; |
| 775 | int maxchanperscan; |
| 776 | int ret; |
Dan Williams | f8f5510 | 2007-05-30 10:12:55 -0400 | [diff] [blame] | 777 | #ifdef CONFIG_LIBERTAS_DEBUG |
| 778 | struct bss_descriptor * iter_bss; |
| 779 | int i = 0; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame^] | 780 | DECLARE_MAC_BUF(mac); |
Dan Williams | f8f5510 | 2007-05-30 10:12:55 -0400 | [diff] [blame] | 781 | #endif |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 782 | |
Dan Williams | 2afc0c5 | 2007-08-02 13:19:04 -0400 | [diff] [blame] | 783 | lbs_deb_enter(LBS_DEB_SCAN); |
| 784 | |
| 785 | /* Cancel any partial outstanding partial scans if this scan |
| 786 | * is a full scan. |
| 787 | */ |
| 788 | if (full_scan && delayed_work_pending(&priv->scan_work)) |
| 789 | cancel_delayed_work(&priv->scan_work); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 790 | |
| 791 | scan_chan_list = kzalloc(sizeof(struct chanscanparamset) * |
| 792 | WLAN_IOCTL_USER_SCAN_CHAN_MAX, GFP_KERNEL); |
| 793 | if (scan_chan_list == NULL) { |
| 794 | ret = -ENOMEM; |
| 795 | goto out; |
| 796 | } |
| 797 | |
| 798 | scan_cfg = wlan_scan_setup_scan_config(priv, |
| 799 | puserscanin, |
| 800 | &pchantlvout, |
| 801 | scan_chan_list, |
| 802 | &maxchanperscan, |
| 803 | &filteredscan, |
| 804 | &scancurrentchanonly); |
| 805 | if (scan_cfg == NULL) { |
| 806 | ret = -ENOMEM; |
| 807 | goto out; |
| 808 | } |
| 809 | |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 810 | clear_selected_scan_list_entries(adapter, puserscanin); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 811 | |
| 812 | /* Keep the data path active if we are only scanning our current channel */ |
| 813 | if (!scancurrentchanonly) { |
Holger Schurig | 634b8f4 | 2007-05-25 13:05:16 -0400 | [diff] [blame] | 814 | netif_stop_queue(priv->dev); |
| 815 | netif_carrier_off(priv->dev); |
Holger Schurig | 3cf8409 | 2007-08-02 11:50:12 -0400 | [diff] [blame] | 816 | if (priv->mesh_dev) { |
| 817 | netif_stop_queue(priv->mesh_dev); |
| 818 | netif_carrier_off(priv->mesh_dev); |
| 819 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 820 | } |
| 821 | |
| 822 | ret = wlan_scan_channel_list(priv, |
| 823 | maxchanperscan, |
| 824 | filteredscan, |
| 825 | scan_cfg, |
| 826 | pchantlvout, |
Marcelo Tosatti | 064827e | 2007-05-24 23:37:28 -0400 | [diff] [blame] | 827 | scan_chan_list, |
Marcelo Tosatti | 2be9219 | 2007-05-25 00:33:28 -0400 | [diff] [blame] | 828 | puserscanin, |
| 829 | full_scan); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 830 | |
Dan Williams | f8f5510 | 2007-05-30 10:12:55 -0400 | [diff] [blame] | 831 | #ifdef CONFIG_LIBERTAS_DEBUG |
| 832 | /* Dump the scan table */ |
| 833 | mutex_lock(&adapter->lock); |
| 834 | list_for_each_entry (iter_bss, &adapter->network_list, list) { |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame^] | 835 | lbs_deb_scan("Scan:(%02d) %s, RSSI[%03d], SSID[%s]\n", |
| 836 | i++, print_mac(mac, iter_bss->bssid), (s32) iter_bss->rssi, |
Dan Williams | f8f5510 | 2007-05-30 10:12:55 -0400 | [diff] [blame] | 837 | escape_essid(iter_bss->ssid, iter_bss->ssid_len)); |
| 838 | } |
| 839 | mutex_unlock(&adapter->lock); |
| 840 | #endif |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 841 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 842 | if (priv->adapter->connect_status == LIBERTAS_CONNECTED) { |
Holger Schurig | 634b8f4 | 2007-05-25 13:05:16 -0400 | [diff] [blame] | 843 | netif_carrier_on(priv->dev); |
| 844 | netif_wake_queue(priv->dev); |
Holger Schurig | 3cf8409 | 2007-08-02 11:50:12 -0400 | [diff] [blame] | 845 | if (priv->mesh_dev) { |
| 846 | netif_carrier_on(priv->mesh_dev); |
| 847 | netif_wake_queue(priv->mesh_dev); |
| 848 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | out: |
| 852 | if (scan_cfg) |
| 853 | kfree(scan_cfg); |
| 854 | |
| 855 | if (scan_chan_list) |
| 856 | kfree(scan_chan_list); |
| 857 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 858 | lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 859 | return ret; |
| 860 | } |
| 861 | |
| 862 | /** |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 863 | * @brief Interpret a BSS scan response returned from the firmware |
| 864 | * |
| 865 | * Parse the various fixed fields and IEs passed back for a a BSS probe |
| 866 | * response or beacon from the scan command. Record information as needed |
| 867 | * in the scan table struct bss_descriptor for that entry. |
| 868 | * |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 869 | * @param bss Output parameter: Pointer to the BSS Entry |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 870 | * |
| 871 | * @return 0 or -1 |
| 872 | */ |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 873 | static int libertas_process_bss(struct bss_descriptor * bss, |
| 874 | u8 ** pbeaconinfo, int *bytesleft) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 875 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 876 | struct ieeetypes_fhparamset *pFH; |
| 877 | struct ieeetypes_dsparamset *pDS; |
| 878 | struct ieeetypes_cfparamset *pCF; |
| 879 | struct ieeetypes_ibssparamset *pibss; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame^] | 880 | DECLARE_MAC_BUF(mac); |
Dan Williams | 8c51276 | 2007-08-02 11:40:45 -0400 | [diff] [blame] | 881 | struct ieeetypes_countryinfoset *pcountryinfo; |
| 882 | u8 *pos, *end, *p; |
| 883 | u8 n_ex_rates = 0, got_basic_rates = 0, n_basic_rates = 0; |
| 884 | u16 beaconsize = 0; |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 885 | int ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 886 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 887 | lbs_deb_enter(LBS_DEB_ASSOC); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 888 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 889 | if (*bytesleft >= sizeof(beaconsize)) { |
| 890 | /* Extract & convert beacon size from the command buffer */ |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 891 | beaconsize = le16_to_cpup((void *)*pbeaconinfo); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 892 | *bytesleft -= sizeof(beaconsize); |
| 893 | *pbeaconinfo += sizeof(beaconsize); |
| 894 | } |
| 895 | |
| 896 | if (beaconsize == 0 || beaconsize > *bytesleft) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 897 | *pbeaconinfo += *bytesleft; |
| 898 | *bytesleft = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 899 | return -1; |
| 900 | } |
| 901 | |
| 902 | /* Initialize the current working beacon pointer for this BSS iteration */ |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 903 | pos = *pbeaconinfo; |
| 904 | end = pos + beaconsize; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 905 | |
| 906 | /* Advance the return beacon pointer past the current beacon */ |
| 907 | *pbeaconinfo += beaconsize; |
| 908 | *bytesleft -= beaconsize; |
| 909 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 910 | memcpy(bss->bssid, pos, ETH_ALEN); |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame^] | 911 | lbs_deb_scan("process_bss: AP BSSID %s\n", print_mac(mac, bss->bssid)); |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 912 | pos += ETH_ALEN; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 913 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 914 | if ((end - pos) < 12) { |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 915 | lbs_deb_scan("process_bss: Not enough bytes left\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 916 | return -1; |
| 917 | } |
| 918 | |
| 919 | /* |
| 920 | * next 4 fields are RSSI, time stamp, beacon interval, |
| 921 | * and capability information |
| 922 | */ |
| 923 | |
| 924 | /* RSSI is 1 byte long */ |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 925 | bss->rssi = *pos; |
| 926 | lbs_deb_scan("process_bss: RSSI=%02X\n", *pos); |
| 927 | pos++; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 928 | |
| 929 | /* time stamp is 8 bytes long */ |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 930 | pos += 8; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 931 | |
| 932 | /* beacon interval is 2 bytes long */ |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 933 | bss->beaconperiod = le16_to_cpup((void *) pos); |
| 934 | pos += 2; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 935 | |
| 936 | /* capability information is 2 bytes long */ |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 937 | bss->capability = le16_to_cpup((void *) pos); |
Dan Williams | 0c9ca69 | 2007-08-02 10:43:44 -0400 | [diff] [blame] | 938 | lbs_deb_scan("process_bss: capabilities = 0x%4X\n", bss->capability); |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 939 | pos += 2; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 940 | |
Dan Williams | 0c9ca69 | 2007-08-02 10:43:44 -0400 | [diff] [blame] | 941 | if (bss->capability & WLAN_CAPABILITY_PRIVACY) |
| 942 | lbs_deb_scan("process_bss: AP WEP enabled\n"); |
| 943 | if (bss->capability & WLAN_CAPABILITY_IBSS) |
| 944 | bss->mode = IW_MODE_ADHOC; |
| 945 | else |
| 946 | bss->mode = IW_MODE_INFRA; |
| 947 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 948 | /* rest of the current buffer are IE's */ |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 949 | lbs_deb_scan("process_bss: IE length for this AP = %zd\n", end - pos); |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 950 | lbs_deb_hex(LBS_DEB_SCAN, "process_bss: IE info", pos, end - pos); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 951 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 952 | /* process variable IE */ |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 953 | while (pos <= end - 2) { |
| 954 | struct ieee80211_info_element * elem = |
| 955 | (struct ieee80211_info_element *) pos; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 956 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 957 | if (pos + elem->len > end) { |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 958 | lbs_deb_scan("process_bss: error in processing IE, " |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 959 | "bytes left < IE length\n"); |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 960 | break; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 961 | } |
| 962 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 963 | switch (elem->id) { |
| 964 | case MFIE_TYPE_SSID: |
| 965 | bss->ssid_len = elem->len; |
| 966 | memcpy(bss->ssid, elem->data, elem->len); |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 967 | lbs_deb_scan("ssid '%s', ssid length %u\n", |
| 968 | escape_essid(bss->ssid, bss->ssid_len), |
| 969 | bss->ssid_len); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 970 | break; |
| 971 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 972 | case MFIE_TYPE_RATES: |
Dan Williams | 8c51276 | 2007-08-02 11:40:45 -0400 | [diff] [blame] | 973 | n_basic_rates = min_t(u8, MAX_RATES, elem->len); |
| 974 | memcpy(bss->rates, elem->data, n_basic_rates); |
| 975 | got_basic_rates = 1; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 976 | break; |
| 977 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 978 | case MFIE_TYPE_FH_SET: |
| 979 | pFH = (struct ieeetypes_fhparamset *) pos; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 980 | memmove(&bss->phyparamset.fhparamset, pFH, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 981 | sizeof(struct ieeetypes_fhparamset)); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 982 | #if 0 /* I think we can store these LE */ |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 983 | bss->phyparamset.fhparamset.dwelltime |
| 984 | = le16_to_cpu(bss->phyparamset.fhparamset.dwelltime); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 985 | #endif |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 986 | break; |
| 987 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 988 | case MFIE_TYPE_DS_SET: |
| 989 | pDS = (struct ieeetypes_dsparamset *) pos; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 990 | bss->channel = pDS->currentchan; |
| 991 | memcpy(&bss->phyparamset.dsparamset, pDS, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 992 | sizeof(struct ieeetypes_dsparamset)); |
| 993 | break; |
| 994 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 995 | case MFIE_TYPE_CF_SET: |
| 996 | pCF = (struct ieeetypes_cfparamset *) pos; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 997 | memcpy(&bss->ssparamset.cfparamset, pCF, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 998 | sizeof(struct ieeetypes_cfparamset)); |
| 999 | break; |
| 1000 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 1001 | case MFIE_TYPE_IBSS_SET: |
| 1002 | pibss = (struct ieeetypes_ibssparamset *) pos; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1003 | bss->atimwindow = le32_to_cpu(pibss->atimwindow); |
| 1004 | memmove(&bss->ssparamset.ibssparamset, pibss, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1005 | sizeof(struct ieeetypes_ibssparamset)); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 1006 | #if 0 |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1007 | bss->ssparamset.ibssparamset.atimwindow |
| 1008 | = le16_to_cpu(bss->ssparamset.ibssparamset.atimwindow); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 1009 | #endif |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1010 | break; |
| 1011 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 1012 | case MFIE_TYPE_COUNTRY: |
| 1013 | pcountryinfo = (struct ieeetypes_countryinfoset *) pos; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1014 | if (pcountryinfo->len < sizeof(pcountryinfo->countrycode) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1015 | || pcountryinfo->len > 254) { |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1016 | lbs_deb_scan("process_bss: 11D- Err " |
Dan Williams | 4269e2a | 2007-05-10 23:10:18 -0400 | [diff] [blame] | 1017 | "CountryInfo len =%d min=%zd max=254\n", |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1018 | pcountryinfo->len, |
| 1019 | sizeof(pcountryinfo->countrycode)); |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1020 | ret = -1; |
| 1021 | goto done; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1022 | } |
| 1023 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1024 | memcpy(&bss->countryinfo, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1025 | pcountryinfo, pcountryinfo->len + 2); |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 1026 | lbs_deb_hex(LBS_DEB_SCAN, "process_bss: 11d countryinfo", |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1027 | (u8 *) pcountryinfo, |
| 1028 | (u32) (pcountryinfo->len + 2)); |
| 1029 | break; |
| 1030 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 1031 | case MFIE_TYPE_RATES_EX: |
| 1032 | /* only process extended supported rate if data rate is |
| 1033 | * already found. Data rate IE should come before |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1034 | * extended supported rate IE |
| 1035 | */ |
Dan Williams | 8c51276 | 2007-08-02 11:40:45 -0400 | [diff] [blame] | 1036 | if (!got_basic_rates) |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 1037 | break; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1038 | |
Dan Williams | 8c51276 | 2007-08-02 11:40:45 -0400 | [diff] [blame] | 1039 | n_ex_rates = elem->len; |
| 1040 | if (n_basic_rates + n_ex_rates > MAX_RATES) |
| 1041 | n_ex_rates = MAX_RATES - n_basic_rates; |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 1042 | |
Dan Williams | 8c51276 | 2007-08-02 11:40:45 -0400 | [diff] [blame] | 1043 | p = bss->rates + n_basic_rates; |
| 1044 | memcpy(p, elem->data, n_ex_rates); |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 1045 | break; |
| 1046 | |
| 1047 | case MFIE_TYPE_GENERIC: |
| 1048 | if (elem->len >= 4 && |
| 1049 | elem->data[0] == 0x00 && |
| 1050 | elem->data[1] == 0x50 && |
| 1051 | elem->data[2] == 0xf2 && |
| 1052 | elem->data[3] == 0x01) { |
| 1053 | bss->wpa_ie_len = min(elem->len + 2, |
| 1054 | MAX_WPA_IE_LEN); |
| 1055 | memcpy(bss->wpa_ie, elem, bss->wpa_ie_len); |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 1056 | lbs_deb_hex(LBS_DEB_SCAN, "process_bss: WPA IE", bss->wpa_ie, |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 1057 | elem->len); |
Luis Carlos Cobo | 1e838bf | 2007-08-02 10:51:27 -0400 | [diff] [blame] | 1058 | } else if (elem->len >= MARVELL_MESH_IE_LENGTH && |
| 1059 | elem->data[0] == 0x00 && |
| 1060 | elem->data[1] == 0x50 && |
| 1061 | elem->data[2] == 0x43 && |
| 1062 | elem->data[3] == 0x04) { |
| 1063 | bss->mesh = 1; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1064 | } |
| 1065 | break; |
| 1066 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 1067 | case MFIE_TYPE_RSN: |
| 1068 | bss->rsn_ie_len = min(elem->len + 2, MAX_WPA_IE_LEN); |
| 1069 | memcpy(bss->rsn_ie, elem, bss->rsn_ie_len); |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 1070 | lbs_deb_hex(LBS_DEB_SCAN, "process_bss: RSN_IE", bss->rsn_ie, elem->len); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1071 | break; |
| 1072 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 1073 | default: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1074 | break; |
| 1075 | } |
| 1076 | |
Dan Williams | ab61797 | 2007-08-02 10:48:02 -0400 | [diff] [blame] | 1077 | pos += elem->len + 2; |
| 1078 | } |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1079 | |
| 1080 | /* Timestamp */ |
| 1081 | bss->last_scanned = jiffies; |
Dan Williams | 8c51276 | 2007-08-02 11:40:45 -0400 | [diff] [blame] | 1082 | libertas_unset_basic_rate_flags(bss->rates, sizeof(bss->rates)); |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1083 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1084 | ret = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1085 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1086 | done: |
| 1087 | lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret); |
| 1088 | return ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1089 | } |
| 1090 | |
| 1091 | /** |
| 1092 | * @brief Compare two SSIDs |
| 1093 | * |
| 1094 | * @param ssid1 A pointer to ssid to compare |
| 1095 | * @param ssid2 A pointer to ssid to compare |
| 1096 | * |
| 1097 | * @return 0--ssid is same, otherwise is different |
| 1098 | */ |
Dan Williams | 717c933 | 2007-05-29 00:03:31 -0400 | [diff] [blame] | 1099 | int libertas_ssid_cmp(u8 *ssid1, u8 ssid1_len, u8 *ssid2, u8 ssid2_len) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1100 | { |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1101 | if (ssid1_len != ssid2_len) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1102 | return -1; |
| 1103 | |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1104 | return memcmp(ssid1, ssid2, ssid1_len); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1105 | } |
| 1106 | |
| 1107 | /** |
| 1108 | * @brief This function finds a specific compatible BSSID in the scan list |
| 1109 | * |
| 1110 | * @param adapter A pointer to wlan_adapter |
| 1111 | * @param bssid BSSID to find in the scan list |
| 1112 | * @param mode Network mode: Infrastructure or IBSS |
| 1113 | * |
| 1114 | * @return index in BSSID list, or error return code (< 0) |
| 1115 | */ |
Dan Williams | 717c933 | 2007-05-29 00:03:31 -0400 | [diff] [blame] | 1116 | struct bss_descriptor * libertas_find_bssid_in_list(wlan_adapter * adapter, |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1117 | u8 * bssid, u8 mode) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1118 | { |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1119 | struct bss_descriptor * iter_bss; |
| 1120 | struct bss_descriptor * found_bss = NULL; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1121 | |
| 1122 | if (!bssid) |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1123 | return NULL; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1124 | |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 1125 | lbs_deb_hex(LBS_DEB_SCAN, "looking for", |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1126 | bssid, ETH_ALEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1127 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1128 | /* Look through the scan table for a compatible match. The loop will |
| 1129 | * continue past a matched bssid that is not compatible in case there |
| 1130 | * is an AP with multiple SSIDs assigned to the same BSSID |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1131 | */ |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1132 | mutex_lock(&adapter->lock); |
| 1133 | list_for_each_entry (iter_bss, &adapter->network_list, list) { |
Dan Williams | 3cf2093 | 2007-05-25 17:28:30 -0400 | [diff] [blame] | 1134 | if (compare_ether_addr(iter_bss->bssid, bssid)) |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1135 | continue; /* bssid doesn't match */ |
| 1136 | switch (mode) { |
| 1137 | case IW_MODE_INFRA: |
| 1138 | case IW_MODE_ADHOC: |
| 1139 | if (!is_network_compatible(adapter, iter_bss, mode)) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1140 | break; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1141 | found_bss = iter_bss; |
| 1142 | break; |
| 1143 | default: |
| 1144 | found_bss = iter_bss; |
| 1145 | break; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1146 | } |
| 1147 | } |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1148 | mutex_unlock(&adapter->lock); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1149 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1150 | return found_bss; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1151 | } |
| 1152 | |
| 1153 | /** |
| 1154 | * @brief This function finds ssid in ssid list. |
| 1155 | * |
| 1156 | * @param adapter A pointer to wlan_adapter |
| 1157 | * @param ssid SSID to find in the list |
| 1158 | * @param bssid BSSID to qualify the SSID selection (if provided) |
| 1159 | * @param mode Network mode: Infrastructure or IBSS |
| 1160 | * |
| 1161 | * @return index in BSSID list |
| 1162 | */ |
Dan Williams | 717c933 | 2007-05-29 00:03:31 -0400 | [diff] [blame] | 1163 | struct bss_descriptor * libertas_find_ssid_in_list(wlan_adapter * adapter, |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1164 | u8 *ssid, u8 ssid_len, u8 * bssid, u8 mode, |
Dan Williams | aeea0ab | 2007-05-25 22:30:48 -0400 | [diff] [blame] | 1165 | int channel) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1166 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1167 | u8 bestrssi = 0; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1168 | struct bss_descriptor * iter_bss = NULL; |
| 1169 | struct bss_descriptor * found_bss = NULL; |
| 1170 | struct bss_descriptor * tmp_oldest = NULL; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1171 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1172 | mutex_lock(&adapter->lock); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1173 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1174 | list_for_each_entry (iter_bss, &adapter->network_list, list) { |
| 1175 | if ( !tmp_oldest |
| 1176 | || (iter_bss->last_scanned < tmp_oldest->last_scanned)) |
| 1177 | tmp_oldest = iter_bss; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1178 | |
Dan Williams | 717c933 | 2007-05-29 00:03:31 -0400 | [diff] [blame] | 1179 | if (libertas_ssid_cmp(iter_bss->ssid, iter_bss->ssid_len, |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1180 | ssid, ssid_len) != 0) |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1181 | continue; /* ssid doesn't match */ |
Dan Williams | 3cf2093 | 2007-05-25 17:28:30 -0400 | [diff] [blame] | 1182 | if (bssid && compare_ether_addr(iter_bss->bssid, bssid) != 0) |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1183 | continue; /* bssid doesn't match */ |
Dan Williams | aeea0ab | 2007-05-25 22:30:48 -0400 | [diff] [blame] | 1184 | if ((channel > 0) && (iter_bss->channel != channel)) |
| 1185 | continue; /* channel doesn't match */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1186 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1187 | switch (mode) { |
| 1188 | case IW_MODE_INFRA: |
| 1189 | case IW_MODE_ADHOC: |
| 1190 | if (!is_network_compatible(adapter, iter_bss, mode)) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1191 | break; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1192 | |
| 1193 | if (bssid) { |
| 1194 | /* Found requested BSSID */ |
| 1195 | found_bss = iter_bss; |
| 1196 | goto out; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1197 | } |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1198 | |
| 1199 | if (SCAN_RSSI(iter_bss->rssi) > bestrssi) { |
| 1200 | bestrssi = SCAN_RSSI(iter_bss->rssi); |
| 1201 | found_bss = iter_bss; |
| 1202 | } |
| 1203 | break; |
| 1204 | case IW_MODE_AUTO: |
| 1205 | default: |
| 1206 | if (SCAN_RSSI(iter_bss->rssi) > bestrssi) { |
| 1207 | bestrssi = SCAN_RSSI(iter_bss->rssi); |
| 1208 | found_bss = iter_bss; |
| 1209 | } |
| 1210 | break; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1211 | } |
| 1212 | } |
| 1213 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1214 | out: |
| 1215 | mutex_unlock(&adapter->lock); |
| 1216 | return found_bss; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1217 | } |
| 1218 | |
| 1219 | /** |
| 1220 | * @brief This function finds the best SSID in the Scan List |
| 1221 | * |
| 1222 | * Search the scan table for the best SSID that also matches the current |
| 1223 | * adapter network preference (infrastructure or adhoc) |
| 1224 | * |
| 1225 | * @param adapter A pointer to wlan_adapter |
| 1226 | * |
| 1227 | * @return index in BSSID list |
| 1228 | */ |
Holger Schurig | ac558ca | 2007-08-02 11:49:06 -0400 | [diff] [blame] | 1229 | static struct bss_descriptor * libertas_find_best_ssid_in_list(wlan_adapter * adapter, |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1230 | u8 mode) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1231 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1232 | u8 bestrssi = 0; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1233 | struct bss_descriptor * iter_bss; |
| 1234 | struct bss_descriptor * best_bss = NULL; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1235 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1236 | mutex_lock(&adapter->lock); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1237 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1238 | list_for_each_entry (iter_bss, &adapter->network_list, list) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1239 | switch (mode) { |
Dan Williams | 0dc5a29 | 2007-05-10 22:58:02 -0400 | [diff] [blame] | 1240 | case IW_MODE_INFRA: |
| 1241 | case IW_MODE_ADHOC: |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1242 | if (!is_network_compatible(adapter, iter_bss, mode)) |
| 1243 | break; |
| 1244 | if (SCAN_RSSI(iter_bss->rssi) <= bestrssi) |
| 1245 | break; |
| 1246 | bestrssi = SCAN_RSSI(iter_bss->rssi); |
| 1247 | best_bss = iter_bss; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1248 | break; |
Dan Williams | 0dc5a29 | 2007-05-10 22:58:02 -0400 | [diff] [blame] | 1249 | case IW_MODE_AUTO: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1250 | default: |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1251 | if (SCAN_RSSI(iter_bss->rssi) <= bestrssi) |
| 1252 | break; |
| 1253 | bestrssi = SCAN_RSSI(iter_bss->rssi); |
| 1254 | best_bss = iter_bss; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1255 | break; |
| 1256 | } |
| 1257 | } |
| 1258 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1259 | mutex_unlock(&adapter->lock); |
| 1260 | return best_bss; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1261 | } |
| 1262 | |
| 1263 | /** |
| 1264 | * @brief Find the AP with specific ssid in the scan list |
| 1265 | * |
| 1266 | * @param priv A pointer to wlan_private structure |
| 1267 | * @param pSSID A pointer to AP's ssid |
| 1268 | * |
| 1269 | * @return 0--success, otherwise--fail |
| 1270 | */ |
Dan Williams | 717c933 | 2007-05-29 00:03:31 -0400 | [diff] [blame] | 1271 | int libertas_find_best_network_ssid(wlan_private * priv, |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1272 | u8 *out_ssid, u8 *out_ssid_len, u8 preferred_mode, u8 *out_mode) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1273 | { |
| 1274 | wlan_adapter *adapter = priv->adapter; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1275 | int ret = -1; |
| 1276 | struct bss_descriptor * found; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1277 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1278 | lbs_deb_enter(LBS_DEB_ASSOC); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1279 | |
Marcelo Tosatti | 2be9219 | 2007-05-25 00:33:28 -0400 | [diff] [blame] | 1280 | wlan_scan_networks(priv, NULL, 1); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1281 | if (adapter->surpriseremoved) |
| 1282 | return -1; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1283 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1284 | wait_event_interruptible(adapter->cmd_pending, !adapter->nr_cmd_pending); |
| 1285 | |
Dan Williams | 717c933 | 2007-05-29 00:03:31 -0400 | [diff] [blame] | 1286 | found = libertas_find_best_ssid_in_list(adapter, preferred_mode); |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1287 | if (found && (found->ssid_len > 0)) { |
| 1288 | memcpy(out_ssid, &found->ssid, IW_ESSID_MAX_SIZE); |
| 1289 | *out_ssid_len = found->ssid_len; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1290 | *out_mode = found->mode; |
| 1291 | ret = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1292 | } |
| 1293 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1294 | lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1295 | return ret; |
| 1296 | } |
| 1297 | |
| 1298 | /** |
| 1299 | * @brief Scan Network |
| 1300 | * |
| 1301 | * @param dev A pointer to net_device structure |
| 1302 | * @param info A pointer to iw_request_info structure |
| 1303 | * @param vwrq A pointer to iw_param structure |
| 1304 | * @param extra A pointer to extra data buf |
| 1305 | * |
| 1306 | * @return 0 --success, otherwise fail |
| 1307 | */ |
| 1308 | int libertas_set_scan(struct net_device *dev, struct iw_request_info *info, |
| 1309 | struct iw_param *vwrq, char *extra) |
| 1310 | { |
| 1311 | wlan_private *priv = dev->priv; |
| 1312 | wlan_adapter *adapter = priv->adapter; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1313 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1314 | lbs_deb_enter(LBS_DEB_SCAN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1315 | |
Dan Williams | 2afc0c5 | 2007-08-02 13:19:04 -0400 | [diff] [blame] | 1316 | if (!delayed_work_pending(&priv->scan_work)) { |
| 1317 | queue_delayed_work(priv->work_thread, &priv->scan_work, |
| 1318 | msecs_to_jiffies(50)); |
| 1319 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1320 | |
| 1321 | if (adapter->surpriseremoved) |
| 1322 | return -1; |
| 1323 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1324 | lbs_deb_leave(LBS_DEB_SCAN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1325 | return 0; |
| 1326 | } |
| 1327 | |
| 1328 | /** |
| 1329 | * @brief Send a scan command for all available channels filtered on a spec |
| 1330 | * |
| 1331 | * @param priv A pointer to wlan_private structure |
| 1332 | * @param prequestedssid A pointer to AP's ssid |
| 1333 | * @param keeppreviousscan Flag used to save/clear scan table before scan |
| 1334 | * |
| 1335 | * @return 0-success, otherwise fail |
| 1336 | */ |
Dan Williams | 717c933 | 2007-05-29 00:03:31 -0400 | [diff] [blame] | 1337 | int libertas_send_specific_ssid_scan(wlan_private * priv, |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1338 | u8 *ssid, u8 ssid_len, u8 clear_ssid) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1339 | { |
| 1340 | wlan_adapter *adapter = priv->adapter; |
| 1341 | struct wlan_ioctl_user_scan_cfg scancfg; |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 1342 | int ret = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1343 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1344 | lbs_deb_enter(LBS_DEB_ASSOC); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1345 | |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1346 | if (!ssid_len) |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 1347 | goto out; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1348 | |
| 1349 | memset(&scancfg, 0x00, sizeof(scancfg)); |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1350 | memcpy(scancfg.ssid, ssid, ssid_len); |
| 1351 | scancfg.ssid_len = ssid_len; |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 1352 | scancfg.clear_ssid = clear_ssid; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1353 | |
Marcelo Tosatti | 2be9219 | 2007-05-25 00:33:28 -0400 | [diff] [blame] | 1354 | wlan_scan_networks(priv, &scancfg, 1); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1355 | if (adapter->surpriseremoved) |
| 1356 | return -1; |
| 1357 | wait_event_interruptible(adapter->cmd_pending, !adapter->nr_cmd_pending); |
| 1358 | |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 1359 | out: |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1360 | lbs_deb_leave(LBS_DEB_ASSOC); |
Dan Williams | eb8f733 | 2007-05-25 16:25:21 -0400 | [diff] [blame] | 1361 | return ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1362 | } |
| 1363 | |
Dan Williams | 00af015 | 2007-08-02 13:14:56 -0400 | [diff] [blame] | 1364 | #define MAX_CUSTOM_LEN 64 |
| 1365 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1366 | static inline char *libertas_translate_scan(wlan_private *priv, |
| 1367 | char *start, char *stop, |
| 1368 | struct bss_descriptor *bss) |
| 1369 | { |
| 1370 | wlan_adapter *adapter = priv->adapter; |
| 1371 | struct chan_freq_power *cfp; |
| 1372 | char *current_val; /* For rates */ |
| 1373 | struct iw_event iwe; /* Temporary buffer */ |
| 1374 | int j; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1375 | #define PERFECT_RSSI ((u8)50) |
| 1376 | #define WORST_RSSI ((u8)0) |
| 1377 | #define RSSI_DIFF ((u8)(PERFECT_RSSI - WORST_RSSI)) |
| 1378 | u8 rssi; |
| 1379 | |
| 1380 | cfp = libertas_find_cfp_by_band_and_channel(adapter, 0, bss->channel); |
| 1381 | if (!cfp) { |
| 1382 | lbs_deb_scan("Invalid channel number %d\n", bss->channel); |
| 1383 | return NULL; |
| 1384 | } |
| 1385 | |
| 1386 | /* First entry *MUST* be the AP BSSID */ |
| 1387 | iwe.cmd = SIOCGIWAP; |
| 1388 | iwe.u.ap_addr.sa_family = ARPHRD_ETHER; |
| 1389 | memcpy(iwe.u.ap_addr.sa_data, &bss->bssid, ETH_ALEN); |
| 1390 | start = iwe_stream_add_event(start, stop, &iwe, IW_EV_ADDR_LEN); |
| 1391 | |
| 1392 | /* SSID */ |
| 1393 | iwe.cmd = SIOCGIWESSID; |
| 1394 | iwe.u.data.flags = 1; |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1395 | iwe.u.data.length = min((u32) bss->ssid_len, (u32) IW_ESSID_MAX_SIZE); |
| 1396 | start = iwe_stream_add_point(start, stop, &iwe, bss->ssid); |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1397 | |
| 1398 | /* Mode */ |
| 1399 | iwe.cmd = SIOCGIWMODE; |
| 1400 | iwe.u.mode = bss->mode; |
| 1401 | start = iwe_stream_add_event(start, stop, &iwe, IW_EV_UINT_LEN); |
| 1402 | |
| 1403 | /* Frequency */ |
| 1404 | iwe.cmd = SIOCGIWFREQ; |
| 1405 | iwe.u.freq.m = (long)cfp->freq * 100000; |
| 1406 | iwe.u.freq.e = 1; |
| 1407 | start = iwe_stream_add_event(start, stop, &iwe, IW_EV_FREQ_LEN); |
| 1408 | |
| 1409 | /* Add quality statistics */ |
| 1410 | iwe.cmd = IWEVQUAL; |
| 1411 | iwe.u.qual.updated = IW_QUAL_ALL_UPDATED; |
| 1412 | iwe.u.qual.level = SCAN_RSSI(bss->rssi); |
| 1413 | |
| 1414 | rssi = iwe.u.qual.level - MRVDRV_NF_DEFAULT_SCAN_VALUE; |
| 1415 | iwe.u.qual.qual = |
| 1416 | (100 * RSSI_DIFF * RSSI_DIFF - (PERFECT_RSSI - rssi) * |
| 1417 | (15 * (RSSI_DIFF) + 62 * (PERFECT_RSSI - rssi))) / |
| 1418 | (RSSI_DIFF * RSSI_DIFF); |
| 1419 | if (iwe.u.qual.qual > 100) |
| 1420 | iwe.u.qual.qual = 100; |
| 1421 | |
| 1422 | if (adapter->NF[TYPE_BEACON][TYPE_NOAVG] == 0) { |
| 1423 | iwe.u.qual.noise = MRVDRV_NF_DEFAULT_SCAN_VALUE; |
| 1424 | } else { |
| 1425 | iwe.u.qual.noise = |
| 1426 | CAL_NF(adapter->NF[TYPE_BEACON][TYPE_NOAVG]); |
| 1427 | } |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1428 | |
Dan Williams | 80e78ef | 2007-05-25 22:18:47 -0400 | [diff] [blame] | 1429 | /* Locally created ad-hoc BSSs won't have beacons if this is the |
| 1430 | * only station in the adhoc network; so get signal strength |
| 1431 | * from receive statistics. |
| 1432 | */ |
| 1433 | if ((adapter->mode == IW_MODE_ADHOC) |
| 1434 | && adapter->adhoccreate |
Dan Williams | 717c933 | 2007-05-29 00:03:31 -0400 | [diff] [blame] | 1435 | && !libertas_ssid_cmp(adapter->curbssparams.ssid, |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1436 | adapter->curbssparams.ssid_len, |
| 1437 | bss->ssid, bss->ssid_len)) { |
Dan Williams | 80e78ef | 2007-05-25 22:18:47 -0400 | [diff] [blame] | 1438 | int snr, nf; |
| 1439 | snr = adapter->SNR[TYPE_RXPD][TYPE_AVG] / AVG_SCALE; |
| 1440 | nf = adapter->NF[TYPE_RXPD][TYPE_AVG] / AVG_SCALE; |
| 1441 | iwe.u.qual.level = CAL_RSSI(snr, nf); |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1442 | } |
| 1443 | start = iwe_stream_add_event(start, stop, &iwe, IW_EV_QUAL_LEN); |
| 1444 | |
| 1445 | /* Add encryption capability */ |
| 1446 | iwe.cmd = SIOCGIWENCODE; |
Dan Williams | 0c9ca69 | 2007-08-02 10:43:44 -0400 | [diff] [blame] | 1447 | if (bss->capability & WLAN_CAPABILITY_PRIVACY) { |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1448 | iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY; |
| 1449 | } else { |
| 1450 | iwe.u.data.flags = IW_ENCODE_DISABLED; |
| 1451 | } |
| 1452 | iwe.u.data.length = 0; |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1453 | start = iwe_stream_add_point(start, stop, &iwe, bss->ssid); |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1454 | |
| 1455 | current_val = start + IW_EV_LCP_LEN; |
| 1456 | |
| 1457 | iwe.cmd = SIOCGIWRATE; |
| 1458 | iwe.u.bitrate.fixed = 0; |
| 1459 | iwe.u.bitrate.disabled = 0; |
| 1460 | iwe.u.bitrate.value = 0; |
| 1461 | |
Dan Williams | 8c51276 | 2007-08-02 11:40:45 -0400 | [diff] [blame] | 1462 | for (j = 0; bss->rates[j] && (j < sizeof(bss->rates)); j++) { |
| 1463 | /* Bit rate given in 500 kb/s units */ |
| 1464 | iwe.u.bitrate.value = bss->rates[j] * 500000; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1465 | current_val = iwe_stream_add_value(start, current_val, |
| 1466 | stop, &iwe, IW_EV_PARAM_LEN); |
| 1467 | } |
| 1468 | if ((bss->mode == IW_MODE_ADHOC) |
Dan Williams | 717c933 | 2007-05-29 00:03:31 -0400 | [diff] [blame] | 1469 | && !libertas_ssid_cmp(adapter->curbssparams.ssid, |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1470 | adapter->curbssparams.ssid_len, |
| 1471 | bss->ssid, bss->ssid_len) |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1472 | && adapter->adhoccreate) { |
| 1473 | iwe.u.bitrate.value = 22 * 500000; |
| 1474 | current_val = iwe_stream_add_value(start, current_val, |
| 1475 | stop, &iwe, IW_EV_PARAM_LEN); |
| 1476 | } |
| 1477 | /* Check if we added any event */ |
| 1478 | if((current_val - start) > IW_EV_LCP_LEN) |
| 1479 | start = current_val; |
| 1480 | |
| 1481 | memset(&iwe, 0, sizeof(iwe)); |
| 1482 | if (bss->wpa_ie_len) { |
| 1483 | char buf[MAX_WPA_IE_LEN]; |
| 1484 | memcpy(buf, bss->wpa_ie, bss->wpa_ie_len); |
| 1485 | iwe.cmd = IWEVGENIE; |
| 1486 | iwe.u.data.length = bss->wpa_ie_len; |
| 1487 | start = iwe_stream_add_point(start, stop, &iwe, buf); |
| 1488 | } |
| 1489 | |
| 1490 | memset(&iwe, 0, sizeof(iwe)); |
| 1491 | if (bss->rsn_ie_len) { |
| 1492 | char buf[MAX_WPA_IE_LEN]; |
| 1493 | memcpy(buf, bss->rsn_ie, bss->rsn_ie_len); |
| 1494 | iwe.cmd = IWEVGENIE; |
| 1495 | iwe.u.data.length = bss->rsn_ie_len; |
| 1496 | start = iwe_stream_add_point(start, stop, &iwe, buf); |
| 1497 | } |
| 1498 | |
Dan Williams | 00af015 | 2007-08-02 13:14:56 -0400 | [diff] [blame] | 1499 | if (bss->mesh) { |
| 1500 | char custom[MAX_CUSTOM_LEN]; |
| 1501 | char *p = custom; |
| 1502 | |
| 1503 | iwe.cmd = IWEVCUSTOM; |
| 1504 | p += snprintf(p, MAX_CUSTOM_LEN - (p - custom), |
| 1505 | "mesh-type: olpc"); |
| 1506 | iwe.u.data.length = p - custom; |
| 1507 | if (iwe.u.data.length) |
| 1508 | start = iwe_stream_add_point(start, stop, &iwe, custom); |
| 1509 | } |
| 1510 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1511 | return start; |
| 1512 | } |
| 1513 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1514 | /** |
| 1515 | * @brief Retrieve the scan table entries via wireless tools IOCTL call |
| 1516 | * |
| 1517 | * @param dev A pointer to net_device structure |
| 1518 | * @param info A pointer to iw_request_info structure |
| 1519 | * @param dwrq A pointer to iw_point structure |
| 1520 | * @param extra A pointer to extra data buf |
| 1521 | * |
| 1522 | * @return 0 --success, otherwise fail |
| 1523 | */ |
| 1524 | int libertas_get_scan(struct net_device *dev, struct iw_request_info *info, |
| 1525 | struct iw_point *dwrq, char *extra) |
| 1526 | { |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1527 | #define SCAN_ITEM_SIZE 128 |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1528 | wlan_private *priv = dev->priv; |
| 1529 | wlan_adapter *adapter = priv->adapter; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1530 | int err = 0; |
| 1531 | char *ev = extra; |
| 1532 | char *stop = ev + dwrq->length; |
| 1533 | struct bss_descriptor * iter_bss; |
| 1534 | struct bss_descriptor * safe; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1535 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1536 | lbs_deb_enter(LBS_DEB_ASSOC); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1537 | |
Dan Williams | 80e78ef | 2007-05-25 22:18:47 -0400 | [diff] [blame] | 1538 | /* Update RSSI if current BSS is a locally created ad-hoc BSS */ |
Dan Williams | aeea0ab | 2007-05-25 22:30:48 -0400 | [diff] [blame] | 1539 | if ((adapter->mode == IW_MODE_ADHOC) && adapter->adhoccreate) { |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1540 | libertas_prepare_and_send_command(priv, CMD_802_11_RSSI, 0, |
| 1541 | CMD_OPTION_WAITFORRSP, 0, NULL); |
Dan Williams | 80e78ef | 2007-05-25 22:18:47 -0400 | [diff] [blame] | 1542 | } |
| 1543 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1544 | mutex_lock(&adapter->lock); |
| 1545 | list_for_each_entry_safe (iter_bss, safe, &adapter->network_list, list) { |
| 1546 | char * next_ev; |
| 1547 | unsigned long stale_time; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1548 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1549 | if (stop - ev < SCAN_ITEM_SIZE) { |
| 1550 | err = -E2BIG; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1551 | break; |
| 1552 | } |
| 1553 | |
Luis Carlos Cobo | 1e838bf | 2007-08-02 10:51:27 -0400 | [diff] [blame] | 1554 | /* For mesh device, list only mesh networks */ |
| 1555 | if (dev == priv->mesh_dev && !iter_bss->mesh) |
| 1556 | continue; |
| 1557 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1558 | /* Prune old an old scan result */ |
| 1559 | stale_time = iter_bss->last_scanned + DEFAULT_MAX_SCAN_AGE; |
| 1560 | if (time_after(jiffies, stale_time)) { |
| 1561 | list_move_tail (&iter_bss->list, |
| 1562 | &adapter->network_free_list); |
| 1563 | clear_bss_descriptor(iter_bss); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1564 | continue; |
| 1565 | } |
| 1566 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1567 | /* Translate to WE format this entry */ |
| 1568 | next_ev = libertas_translate_scan(priv, ev, stop, iter_bss); |
| 1569 | if (next_ev == NULL) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1570 | continue; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1571 | ev = next_ev; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1572 | } |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1573 | mutex_unlock(&adapter->lock); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1574 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1575 | dwrq->length = (ev - extra); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1576 | dwrq->flags = 0; |
| 1577 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1578 | lbs_deb_leave(LBS_DEB_ASSOC); |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1579 | return err; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1580 | } |
| 1581 | |
| 1582 | /** |
| 1583 | * @brief Prepare a scan command to be sent to the firmware |
| 1584 | * |
| 1585 | * Use the wlan_scan_cmd_config sent to the command processing module in |
| 1586 | * the libertas_prepare_and_send_command to configure a cmd_ds_802_11_scan command |
| 1587 | * struct to send to firmware. |
| 1588 | * |
| 1589 | * The fixed fields specifying the BSS type and BSSID filters as well as a |
| 1590 | * variable number/length of TLVs are sent in the command to firmware. |
| 1591 | * |
| 1592 | * @param priv A pointer to wlan_private structure |
| 1593 | * @param cmd A pointer to cmd_ds_command structure to be sent to |
| 1594 | * firmware with the cmd_DS_801_11_SCAN structure |
| 1595 | * @param pdata_buf Void pointer cast of a wlan_scan_cmd_config struct used |
| 1596 | * to set the fields/TLVs for the command sent to firmware |
| 1597 | * |
| 1598 | * @return 0 or -1 |
| 1599 | * |
| 1600 | * @sa wlan_scan_create_channel_list |
| 1601 | */ |
| 1602 | int libertas_cmd_80211_scan(wlan_private * priv, |
| 1603 | struct cmd_ds_command *cmd, void *pdata_buf) |
| 1604 | { |
| 1605 | struct cmd_ds_802_11_scan *pscan = &cmd->params.scan; |
| 1606 | struct wlan_scan_cmd_config *pscancfg; |
| 1607 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1608 | lbs_deb_enter(LBS_DEB_ASSOC); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1609 | |
| 1610 | pscancfg = pdata_buf; |
| 1611 | |
| 1612 | /* Set fixed field variables in scan command */ |
| 1613 | pscan->bsstype = pscancfg->bsstype; |
Dan Williams | 492b6da | 2007-08-02 11:16:07 -0400 | [diff] [blame] | 1614 | memcpy(pscan->bssid, pscancfg->bssid, ETH_ALEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1615 | memcpy(pscan->tlvbuffer, pscancfg->tlvbuffer, pscancfg->tlvbufferlen); |
| 1616 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1617 | cmd->command = cpu_to_le16(CMD_802_11_SCAN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1618 | |
| 1619 | /* size is equal to the sizeof(fixed portions) + the TLV len + header */ |
Dan Williams | 492b6da | 2007-08-02 11:16:07 -0400 | [diff] [blame] | 1620 | cmd->size = cpu_to_le16(sizeof(pscan->bsstype) + ETH_ALEN |
| 1621 | + pscancfg->tlvbufferlen + S_DS_GEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1622 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1623 | lbs_deb_scan("SCAN_CMD: command=%x, size=%x, seqnum=%x\n", |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 1624 | le16_to_cpu(cmd->command), le16_to_cpu(cmd->size), |
| 1625 | le16_to_cpu(cmd->seqnum)); |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1626 | |
| 1627 | lbs_deb_leave(LBS_DEB_ASSOC); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1628 | return 0; |
| 1629 | } |
| 1630 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1631 | static inline int is_same_network(struct bss_descriptor *src, |
| 1632 | struct bss_descriptor *dst) |
| 1633 | { |
| 1634 | /* A network is only a duplicate if the channel, BSSID, and ESSID |
| 1635 | * all match. We treat all <hidden> with the same BSSID and channel |
| 1636 | * as one network */ |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1637 | return ((src->ssid_len == dst->ssid_len) && |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1638 | (src->channel == dst->channel) && |
| 1639 | !compare_ether_addr(src->bssid, dst->bssid) && |
Dan Williams | d8efea2 | 2007-05-28 23:54:55 -0400 | [diff] [blame] | 1640 | !memcmp(src->ssid, dst->ssid, src->ssid_len)); |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1641 | } |
| 1642 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1643 | /** |
| 1644 | * @brief This function handles the command response of scan |
| 1645 | * |
| 1646 | * The response buffer for the scan command has the following |
| 1647 | * memory layout: |
| 1648 | * |
| 1649 | * .-----------------------------------------------------------. |
| 1650 | * | header (4 * sizeof(u16)): Standard command response hdr | |
| 1651 | * .-----------------------------------------------------------. |
| 1652 | * | bufsize (u16) : sizeof the BSS Description data | |
| 1653 | * .-----------------------------------------------------------. |
| 1654 | * | NumOfSet (u8) : Number of BSS Descs returned | |
| 1655 | * .-----------------------------------------------------------. |
| 1656 | * | BSSDescription data (variable, size given in bufsize) | |
| 1657 | * .-----------------------------------------------------------. |
| 1658 | * | TLV data (variable, size calculated using header->size, | |
| 1659 | * | bufsize and sizeof the fixed fields above) | |
| 1660 | * .-----------------------------------------------------------. |
| 1661 | * |
| 1662 | * @param priv A pointer to wlan_private structure |
| 1663 | * @param resp A pointer to cmd_ds_command |
| 1664 | * |
| 1665 | * @return 0 or -1 |
| 1666 | */ |
| 1667 | int libertas_ret_80211_scan(wlan_private * priv, struct cmd_ds_command *resp) |
| 1668 | { |
| 1669 | wlan_adapter *adapter = priv->adapter; |
| 1670 | struct cmd_ds_802_11_scan_rsp *pscan; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1671 | struct bss_descriptor * iter_bss; |
| 1672 | struct bss_descriptor * safe; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1673 | u8 *pbssinfo; |
| 1674 | u16 scanrespsize; |
| 1675 | int bytesleft; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1676 | int idx; |
| 1677 | int tlvbufsize; |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1678 | int ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1679 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1680 | lbs_deb_enter(LBS_DEB_ASSOC); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1681 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1682 | /* Prune old entries from scan table */ |
| 1683 | list_for_each_entry_safe (iter_bss, safe, &adapter->network_list, list) { |
| 1684 | unsigned long stale_time = iter_bss->last_scanned + DEFAULT_MAX_SCAN_AGE; |
| 1685 | if (time_before(jiffies, stale_time)) |
| 1686 | continue; |
| 1687 | list_move_tail (&iter_bss->list, &adapter->network_free_list); |
| 1688 | clear_bss_descriptor(iter_bss); |
| 1689 | } |
| 1690 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1691 | pscan = &resp->params.scanresp; |
| 1692 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1693 | if (pscan->nr_sets > MAX_NETWORK_COUNT) { |
| 1694 | lbs_deb_scan( |
| 1695 | "SCAN_RESP: too many scan results (%d, max %d)!!\n", |
| 1696 | pscan->nr_sets, MAX_NETWORK_COUNT); |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1697 | ret = -1; |
| 1698 | goto done; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1699 | } |
| 1700 | |
| 1701 | bytesleft = le16_to_cpu(pscan->bssdescriptsize); |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1702 | lbs_deb_scan("SCAN_RESP: bssdescriptsize %d\n", bytesleft); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1703 | |
| 1704 | scanrespsize = le16_to_cpu(resp->size); |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1705 | lbs_deb_scan("SCAN_RESP: returned %d AP before parsing\n", |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1706 | pscan->nr_sets); |
| 1707 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1708 | pbssinfo = pscan->bssdesc_and_tlvbuffer; |
| 1709 | |
| 1710 | /* The size of the TLV buffer is equal to the entire command response |
| 1711 | * size (scanrespsize) minus the fixed fields (sizeof()'s), the |
| 1712 | * BSS Descriptions (bssdescriptsize as bytesLef) and the command |
| 1713 | * response header (S_DS_GEN) |
| 1714 | */ |
| 1715 | tlvbufsize = scanrespsize - (bytesleft + sizeof(pscan->bssdescriptsize) |
| 1716 | + sizeof(pscan->nr_sets) |
| 1717 | + S_DS_GEN); |
| 1718 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1719 | /* |
| 1720 | * Process each scan response returned (pscan->nr_sets). Save |
| 1721 | * the information in the newbssentry and then insert into the |
| 1722 | * driver scan table either as an update to an existing entry |
| 1723 | * or as an addition at the end of the table |
| 1724 | */ |
| 1725 | for (idx = 0; idx < pscan->nr_sets && bytesleft; idx++) { |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1726 | struct bss_descriptor new; |
| 1727 | struct bss_descriptor * found = NULL; |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1728 | struct bss_descriptor * oldest = NULL; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame^] | 1729 | DECLARE_MAC_BUF(mac); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1730 | |
| 1731 | /* Process the data fields and IEs returned for this BSS */ |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1732 | memset(&new, 0, sizeof (struct bss_descriptor)); |
| 1733 | if (libertas_process_bss(&new, &pbssinfo, &bytesleft) != 0) { |
| 1734 | /* error parsing the scan response, skipped */ |
| 1735 | lbs_deb_scan("SCAN_RESP: process_bss returned ERROR\n"); |
| 1736 | continue; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1737 | } |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1738 | |
| 1739 | /* Try to find this bss in the scan table */ |
| 1740 | list_for_each_entry (iter_bss, &adapter->network_list, list) { |
| 1741 | if (is_same_network(iter_bss, &new)) { |
| 1742 | found = iter_bss; |
| 1743 | break; |
| 1744 | } |
| 1745 | |
| 1746 | if ((oldest == NULL) || |
| 1747 | (iter_bss->last_scanned < oldest->last_scanned)) |
| 1748 | oldest = iter_bss; |
| 1749 | } |
| 1750 | |
| 1751 | if (found) { |
| 1752 | /* found, clear it */ |
| 1753 | clear_bss_descriptor(found); |
| 1754 | } else if (!list_empty(&adapter->network_free_list)) { |
| 1755 | /* Pull one from the free list */ |
| 1756 | found = list_entry(adapter->network_free_list.next, |
| 1757 | struct bss_descriptor, list); |
| 1758 | list_move_tail(&found->list, &adapter->network_list); |
| 1759 | } else if (oldest) { |
| 1760 | /* If there are no more slots, expire the oldest */ |
| 1761 | found = oldest; |
| 1762 | clear_bss_descriptor(found); |
| 1763 | list_move_tail(&found->list, &adapter->network_list); |
| 1764 | } else { |
| 1765 | continue; |
| 1766 | } |
| 1767 | |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame^] | 1768 | lbs_deb_scan("SCAN_RESP: BSSID = %s\n", |
| 1769 | print_mac(mac, new.bssid)); |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1770 | |
Dan Williams | fcdb53d | 2007-05-25 16:15:56 -0400 | [diff] [blame] | 1771 | /* Copy the locally created newbssentry to the scan table */ |
| 1772 | memcpy(found, &new, offsetof(struct bss_descriptor, list)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1773 | } |
| 1774 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1775 | ret = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1776 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1777 | done: |
| 1778 | lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret); |
| 1779 | return ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1780 | } |