2 * Functions implementing wlan scan IOCTL and firmware command APIs
4 * IOCTL handlers as well as command preperation and response routines
5 * for sending scan commands to the firmware.
7 #include <linux/ctype.h>
9 #include <linux/netdevice.h>
10 #include <linux/wireless.h>
11 #include <linux/etherdevice.h>
13 #include <net/ieee80211.h>
14 #include <net/iw_handler.h>
16 #include <asm/unaligned.h>
25 //! Approximate amount of data needed to pass a scan result back to iwlist
26 #define MAX_SCAN_CELL_SIZE (IW_EV_ADDR_LEN \
33 + 40) /* 40 for WPAIE */
35 //! Memory needed to store a max sized channel List TLV for a firmware scan
36 #define CHAN_TLV_MAX_SIZE (sizeof(struct mrvlietypesheader) \
37 + (MRVDRV_MAX_CHANNELS_PER_SCAN \
38 * sizeof(struct chanscanparamset)))
40 //! Memory needed to store a max number/size SSID TLV for a firmware scan
41 #define SSID_TLV_MAX_SIZE (1 * sizeof(struct mrvlietypes_ssidparamset))
43 //! Maximum memory needed for a cmd_ds_802_11_scan with all TLVs at max
44 #define MAX_SCAN_CFG_ALLOC (sizeof(struct cmd_ds_802_11_scan) \
45 + CHAN_TLV_MAX_SIZE + SSID_TLV_MAX_SIZE)
47 //! The maximum number of channels the firmware can scan per command
48 #define MRVDRV_MAX_CHANNELS_PER_SCAN 14
51 * @brief Number of channels to scan per firmware scan command issuance.
53 * Number restricted to prevent hitting the limit on the amount of scan data
54 * returned in a single firmware scan command.
56 #define MRVDRV_CHANNELS_PER_SCAN_CMD 4
58 //! Scan time specified in the channel TLV for each channel for passive scans
59 #define MRVDRV_PASSIVE_SCAN_CHAN_TIME 100
61 //! Scan time specified in the channel TLV for each channel for active scans
62 #define MRVDRV_ACTIVE_SCAN_CHAN_TIME 100
64 static int lbs_ret_80211_scan(struct lbs_private *priv, unsigned long dummy,
65 struct cmd_header *resp);
67 /*********************************************************************/
69 /* Misc helper functions */
71 /*********************************************************************/
74 * @brief Unsets the MSB on basic rates
76 * Scan through an array and unset the MSB for basic data rates.
78 * @param rates buffer of data rates
79 * @param len size of buffer
81 static void lbs_unset_basic_rate_flags(u8 *rates, size_t len)
85 for (i = 0; i < len; i++)
90 static inline void clear_bss_descriptor(struct bss_descriptor *bss)
92 /* Don't blow away ->list, just BSS data */
93 memset(bss, 0, offsetof(struct bss_descriptor, list));
97 * @brief Compare two SSIDs
99 * @param ssid1 A pointer to ssid to compare
100 * @param ssid2 A pointer to ssid to compare
102 * @return 0: ssid is same, otherwise is different
104 int lbs_ssid_cmp(uint8_t *ssid1, uint8_t ssid1_len, uint8_t *ssid2,
107 if (ssid1_len != ssid2_len)
110 return memcmp(ssid1, ssid2, ssid1_len);
113 static inline int match_bss_no_security(struct lbs_802_11_security *secinfo,
114 struct bss_descriptor *match_bss)
116 if (!secinfo->wep_enabled && !secinfo->WPAenabled
117 && !secinfo->WPA2enabled
118 && match_bss->wpa_ie[0] != MFIE_TYPE_GENERIC
119 && match_bss->rsn_ie[0] != MFIE_TYPE_RSN
120 && !(match_bss->capability & WLAN_CAPABILITY_PRIVACY))
126 static inline int match_bss_static_wep(struct lbs_802_11_security *secinfo,
127 struct bss_descriptor *match_bss)
129 if (secinfo->wep_enabled && !secinfo->WPAenabled
130 && !secinfo->WPA2enabled
131 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY))
137 static inline int match_bss_wpa(struct lbs_802_11_security *secinfo,
138 struct bss_descriptor *match_bss)
140 if (!secinfo->wep_enabled && secinfo->WPAenabled
141 && (match_bss->wpa_ie[0] == MFIE_TYPE_GENERIC)
142 /* privacy bit may NOT be set in some APs like LinkSys WRT54G
143 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY) */
150 static inline int match_bss_wpa2(struct lbs_802_11_security *secinfo,
151 struct bss_descriptor *match_bss)
153 if (!secinfo->wep_enabled && secinfo->WPA2enabled
154 && (match_bss->rsn_ie[0] == MFIE_TYPE_RSN)
155 /* privacy bit may NOT be set in some APs like LinkSys WRT54G
156 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY) */
163 static inline int match_bss_dynamic_wep(struct lbs_802_11_security *secinfo,
164 struct bss_descriptor *match_bss)
166 if (!secinfo->wep_enabled && !secinfo->WPAenabled
167 && !secinfo->WPA2enabled
168 && (match_bss->wpa_ie[0] != MFIE_TYPE_GENERIC)
169 && (match_bss->rsn_ie[0] != MFIE_TYPE_RSN)
170 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY))
176 static inline int is_same_network(struct bss_descriptor *src,
177 struct bss_descriptor *dst)
179 /* A network is only a duplicate if the channel, BSSID, and ESSID
180 * all match. We treat all <hidden> with the same BSSID and channel
182 return ((src->ssid_len == dst->ssid_len) &&
183 (src->channel == dst->channel) &&
184 !compare_ether_addr(src->bssid, dst->bssid) &&
185 !memcmp(src->ssid, dst->ssid, src->ssid_len));
189 * @brief Check if a scanned network compatible with the driver settings
191 * WEP WPA WPA2 ad-hoc encrypt Network
192 * enabled enabled enabled AES mode privacy WPA WPA2 Compatible
193 * 0 0 0 0 NONE 0 0 0 yes No security
194 * 1 0 0 0 NONE 1 0 0 yes Static WEP
195 * 0 1 0 0 x 1x 1 x yes WPA
196 * 0 0 1 0 x 1x x 1 yes WPA2
197 * 0 0 0 1 NONE 1 0 0 yes Ad-hoc AES
198 * 0 0 0 0 !=NONE 1 0 0 yes Dynamic WEP
201 * @param priv A pointer to struct lbs_private
202 * @param index Index in scantable to check against current driver settings
203 * @param mode Network mode: Infrastructure or IBSS
205 * @return Index in scantable, or error code if negative
207 static int is_network_compatible(struct lbs_private *priv,
208 struct bss_descriptor *bss, uint8_t mode)
212 lbs_deb_enter(LBS_DEB_SCAN);
214 if (bss->mode != mode)
217 if ((matched = match_bss_no_security(&priv->secinfo, bss))) {
219 } else if ((matched = match_bss_static_wep(&priv->secinfo, bss))) {
221 } else if ((matched = match_bss_wpa(&priv->secinfo, bss))) {
222 lbs_deb_scan("is_network_compatible() WPA: wpa_ie 0x%x "
223 "wpa2_ie 0x%x WEP %s WPA %s WPA2 %s "
224 "privacy 0x%x\n", bss->wpa_ie[0], bss->rsn_ie[0],
225 priv->secinfo.wep_enabled ? "e" : "d",
226 priv->secinfo.WPAenabled ? "e" : "d",
227 priv->secinfo.WPA2enabled ? "e" : "d",
228 (bss->capability & WLAN_CAPABILITY_PRIVACY));
230 } else if ((matched = match_bss_wpa2(&priv->secinfo, bss))) {
231 lbs_deb_scan("is_network_compatible() WPA2: wpa_ie 0x%x "
232 "wpa2_ie 0x%x WEP %s WPA %s WPA2 %s "
233 "privacy 0x%x\n", bss->wpa_ie[0], bss->rsn_ie[0],
234 priv->secinfo.wep_enabled ? "e" : "d",
235 priv->secinfo.WPAenabled ? "e" : "d",
236 priv->secinfo.WPA2enabled ? "e" : "d",
237 (bss->capability & WLAN_CAPABILITY_PRIVACY));
239 } else if ((matched = match_bss_dynamic_wep(&priv->secinfo, bss))) {
240 lbs_deb_scan("is_network_compatible() dynamic WEP: "
241 "wpa_ie 0x%x wpa2_ie 0x%x privacy 0x%x\n",
242 bss->wpa_ie[0], bss->rsn_ie[0],
243 (bss->capability & WLAN_CAPABILITY_PRIVACY));
247 /* bss security settings don't match those configured on card */
248 lbs_deb_scan("is_network_compatible() FAILED: wpa_ie 0x%x "
249 "wpa2_ie 0x%x WEP %s WPA %s WPA2 %s privacy 0x%x\n",
250 bss->wpa_ie[0], bss->rsn_ie[0],
251 priv->secinfo.wep_enabled ? "e" : "d",
252 priv->secinfo.WPAenabled ? "e" : "d",
253 priv->secinfo.WPA2enabled ? "e" : "d",
254 (bss->capability & WLAN_CAPABILITY_PRIVACY));
257 lbs_deb_leave_args(LBS_DEB_SCAN, "matched: %d", matched);
263 /*********************************************************************/
265 /* Main scanning support */
267 /*********************************************************************/
270 * @brief Create a channel list for the driver to scan based on region info
272 * Only used from lbs_scan_setup_scan_config()
274 * Use the driver region/band information to construct a comprehensive list
275 * of channels to scan. This routine is used for any scan that is not
276 * provided a specific channel list to scan.
278 * @param priv A pointer to struct lbs_private structure
279 * @param scanchanlist Output parameter: resulting channel list to scan
283 static int lbs_scan_create_channel_list(struct lbs_private *priv,
284 struct chanscanparamset *scanchanlist)
286 struct region_channel *scanregion;
287 struct chan_freq_power *cfp;
295 /* Set the default scan type to the user specified type, will later
296 * be changed to passive on a per channel basis if restricted by
297 * regulatory requirements (11d or 11h)
299 scantype = CMD_SCAN_TYPE_ACTIVE;
301 for (rgnidx = 0; rgnidx < ARRAY_SIZE(priv->region_channel); rgnidx++) {
302 if (priv->enable11d && (priv->connect_status != LBS_CONNECTED)
303 && (priv->mesh_connect_status != LBS_CONNECTED)) {
304 /* Scan all the supported chan for the first scan */
305 if (!priv->universal_channel[rgnidx].valid)
307 scanregion = &priv->universal_channel[rgnidx];
309 /* clear the parsed_region_chan for the first scan */
310 memset(&priv->parsed_region_chan, 0x00,
311 sizeof(priv->parsed_region_chan));
313 if (!priv->region_channel[rgnidx].valid)
315 scanregion = &priv->region_channel[rgnidx];
318 for (nextchan = 0; nextchan < scanregion->nrcfp; nextchan++, chanidx++) {
319 struct chanscanparamset *chan = &scanchanlist[chanidx];
321 cfp = scanregion->CFP + nextchan;
324 scantype = lbs_get_scan_type_11d(cfp->channel,
325 &priv->parsed_region_chan);
327 if (scanregion->band == BAND_B || scanregion->band == BAND_G)
328 chan->radiotype = CMD_SCAN_RADIO_TYPE_BG;
330 if (scantype == CMD_SCAN_TYPE_PASSIVE) {
331 chan->maxscantime = cpu_to_le16(MRVDRV_PASSIVE_SCAN_CHAN_TIME);
332 chan->chanscanmode.passivescan = 1;
334 chan->maxscantime = cpu_to_le16(MRVDRV_ACTIVE_SCAN_CHAN_TIME);
335 chan->chanscanmode.passivescan = 0;
338 chan->channumber = cfp->channel;
346 * Add SSID TLV of the form:
350 * ssid 4d 4e 54 45 53 54
352 static int lbs_scan_add_ssid_tlv(struct lbs_private *priv, u8 *tlv)
354 struct mrvlietypes_ssidparamset *ssid_tlv = (void *)tlv;
356 ssid_tlv->header.type = cpu_to_le16(TLV_TYPE_SSID);
357 ssid_tlv->header.len = cpu_to_le16(priv->scan_ssid_len);
358 memcpy(ssid_tlv->ssid, priv->scan_ssid, priv->scan_ssid_len);
359 return sizeof(ssid_tlv->header) + priv->scan_ssid_len;
364 * Add CHANLIST TLV of the form
366 * TLV-ID CHANLIST 01 01
368 * channel 1 00 01 00 00 00 64 00
372 * min scan time 00 00
373 * max scan time 64 00
374 * channel 2 00 02 00 00 00 64 00
375 * channel 3 00 03 00 00 00 64 00
376 * channel 4 00 04 00 00 00 64 00
377 * channel 5 00 05 00 00 00 64 00
378 * channel 6 00 06 00 00 00 64 00
379 * channel 7 00 07 00 00 00 64 00
380 * channel 8 00 08 00 00 00 64 00
381 * channel 9 00 09 00 00 00 64 00
382 * channel 10 00 0a 00 00 00 64 00
383 * channel 11 00 0b 00 00 00 64 00
384 * channel 12 00 0c 00 00 00 64 00
385 * channel 13 00 0d 00 00 00 64 00
388 static int lbs_scan_add_chanlist_tlv(uint8_t *tlv,
389 struct chanscanparamset *chan_list,
392 size_t size = sizeof(struct chanscanparamset) *chan_count;
393 struct mrvlietypes_chanlistparamset *chan_tlv = (void *)tlv;
395 chan_tlv->header.type = cpu_to_le16(TLV_TYPE_CHANLIST);
396 memcpy(chan_tlv->chanscanparam, chan_list, size);
397 chan_tlv->header.len = cpu_to_le16(size);
398 return sizeof(chan_tlv->header) + size;
403 * Add RATES TLV of the form
407 * rates 82 84 8b 96 0c 12 18 24 30 48 60 6c
409 * The rates are in lbs_bg_rates[], but for the 802.11b
410 * rates the high bit isn't set.
412 static int lbs_scan_add_rates_tlv(uint8_t *tlv)
415 struct mrvlietypes_ratesparamset *rate_tlv = (void *)tlv;
417 rate_tlv->header.type = cpu_to_le16(TLV_TYPE_RATES);
418 tlv += sizeof(rate_tlv->header);
419 for (i = 0; i < MAX_RATES; i++) {
420 *tlv = lbs_bg_rates[i];
423 /* This code makes sure that the 802.11b rates (1 MBit/s, 2
424 MBit/s, 5.5 MBit/s and 11 MBit/s get's the high bit set.
425 Note that the values are MBit/s * 2, to mark them as
426 basic rates so that the firmware likes it better */
427 if (*tlv == 0x02 || *tlv == 0x04 ||
428 *tlv == 0x0b || *tlv == 0x16)
432 rate_tlv->header.len = cpu_to_le16(i);
433 return sizeof(rate_tlv->header) + i;
438 * Generate the CMD_802_11_SCAN command with the proper tlv
439 * for a bunch of channels.
441 static int lbs_do_scan(struct lbs_private *priv, uint8_t bsstype,
442 struct chanscanparamset *chan_list, int chan_count)
445 struct cmd_ds_802_11_scan *scan_cmd;
446 uint8_t *tlv; /* pointer into our current, growing TLV storage area */
448 lbs_deb_enter_args(LBS_DEB_SCAN, "bsstype %d, chanlist[].chan %d, chan_count %d",
449 bsstype, chan_list[0].channumber, chan_count);
451 /* create the fixed part for scan command */
452 scan_cmd = kzalloc(MAX_SCAN_CFG_ALLOC, GFP_KERNEL);
453 if (scan_cmd == NULL)
456 tlv = scan_cmd->tlvbuffer;
457 /* TODO: do we need to scan for a specific BSSID?
458 memcpy(scan_cmd->bssid, priv->scan_bssid, ETH_ALEN); */
459 scan_cmd->bsstype = bsstype;
462 if (priv->scan_ssid_len)
463 tlv += lbs_scan_add_ssid_tlv(priv, tlv);
464 if (chan_list && chan_count)
465 tlv += lbs_scan_add_chanlist_tlv(tlv, chan_list, chan_count);
466 tlv += lbs_scan_add_rates_tlv(tlv);
468 /* This is the final data we are about to send */
469 scan_cmd->hdr.size = cpu_to_le16(tlv - (uint8_t *)scan_cmd);
470 lbs_deb_hex(LBS_DEB_SCAN, "SCAN_CMD", (void *)scan_cmd,
472 lbs_deb_hex(LBS_DEB_SCAN, "SCAN_TLV", scan_cmd->tlvbuffer,
473 tlv - scan_cmd->tlvbuffer);
475 ret = __lbs_cmd(priv, CMD_802_11_SCAN, &scan_cmd->hdr,
476 le16_to_cpu(scan_cmd->hdr.size),
477 lbs_ret_80211_scan, 0);
481 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
487 * @brief Internal function used to start a scan based on an input config
489 * Also used from debugfs
491 * Use the input user scan configuration information when provided in
492 * order to send the appropriate scan commands to firmware to populate or
493 * update the internal driver scan table
495 * @param priv A pointer to struct lbs_private structure
496 * @param full_scan Do a full-scan (blocking)
498 * @return 0 or < 0 if error
500 static int lbs_scan_networks(struct lbs_private *priv, int full_scan)
503 struct chanscanparamset *chan_list;
504 struct chanscanparamset *curr_chans;
506 uint8_t bsstype = CMD_BSS_TYPE_ANY;
507 int numchannels = MRVDRV_CHANNELS_PER_SCAN_CMD;
508 union iwreq_data wrqu;
509 #ifdef CONFIG_LIBERTAS_DEBUG
510 struct bss_descriptor *iter;
512 DECLARE_MAC_BUF(mac);
515 lbs_deb_enter_args(LBS_DEB_SCAN, "full_scan %d", full_scan);
517 /* Cancel any partial outstanding partial scans if this scan
520 if (full_scan && delayed_work_pending(&priv->scan_work))
521 cancel_delayed_work(&priv->scan_work);
523 /* User-specified bsstype or channel list
524 TODO: this can be implemented if some user-space application
525 need the feature. Formerly, it was accessible from debugfs,
526 but then nowhere used.
528 if (user_cfg->bsstype)
529 bsstype = user_cfg->bsstype;
532 lbs_deb_scan("numchannels %d, bsstype %d\n", numchannels, bsstype);
534 /* Create list of channels to scan */
535 chan_list = kzalloc(sizeof(struct chanscanparamset) *
536 LBS_IOCTL_USER_SCAN_CHAN_MAX, GFP_KERNEL);
538 lbs_pr_alert("SCAN: chan_list empty\n");
542 /* We want to scan all channels */
543 chan_count = lbs_scan_create_channel_list(priv, chan_list);
545 netif_stop_queue(priv->dev);
546 netif_carrier_off(priv->dev);
547 if (priv->mesh_dev) {
548 netif_stop_queue(priv->mesh_dev);
549 netif_carrier_off(priv->mesh_dev);
552 /* Prepare to continue an interrupted scan */
553 lbs_deb_scan("chan_count %d, scan_channel %d\n",
554 chan_count, priv->scan_channel);
555 curr_chans = chan_list;
556 /* advance channel list by already-scanned-channels */
557 if (priv->scan_channel > 0) {
558 curr_chans += priv->scan_channel;
559 chan_count -= priv->scan_channel;
562 /* Send scan command(s)
563 * numchannels contains the number of channels we should maximally scan
564 * chan_count is the total number of channels to scan
568 int to_scan = min(numchannels, chan_count);
569 lbs_deb_scan("scanning %d of %d channels\n",
570 to_scan, chan_count);
571 ret = lbs_do_scan(priv, bsstype, curr_chans,
574 lbs_pr_err("SCAN_CMD failed\n");
577 curr_chans += to_scan;
578 chan_count -= to_scan;
580 /* somehow schedule the next part of the scan */
581 if (chan_count && !full_scan &&
582 !priv->surpriseremoved) {
583 /* -1 marks just that we're currently scanning */
584 if (priv->scan_channel < 0)
585 priv->scan_channel = to_scan;
587 priv->scan_channel += to_scan;
588 cancel_delayed_work(&priv->scan_work);
589 queue_delayed_work(priv->work_thread, &priv->scan_work,
590 msecs_to_jiffies(300));
591 /* skip over GIWSCAN event */
596 memset(&wrqu, 0, sizeof(union iwreq_data));
597 wireless_send_event(priv->dev, SIOCGIWSCAN, &wrqu, NULL);
599 #ifdef CONFIG_LIBERTAS_DEBUG
600 /* Dump the scan table */
601 mutex_lock(&priv->lock);
602 lbs_deb_scan("scan table:\n");
603 list_for_each_entry(iter, &priv->network_list, list)
604 lbs_deb_scan("%02d: BSSID %s, RSSI %d, SSID '%s'\n",
605 i++, print_mac(mac, iter->bssid), (int)iter->rssi,
606 escape_essid(iter->ssid, iter->ssid_len));
607 mutex_unlock(&priv->lock);
611 priv->scan_channel = 0;
614 if (priv->connect_status == LBS_CONNECTED) {
615 netif_carrier_on(priv->dev);
616 if (!priv->tx_pending_len)
617 netif_wake_queue(priv->dev);
619 if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED)) {
620 netif_carrier_on(priv->mesh_dev);
621 if (!priv->tx_pending_len)
622 netif_wake_queue(priv->mesh_dev);
626 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
633 void lbs_scan_worker(struct work_struct *work)
635 struct lbs_private *priv =
636 container_of(work, struct lbs_private, scan_work.work);
638 lbs_deb_enter(LBS_DEB_SCAN);
639 lbs_scan_networks(priv, 0);
640 lbs_deb_leave(LBS_DEB_SCAN);
644 /*********************************************************************/
646 /* Result interpretation */
648 /*********************************************************************/
651 * @brief Interpret a BSS scan response returned from the firmware
653 * Parse the various fixed fields and IEs passed back for a a BSS probe
654 * response or beacon from the scan command. Record information as needed
655 * in the scan table struct bss_descriptor for that entry.
657 * @param bss Output parameter: Pointer to the BSS Entry
661 static int lbs_process_bss(struct bss_descriptor *bss,
662 uint8_t **pbeaconinfo, int *bytesleft)
664 struct ieeetypes_fhparamset *pFH;
665 struct ieeetypes_dsparamset *pDS;
666 struct ieeetypes_cfparamset *pCF;
667 struct ieeetypes_ibssparamset *pibss;
668 DECLARE_MAC_BUF(mac);
669 struct ieeetypes_countryinfoset *pcountryinfo;
670 uint8_t *pos, *end, *p;
671 uint8_t n_ex_rates = 0, got_basic_rates = 0, n_basic_rates = 0;
672 uint16_t beaconsize = 0;
675 lbs_deb_enter(LBS_DEB_SCAN);
677 if (*bytesleft >= sizeof(beaconsize)) {
678 /* Extract & convert beacon size from the command buffer */
679 beaconsize = le16_to_cpu(get_unaligned((__le16 *)*pbeaconinfo));
680 *bytesleft -= sizeof(beaconsize);
681 *pbeaconinfo += sizeof(beaconsize);
684 if (beaconsize == 0 || beaconsize > *bytesleft) {
685 *pbeaconinfo += *bytesleft;
691 /* Initialize the current working beacon pointer for this BSS iteration */
693 end = pos + beaconsize;
695 /* Advance the return beacon pointer past the current beacon */
696 *pbeaconinfo += beaconsize;
697 *bytesleft -= beaconsize;
699 memcpy(bss->bssid, pos, ETH_ALEN);
700 lbs_deb_scan("process_bss: BSSID %s\n", print_mac(mac, bss->bssid));
703 if ((end - pos) < 12) {
704 lbs_deb_scan("process_bss: Not enough bytes left\n");
710 * next 4 fields are RSSI, time stamp, beacon interval,
711 * and capability information
714 /* RSSI is 1 byte long */
716 lbs_deb_scan("process_bss: RSSI %d\n", *pos);
719 /* time stamp is 8 bytes long */
722 /* beacon interval is 2 bytes long */
723 bss->beaconperiod = le16_to_cpup((void *) pos);
726 /* capability information is 2 bytes long */
727 bss->capability = le16_to_cpup((void *) pos);
728 lbs_deb_scan("process_bss: capabilities 0x%04x\n", bss->capability);
731 if (bss->capability & WLAN_CAPABILITY_PRIVACY)
732 lbs_deb_scan("process_bss: WEP enabled\n");
733 if (bss->capability & WLAN_CAPABILITY_IBSS)
734 bss->mode = IW_MODE_ADHOC;
736 bss->mode = IW_MODE_INFRA;
738 /* rest of the current buffer are IE's */
739 lbs_deb_scan("process_bss: IE len %zd\n", end - pos);
740 lbs_deb_hex(LBS_DEB_SCAN, "process_bss: IE info", pos, end - pos);
742 /* process variable IE */
743 while (pos <= end - 2) {
744 struct ieee80211_info_element * elem = (void *)pos;
746 if (pos + elem->len > end) {
747 lbs_deb_scan("process_bss: error in processing IE, "
748 "bytes left < IE length\n");
754 bss->ssid_len = elem->len;
755 memcpy(bss->ssid, elem->data, elem->len);
756 lbs_deb_scan("got SSID IE: '%s', len %u\n",
757 escape_essid(bss->ssid, bss->ssid_len),
761 case MFIE_TYPE_RATES:
762 n_basic_rates = min_t(uint8_t, MAX_RATES, elem->len);
763 memcpy(bss->rates, elem->data, n_basic_rates);
765 lbs_deb_scan("got RATES IE\n");
768 case MFIE_TYPE_FH_SET:
769 pFH = (struct ieeetypes_fhparamset *) pos;
770 memmove(&bss->phyparamset.fhparamset, pFH,
771 sizeof(struct ieeetypes_fhparamset));
772 lbs_deb_scan("got FH IE\n");
775 case MFIE_TYPE_DS_SET:
776 pDS = (struct ieeetypes_dsparamset *) pos;
777 bss->channel = pDS->currentchan;
778 memcpy(&bss->phyparamset.dsparamset, pDS,
779 sizeof(struct ieeetypes_dsparamset));
780 lbs_deb_scan("got DS IE, channel %d\n", bss->channel);
783 case MFIE_TYPE_CF_SET:
784 pCF = (struct ieeetypes_cfparamset *) pos;
785 memcpy(&bss->ssparamset.cfparamset, pCF,
786 sizeof(struct ieeetypes_cfparamset));
787 lbs_deb_scan("got CF IE\n");
790 case MFIE_TYPE_IBSS_SET:
791 pibss = (struct ieeetypes_ibssparamset *) pos;
792 bss->atimwindow = le16_to_cpu(pibss->atimwindow);
793 memmove(&bss->ssparamset.ibssparamset, pibss,
794 sizeof(struct ieeetypes_ibssparamset));
795 lbs_deb_scan("got IBSS IE\n");
798 case MFIE_TYPE_COUNTRY:
799 pcountryinfo = (struct ieeetypes_countryinfoset *) pos;
800 lbs_deb_scan("got COUNTRY IE\n");
801 if (pcountryinfo->len < sizeof(pcountryinfo->countrycode)
802 || pcountryinfo->len > 254) {
803 lbs_deb_scan("process_bss: 11D- Err CountryInfo len %d, min %zd, max 254\n",
804 pcountryinfo->len, sizeof(pcountryinfo->countrycode));
809 memcpy(&bss->countryinfo, pcountryinfo, pcountryinfo->len + 2);
810 lbs_deb_hex(LBS_DEB_SCAN, "process_bss: 11d countryinfo",
811 (uint8_t *) pcountryinfo,
812 (int) (pcountryinfo->len + 2));
815 case MFIE_TYPE_RATES_EX:
816 /* only process extended supported rate if data rate is
817 * already found. Data rate IE should come before
818 * extended supported rate IE
820 lbs_deb_scan("got RATESEX IE\n");
821 if (!got_basic_rates) {
822 lbs_deb_scan("... but ignoring it\n");
826 n_ex_rates = elem->len;
827 if (n_basic_rates + n_ex_rates > MAX_RATES)
828 n_ex_rates = MAX_RATES - n_basic_rates;
830 p = bss->rates + n_basic_rates;
831 memcpy(p, elem->data, n_ex_rates);
834 case MFIE_TYPE_GENERIC:
835 if (elem->len >= 4 &&
836 elem->data[0] == 0x00 && elem->data[1] == 0x50 &&
837 elem->data[2] == 0xf2 && elem->data[3] == 0x01) {
838 bss->wpa_ie_len = min(elem->len + 2, MAX_WPA_IE_LEN);
839 memcpy(bss->wpa_ie, elem, bss->wpa_ie_len);
840 lbs_deb_scan("got WPA IE\n");
841 lbs_deb_hex(LBS_DEB_SCAN, "WPA IE", bss->wpa_ie, elem->len);
842 } else if (elem->len >= MARVELL_MESH_IE_LENGTH &&
843 elem->data[0] == 0x00 && elem->data[1] == 0x50 &&
844 elem->data[2] == 0x43 && elem->data[3] == 0x04) {
845 lbs_deb_scan("got mesh IE\n");
848 lbs_deb_scan("got generic IE: %02x:%02x:%02x:%02x, len %d\n",
849 elem->data[0], elem->data[1],
850 elem->data[2], elem->data[3],
856 lbs_deb_scan("got RSN IE\n");
857 bss->rsn_ie_len = min(elem->len + 2, MAX_WPA_IE_LEN);
858 memcpy(bss->rsn_ie, elem, bss->rsn_ie_len);
859 lbs_deb_hex(LBS_DEB_SCAN, "process_bss: RSN_IE",
860 bss->rsn_ie, elem->len);
864 lbs_deb_scan("got IE 0x%04x, len %d\n",
865 elem->id, elem->len);
869 pos += elem->len + 2;
873 bss->last_scanned = jiffies;
874 lbs_unset_basic_rate_flags(bss->rates, sizeof(bss->rates));
879 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
884 * @brief This function finds a specific compatible BSSID in the scan list
886 * Used in association code
888 * @param priv A pointer to struct lbs_private
889 * @param bssid BSSID to find in the scan list
890 * @param mode Network mode: Infrastructure or IBSS
892 * @return index in BSSID list, or error return code (< 0)
894 struct bss_descriptor *lbs_find_bssid_in_list(struct lbs_private *priv,
895 uint8_t *bssid, uint8_t mode)
897 struct bss_descriptor *iter_bss;
898 struct bss_descriptor *found_bss = NULL;
900 lbs_deb_enter(LBS_DEB_SCAN);
905 lbs_deb_hex(LBS_DEB_SCAN, "looking for", bssid, ETH_ALEN);
907 /* Look through the scan table for a compatible match. The loop will
908 * continue past a matched bssid that is not compatible in case there
909 * is an AP with multiple SSIDs assigned to the same BSSID
911 mutex_lock(&priv->lock);
912 list_for_each_entry (iter_bss, &priv->network_list, list) {
913 if (compare_ether_addr(iter_bss->bssid, bssid))
914 continue; /* bssid doesn't match */
918 if (!is_network_compatible(priv, iter_bss, mode))
920 found_bss = iter_bss;
923 found_bss = iter_bss;
927 mutex_unlock(&priv->lock);
930 lbs_deb_leave_args(LBS_DEB_SCAN, "found_bss %p", found_bss);
935 * @brief This function finds ssid in ssid list.
937 * Used in association code
939 * @param priv A pointer to struct lbs_private
940 * @param ssid SSID to find in the list
941 * @param bssid BSSID to qualify the SSID selection (if provided)
942 * @param mode Network mode: Infrastructure or IBSS
944 * @return index in BSSID list
946 struct bss_descriptor *lbs_find_ssid_in_list(struct lbs_private *priv,
947 uint8_t *ssid, uint8_t ssid_len,
948 uint8_t *bssid, uint8_t mode,
951 uint8_t bestrssi = 0;
952 struct bss_descriptor * iter_bss = NULL;
953 struct bss_descriptor * found_bss = NULL;
954 struct bss_descriptor * tmp_oldest = NULL;
956 lbs_deb_enter(LBS_DEB_SCAN);
958 mutex_lock(&priv->lock);
960 list_for_each_entry (iter_bss, &priv->network_list, list) {
962 || (iter_bss->last_scanned < tmp_oldest->last_scanned))
963 tmp_oldest = iter_bss;
965 if (lbs_ssid_cmp(iter_bss->ssid, iter_bss->ssid_len,
966 ssid, ssid_len) != 0)
967 continue; /* ssid doesn't match */
968 if (bssid && compare_ether_addr(iter_bss->bssid, bssid) != 0)
969 continue; /* bssid doesn't match */
970 if ((channel > 0) && (iter_bss->channel != channel))
971 continue; /* channel doesn't match */
976 if (!is_network_compatible(priv, iter_bss, mode))
980 /* Found requested BSSID */
981 found_bss = iter_bss;
985 if (SCAN_RSSI(iter_bss->rssi) > bestrssi) {
986 bestrssi = SCAN_RSSI(iter_bss->rssi);
987 found_bss = iter_bss;
992 if (SCAN_RSSI(iter_bss->rssi) > bestrssi) {
993 bestrssi = SCAN_RSSI(iter_bss->rssi);
994 found_bss = iter_bss;
1001 mutex_unlock(&priv->lock);
1002 lbs_deb_leave_args(LBS_DEB_SCAN, "found_bss %p", found_bss);
1007 * @brief This function finds the best SSID in the Scan List
1009 * Search the scan table for the best SSID that also matches the current
1010 * adapter network preference (infrastructure or adhoc)
1012 * @param priv A pointer to struct lbs_private
1014 * @return index in BSSID list
1016 static struct bss_descriptor *lbs_find_best_ssid_in_list(struct lbs_private *priv,
1019 uint8_t bestrssi = 0;
1020 struct bss_descriptor *iter_bss;
1021 struct bss_descriptor *best_bss = NULL;
1023 lbs_deb_enter(LBS_DEB_SCAN);
1025 mutex_lock(&priv->lock);
1027 list_for_each_entry (iter_bss, &priv->network_list, list) {
1031 if (!is_network_compatible(priv, iter_bss, mode))
1033 if (SCAN_RSSI(iter_bss->rssi) <= bestrssi)
1035 bestrssi = SCAN_RSSI(iter_bss->rssi);
1036 best_bss = iter_bss;
1040 if (SCAN_RSSI(iter_bss->rssi) <= bestrssi)
1042 bestrssi = SCAN_RSSI(iter_bss->rssi);
1043 best_bss = iter_bss;
1048 mutex_unlock(&priv->lock);
1049 lbs_deb_leave_args(LBS_DEB_SCAN, "best_bss %p", best_bss);
1054 * @brief Find the best AP
1056 * Used from association worker.
1058 * @param priv A pointer to struct lbs_private structure
1059 * @param pSSID A pointer to AP's ssid
1061 * @return 0--success, otherwise--fail
1063 int lbs_find_best_network_ssid(struct lbs_private *priv, uint8_t *out_ssid,
1064 uint8_t *out_ssid_len, uint8_t preferred_mode,
1068 struct bss_descriptor *found;
1070 lbs_deb_enter(LBS_DEB_SCAN);
1072 priv->scan_ssid_len = 0;
1073 lbs_scan_networks(priv, 1);
1074 if (priv->surpriseremoved)
1077 found = lbs_find_best_ssid_in_list(priv, preferred_mode);
1078 if (found && (found->ssid_len > 0)) {
1079 memcpy(out_ssid, &found->ssid, IW_ESSID_MAX_SIZE);
1080 *out_ssid_len = found->ssid_len;
1081 *out_mode = found->mode;
1086 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
1092 * @brief Send a scan command for all available channels filtered on a spec
1094 * Used in association code and from debugfs
1096 * @param priv A pointer to struct lbs_private structure
1097 * @param ssid A pointer to the SSID to scan for
1098 * @param ssid_len Length of the SSID
1100 * @return 0-success, otherwise fail
1102 int lbs_send_specific_ssid_scan(struct lbs_private *priv, uint8_t *ssid,
1107 lbs_deb_enter_args(LBS_DEB_SCAN, "SSID '%s'\n",
1108 escape_essid(ssid, ssid_len));
1113 memcpy(priv->scan_ssid, ssid, ssid_len);
1114 priv->scan_ssid_len = ssid_len;
1116 lbs_scan_networks(priv, 1);
1117 if (priv->surpriseremoved) {
1123 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
1130 /*********************************************************************/
1132 /* Support for Wireless Extensions */
1134 /*********************************************************************/
1137 #define MAX_CUSTOM_LEN 64
1139 static inline char *lbs_translate_scan(struct lbs_private *priv,
1140 char *start, char *stop,
1141 struct bss_descriptor *bss)
1143 struct chan_freq_power *cfp;
1144 char *current_val; /* For rates */
1145 struct iw_event iwe; /* Temporary buffer */
1147 #define PERFECT_RSSI ((uint8_t)50)
1148 #define WORST_RSSI ((uint8_t)0)
1149 #define RSSI_DIFF ((uint8_t)(PERFECT_RSSI - WORST_RSSI))
1152 lbs_deb_enter(LBS_DEB_SCAN);
1154 cfp = lbs_find_cfp_by_band_and_channel(priv, 0, bss->channel);
1156 lbs_deb_scan("Invalid channel number %d\n", bss->channel);
1161 /* First entry *MUST* be the BSSID */
1162 iwe.cmd = SIOCGIWAP;
1163 iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
1164 memcpy(iwe.u.ap_addr.sa_data, &bss->bssid, ETH_ALEN);
1165 start = iwe_stream_add_event(start, stop, &iwe, IW_EV_ADDR_LEN);
1168 iwe.cmd = SIOCGIWESSID;
1169 iwe.u.data.flags = 1;
1170 iwe.u.data.length = min((uint32_t) bss->ssid_len, (uint32_t) IW_ESSID_MAX_SIZE);
1171 start = iwe_stream_add_point(start, stop, &iwe, bss->ssid);
1174 iwe.cmd = SIOCGIWMODE;
1175 iwe.u.mode = bss->mode;
1176 start = iwe_stream_add_event(start, stop, &iwe, IW_EV_UINT_LEN);
1179 iwe.cmd = SIOCGIWFREQ;
1180 iwe.u.freq.m = (long)cfp->freq * 100000;
1182 start = iwe_stream_add_event(start, stop, &iwe, IW_EV_FREQ_LEN);
1184 /* Add quality statistics */
1186 iwe.u.qual.updated = IW_QUAL_ALL_UPDATED;
1187 iwe.u.qual.level = SCAN_RSSI(bss->rssi);
1189 rssi = iwe.u.qual.level - MRVDRV_NF_DEFAULT_SCAN_VALUE;
1191 (100 * RSSI_DIFF * RSSI_DIFF - (PERFECT_RSSI - rssi) *
1192 (15 * (RSSI_DIFF) + 62 * (PERFECT_RSSI - rssi))) /
1193 (RSSI_DIFF * RSSI_DIFF);
1194 if (iwe.u.qual.qual > 100)
1195 iwe.u.qual.qual = 100;
1197 if (priv->NF[TYPE_BEACON][TYPE_NOAVG] == 0) {
1198 iwe.u.qual.noise = MRVDRV_NF_DEFAULT_SCAN_VALUE;
1200 iwe.u.qual.noise = CAL_NF(priv->NF[TYPE_BEACON][TYPE_NOAVG]);
1203 /* Locally created ad-hoc BSSs won't have beacons if this is the
1204 * only station in the adhoc network; so get signal strength
1205 * from receive statistics.
1207 if ((priv->mode == IW_MODE_ADHOC) && priv->adhoccreate
1208 && !lbs_ssid_cmp(priv->curbssparams.ssid,
1209 priv->curbssparams.ssid_len,
1210 bss->ssid, bss->ssid_len)) {
1212 snr = priv->SNR[TYPE_RXPD][TYPE_AVG] / AVG_SCALE;
1213 nf = priv->NF[TYPE_RXPD][TYPE_AVG] / AVG_SCALE;
1214 iwe.u.qual.level = CAL_RSSI(snr, nf);
1216 start = iwe_stream_add_event(start, stop, &iwe, IW_EV_QUAL_LEN);
1218 /* Add encryption capability */
1219 iwe.cmd = SIOCGIWENCODE;
1220 if (bss->capability & WLAN_CAPABILITY_PRIVACY) {
1221 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
1223 iwe.u.data.flags = IW_ENCODE_DISABLED;
1225 iwe.u.data.length = 0;
1226 start = iwe_stream_add_point(start, stop, &iwe, bss->ssid);
1228 current_val = start + IW_EV_LCP_LEN;
1230 iwe.cmd = SIOCGIWRATE;
1231 iwe.u.bitrate.fixed = 0;
1232 iwe.u.bitrate.disabled = 0;
1233 iwe.u.bitrate.value = 0;
1235 for (j = 0; bss->rates[j] && (j < sizeof(bss->rates)); j++) {
1236 /* Bit rate given in 500 kb/s units */
1237 iwe.u.bitrate.value = bss->rates[j] * 500000;
1238 current_val = iwe_stream_add_value(start, current_val,
1239 stop, &iwe, IW_EV_PARAM_LEN);
1241 if ((bss->mode == IW_MODE_ADHOC) && priv->adhoccreate
1242 && !lbs_ssid_cmp(priv->curbssparams.ssid,
1243 priv->curbssparams.ssid_len,
1244 bss->ssid, bss->ssid_len)) {
1245 iwe.u.bitrate.value = 22 * 500000;
1246 current_val = iwe_stream_add_value(start, current_val,
1247 stop, &iwe, IW_EV_PARAM_LEN);
1249 /* Check if we added any event */
1250 if((current_val - start) > IW_EV_LCP_LEN)
1251 start = current_val;
1253 memset(&iwe, 0, sizeof(iwe));
1254 if (bss->wpa_ie_len) {
1255 char buf[MAX_WPA_IE_LEN];
1256 memcpy(buf, bss->wpa_ie, bss->wpa_ie_len);
1257 iwe.cmd = IWEVGENIE;
1258 iwe.u.data.length = bss->wpa_ie_len;
1259 start = iwe_stream_add_point(start, stop, &iwe, buf);
1262 memset(&iwe, 0, sizeof(iwe));
1263 if (bss->rsn_ie_len) {
1264 char buf[MAX_WPA_IE_LEN];
1265 memcpy(buf, bss->rsn_ie, bss->rsn_ie_len);
1266 iwe.cmd = IWEVGENIE;
1267 iwe.u.data.length = bss->rsn_ie_len;
1268 start = iwe_stream_add_point(start, stop, &iwe, buf);
1272 char custom[MAX_CUSTOM_LEN];
1275 iwe.cmd = IWEVCUSTOM;
1276 p += snprintf(p, MAX_CUSTOM_LEN, "mesh-type: olpc");
1277 iwe.u.data.length = p - custom;
1278 if (iwe.u.data.length)
1279 start = iwe_stream_add_point(start, stop, &iwe, custom);
1283 lbs_deb_leave_args(LBS_DEB_SCAN, "start %p", start);
1289 * @brief Handle Scan Network ioctl
1291 * @param dev A pointer to net_device structure
1292 * @param info A pointer to iw_request_info structure
1293 * @param vwrq A pointer to iw_param structure
1294 * @param extra A pointer to extra data buf
1296 * @return 0 --success, otherwise fail
1298 int lbs_set_scan(struct net_device *dev, struct iw_request_info *info,
1299 union iwreq_data *wrqu, char *extra)
1301 struct lbs_private *priv = dev->priv;
1304 lbs_deb_enter(LBS_DEB_WEXT);
1306 if (!netif_running(dev)) {
1311 /* mac80211 does this:
1312 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1313 if (sdata->type != IEEE80211_IF_TYPE_xxx) {
1319 if (wrqu->data.length == sizeof(struct iw_scan_req) &&
1320 wrqu->data.flags & IW_SCAN_THIS_ESSID) {
1321 struct iw_scan_req *req = (struct iw_scan_req *)extra;
1322 priv->scan_ssid_len = req->essid_len;
1323 memcpy(priv->scan_ssid, req->essid, priv->scan_ssid_len);
1324 lbs_deb_wext("set_scan, essid '%s'\n",
1325 escape_essid(priv->scan_ssid, priv->scan_ssid_len));
1327 priv->scan_ssid_len = 0;
1330 if (!delayed_work_pending(&priv->scan_work))
1331 queue_delayed_work(priv->work_thread, &priv->scan_work,
1332 msecs_to_jiffies(50));
1333 /* set marker that currently a scan is taking place */
1334 priv->scan_channel = -1;
1336 if (priv->surpriseremoved)
1340 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
1346 * @brief Handle Retrieve scan table ioctl
1348 * @param dev A pointer to net_device structure
1349 * @param info A pointer to iw_request_info structure
1350 * @param dwrq A pointer to iw_point structure
1351 * @param extra A pointer to extra data buf
1353 * @return 0 --success, otherwise fail
1355 int lbs_get_scan(struct net_device *dev, struct iw_request_info *info,
1356 struct iw_point *dwrq, char *extra)
1358 #define SCAN_ITEM_SIZE 128
1359 struct lbs_private *priv = dev->priv;
1362 char *stop = ev + dwrq->length;
1363 struct bss_descriptor *iter_bss;
1364 struct bss_descriptor *safe;
1366 lbs_deb_enter(LBS_DEB_WEXT);
1368 /* iwlist should wait until the current scan is finished */
1369 if (priv->scan_channel)
1372 /* Update RSSI if current BSS is a locally created ad-hoc BSS */
1373 if ((priv->mode == IW_MODE_ADHOC) && priv->adhoccreate)
1374 lbs_prepare_and_send_command(priv, CMD_802_11_RSSI, 0,
1375 CMD_OPTION_WAITFORRSP, 0, NULL);
1377 mutex_lock(&priv->lock);
1378 list_for_each_entry_safe (iter_bss, safe, &priv->network_list, list) {
1380 unsigned long stale_time;
1382 if (stop - ev < SCAN_ITEM_SIZE) {
1387 /* For mesh device, list only mesh networks */
1388 if (dev == priv->mesh_dev && !iter_bss->mesh)
1391 /* Prune old an old scan result */
1392 stale_time = iter_bss->last_scanned + DEFAULT_MAX_SCAN_AGE;
1393 if (time_after(jiffies, stale_time)) {
1394 list_move_tail(&iter_bss->list, &priv->network_free_list);
1395 clear_bss_descriptor(iter_bss);
1399 /* Translate to WE format this entry */
1400 next_ev = lbs_translate_scan(priv, ev, stop, iter_bss);
1401 if (next_ev == NULL)
1405 mutex_unlock(&priv->lock);
1407 dwrq->length = (ev - extra);
1410 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", err);
1417 /*********************************************************************/
1419 /* Command execution */
1421 /*********************************************************************/
1425 * @brief This function handles the command response of scan
1427 * Called from handle_cmd_response() in cmdrespc.
1429 * The response buffer for the scan command has the following
1432 * .-----------------------------------------------------------.
1433 * | header (4 * sizeof(u16)): Standard command response hdr |
1434 * .-----------------------------------------------------------.
1435 * | bufsize (u16) : sizeof the BSS Description data |
1436 * .-----------------------------------------------------------.
1437 * | NumOfSet (u8) : Number of BSS Descs returned |
1438 * .-----------------------------------------------------------.
1439 * | BSSDescription data (variable, size given in bufsize) |
1440 * .-----------------------------------------------------------.
1441 * | TLV data (variable, size calculated using header->size, |
1442 * | bufsize and sizeof the fixed fields above) |
1443 * .-----------------------------------------------------------.
1445 * @param priv A pointer to struct lbs_private structure
1446 * @param resp A pointer to cmd_ds_command
1450 static int lbs_ret_80211_scan(struct lbs_private *priv, unsigned long dummy,
1451 struct cmd_header *resp)
1453 struct cmd_ds_802_11_scan_rsp *scanresp = (void *)resp;
1454 struct bss_descriptor *iter_bss;
1455 struct bss_descriptor *safe;
1457 uint16_t scanrespsize;
1463 lbs_deb_enter(LBS_DEB_SCAN);
1465 /* Prune old entries from scan table */
1466 list_for_each_entry_safe (iter_bss, safe, &priv->network_list, list) {
1467 unsigned long stale_time = iter_bss->last_scanned + DEFAULT_MAX_SCAN_AGE;
1468 if (time_before(jiffies, stale_time))
1470 list_move_tail (&iter_bss->list, &priv->network_free_list);
1471 clear_bss_descriptor(iter_bss);
1474 if (scanresp->nr_sets > MAX_NETWORK_COUNT) {
1475 lbs_deb_scan("SCAN_RESP: too many scan results (%d, max %d)\n",
1476 scanresp->nr_sets, MAX_NETWORK_COUNT);
1481 bytesleft = le16_to_cpu(scanresp->bssdescriptsize);
1482 lbs_deb_scan("SCAN_RESP: bssdescriptsize %d\n", bytesleft);
1484 scanrespsize = le16_to_cpu(resp->size);
1485 lbs_deb_scan("SCAN_RESP: scan results %d\n", scanresp->nr_sets);
1487 bssinfo = scanresp->bssdesc_and_tlvbuffer;
1489 /* The size of the TLV buffer is equal to the entire command response
1490 * size (scanrespsize) minus the fixed fields (sizeof()'s), the
1491 * BSS Descriptions (bssdescriptsize as bytesLef) and the command
1492 * response header (S_DS_GEN)
1494 tlvbufsize = scanrespsize - (bytesleft + sizeof(scanresp->bssdescriptsize)
1495 + sizeof(scanresp->nr_sets)
1499 * Process each scan response returned (scanresp->nr_sets). Save
1500 * the information in the newbssentry and then insert into the
1501 * driver scan table either as an update to an existing entry
1502 * or as an addition at the end of the table
1504 for (idx = 0; idx < scanresp->nr_sets && bytesleft; idx++) {
1505 struct bss_descriptor new;
1506 struct bss_descriptor *found = NULL;
1507 struct bss_descriptor *oldest = NULL;
1508 DECLARE_MAC_BUF(mac);
1510 /* Process the data fields and IEs returned for this BSS */
1511 memset(&new, 0, sizeof (struct bss_descriptor));
1512 if (lbs_process_bss(&new, &bssinfo, &bytesleft) != 0) {
1513 /* error parsing the scan response, skipped */
1514 lbs_deb_scan("SCAN_RESP: process_bss returned ERROR\n");
1518 /* Try to find this bss in the scan table */
1519 list_for_each_entry (iter_bss, &priv->network_list, list) {
1520 if (is_same_network(iter_bss, &new)) {
1525 if ((oldest == NULL) ||
1526 (iter_bss->last_scanned < oldest->last_scanned))
1531 /* found, clear it */
1532 clear_bss_descriptor(found);
1533 } else if (!list_empty(&priv->network_free_list)) {
1534 /* Pull one from the free list */
1535 found = list_entry(priv->network_free_list.next,
1536 struct bss_descriptor, list);
1537 list_move_tail(&found->list, &priv->network_list);
1538 } else if (oldest) {
1539 /* If there are no more slots, expire the oldest */
1541 clear_bss_descriptor(found);
1542 list_move_tail(&found->list, &priv->network_list);
1547 lbs_deb_scan("SCAN_RESP: BSSID %s\n", print_mac(mac, new.bssid));
1549 /* Copy the locally created newbssentry to the scan table */
1550 memcpy(found, &new, offsetof(struct bss_descriptor, list));
1556 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);