scan.c 54.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/**
  * Functions implementing wlan scan IOCTL and firmware command APIs
  *
  * IOCTL handlers as well as command preperation and response routines
  *  for sending scan commands to the firmware.
  */
#include <linux/ctype.h>
#include <linux/if.h>
#include <linux/netdevice.h>
#include <linux/wireless.h>
11
#include <linux/etherdevice.h>
12 13 14 15

#include <net/ieee80211.h>
#include <net/iw_handler.h>

16 17
#include <asm/unaligned.h>

18 19 20 21
#include "host.h"
#include "decl.h"
#include "dev.h"
#include "scan.h"
22
#include "join.h"
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64

//! Approximate amount of data needed to pass a scan result back to iwlist
#define MAX_SCAN_CELL_SIZE  (IW_EV_ADDR_LEN             \
                             + IW_ESSID_MAX_SIZE        \
                             + IW_EV_UINT_LEN           \
                             + IW_EV_FREQ_LEN           \
                             + IW_EV_QUAL_LEN           \
                             + IW_ESSID_MAX_SIZE        \
                             + IW_EV_PARAM_LEN          \
                             + 40)	/* 40 for WPAIE */

//! Memory needed to store a max sized channel List TLV for a firmware scan
#define CHAN_TLV_MAX_SIZE  (sizeof(struct mrvlietypesheader)    \
                            + (MRVDRV_MAX_CHANNELS_PER_SCAN     \
                               * sizeof(struct chanscanparamset)))

//! Memory needed to store a max number/size SSID TLV for a firmware scan
#define SSID_TLV_MAX_SIZE  (1 * sizeof(struct mrvlietypes_ssidparamset))

//! Maximum memory needed for a wlan_scan_cmd_config with all TLVs at max
#define MAX_SCAN_CFG_ALLOC (sizeof(struct wlan_scan_cmd_config)  \
                            + sizeof(struct mrvlietypes_numprobes)   \
                            + CHAN_TLV_MAX_SIZE                 \
                            + SSID_TLV_MAX_SIZE)

//! The maximum number of channels the firmware can scan per command
#define MRVDRV_MAX_CHANNELS_PER_SCAN   14

/**
 * @brief Number of channels to scan per firmware scan command issuance.
 *
 *  Number restricted to prevent hitting the limit on the amount of scan data
 *  returned in a single firmware scan command.
 */
#define MRVDRV_CHANNELS_PER_SCAN_CMD   4

//! Scan time specified in the channel TLV for each channel for passive scans
#define MRVDRV_PASSIVE_SCAN_CHAN_TIME  100

//! Scan time specified in the channel TLV for each channel for active scans
#define MRVDRV_ACTIVE_SCAN_CHAN_TIME   100

D
Dan Williams 已提交
65 66
static const u8 zeromac[ETH_ALEN] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
static const u8 bcastmac[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
67

68 69 70 71 72 73 74 75 76 77 78 79
static inline void clear_bss_descriptor (struct bss_descriptor * bss)
{
	/* Don't blow away ->list, just BSS data */
	memset(bss, 0, offsetof(struct bss_descriptor, list));
}

static inline int match_bss_no_security(struct wlan_802_11_security * secinfo,
			struct bss_descriptor * match_bss)
{
	if (   !secinfo->wep_enabled
	    && !secinfo->WPAenabled
	    && !secinfo->WPA2enabled
80 81
	    && match_bss->wpa_ie[0] != MFIE_TYPE_GENERIC
	    && match_bss->rsn_ie[0] != MFIE_TYPE_RSN
82
	    && !(match_bss->capability & WLAN_CAPABILITY_PRIVACY)) {
83 84 85 86 87 88 89 90 91 92 93
		return 1;
	}
	return 0;
}

static inline int match_bss_static_wep(struct wlan_802_11_security * secinfo,
			struct bss_descriptor * match_bss)
{
	if ( secinfo->wep_enabled
	   && !secinfo->WPAenabled
	   && !secinfo->WPA2enabled
94
	   && (match_bss->capability & WLAN_CAPABILITY_PRIVACY)) {
95 96 97 98 99 100 101 102 103 104
		return 1;
	}
	return 0;
}

static inline int match_bss_wpa(struct wlan_802_11_security * secinfo,
			struct bss_descriptor * match_bss)
{
	if (  !secinfo->wep_enabled
	   && secinfo->WPAenabled
105
	   && (match_bss->wpa_ie[0] == MFIE_TYPE_GENERIC)
106
	   /* privacy bit may NOT be set in some APs like LinkSys WRT54G
107 108
	      && (match_bss->capability & WLAN_CAPABILITY_PRIVACY)) {
	    */
109 110 111 112 113 114 115 116 117 118 119
	   ) {
		return 1;
	}
	return 0;
}

static inline int match_bss_wpa2(struct wlan_802_11_security * secinfo,
			struct bss_descriptor * match_bss)
{
	if (  !secinfo->wep_enabled
	   && secinfo->WPA2enabled
120
	   && (match_bss->rsn_ie[0] == MFIE_TYPE_RSN)
121
	   /* privacy bit may NOT be set in some APs like LinkSys WRT54G
122 123
	      && (match_bss->capability & WLAN_CAPABILITY_PRIVACY)) {
	    */
124 125 126 127 128 129 130 131 132 133 134 135
	   ) {
		return 1;
	}
	return 0;
}

static inline int match_bss_dynamic_wep(struct wlan_802_11_security * secinfo,
			struct bss_descriptor * match_bss)
{
	if (  !secinfo->wep_enabled
	   && !secinfo->WPAenabled
	   && !secinfo->WPA2enabled
136 137
	   && (match_bss->wpa_ie[0] != MFIE_TYPE_GENERIC)
	   && (match_bss->rsn_ie[0] != MFIE_TYPE_RSN)
138
	   && (match_bss->capability & WLAN_CAPABILITY_PRIVACY)) {
139 140 141 142
		return 1;
	}
	return 0;
}
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162

/**
 *  @brief Check if a scanned network compatible with the driver settings
 *
 *   WEP     WPA     WPA2    ad-hoc  encrypt                      Network
 * enabled enabled  enabled   AES     mode   privacy  WPA  WPA2  Compatible
 *    0       0        0       0      NONE      0      0    0   yes No security
 *    1       0        0       0      NONE      1      0    0   yes Static WEP
 *    0       1        0       0       x        1x     1    x   yes WPA
 *    0       0        1       0       x        1x     x    1   yes WPA2
 *    0       0        0       1      NONE      1      0    0   yes Ad-hoc AES
 *    0       0        0       0     !=NONE     1      0    0   yes Dynamic WEP
 *
 *
 *  @param adapter A pointer to wlan_adapter
 *  @param index   Index in scantable to check against current driver settings
 *  @param mode    Network mode: Infrastructure or IBSS
 *
 *  @return        Index in scantable, or error code if negative
 */
163 164
static int is_network_compatible(wlan_adapter * adapter,
		struct bss_descriptor * bss, u8 mode)
165
{
166 167
	int matched = 0;

168
	lbs_deb_enter(LBS_DEB_ASSOC);
169

170 171
	if (bss->mode != mode)
		goto done;
172

173 174 175 176 177 178 179 180 181
	if ((matched = match_bss_no_security(&adapter->secinfo, bss))) {
		goto done;
	} else if ((matched = match_bss_static_wep(&adapter->secinfo, bss))) {
		goto done;
	} else if ((matched = match_bss_wpa(&adapter->secinfo, bss))) {
		lbs_deb_scan(
		       "is_network_compatible() WPA: wpa_ie=%#x "
		       "wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s "
		       "privacy=%#x\n", bss->wpa_ie[0], bss->rsn_ie[0],
182 183 184
		       adapter->secinfo.wep_enabled ? "e" : "d",
		       adapter->secinfo.WPAenabled ? "e" : "d",
		       adapter->secinfo.WPA2enabled ? "e" : "d",
185
		       (bss->capability & WLAN_CAPABILITY_PRIVACY));
186 187 188 189 190 191 192 193 194
		goto done;
	} else if ((matched = match_bss_wpa2(&adapter->secinfo, bss))) {
		lbs_deb_scan(
		       "is_network_compatible() WPA2: wpa_ie=%#x "
		       "wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s "
		       "privacy=%#x\n", bss->wpa_ie[0], bss->rsn_ie[0],
		       adapter->secinfo.wep_enabled ? "e" : "d",
		       adapter->secinfo.WPAenabled ? "e" : "d",
		       adapter->secinfo.WPA2enabled ? "e" : "d",
195
		       (bss->capability & WLAN_CAPABILITY_PRIVACY));
196 197 198 199 200
		goto done;
	} else if ((matched = match_bss_dynamic_wep(&adapter->secinfo, bss))) {
		lbs_deb_scan(
		       "is_network_compatible() dynamic WEP: "
		       "wpa_ie=%#x wpa2_ie=%#x privacy=%#x\n",
201 202
		       bss->wpa_ie[0], bss->rsn_ie[0],
		       (bss->capability & WLAN_CAPABILITY_PRIVACY));
203
		goto done;
204 205
	}

206 207 208 209 210 211 212 213
	/* bss security settings don't match those configured on card */
	lbs_deb_scan(
	       "is_network_compatible() FAILED: wpa_ie=%#x "
	       "wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s privacy=%#x\n",
	       bss->wpa_ie[0], bss->rsn_ie[0],
	       adapter->secinfo.wep_enabled ? "e" : "d",
	       adapter->secinfo.WPAenabled ? "e" : "d",
	       adapter->secinfo.WPA2enabled ? "e" : "d",
214
	       (bss->capability & WLAN_CAPABILITY_PRIVACY));
215 216

done:
217 218
	lbs_deb_leave(LBS_DEB_SCAN);
	return matched;
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
}

/**
 *  @brief Create a channel list for the driver to scan based on region info
 *
 *  Use the driver region/band information to construct a comprehensive list
 *    of channels to scan.  This routine is used for any scan that is not
 *    provided a specific channel list to scan.
 *
 *  @param priv          A pointer to wlan_private structure
 *  @param scanchanlist  Output parameter: resulting channel list to scan
 *  @param filteredscan  Flag indicating whether or not a BSSID or SSID filter
 *                       is being sent in the command to firmware.  Used to
 *                       increase the number of channels sent in a scan
 *                       command and to disable the firmware channel scan
 *                       filter.
 *
 *  @return              void
 */
static void wlan_scan_create_channel_list(wlan_private * priv,
					  struct chanscanparamset * scanchanlist,
					  u8 filteredscan)
{

	wlan_adapter *adapter = priv->adapter;
	struct region_channel *scanregion;
	struct chan_freq_power *cfp;
	int rgnidx;
	int chanidx;
	int nextchan;
	u8 scantype;

	chanidx = 0;

	/* Set the default scan type to the user specified type, will later
	 *   be changed to passive on a per channel basis if restricted by
	 *   regulatory requirements (11d or 11h)
	 */
257
	scantype = CMD_SCAN_TYPE_ACTIVE;
258 259 260

	for (rgnidx = 0; rgnidx < ARRAY_SIZE(adapter->region_channel); rgnidx++) {
		if (priv->adapter->enable11d &&
261
		    adapter->connect_status != LIBERTAS_CONNECTED) {
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
			/* Scan all the supported chan for the first scan */
			if (!adapter->universal_channel[rgnidx].valid)
				continue;
			scanregion = &adapter->universal_channel[rgnidx];

			/* clear the parsed_region_chan for the first scan */
			memset(&adapter->parsed_region_chan, 0x00,
			       sizeof(adapter->parsed_region_chan));
		} else {
			if (!adapter->region_channel[rgnidx].valid)
				continue;
			scanregion = &adapter->region_channel[rgnidx];
		}

		for (nextchan = 0;
		     nextchan < scanregion->nrcfp; nextchan++, chanidx++) {

			cfp = scanregion->CFP + nextchan;

			if (priv->adapter->enable11d) {
				scantype =
				    libertas_get_scan_type_11d(cfp->channel,
							   &adapter->
							   parsed_region_chan);
			}

			switch (scanregion->band) {
			case BAND_B:
			case BAND_G:
			default:
				scanchanlist[chanidx].radiotype =
293
				    CMD_SCAN_RADIO_TYPE_BG;
294 295 296
				break;
			}

297
			if (scantype == CMD_SCAN_TYPE_PASSIVE) {
298
				scanchanlist[chanidx].maxscantime =
299
				    cpu_to_le16(MRVDRV_PASSIVE_SCAN_CHAN_TIME);
300 301 302 303
				scanchanlist[chanidx].chanscanmode.passivescan =
				    1;
			} else {
				scanchanlist[chanidx].maxscantime =
304
				    cpu_to_le16(MRVDRV_ACTIVE_SCAN_CHAN_TIME);
305 306 307 308 309 310 311 312 313 314 315 316 317 318
				scanchanlist[chanidx].chanscanmode.passivescan =
				    0;
			}

			scanchanlist[chanidx].channumber = cfp->channel;

			if (filteredscan) {
				scanchanlist[chanidx].chanscanmode.
				    disablechanfilt = 1;
			}
		}
	}
}

319 320 321 322 323 324 325 326 327 328

/* Delayed partial scan worker */
void libertas_scan_worker(struct work_struct *work)
{
	wlan_private *priv = container_of(work, wlan_private, scan_work.work);

	wlan_scan_networks(priv, NULL, 0);
}


329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
/**
 *  @brief Construct a wlan_scan_cmd_config structure to use in issue scan cmds
 *
 *  Application layer or other functions can invoke wlan_scan_networks
 *    with a scan configuration supplied in a wlan_ioctl_user_scan_cfg struct.
 *    This structure is used as the basis of one or many wlan_scan_cmd_config
 *    commands that are sent to the command processing module and sent to
 *    firmware.
 *
 *  Create a wlan_scan_cmd_config based on the following user supplied
 *    parameters (if present):
 *             - SSID filter
 *             - BSSID filter
 *             - Number of Probes to be sent
 *             - channel list
 *
 *  If the SSID or BSSID filter is not present, disable/clear the filter.
 *  If the number of probes is not set, use the adapter default setting
 *  Qualify the channel
 *
 *  @param priv             A pointer to wlan_private structure
 *  @param puserscanin      NULL or pointer to scan configuration parameters
 *  @param ppchantlvout     Output parameter: Pointer to the start of the
 *                          channel TLV portion of the output scan config
 *  @param pscanchanlist    Output parameter: Pointer to the resulting channel
 *                          list to scan
 *  @param pmaxchanperscan  Output parameter: Number of channels to scan for
 *                          each issuance of the firmware scan command
 *  @param pfilteredscan    Output parameter: Flag indicating whether or not
 *                          a BSSID or SSID filter is being sent in the
 *                          command to firmware.  Used to increase the number
 *                          of channels sent in a scan command and to
 *                          disable the firmware channel scan filter.
 *  @param pscancurrentonly Output parameter: Flag indicating whether or not
 *                          we are only scanning our current active channel
 *
 *  @return                 resulting scan configuration
 */
static struct wlan_scan_cmd_config *
wlan_scan_setup_scan_config(wlan_private * priv,
			    const struct wlan_ioctl_user_scan_cfg * puserscanin,
			    struct mrvlietypes_chanlistparamset ** ppchantlvout,
			    struct chanscanparamset * pscanchanlist,
			    int *pmaxchanperscan,
			    u8 * pfilteredscan,
			    u8 * pscancurrentonly)
{
	struct mrvlietypes_numprobes *pnumprobestlv;
	struct mrvlietypes_ssidparamset *pssidtlv;
	struct wlan_scan_cmd_config * pscancfgout = NULL;
	u8 *ptlvpos;
	u16 numprobes;
	int chanidx;
	int scantype;
	int scandur;
	int channel;
	int radiotype;

	pscancfgout = kzalloc(MAX_SCAN_CFG_ALLOC, GFP_KERNEL);
	if (pscancfgout == NULL)
		goto out;

	/* The tlvbufferlen is calculated for each scan command.  The TLVs added
	 *   in this routine will be preserved since the routine that sends
	 *   the command will append channelTLVs at *ppchantlvout.  The difference
	 *   between the *ppchantlvout and the tlvbuffer start will be used
	 *   to calculate the size of anything we add in this routine.
	 */
	pscancfgout->tlvbufferlen = 0;

	/* Running tlv pointer.  Assigned to ppchantlvout at end of function
	 *  so later routines know where channels can be added to the command buf
	 */
	ptlvpos = pscancfgout->tlvbuffer;

	/*
	 * Set the initial scan paramters for progressive scanning.  If a specific
	 *   BSSID or SSID is used, the number of channels in the scan command
	 *   will be increased to the absolute maximum
	 */
	*pmaxchanperscan = MRVDRV_CHANNELS_PER_SCAN_CMD;

	/* Initialize the scan as un-filtered by firmware, set to TRUE below if
	 *   a SSID or BSSID filter is sent in the command
	 */
	*pfilteredscan = 0;

	/* Initialize the scan as not being only on the current channel.  If
	 *   the channel list is customized, only contains one channel, and
	 *   is the active channel, this is set true and data flow is not halted.
	 */
	*pscancurrentonly = 0;

	if (puserscanin) {
		/* Set the bss type scan filter, use adapter setting if unset */
		pscancfgout->bsstype =
425
		    puserscanin->bsstype ? puserscanin->bsstype : CMD_BSS_TYPE_ANY;
426 427

		/* Set the number of probes to send, use adapter setting if unset */
428
		numprobes = puserscanin->numprobes ? puserscanin->numprobes : 0;
429 430 431 432 433

		/*
		 * Set the BSSID filter to the incoming configuration,
		 *   if non-zero.  If not set, it will remain disabled (all zeros).
		 */
434 435
		memcpy(pscancfgout->bssid, puserscanin->bssid,
		       sizeof(pscancfgout->bssid));
436

437
		if (puserscanin->ssid_len) {
438 439 440 441
			pssidtlv =
			    (struct mrvlietypes_ssidparamset *) pscancfgout->
			    tlvbuffer;
			pssidtlv->header.type = cpu_to_le16(TLV_TYPE_SSID);
442 443 444 445
			pssidtlv->header.len = cpu_to_le16(puserscanin->ssid_len);
			memcpy(pssidtlv->ssid, puserscanin->ssid,
			       puserscanin->ssid_len);
			ptlvpos += sizeof(pssidtlv->header) + puserscanin->ssid_len;
446 447 448 449 450 451 452 453
		}

		/*
		 *  The default number of channels sent in the command is low to
		 *    ensure the response buffer from the firmware does not truncate
		 *    scan results.  That is not an issue with an SSID or BSSID
		 *    filter applied to the scan results in the firmware.
		 */
454 455
		if (   puserscanin->ssid_len
		    || (compare_ether_addr(pscancfgout->bssid, &zeromac[0]) != 0)) {
456 457 458 459
			*pmaxchanperscan = MRVDRV_MAX_CHANNELS_PER_SCAN;
			*pfilteredscan = 1;
		}
	} else {
460
		pscancfgout->bsstype = CMD_BSS_TYPE_ANY;
461
		numprobes = 0;
462 463 464 465 466
	}

	/* If the input config or adapter has the number of Probes set, add tlv */
	if (numprobes) {
		pnumprobestlv = (struct mrvlietypes_numprobes *) ptlvpos;
467 468
		pnumprobestlv->header.type = cpu_to_le16(TLV_TYPE_NUMPROBES);
		pnumprobestlv->header.len = cpu_to_le16(2);
469 470
		pnumprobestlv->numprobes = cpu_to_le16(numprobes);

471
		ptlvpos += sizeof(*pnumprobestlv);
472 473 474 475 476 477 478 479 480 481
	}

	/*
	 * Set the output for the channel TLV to the address in the tlv buffer
	 *   past any TLVs that were added in this fuction (SSID, numprobes).
	 *   channel TLVs will be added past this for each scan command, preserving
	 *   the TLVs that were previously added.
	 */
	*ppchantlvout = (struct mrvlietypes_chanlistparamset *) ptlvpos;

482 483 484 485 486 487 488
	if (!puserscanin || !puserscanin->chanlist[0].channumber) {
		/* Create a default channel scan list */
		lbs_deb_scan("Scan: Creating full region channel list\n");
		wlan_scan_create_channel_list(priv, pscanchanlist,
					      *pfilteredscan);
		goto out;
	}
489

490 491 492 493
	lbs_deb_scan("Scan: Using supplied channel list\n");
	for (chanidx = 0;
	     chanidx < WLAN_IOCTL_USER_SCAN_CHAN_MAX
	     && puserscanin->chanlist[chanidx].channumber; chanidx++) {
494

495 496
		channel = puserscanin->chanlist[chanidx].channumber;
		(pscanchanlist + chanidx)->channumber = channel;
497

498 499
		radiotype = puserscanin->chanlist[chanidx].radiotype;
		(pscanchanlist + chanidx)->radiotype = radiotype;
500

501
		scantype = puserscanin->chanlist[chanidx].scantype;
502

503 504 505 506 507 508 509
		if (scantype == CMD_SCAN_TYPE_PASSIVE) {
			(pscanchanlist +
			 chanidx)->chanscanmode.passivescan = 1;
		} else {
			(pscanchanlist +
			 chanidx)->chanscanmode.passivescan = 0;
		}
510

511 512 513
		if (puserscanin->chanlist[chanidx].scantime) {
			scandur = puserscanin->chanlist[chanidx].scantime;
		} else {
514
			if (scantype == CMD_SCAN_TYPE_PASSIVE) {
515
				scandur = MRVDRV_PASSIVE_SCAN_CHAN_TIME;
516
			} else {
517
				scandur = MRVDRV_ACTIVE_SCAN_CHAN_TIME;
518 519 520
			}
		}

521 522 523 524 525
		(pscanchanlist + chanidx)->minscantime =
		    cpu_to_le16(scandur);
		(pscanchanlist + chanidx)->maxscantime =
		    cpu_to_le16(scandur);
	}
526

527 528 529 530 531 532
	/* Check if we are only scanning the current channel */
	if ((chanidx == 1) &&
	    (puserscanin->chanlist[0].channumber ==
			       priv->adapter->curbssparams.channel)) {
		*pscancurrentonly = 1;
		lbs_deb_scan("Scan: Scanning current channel only");
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
	}

out:
	return pscancfgout;
}

/**
 *  @brief Construct and send multiple scan config commands to the firmware
 *
 *  Previous routines have created a wlan_scan_cmd_config with any requested
 *   TLVs.  This function splits the channel TLV into maxchanperscan lists
 *   and sends the portion of the channel TLV along with the other TLVs
 *   to the wlan_cmd routines for execution in the firmware.
 *
 *  @param priv            A pointer to wlan_private structure
 *  @param maxchanperscan  Maximum number channels to be included in each
 *                         scan command sent to firmware
 *  @param filteredscan    Flag indicating whether or not a BSSID or SSID
 *                         filter is being used for the firmware command
 *                         scan command sent to firmware
 *  @param pscancfgout     Scan configuration used for this scan.
 *  @param pchantlvout     Pointer in the pscancfgout where the channel TLV
 *                         should start.  This is past any other TLVs that
 *                         must be sent down in each firmware command.
 *  @param pscanchanlist   List of channels to scan in maxchanperscan segments
 *
 *  @return                0 or error return otherwise
 */
static int wlan_scan_channel_list(wlan_private * priv,
				  int maxchanperscan,
				  u8 filteredscan,
				  struct wlan_scan_cmd_config * pscancfgout,
				  struct mrvlietypes_chanlistparamset * pchantlvout,
566
				  struct chanscanparamset * pscanchanlist,
567 568
				  const struct wlan_ioctl_user_scan_cfg * puserscanin,
				  int full_scan)
569 570 571 572 573 574 575
{
	struct chanscanparamset *ptmpchan;
	struct chanscanparamset *pstartchan;
	u8 scanband;
	int doneearly;
	int tlvidx;
	int ret = 0;
576 577
	int scanned = 0;
	union iwreq_data wrqu;
578

579
	lbs_deb_enter(LBS_DEB_ASSOC);
580

581
	if (!pscancfgout || !pchantlvout || !pscanchanlist) {
582
		lbs_deb_scan("Scan: Null detect: %p, %p, %p\n",
583 584 585 586 587 588 589 590 591
		       pscancfgout, pchantlvout, pscanchanlist);
		return -1;
	}

	pchantlvout->header.type = cpu_to_le16(TLV_TYPE_CHANLIST);

	/* Set the temp channel struct pointer to the start of the desired list */
	ptmpchan = pscanchanlist;

592 593 594
	if (priv->adapter->last_scanned_channel && !puserscanin)
		ptmpchan += priv->adapter->last_scanned_channel;

595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
	/* Loop through the desired channel list, sending a new firmware scan
	 *   commands for each maxchanperscan channels (or for 1,6,11 individually
	 *   if configured accordingly)
	 */
	while (ptmpchan->channumber) {

		tlvidx = 0;
		pchantlvout->header.len = 0;
		scanband = ptmpchan->radiotype;
		pstartchan = ptmpchan;
		doneearly = 0;

		/* Construct the channel TLV for the scan command.  Continue to
		 *  insert channel TLVs until:
		 *    - the tlvidx hits the maximum configured per scan command
		 *    - the next channel to insert is 0 (end of desired channel list)
		 *    - doneearly is set (controlling individual scanning of 1,6,11)
		 */
		while (tlvidx < maxchanperscan && ptmpchan->channumber
614
		       && !doneearly && scanned < 2) {
615

616 617 618 619 620 621
			lbs_deb_scan("Scan: Chan(%3d), Radio(%d), mode(%d,%d), "
			             "Dur(%d)\n",
			             ptmpchan->channumber, ptmpchan->radiotype,
			             ptmpchan->chanscanmode.passivescan,
			             ptmpchan->chanscanmode.disablechanfilt,
			             ptmpchan->maxscantime);
622 623 624 625 626 627

			/* Copy the current channel TLV to the command being prepared */
			memcpy(pchantlvout->chanscanparam + tlvidx,
			       ptmpchan, sizeof(pchantlvout->chanscanparam));

			/* Increment the TLV header length by the size appended */
628 629 630 631 632
			/* Ew, it would be _so_ nice if we could just declare the
			   variable little-endian and let GCC handle it for us */
			pchantlvout->header.len =
				cpu_to_le16(le16_to_cpu(pchantlvout->header.len) +
					    sizeof(pchantlvout->chanscanparam));
633 634 635 636 637 638 639 640 641 642 643 644 645

			/*
			 *  The tlv buffer length is set to the number of bytes of the
			 *    between the channel tlv pointer and the start of the
			 *    tlv buffer.  This compensates for any TLVs that were appended
			 *    before the channel list.
			 */
			pscancfgout->tlvbufferlen = ((u8 *) pchantlvout
						     - pscancfgout->tlvbuffer);

			/*  Add the size of the channel tlv header and the data length */
			pscancfgout->tlvbufferlen +=
			    (sizeof(pchantlvout->header)
646
			     + le16_to_cpu(pchantlvout->header.len));
647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663

			/* Increment the index to the channel tlv we are constructing */
			tlvidx++;

			doneearly = 0;

			/* Stop the loop if the *current* channel is in the 1,6,11 set
			 *   and we are not filtering on a BSSID or SSID.
			 */
			if (!filteredscan && (ptmpchan->channumber == 1
					      || ptmpchan->channumber == 6
					      || ptmpchan->channumber == 11)) {
				doneearly = 1;
			}

			/* Increment the tmp pointer to the next channel to be scanned */
			ptmpchan++;
664
			scanned++;
665 666 667 668 669 670 671 672 673 674 675 676 677

			/* Stop the loop if the *next* channel is in the 1,6,11 set.
			 *  This will cause it to be the only channel scanned on the next
			 *  interation
			 */
			if (!filteredscan && (ptmpchan->channumber == 1
					      || ptmpchan->channumber == 6
					      || ptmpchan->channumber == 11)) {
				doneearly = 1;
			}
		}

		/* Send the scan command to the firmware with the specified cfg */
678
		ret = libertas_prepare_and_send_command(priv, CMD_802_11_SCAN, 0,
679
					    0, 0, pscancfgout);
680
		if (scanned >= 2 && !full_scan) {
681 682
			ret = 0;
			goto done;
683
		}
684
		scanned = 0;
685 686
	}

687
done:
688 689
	priv->adapter->last_scanned_channel = ptmpchan->channumber;

690 691 692 693 694 695 696 697 698 699 700 701
	if (priv->adapter->last_scanned_channel) {
		/* Schedule the next part of the partial scan */
		if (!full_scan && !priv->adapter->surpriseremoved) {
			cancel_delayed_work(&priv->scan_work);
			queue_delayed_work(priv->work_thread, &priv->scan_work,
			                   msecs_to_jiffies(300));
		}
	} else {
		/* All done, tell userspace the scan table has been updated */
		memset(&wrqu, 0, sizeof(union iwreq_data));
		wireless_send_event(priv->dev, SIOCGIWSCAN, &wrqu, NULL);
	}
702

703
	lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
704 705 706
	return ret;
}

707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
static void
clear_selected_scan_list_entries(wlan_adapter * adapter,
                                 const struct wlan_ioctl_user_scan_cfg * scan_cfg)
{
	struct bss_descriptor * bss;
	struct bss_descriptor * safe;
	u32 clear_ssid_flag = 0, clear_bssid_flag = 0;

	if (!scan_cfg)
		return;

	if (scan_cfg->clear_ssid && scan_cfg->ssid_len)
		clear_ssid_flag = 1;

	if (scan_cfg->clear_bssid
	    && (compare_ether_addr(scan_cfg->bssid, &zeromac[0]) != 0)
	    && (compare_ether_addr(scan_cfg->bssid, &bcastmac[0]) != 0)) {
		clear_bssid_flag = 1;
	}

	if (!clear_ssid_flag && !clear_bssid_flag)
		return;

	mutex_lock(&adapter->lock);
	list_for_each_entry_safe (bss, safe, &adapter->network_list, list) {
		u32 clear = 0;

		/* Check for an SSID match */
		if (   clear_ssid_flag
736 737
		    && (bss->ssid_len == scan_cfg->ssid_len)
		    && !memcmp(bss->ssid, scan_cfg->ssid, bss->ssid_len))
738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
			clear = 1;

		/* Check for a BSSID match */
		if (   clear_bssid_flag
		    && !compare_ether_addr(bss->bssid, scan_cfg->bssid))
			clear = 1;

		if (clear) {
			list_move_tail (&bss->list, &adapter->network_free_list);
			clear_bss_descriptor(bss);
		}
	}
	mutex_unlock(&adapter->lock);
}


754 755 756 757 758 759 760 761 762 763 764 765 766 767
/**
 *  @brief Internal function used to start a scan based on an input config
 *
 *  Use the input user scan configuration information when provided in
 *    order to send the appropriate scan commands to firmware to populate or
 *    update the internal driver scan table
 *
 *  @param priv          A pointer to wlan_private structure
 *  @param puserscanin   Pointer to the input configuration for the requested
 *                       scan.
 *
 *  @return              0 or < 0 if error
 */
int wlan_scan_networks(wlan_private * priv,
768 769
                       const struct wlan_ioctl_user_scan_cfg * puserscanin,
                       int full_scan)
770
{
771
	wlan_adapter * adapter = priv->adapter;
772 773 774 775 776 777 778
	struct mrvlietypes_chanlistparamset *pchantlvout;
	struct chanscanparamset * scan_chan_list = NULL;
	struct wlan_scan_cmd_config * scan_cfg = NULL;
	u8 filteredscan;
	u8 scancurrentchanonly;
	int maxchanperscan;
	int ret;
779 780 781
#ifdef CONFIG_LIBERTAS_DEBUG
	struct bss_descriptor * iter_bss;
	int i = 0;
782
	DECLARE_MAC_BUF(mac);
783
#endif
784

785 786 787 788 789 790 791
	lbs_deb_enter(LBS_DEB_SCAN);

	/* Cancel any partial outstanding partial scans if this scan
	 * is a full scan.
	 */
	if (full_scan && delayed_work_pending(&priv->scan_work))
		cancel_delayed_work(&priv->scan_work);
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811

	scan_chan_list = kzalloc(sizeof(struct chanscanparamset) *
				WLAN_IOCTL_USER_SCAN_CHAN_MAX, GFP_KERNEL);
	if (scan_chan_list == NULL) {
		ret = -ENOMEM;
		goto out;
	}

	scan_cfg = wlan_scan_setup_scan_config(priv,
					       puserscanin,
					       &pchantlvout,
					       scan_chan_list,
					       &maxchanperscan,
					       &filteredscan,
					       &scancurrentchanonly);
	if (scan_cfg == NULL) {
		ret = -ENOMEM;
		goto out;
	}

812
	clear_selected_scan_list_entries(adapter, puserscanin);
813 814 815

	/* Keep the data path active if we are only scanning our current channel */
	if (!scancurrentchanonly) {
816 817
		netif_stop_queue(priv->dev);
		netif_carrier_off(priv->dev);
818 819 820 821
		if (priv->mesh_dev) {
			netif_stop_queue(priv->mesh_dev);
			netif_carrier_off(priv->mesh_dev);
		}
822 823 824 825 826 827 828
	}

	ret = wlan_scan_channel_list(priv,
				     maxchanperscan,
				     filteredscan,
				     scan_cfg,
				     pchantlvout,
829
				     scan_chan_list,
830 831
				     puserscanin,
				     full_scan);
832

833 834 835 836
#ifdef CONFIG_LIBERTAS_DEBUG
	/* Dump the scan table */
	mutex_lock(&adapter->lock);
	list_for_each_entry (iter_bss, &adapter->network_list, list) {
837 838
		lbs_deb_scan("Scan:(%02d) %s, RSSI[%03d], SSID[%s]\n",
		       i++, print_mac(mac, iter_bss->bssid), (s32) iter_bss->rssi,
839 840 841 842
		       escape_essid(iter_bss->ssid, iter_bss->ssid_len));
	}
	mutex_unlock(&adapter->lock);
#endif
843

844
	if (priv->adapter->connect_status == LIBERTAS_CONNECTED) {
845 846
		netif_carrier_on(priv->dev);
		netif_wake_queue(priv->dev);
847 848 849 850
		if (priv->mesh_dev) {
			netif_carrier_on(priv->mesh_dev);
			netif_wake_queue(priv->mesh_dev);
		}
851 852 853 854 855 856 857 858 859
	}

out:
	if (scan_cfg)
		kfree(scan_cfg);

	if (scan_chan_list)
		kfree(scan_chan_list);

860
	lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
861 862 863 864 865 866 867 868 869 870
	return ret;
}

/**
 *  @brief Interpret a BSS scan response returned from the firmware
 *
 *  Parse the various fixed fields and IEs passed back for a a BSS probe
 *   response or beacon from the scan command.  Record information as needed
 *   in the scan table struct bss_descriptor for that entry.
 *
871
 *  @param bss  Output parameter: Pointer to the BSS Entry
872 873 874
 *
 *  @return             0 or -1
 */
875 876
static int libertas_process_bss(struct bss_descriptor * bss,
				u8 ** pbeaconinfo, int *bytesleft)
877 878 879 880 881
{
	struct ieeetypes_fhparamset *pFH;
	struct ieeetypes_dsparamset *pDS;
	struct ieeetypes_cfparamset *pCF;
	struct ieeetypes_ibssparamset *pibss;
882
	DECLARE_MAC_BUF(mac);
883
	struct ieeetypes_countryinfoset *pcountryinfo;
884 885 886 887
	u8 *pos, *end, *p;
	u8 n_ex_rates = 0, got_basic_rates = 0, n_basic_rates = 0;
	u16 beaconsize = 0;
	int ret;
888

889
	lbs_deb_enter(LBS_DEB_ASSOC);
890 891 892

	if (*bytesleft >= sizeof(beaconsize)) {
		/* Extract & convert beacon size from the command buffer */
893
		beaconsize = le16_to_cpu(get_unaligned((u16 *)*pbeaconinfo));
894 895 896 897 898 899 900 901 902 903 904
		*bytesleft -= sizeof(beaconsize);
		*pbeaconinfo += sizeof(beaconsize);
	}

	if (beaconsize == 0 || beaconsize > *bytesleft) {
		*pbeaconinfo += *bytesleft;
		*bytesleft = 0;
		return -1;
	}

	/* Initialize the current working beacon pointer for this BSS iteration */
905 906
	pos = *pbeaconinfo;
	end = pos + beaconsize;
907 908 909 910 911

	/* Advance the return beacon pointer past the current beacon */
	*pbeaconinfo += beaconsize;
	*bytesleft -= beaconsize;

912
	memcpy(bss->bssid, pos, ETH_ALEN);
913
	lbs_deb_scan("process_bss: AP BSSID %s\n", print_mac(mac, bss->bssid));
914
	pos += ETH_ALEN;
915

916
	if ((end - pos) < 12) {
917
		lbs_deb_scan("process_bss: Not enough bytes left\n");
918 919 920 921 922 923 924 925 926
		return -1;
	}

	/*
	 * next 4 fields are RSSI, time stamp, beacon interval,
	 *   and capability information
	 */

	/* RSSI is 1 byte long */
927 928 929
	bss->rssi = *pos;
	lbs_deb_scan("process_bss: RSSI=%02X\n", *pos);
	pos++;
930 931

	/* time stamp is 8 bytes long */
932
	pos += 8;
933 934

	/* beacon interval is 2 bytes long */
935 936
	bss->beaconperiod = le16_to_cpup((void *) pos);
	pos += 2;
937 938

	/* capability information is 2 bytes long */
939
	bss->capability = le16_to_cpup((void *) pos);
940
	lbs_deb_scan("process_bss: capabilities = 0x%4X\n", bss->capability);
941
	pos += 2;
942

943 944 945 946 947 948 949
	if (bss->capability & WLAN_CAPABILITY_PRIVACY)
		lbs_deb_scan("process_bss: AP WEP enabled\n");
	if (bss->capability & WLAN_CAPABILITY_IBSS)
		bss->mode = IW_MODE_ADHOC;
	else
		bss->mode = IW_MODE_INFRA;

950
	/* rest of the current buffer are IE's */
951
	lbs_deb_scan("process_bss: IE length for this AP = %zd\n", end - pos);
952
	lbs_deb_hex(LBS_DEB_SCAN, "process_bss: IE info", pos, end - pos);
953 954

	/* process variable IE */
955 956 957
	while (pos <= end - 2) {
		struct ieee80211_info_element * elem =
			(struct ieee80211_info_element *) pos;
958

959
		if (pos + elem->len > end) {
960
			lbs_deb_scan("process_bss: error in processing IE, "
961
			       "bytes left < IE length\n");
962
			break;
963 964
		}

965 966 967 968
		switch (elem->id) {
		case MFIE_TYPE_SSID:
			bss->ssid_len = elem->len;
			memcpy(bss->ssid, elem->data, elem->len);
969 970 971
			lbs_deb_scan("ssid '%s', ssid length %u\n",
			             escape_essid(bss->ssid, bss->ssid_len),
			             bss->ssid_len);
972 973
			break;

974
		case MFIE_TYPE_RATES:
975 976 977
			n_basic_rates = min_t(u8, MAX_RATES, elem->len);
			memcpy(bss->rates, elem->data, n_basic_rates);
			got_basic_rates = 1;
978 979
			break;

980 981
		case MFIE_TYPE_FH_SET:
			pFH = (struct ieeetypes_fhparamset *) pos;
982
			memmove(&bss->phyparamset.fhparamset, pFH,
983
				sizeof(struct ieeetypes_fhparamset));
984
#if 0 /* I think we can store these LE */
985 986
			bss->phyparamset.fhparamset.dwelltime
			    = le16_to_cpu(bss->phyparamset.fhparamset.dwelltime);
987
#endif
988 989
			break;

990 991
		case MFIE_TYPE_DS_SET:
			pDS = (struct ieeetypes_dsparamset *) pos;
992 993
			bss->channel = pDS->currentchan;
			memcpy(&bss->phyparamset.dsparamset, pDS,
994 995 996
			       sizeof(struct ieeetypes_dsparamset));
			break;

997 998
		case MFIE_TYPE_CF_SET:
			pCF = (struct ieeetypes_cfparamset *) pos;
999
			memcpy(&bss->ssparamset.cfparamset, pCF,
1000 1001 1002
			       sizeof(struct ieeetypes_cfparamset));
			break;

1003 1004
		case MFIE_TYPE_IBSS_SET:
			pibss = (struct ieeetypes_ibssparamset *) pos;
1005 1006
			bss->atimwindow = le32_to_cpu(pibss->atimwindow);
			memmove(&bss->ssparamset.ibssparamset, pibss,
1007
				sizeof(struct ieeetypes_ibssparamset));
1008
#if 0
1009 1010
			bss->ssparamset.ibssparamset.atimwindow
			    = le16_to_cpu(bss->ssparamset.ibssparamset.atimwindow);
1011
#endif
1012 1013
			break;

1014 1015
		case MFIE_TYPE_COUNTRY:
			pcountryinfo = (struct ieeetypes_countryinfoset *) pos;
1016
			if (pcountryinfo->len < sizeof(pcountryinfo->countrycode)
1017
			    || pcountryinfo->len > 254) {
1018
				lbs_deb_scan("process_bss: 11D- Err "
D
Dan Williams 已提交
1019
				       "CountryInfo len =%d min=%zd max=254\n",
1020 1021
				       pcountryinfo->len,
				       sizeof(pcountryinfo->countrycode));
1022 1023
				ret = -1;
				goto done;
1024 1025
			}

1026
			memcpy(&bss->countryinfo,
1027
			       pcountryinfo, pcountryinfo->len + 2);
1028
			lbs_deb_hex(LBS_DEB_SCAN, "process_bss: 11d countryinfo",
1029 1030 1031 1032
				(u8 *) pcountryinfo,
				(u32) (pcountryinfo->len + 2));
			break;

1033 1034 1035
		case MFIE_TYPE_RATES_EX:
			/* only process extended supported rate if data rate is
			 * already found. Data rate IE should come before
1036 1037
			 * extended supported rate IE
			 */
1038
			if (!got_basic_rates)
1039
				break;
1040

1041 1042 1043
			n_ex_rates = elem->len;
			if (n_basic_rates + n_ex_rates > MAX_RATES)
				n_ex_rates = MAX_RATES - n_basic_rates;
1044

1045 1046
			p = bss->rates + n_basic_rates;
			memcpy(p, elem->data, n_ex_rates);
1047
			break;
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057

		case MFIE_TYPE_GENERIC:
			if (elem->len >= 4 &&
			    elem->data[0] == 0x00 &&
			    elem->data[1] == 0x50 &&
			    elem->data[2] == 0xf2 &&
			    elem->data[3] == 0x01) {
				bss->wpa_ie_len = min(elem->len + 2,
				                      MAX_WPA_IE_LEN);
				memcpy(bss->wpa_ie, elem, bss->wpa_ie_len);
1058
				lbs_deb_hex(LBS_DEB_SCAN, "process_bss: WPA IE", bss->wpa_ie,
1059
				            elem->len);
1060 1061 1062 1063 1064 1065
			} else if (elem->len >= MARVELL_MESH_IE_LENGTH &&
			    elem->data[0] == 0x00 &&
			    elem->data[1] == 0x50 &&
			    elem->data[2] == 0x43 &&
			    elem->data[3] == 0x04) {
				bss->mesh = 1;
1066
			}
1067
			break;
1068 1069 1070 1071

		case MFIE_TYPE_RSN:
			bss->rsn_ie_len = min(elem->len + 2, MAX_WPA_IE_LEN);
			memcpy(bss->rsn_ie, elem, bss->rsn_ie_len);
1072
			lbs_deb_hex(LBS_DEB_SCAN, "process_bss: RSN_IE", bss->rsn_ie, elem->len);
1073 1074
			break;

1075
		default:
1076 1077 1078
			break;
		}

1079 1080
		pos += elem->len + 2;
	}
1081 1082 1083

	/* Timestamp */
	bss->last_scanned = jiffies;
1084
	libertas_unset_basic_rate_flags(bss->rates, sizeof(bss->rates));
1085

1086
	ret = 0;
1087

1088 1089 1090
done:
	lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
	return ret;
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
}

/**
 *  @brief Compare two SSIDs
 *
 *  @param ssid1    A pointer to ssid to compare
 *  @param ssid2    A pointer to ssid to compare
 *
 *  @return         0--ssid is same, otherwise is different
 */
1101
int libertas_ssid_cmp(u8 *ssid1, u8 ssid1_len, u8 *ssid2, u8 ssid2_len)
1102
{
1103
	if (ssid1_len != ssid2_len)
1104 1105
		return -1;

1106
	return memcmp(ssid1, ssid2, ssid1_len);
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
}

/**
 *  @brief This function finds a specific compatible BSSID in the scan list
 *
 *  @param adapter  A pointer to wlan_adapter
 *  @param bssid    BSSID to find in the scan list
 *  @param mode     Network mode: Infrastructure or IBSS
 *
 *  @return         index in BSSID list, or error return code (< 0)
 */
1118
struct bss_descriptor * libertas_find_bssid_in_list(wlan_adapter * adapter,
1119
		u8 * bssid, u8 mode)
1120
{
1121 1122
	struct bss_descriptor * iter_bss;
	struct bss_descriptor * found_bss = NULL;
1123 1124

	if (!bssid)
1125
		return NULL;
1126

1127
	lbs_deb_hex(LBS_DEB_SCAN, "looking for",
1128
		bssid, ETH_ALEN);
1129

1130 1131 1132
	/* Look through the scan table for a compatible match.  The loop will
	 *   continue past a matched bssid that is not compatible in case there
	 *   is an AP with multiple SSIDs assigned to the same BSSID
1133
	 */
1134 1135
	mutex_lock(&adapter->lock);
	list_for_each_entry (iter_bss, &adapter->network_list, list) {
1136
		if (compare_ether_addr(iter_bss->bssid, bssid))
1137 1138 1139 1140 1141
			continue; /* bssid doesn't match */
		switch (mode) {
		case IW_MODE_INFRA:
		case IW_MODE_ADHOC:
			if (!is_network_compatible(adapter, iter_bss, mode))
1142
				break;
1143 1144 1145 1146 1147
			found_bss = iter_bss;
			break;
		default:
			found_bss = iter_bss;
			break;
1148 1149
		}
	}
1150
	mutex_unlock(&adapter->lock);
1151

1152
	return found_bss;
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
}

/**
 *  @brief This function finds ssid in ssid list.
 *
 *  @param adapter  A pointer to wlan_adapter
 *  @param ssid     SSID to find in the list
 *  @param bssid    BSSID to qualify the SSID selection (if provided)
 *  @param mode     Network mode: Infrastructure or IBSS
 *
 *  @return         index in BSSID list
 */
1165
struct bss_descriptor * libertas_find_ssid_in_list(wlan_adapter * adapter,
1166
		   u8 *ssid, u8 ssid_len, u8 * bssid, u8 mode,
1167
		   int channel)
1168 1169
{
	u8 bestrssi = 0;
1170 1171 1172
	struct bss_descriptor * iter_bss = NULL;
	struct bss_descriptor * found_bss = NULL;
	struct bss_descriptor * tmp_oldest = NULL;
1173

1174 1175 1176 1177 1178 1179 1180
	mutex_lock(&adapter->lock);

	list_for_each_entry (iter_bss, &adapter->network_list, list) {
		if (   !tmp_oldest
		    || (iter_bss->last_scanned < tmp_oldest->last_scanned))
			tmp_oldest = iter_bss;

1181
		if (libertas_ssid_cmp(iter_bss->ssid, iter_bss->ssid_len,
1182
		                      ssid, ssid_len) != 0)
1183
			continue; /* ssid doesn't match */
1184
		if (bssid && compare_ether_addr(iter_bss->bssid, bssid) != 0)
1185
			continue; /* bssid doesn't match */
1186 1187
		if ((channel > 0) && (iter_bss->channel != channel))
			continue; /* channel doesn't match */
1188 1189 1190 1191 1192

		switch (mode) {
		case IW_MODE_INFRA:
		case IW_MODE_ADHOC:
			if (!is_network_compatible(adapter, iter_bss, mode))
1193
				break;
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210

			if (bssid) {
				/* Found requested BSSID */
				found_bss = iter_bss;
				goto out;
			}

			if (SCAN_RSSI(iter_bss->rssi) > bestrssi) {
				bestrssi = SCAN_RSSI(iter_bss->rssi);
				found_bss = iter_bss;
			}
			break;
		case IW_MODE_AUTO:
		default:
			if (SCAN_RSSI(iter_bss->rssi) > bestrssi) {
				bestrssi = SCAN_RSSI(iter_bss->rssi);
				found_bss = iter_bss;
1211
			}
1212
			break;
1213 1214 1215
		}
	}

1216 1217 1218
out:
	mutex_unlock(&adapter->lock);
	return found_bss;
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
}

/**
 *  @brief This function finds the best SSID in the Scan List
 *
 *  Search the scan table for the best SSID that also matches the current
 *   adapter network preference (infrastructure or adhoc)
 *
 *  @param adapter  A pointer to wlan_adapter
 *
 *  @return         index in BSSID list
 */
1231
static struct bss_descriptor * libertas_find_best_ssid_in_list(wlan_adapter * adapter,
1232
		u8 mode)
1233 1234
{
	u8 bestrssi = 0;
1235 1236
	struct bss_descriptor * iter_bss;
	struct bss_descriptor * best_bss = NULL;
1237

1238
	mutex_lock(&adapter->lock);
1239

1240
	list_for_each_entry (iter_bss, &adapter->network_list, list) {
1241
		switch (mode) {
1242 1243
		case IW_MODE_INFRA:
		case IW_MODE_ADHOC:
1244 1245 1246 1247 1248 1249
			if (!is_network_compatible(adapter, iter_bss, mode))
				break;
			if (SCAN_RSSI(iter_bss->rssi) <= bestrssi)
				break;
			bestrssi = SCAN_RSSI(iter_bss->rssi);
			best_bss = iter_bss;
1250
			break;
1251
		case IW_MODE_AUTO:
1252
		default:
1253 1254 1255 1256
			if (SCAN_RSSI(iter_bss->rssi) <= bestrssi)
				break;
			bestrssi = SCAN_RSSI(iter_bss->rssi);
			best_bss = iter_bss;
1257 1258 1259 1260
			break;
		}
	}

1261 1262
	mutex_unlock(&adapter->lock);
	return best_bss;
1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
}

/**
 *  @brief Find the AP with specific ssid in the scan list
 *
 *  @param priv         A pointer to wlan_private structure
 *  @param pSSID        A pointer to AP's ssid
 *
 *  @return             0--success, otherwise--fail
 */
1273
int libertas_find_best_network_ssid(wlan_private * priv,
1274
		u8 *out_ssid, u8 *out_ssid_len, u8 preferred_mode, u8 *out_mode)
1275 1276
{
	wlan_adapter *adapter = priv->adapter;
1277 1278
	int ret = -1;
	struct bss_descriptor * found;
1279

1280
	lbs_deb_enter(LBS_DEB_ASSOC);
1281

1282
	wlan_scan_networks(priv, NULL, 1);
1283 1284 1285
	if (adapter->surpriseremoved)
		return -1;

1286
	wait_event_interruptible(adapter->cmd_pending, !adapter->nr_cmd_pending);
1287

1288
	found = libertas_find_best_ssid_in_list(adapter, preferred_mode);
1289 1290 1291
	if (found && (found->ssid_len > 0)) {
		memcpy(out_ssid, &found->ssid, IW_ESSID_MAX_SIZE);
		*out_ssid_len = found->ssid_len;
1292 1293
		*out_mode = found->mode;
		ret = 0;
1294 1295
	}

1296
	lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
	return ret;
}

/**
 *  @brief Scan Network
 *
 *  @param dev          A pointer to net_device structure
 *  @param info         A pointer to iw_request_info structure
 *  @param vwrq         A pointer to iw_param structure
 *  @param extra        A pointer to extra data buf
 *
 *  @return             0 --success, otherwise fail
 */
int libertas_set_scan(struct net_device *dev, struct iw_request_info *info,
		  struct iw_param *vwrq, char *extra)
{
	wlan_private *priv = dev->priv;
	wlan_adapter *adapter = priv->adapter;

1316
	lbs_deb_enter(LBS_DEB_SCAN);
1317

1318 1319 1320 1321
	if (!delayed_work_pending(&priv->scan_work)) {
		queue_delayed_work(priv->work_thread, &priv->scan_work,
		                   msecs_to_jiffies(50));
	}
1322 1323 1324 1325

	if (adapter->surpriseremoved)
		return -1;

1326
	lbs_deb_leave(LBS_DEB_SCAN);
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
	return 0;
}

/**
 *  @brief Send a scan command for all available channels filtered on a spec
 *
 *  @param priv             A pointer to wlan_private structure
 *  @param prequestedssid   A pointer to AP's ssid
 *  @param keeppreviousscan Flag used to save/clear scan table before scan
 *
 *  @return                0-success, otherwise fail
 */
1339
int libertas_send_specific_ssid_scan(wlan_private * priv,
1340
			u8 *ssid, u8 ssid_len, u8 clear_ssid)
1341 1342 1343
{
	wlan_adapter *adapter = priv->adapter;
	struct wlan_ioctl_user_scan_cfg scancfg;
1344
	int ret = 0;
1345

1346
	lbs_deb_enter(LBS_DEB_ASSOC);
1347

1348
	if (!ssid_len)
1349
		goto out;
1350 1351

	memset(&scancfg, 0x00, sizeof(scancfg));
1352 1353
	memcpy(scancfg.ssid, ssid, ssid_len);
	scancfg.ssid_len = ssid_len;
1354
	scancfg.clear_ssid = clear_ssid;
1355

1356
	wlan_scan_networks(priv, &scancfg, 1);
1357 1358 1359 1360
	if (adapter->surpriseremoved)
		return -1;
	wait_event_interruptible(adapter->cmd_pending, !adapter->nr_cmd_pending);

1361
out:
1362
	lbs_deb_leave(LBS_DEB_ASSOC);
1363
	return ret;
1364 1365
}

1366 1367
#define MAX_CUSTOM_LEN 64

1368 1369 1370
static inline char *libertas_translate_scan(wlan_private *priv,
					char *start, char *stop,
					struct bss_descriptor *bss)
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381
{
	wlan_adapter *adapter = priv->adapter;
	struct chan_freq_power *cfp;
	char *current_val;	/* For rates */
	struct iw_event iwe;	/* Temporary buffer */
	int j;
#define PERFECT_RSSI ((u8)50)
#define WORST_RSSI   ((u8)0)
#define RSSI_DIFF    ((u8)(PERFECT_RSSI - WORST_RSSI))
	u8 rssi;

1382 1383 1384 1385
	cfp = libertas_find_cfp_by_band_and_channel(adapter, 0, bss->channel);
	if (!cfp) {
		lbs_deb_scan("Invalid channel number %d\n", bss->channel);
		return NULL;
1386
	}
1387

1388 1389 1390 1391 1392 1393 1394 1395 1396
	/* First entry *MUST* be the AP BSSID */
	iwe.cmd = SIOCGIWAP;
	iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
	memcpy(iwe.u.ap_addr.sa_data, &bss->bssid, ETH_ALEN);
	start = iwe_stream_add_event(start, stop, &iwe, IW_EV_ADDR_LEN);

	/* SSID */
	iwe.cmd = SIOCGIWESSID;
	iwe.u.data.flags = 1;
1397 1398
	iwe.u.data.length = min((u32) bss->ssid_len, (u32) IW_ESSID_MAX_SIZE);
	start = iwe_stream_add_point(start, stop, &iwe, bss->ssid);
1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429

	/* Mode */
	iwe.cmd = SIOCGIWMODE;
	iwe.u.mode = bss->mode;
	start = iwe_stream_add_event(start, stop, &iwe, IW_EV_UINT_LEN);

	/* Frequency */
	iwe.cmd = SIOCGIWFREQ;
	iwe.u.freq.m = (long)cfp->freq * 100000;
	iwe.u.freq.e = 1;
	start = iwe_stream_add_event(start, stop, &iwe, IW_EV_FREQ_LEN);

	/* Add quality statistics */
	iwe.cmd = IWEVQUAL;
	iwe.u.qual.updated = IW_QUAL_ALL_UPDATED;
	iwe.u.qual.level = SCAN_RSSI(bss->rssi);

	rssi = iwe.u.qual.level - MRVDRV_NF_DEFAULT_SCAN_VALUE;
	iwe.u.qual.qual =
	    (100 * RSSI_DIFF * RSSI_DIFF - (PERFECT_RSSI - rssi) *
	     (15 * (RSSI_DIFF) + 62 * (PERFECT_RSSI - rssi))) /
	    (RSSI_DIFF * RSSI_DIFF);
	if (iwe.u.qual.qual > 100)
		iwe.u.qual.qual = 100;

	if (adapter->NF[TYPE_BEACON][TYPE_NOAVG] == 0) {
		iwe.u.qual.noise = MRVDRV_NF_DEFAULT_SCAN_VALUE;
	} else {
		iwe.u.qual.noise =
		    CAL_NF(adapter->NF[TYPE_BEACON][TYPE_NOAVG]);
	}
1430 1431 1432 1433 1434 1435 1436

	/* Locally created ad-hoc BSSs won't have beacons if this is the
	 * only station in the adhoc network; so get signal strength
	 * from receive statistics.
	 */
	if ((adapter->mode == IW_MODE_ADHOC)
	    && adapter->adhoccreate
1437
	    && !libertas_ssid_cmp(adapter->curbssparams.ssid,
1438 1439
	                          adapter->curbssparams.ssid_len,
	                          bss->ssid, bss->ssid_len)) {
1440 1441 1442 1443
		int snr, nf;
		snr = adapter->SNR[TYPE_RXPD][TYPE_AVG] / AVG_SCALE;
		nf = adapter->NF[TYPE_RXPD][TYPE_AVG] / AVG_SCALE;
		iwe.u.qual.level = CAL_RSSI(snr, nf);
1444 1445
	}
	start = iwe_stream_add_event(start, stop, &iwe, IW_EV_QUAL_LEN);
1446

1447 1448
	/* Add encryption capability */
	iwe.cmd = SIOCGIWENCODE;
1449
	if (bss->capability & WLAN_CAPABILITY_PRIVACY) {
1450 1451 1452 1453 1454
		iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
	} else {
		iwe.u.data.flags = IW_ENCODE_DISABLED;
	}
	iwe.u.data.length = 0;
1455
	start = iwe_stream_add_point(start, stop, &iwe, bss->ssid);
1456

1457
	current_val = start + IW_EV_LCP_LEN;
1458

1459 1460 1461 1462
	iwe.cmd = SIOCGIWRATE;
	iwe.u.bitrate.fixed = 0;
	iwe.u.bitrate.disabled = 0;
	iwe.u.bitrate.value = 0;
1463

1464 1465 1466
	for (j = 0; bss->rates[j] && (j < sizeof(bss->rates)); j++) {
		/* Bit rate given in 500 kb/s units */
		iwe.u.bitrate.value = bss->rates[j] * 500000;
1467 1468 1469 1470
		current_val = iwe_stream_add_value(start, current_val,
					 stop, &iwe, IW_EV_PARAM_LEN);
	}
	if ((bss->mode == IW_MODE_ADHOC)
1471
	    && !libertas_ssid_cmp(adapter->curbssparams.ssid,
1472 1473
	                          adapter->curbssparams.ssid_len,
	                          bss->ssid, bss->ssid_len)
1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490
	    && adapter->adhoccreate) {
		iwe.u.bitrate.value = 22 * 500000;
		current_val = iwe_stream_add_value(start, current_val,
					 stop, &iwe, IW_EV_PARAM_LEN);
	}
	/* Check if we added any event */
	if((current_val - start) > IW_EV_LCP_LEN)
		start = current_val;

	memset(&iwe, 0, sizeof(iwe));
	if (bss->wpa_ie_len) {
		char buf[MAX_WPA_IE_LEN];
		memcpy(buf, bss->wpa_ie, bss->wpa_ie_len);
		iwe.cmd = IWEVGENIE;
		iwe.u.data.length = bss->wpa_ie_len;
		start = iwe_stream_add_point(start, stop, &iwe, buf);
	}
1491

1492 1493 1494 1495 1496 1497 1498 1499
	memset(&iwe, 0, sizeof(iwe));
	if (bss->rsn_ie_len) {
		char buf[MAX_WPA_IE_LEN];
		memcpy(buf, bss->rsn_ie, bss->rsn_ie_len);
		iwe.cmd = IWEVGENIE;
		iwe.u.data.length = bss->rsn_ie_len;
		start = iwe_stream_add_point(start, stop, &iwe, buf);
	}
1500

1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
	if (bss->mesh) {
		char custom[MAX_CUSTOM_LEN];
		char *p = custom;

		iwe.cmd = IWEVCUSTOM;
		p += snprintf(p, MAX_CUSTOM_LEN - (p - custom),
		              "mesh-type: olpc");
		iwe.u.data.length = p - custom;
		if (iwe.u.data.length)
			start = iwe_stream_add_point(start, stop, &iwe, custom);
	}

1513 1514
	return start;
}
1515

1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536
/**
 *  @brief  Retrieve the scan table entries via wireless tools IOCTL call
 *
 *  @param dev          A pointer to net_device structure
 *  @param info         A pointer to iw_request_info structure
 *  @param dwrq         A pointer to iw_point structure
 *  @param extra        A pointer to extra data buf
 *
 *  @return             0 --success, otherwise fail
 */
int libertas_get_scan(struct net_device *dev, struct iw_request_info *info,
		  struct iw_point *dwrq, char *extra)
{
#define SCAN_ITEM_SIZE 128
	wlan_private *priv = dev->priv;
	wlan_adapter *adapter = priv->adapter;
	int err = 0;
	char *ev = extra;
	char *stop = ev + dwrq->length;
	struct bss_descriptor * iter_bss;
	struct bss_descriptor * safe;
1537

1538
	lbs_deb_enter(LBS_DEB_ASSOC);
1539

1540
	/* Update RSSI if current BSS is a locally created ad-hoc BSS */
1541
	if ((adapter->mode == IW_MODE_ADHOC) && adapter->adhoccreate) {
1542 1543
		libertas_prepare_and_send_command(priv, CMD_802_11_RSSI, 0,
					CMD_OPTION_WAITFORRSP, 0, NULL);
1544 1545
	}

1546 1547 1548 1549
	mutex_lock(&adapter->lock);
	list_for_each_entry_safe (iter_bss, safe, &adapter->network_list, list) {
		char * next_ev;
		unsigned long stale_time;
1550

1551 1552 1553
		if (stop - ev < SCAN_ITEM_SIZE) {
			err = -E2BIG;
			break;
1554 1555
		}

1556 1557 1558 1559
		/* For mesh device, list only mesh networks */
		if (dev == priv->mesh_dev && !iter_bss->mesh)
			continue;

1560 1561 1562 1563 1564 1565 1566
		/* Prune old an old scan result */
		stale_time = iter_bss->last_scanned + DEFAULT_MAX_SCAN_AGE;
		if (time_after(jiffies, stale_time)) {
			list_move_tail (&iter_bss->list,
			                &adapter->network_free_list);
			clear_bss_descriptor(iter_bss);
			continue;
1567 1568
		}

1569 1570 1571 1572 1573
		/* Translate to WE format this entry */
		next_ev = libertas_translate_scan(priv, ev, stop, iter_bss);
		if (next_ev == NULL)
			continue;
		ev = next_ev;
1574
	}
1575
	mutex_unlock(&adapter->lock);
1576

1577
	dwrq->length = (ev - extra);
1578 1579
	dwrq->flags = 0;

1580
	lbs_deb_leave(LBS_DEB_ASSOC);
1581
	return err;
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609
}

/**
 *  @brief Prepare a scan command to be sent to the firmware
 *
 *  Use the wlan_scan_cmd_config sent to the command processing module in
 *   the libertas_prepare_and_send_command to configure a cmd_ds_802_11_scan command
 *   struct to send to firmware.
 *
 *  The fixed fields specifying the BSS type and BSSID filters as well as a
 *   variable number/length of TLVs are sent in the command to firmware.
 *
 *  @param priv       A pointer to wlan_private structure
 *  @param cmd        A pointer to cmd_ds_command structure to be sent to
 *                    firmware with the cmd_DS_801_11_SCAN structure
 *  @param pdata_buf  Void pointer cast of a wlan_scan_cmd_config struct used
 *                    to set the fields/TLVs for the command sent to firmware
 *
 *  @return           0 or -1
 *
 *  @sa wlan_scan_create_channel_list
 */
int libertas_cmd_80211_scan(wlan_private * priv,
			 struct cmd_ds_command *cmd, void *pdata_buf)
{
	struct cmd_ds_802_11_scan *pscan = &cmd->params.scan;
	struct wlan_scan_cmd_config *pscancfg;

1610
	lbs_deb_enter(LBS_DEB_ASSOC);
1611 1612 1613 1614 1615

	pscancfg = pdata_buf;

	/* Set fixed field variables in scan command */
	pscan->bsstype = pscancfg->bsstype;
1616
	memcpy(pscan->bssid, pscancfg->bssid, ETH_ALEN);
1617 1618
	memcpy(pscan->tlvbuffer, pscancfg->tlvbuffer, pscancfg->tlvbufferlen);

1619
	cmd->command = cpu_to_le16(CMD_802_11_SCAN);
1620 1621

	/* size is equal to the sizeof(fixed portions) + the TLV len + header */
1622 1623
	cmd->size = cpu_to_le16(sizeof(pscan->bsstype) + ETH_ALEN
				+ pscancfg->tlvbufferlen + S_DS_GEN);
1624

1625
	lbs_deb_scan("SCAN_CMD: command=%x, size=%x, seqnum=%x\n",
1626 1627
		     le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
		     le16_to_cpu(cmd->seqnum));
1628 1629

	lbs_deb_leave(LBS_DEB_ASSOC);
1630 1631 1632
	return 0;
}

1633 1634 1635 1636 1637 1638
static inline int is_same_network(struct bss_descriptor *src,
				  struct bss_descriptor *dst)
{
	/* A network is only a duplicate if the channel, BSSID, and ESSID
	 * all match.  We treat all <hidden> with the same BSSID and channel
	 * as one network */
1639
	return ((src->ssid_len == dst->ssid_len) &&
1640 1641
		(src->channel == dst->channel) &&
		!compare_ether_addr(src->bssid, dst->bssid) &&
1642
		!memcmp(src->ssid, dst->ssid, src->ssid_len));
1643 1644
}

1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
/**
 *  @brief This function handles the command response of scan
 *
 *   The response buffer for the scan command has the following
 *      memory layout:
 *
 *     .-----------------------------------------------------------.
 *     |  header (4 * sizeof(u16)):  Standard command response hdr |
 *     .-----------------------------------------------------------.
 *     |  bufsize (u16) : sizeof the BSS Description data          |
 *     .-----------------------------------------------------------.
 *     |  NumOfSet (u8) : Number of BSS Descs returned             |
 *     .-----------------------------------------------------------.
 *     |  BSSDescription data (variable, size given in bufsize)    |
 *     .-----------------------------------------------------------.
 *     |  TLV data (variable, size calculated using header->size,  |
 *     |            bufsize and sizeof the fixed fields above)     |
 *     .-----------------------------------------------------------.
 *
 *  @param priv    A pointer to wlan_private structure
 *  @param resp    A pointer to cmd_ds_command
 *
 *  @return        0 or -1
 */
int libertas_ret_80211_scan(wlan_private * priv, struct cmd_ds_command *resp)
{
	wlan_adapter *adapter = priv->adapter;
	struct cmd_ds_802_11_scan_rsp *pscan;
1673 1674
	struct bss_descriptor * iter_bss;
	struct bss_descriptor * safe;
1675 1676 1677 1678 1679
	u8 *pbssinfo;
	u16 scanrespsize;
	int bytesleft;
	int idx;
	int tlvbufsize;
1680
	int ret;
1681

1682
	lbs_deb_enter(LBS_DEB_ASSOC);
1683

1684 1685 1686 1687 1688 1689 1690 1691 1692
	/* Prune old entries from scan table */
	list_for_each_entry_safe (iter_bss, safe, &adapter->network_list, list) {
		unsigned long stale_time = iter_bss->last_scanned + DEFAULT_MAX_SCAN_AGE;
		if (time_before(jiffies, stale_time))
			continue;
		list_move_tail (&iter_bss->list, &adapter->network_free_list);
		clear_bss_descriptor(iter_bss);
	}

1693 1694
	pscan = &resp->params.scanresp;

1695 1696 1697 1698
	if (pscan->nr_sets > MAX_NETWORK_COUNT) {
		lbs_deb_scan(
		       "SCAN_RESP: too many scan results (%d, max %d)!!\n",
		       pscan->nr_sets, MAX_NETWORK_COUNT);
1699 1700
		ret = -1;
		goto done;
1701 1702
	}

1703
	bytesleft = le16_to_cpu(get_unaligned((u16*)&pscan->bssdescriptsize));
1704
	lbs_deb_scan("SCAN_RESP: bssdescriptsize %d\n", bytesleft);
1705

1706
	scanrespsize = le16_to_cpu(get_unaligned((u16*)&resp->size));
1707
	lbs_deb_scan("SCAN_RESP: returned %d AP before parsing\n",
1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727
	       pscan->nr_sets);

	pbssinfo = pscan->bssdesc_and_tlvbuffer;

	/* The size of the TLV buffer is equal to the entire command response
	 *   size (scanrespsize) minus the fixed fields (sizeof()'s), the
	 *   BSS Descriptions (bssdescriptsize as bytesLef) and the command
	 *   response header (S_DS_GEN)
	 */
	tlvbufsize = scanrespsize - (bytesleft + sizeof(pscan->bssdescriptsize)
				     + sizeof(pscan->nr_sets)
				     + S_DS_GEN);

	/*
	 *  Process each scan response returned (pscan->nr_sets).  Save
	 *    the information in the newbssentry and then insert into the
	 *    driver scan table either as an update to an existing entry
	 *    or as an addition at the end of the table
	 */
	for (idx = 0; idx < pscan->nr_sets && bytesleft; idx++) {
1728 1729 1730
		struct bss_descriptor new;
		struct bss_descriptor * found = NULL;
		struct bss_descriptor * oldest = NULL;
1731
		DECLARE_MAC_BUF(mac);
1732 1733

		/* Process the data fields and IEs returned for this BSS */
1734 1735 1736 1737 1738 1739
		memset(&new, 0, sizeof (struct bss_descriptor));
		if (libertas_process_bss(&new, &pbssinfo, &bytesleft) != 0) {
			/* error parsing the scan response, skipped */
			lbs_deb_scan("SCAN_RESP: process_bss returned ERROR\n");
			continue;
		}
1740

1741 1742 1743 1744 1745
		/* Try to find this bss in the scan table */
		list_for_each_entry (iter_bss, &adapter->network_list, list) {
			if (is_same_network(iter_bss, &new)) {
				found = iter_bss;
				break;
1746 1747
			}

1748 1749 1750 1751
			if ((oldest == NULL) ||
			    (iter_bss->last_scanned < oldest->last_scanned))
				oldest = iter_bss;
		}
1752

1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765
		if (found) {
			/* found, clear it */
			clear_bss_descriptor(found);
		} else if (!list_empty(&adapter->network_free_list)) {
			/* Pull one from the free list */
			found = list_entry(adapter->network_free_list.next,
					   struct bss_descriptor, list);
			list_move_tail(&found->list, &adapter->network_list);
		} else if (oldest) {
			/* If there are no more slots, expire the oldest */
			found = oldest;
			clear_bss_descriptor(found);
			list_move_tail(&found->list, &adapter->network_list);
1766
		} else {
1767 1768
			continue;
		}
1769

1770 1771
		lbs_deb_scan("SCAN_RESP: BSSID = %s\n",
			     print_mac(mac, new.bssid));
1772 1773 1774 1775

		/* Copy the locally created newbssentry to the scan table */
		memcpy(found, &new, offsetof(struct bss_descriptor, list));
	}
1776

1777
	ret = 0;
1778

1779 1780 1781
done:
	lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
	return ret;
1782
}