Merge branches 'amd-iommu/fixes' and 'dma-debug/fixes' into iommu/fixes
[linux-2.6-block.git] / drivers / net / wireless / libertas / scan.c
CommitLineData
876c9d3a
MT
1/**
2 * Functions implementing wlan scan IOCTL and firmware command APIs
3 *
4 * IOCTL handlers as well as command preperation and response routines
5 * for sending scan commands to the firmware.
6 */
7e272fcf 7#include <linux/types.h>
430453fc 8#include <linux/kernel.h>
fcdb53db 9#include <linux/etherdevice.h>
2c706002 10#include <linux/if_arp.h>
ac630c2b 11#include <asm/unaligned.h>
7e272fcf
JL
12#include <net/lib80211.h>
13
876c9d3a 14#include "host.h"
876c9d3a
MT
15#include "dev.h"
16#include "scan.h"
2d46502d 17#include "assoc.h"
e93156e7 18#include "wext.h"
fa62f99c 19#include "cmd.h"
876c9d3a
MT
20
21//! Approximate amount of data needed to pass a scan result back to iwlist
22#define MAX_SCAN_CELL_SIZE (IW_EV_ADDR_LEN \
243e84e9 23 + IEEE80211_MAX_SSID_LEN \
876c9d3a
MT
24 + IW_EV_UINT_LEN \
25 + IW_EV_FREQ_LEN \
26 + IW_EV_QUAL_LEN \
243e84e9 27 + IEEE80211_MAX_SSID_LEN \
876c9d3a
MT
28 + IW_EV_PARAM_LEN \
29 + 40) /* 40 for WPAIE */
30
31//! Memory needed to store a max sized channel List TLV for a firmware scan
75b6a61a 32#define CHAN_TLV_MAX_SIZE (sizeof(struct mrvl_ie_header) \
876c9d3a
MT
33 + (MRVDRV_MAX_CHANNELS_PER_SCAN \
34 * sizeof(struct chanscanparamset)))
35
36//! Memory needed to store a max number/size SSID TLV for a firmware scan
75b6a61a 37#define SSID_TLV_MAX_SIZE (1 * sizeof(struct mrvl_ie_ssid_param_set))
876c9d3a 38
fa62f99c
DW
39//! Maximum memory needed for a cmd_ds_802_11_scan with all TLVs at max
40#define MAX_SCAN_CFG_ALLOC (sizeof(struct cmd_ds_802_11_scan) \
41 + CHAN_TLV_MAX_SIZE + SSID_TLV_MAX_SIZE)
876c9d3a
MT
42
43//! The maximum number of channels the firmware can scan per command
44#define MRVDRV_MAX_CHANNELS_PER_SCAN 14
45
46/**
47 * @brief Number of channels to scan per firmware scan command issuance.
48 *
49 * Number restricted to prevent hitting the limit on the amount of scan data
50 * returned in a single firmware scan command.
51 */
52#define MRVDRV_CHANNELS_PER_SCAN_CMD 4
53
54//! Scan time specified in the channel TLV for each channel for passive scans
55#define MRVDRV_PASSIVE_SCAN_CHAN_TIME 100
56
57//! Scan time specified in the channel TLV for each channel for active scans
58#define MRVDRV_ACTIVE_SCAN_CHAN_TIME 100
59
2c706002
JB
60#define DEFAULT_MAX_SCAN_AGE (15 * HZ)
61
fa62f99c
DW
62static int lbs_ret_80211_scan(struct lbs_private *priv, unsigned long dummy,
63 struct cmd_header *resp);
e56188ac
HS
64
65/*********************************************************************/
66/* */
67/* Misc helper functions */
68/* */
69/*********************************************************************/
70
23ff5036
HS
71/**
72 * @brief Unsets the MSB on basic rates
73 *
74 * Scan through an array and unset the MSB for basic data rates.
75 *
76 * @param rates buffer of data rates
77 * @param len size of buffer
78 */
79static void lbs_unset_basic_rate_flags(u8 *rates, size_t len)
80{
81 int i;
82
83 for (i = 0; i < len; i++)
84 rates[i] &= 0x7f;
85}
86
87
f137e054 88static inline void clear_bss_descriptor(struct bss_descriptor *bss)
fcdb53db
DW
89{
90 /* Don't blow away ->list, just BSS data */
91 memset(bss, 0, offsetof(struct bss_descriptor, list));
92}
93
ffd074fc
HS
94/**
95 * @brief Compare two SSIDs
96 *
97 * @param ssid1 A pointer to ssid to compare
98 * @param ssid2 A pointer to ssid to compare
99 *
100 * @return 0: ssid is same, otherwise is different
101 */
f137e054
DW
102int lbs_ssid_cmp(uint8_t *ssid1, uint8_t ssid1_len, uint8_t *ssid2,
103 uint8_t ssid2_len)
ffd074fc
HS
104{
105 if (ssid1_len != ssid2_len)
106 return -1;
107
108 return memcmp(ssid1, ssid2, ssid1_len);
109}
110
ffd074fc
HS
111static inline int is_same_network(struct bss_descriptor *src,
112 struct bss_descriptor *dst)
113{
114 /* A network is only a duplicate if the channel, BSSID, and ESSID
115 * all match. We treat all <hidden> with the same BSSID and channel
116 * as one network */
117 return ((src->ssid_len == dst->ssid_len) &&
118 (src->channel == dst->channel) &&
119 !compare_ether_addr(src->bssid, dst->bssid) &&
120 !memcmp(src->ssid, dst->ssid, src->ssid_len));
121}
122
876c9d3a 123
e56188ac 124
2d46502d
HS
125/*********************************************************************/
126/* */
127/* Region channel support */
128/* */
129/*********************************************************************/
130
131#define LBS_TX_PWR_DEFAULT 20 /*100mW */
132#define LBS_TX_PWR_US_DEFAULT 20 /*100mW */
133#define LBS_TX_PWR_JP_DEFAULT 16 /*50mW */
134#define LBS_TX_PWR_FR_DEFAULT 20 /*100mW */
135#define LBS_TX_PWR_EMEA_DEFAULT 20 /*100mW */
136
137/* Format { channel, frequency (MHz), maxtxpower } */
138/* band: 'B/G', region: USA FCC/Canada IC */
139static struct chan_freq_power channel_freq_power_US_BG[] = {
140 {1, 2412, LBS_TX_PWR_US_DEFAULT},
141 {2, 2417, LBS_TX_PWR_US_DEFAULT},
142 {3, 2422, LBS_TX_PWR_US_DEFAULT},
143 {4, 2427, LBS_TX_PWR_US_DEFAULT},
144 {5, 2432, LBS_TX_PWR_US_DEFAULT},
145 {6, 2437, LBS_TX_PWR_US_DEFAULT},
146 {7, 2442, LBS_TX_PWR_US_DEFAULT},
147 {8, 2447, LBS_TX_PWR_US_DEFAULT},
148 {9, 2452, LBS_TX_PWR_US_DEFAULT},
149 {10, 2457, LBS_TX_PWR_US_DEFAULT},
150 {11, 2462, LBS_TX_PWR_US_DEFAULT}
151};
152
153/* band: 'B/G', region: Europe ETSI */
154static struct chan_freq_power channel_freq_power_EU_BG[] = {
155 {1, 2412, LBS_TX_PWR_EMEA_DEFAULT},
156 {2, 2417, LBS_TX_PWR_EMEA_DEFAULT},
157 {3, 2422, LBS_TX_PWR_EMEA_DEFAULT},
158 {4, 2427, LBS_TX_PWR_EMEA_DEFAULT},
159 {5, 2432, LBS_TX_PWR_EMEA_DEFAULT},
160 {6, 2437, LBS_TX_PWR_EMEA_DEFAULT},
161 {7, 2442, LBS_TX_PWR_EMEA_DEFAULT},
162 {8, 2447, LBS_TX_PWR_EMEA_DEFAULT},
163 {9, 2452, LBS_TX_PWR_EMEA_DEFAULT},
164 {10, 2457, LBS_TX_PWR_EMEA_DEFAULT},
165 {11, 2462, LBS_TX_PWR_EMEA_DEFAULT},
166 {12, 2467, LBS_TX_PWR_EMEA_DEFAULT},
167 {13, 2472, LBS_TX_PWR_EMEA_DEFAULT}
168};
169
170/* band: 'B/G', region: Spain */
171static struct chan_freq_power channel_freq_power_SPN_BG[] = {
172 {10, 2457, LBS_TX_PWR_DEFAULT},
173 {11, 2462, LBS_TX_PWR_DEFAULT}
174};
175
176/* band: 'B/G', region: France */
177static struct chan_freq_power channel_freq_power_FR_BG[] = {
178 {10, 2457, LBS_TX_PWR_FR_DEFAULT},
179 {11, 2462, LBS_TX_PWR_FR_DEFAULT},
180 {12, 2467, LBS_TX_PWR_FR_DEFAULT},
181 {13, 2472, LBS_TX_PWR_FR_DEFAULT}
182};
183
184/* band: 'B/G', region: Japan */
185static struct chan_freq_power channel_freq_power_JPN_BG[] = {
186 {1, 2412, LBS_TX_PWR_JP_DEFAULT},
187 {2, 2417, LBS_TX_PWR_JP_DEFAULT},
188 {3, 2422, LBS_TX_PWR_JP_DEFAULT},
189 {4, 2427, LBS_TX_PWR_JP_DEFAULT},
190 {5, 2432, LBS_TX_PWR_JP_DEFAULT},
191 {6, 2437, LBS_TX_PWR_JP_DEFAULT},
192 {7, 2442, LBS_TX_PWR_JP_DEFAULT},
193 {8, 2447, LBS_TX_PWR_JP_DEFAULT},
194 {9, 2452, LBS_TX_PWR_JP_DEFAULT},
195 {10, 2457, LBS_TX_PWR_JP_DEFAULT},
196 {11, 2462, LBS_TX_PWR_JP_DEFAULT},
197 {12, 2467, LBS_TX_PWR_JP_DEFAULT},
198 {13, 2472, LBS_TX_PWR_JP_DEFAULT},
199 {14, 2484, LBS_TX_PWR_JP_DEFAULT}
200};
201
202/**
203 * the structure for channel, frequency and power
204 */
205struct region_cfp_table {
206 u8 region;
207 struct chan_freq_power *cfp_BG;
208 int cfp_no_BG;
209};
210
211/**
212 * the structure for the mapping between region and CFP
213 */
214static struct region_cfp_table region_cfp_table[] = {
215 {0x10, /*US FCC */
216 channel_freq_power_US_BG,
217 ARRAY_SIZE(channel_freq_power_US_BG),
218 }
219 ,
220 {0x20, /*CANADA IC */
221 channel_freq_power_US_BG,
222 ARRAY_SIZE(channel_freq_power_US_BG),
223 }
224 ,
225 {0x30, /*EU*/ channel_freq_power_EU_BG,
226 ARRAY_SIZE(channel_freq_power_EU_BG),
227 }
228 ,
229 {0x31, /*SPAIN*/ channel_freq_power_SPN_BG,
230 ARRAY_SIZE(channel_freq_power_SPN_BG),
231 }
232 ,
233 {0x32, /*FRANCE*/ channel_freq_power_FR_BG,
234 ARRAY_SIZE(channel_freq_power_FR_BG),
235 }
236 ,
237 {0x40, /*JAPAN*/ channel_freq_power_JPN_BG,
238 ARRAY_SIZE(channel_freq_power_JPN_BG),
239 }
240 ,
241/*Add new region here */
242};
243
244/**
245 * @brief This function finds the CFP in
246 * region_cfp_table based on region and band parameter.
247 *
248 * @param region The region code
249 * @param band The band
250 * @param cfp_no A pointer to CFP number
251 * @return A pointer to CFP
252 */
253static struct chan_freq_power *lbs_get_region_cfp_table(u8 region, int *cfp_no)
254{
255 int i, end;
256
257 lbs_deb_enter(LBS_DEB_MAIN);
258
259 end = ARRAY_SIZE(region_cfp_table);
260
261 for (i = 0; i < end ; i++) {
262 lbs_deb_main("region_cfp_table[i].region=%d\n",
263 region_cfp_table[i].region);
264 if (region_cfp_table[i].region == region) {
265 *cfp_no = region_cfp_table[i].cfp_no_BG;
266 lbs_deb_leave(LBS_DEB_MAIN);
267 return region_cfp_table[i].cfp_BG;
268 }
269 }
270
271 lbs_deb_leave_args(LBS_DEB_MAIN, "ret NULL");
272 return NULL;
273}
274
275int lbs_set_regiontable(struct lbs_private *priv, u8 region, u8 band)
276{
277 int ret = 0;
278 int i = 0;
279
280 struct chan_freq_power *cfp;
281 int cfp_no;
282
283 lbs_deb_enter(LBS_DEB_MAIN);
284
285 memset(priv->region_channel, 0, sizeof(priv->region_channel));
286
287 cfp = lbs_get_region_cfp_table(region, &cfp_no);
288 if (cfp != NULL) {
289 priv->region_channel[i].nrcfp = cfp_no;
290 priv->region_channel[i].CFP = cfp;
291 } else {
292 lbs_deb_main("wrong region code %#x in band B/G\n",
293 region);
294 ret = -1;
295 goto out;
296 }
297 priv->region_channel[i].valid = 1;
298 priv->region_channel[i].region = region;
299 priv->region_channel[i].band = band;
300 i++;
301out:
302 lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
303 return ret;
304}
305
306
307
e56188ac 308
e56188ac
HS
309/*********************************************************************/
310/* */
311/* Main scanning support */
312/* */
313/*********************************************************************/
314
876c9d3a
MT
315/**
316 * @brief Create a channel list for the driver to scan based on region info
317 *
10078321 318 * Only used from lbs_scan_setup_scan_config()
e56188ac 319 *
876c9d3a
MT
320 * Use the driver region/band information to construct a comprehensive list
321 * of channels to scan. This routine is used for any scan that is not
322 * provided a specific channel list to scan.
323 *
69f9032d 324 * @param priv A pointer to struct lbs_private structure
876c9d3a 325 * @param scanchanlist Output parameter: resulting channel list to scan
876c9d3a
MT
326 *
327 * @return void
328 */
ffd074fc 329static int lbs_scan_create_channel_list(struct lbs_private *priv,
52933d81 330 struct chanscanparamset *scanchanlist)
876c9d3a 331{
876c9d3a
MT
332 struct region_channel *scanregion;
333 struct chan_freq_power *cfp;
334 int rgnidx;
335 int chanidx;
336 int nextchan;
f137e054 337 uint8_t scantype;
876c9d3a
MT
338
339 chanidx = 0;
340
341 /* Set the default scan type to the user specified type, will later
342 * be changed to passive on a per channel basis if restricted by
343 * regulatory requirements (11d or 11h)
344 */
4f2fdaaf 345 scantype = CMD_SCAN_TYPE_ACTIVE;
876c9d3a 346
aa21c004 347 for (rgnidx = 0; rgnidx < ARRAY_SIZE(priv->region_channel); rgnidx++) {
d37b4fdd
HS
348 if (!priv->region_channel[rgnidx].valid)
349 continue;
350 scanregion = &priv->region_channel[rgnidx];
876c9d3a 351
f137e054
DW
352 for (nextchan = 0; nextchan < scanregion->nrcfp; nextchan++, chanidx++) {
353 struct chanscanparamset *chan = &scanchanlist[chanidx];
876c9d3a
MT
354
355 cfp = scanregion->CFP + nextchan;
356
f137e054
DW
357 if (scanregion->band == BAND_B || scanregion->band == BAND_G)
358 chan->radiotype = CMD_SCAN_RADIO_TYPE_BG;
876c9d3a 359
0aef64d7 360 if (scantype == CMD_SCAN_TYPE_PASSIVE) {
f137e054
DW
361 chan->maxscantime = cpu_to_le16(MRVDRV_PASSIVE_SCAN_CHAN_TIME);
362 chan->chanscanmode.passivescan = 1;
876c9d3a 363 } else {
f137e054
DW
364 chan->maxscantime = cpu_to_le16(MRVDRV_ACTIVE_SCAN_CHAN_TIME);
365 chan->chanscanmode.passivescan = 0;
876c9d3a
MT
366 }
367
f137e054 368 chan->channumber = cfp->channel;
876c9d3a
MT
369 }
370 }
ffd074fc 371 return chanidx;
876c9d3a
MT
372}
373
ffd074fc
HS
374/*
375 * Add SSID TLV of the form:
376 *
377 * TLV-ID SSID 00 00
378 * length 06 00
379 * ssid 4d 4e 54 45 53 54
380 */
52933d81 381static int lbs_scan_add_ssid_tlv(struct lbs_private *priv, u8 *tlv)
2afc0c5d 382{
75b6a61a 383 struct mrvl_ie_ssid_param_set *ssid_tlv = (void *)tlv;
f137e054 384
ffd074fc 385 ssid_tlv->header.type = cpu_to_le16(TLV_TYPE_SSID);
52933d81
HS
386 ssid_tlv->header.len = cpu_to_le16(priv->scan_ssid_len);
387 memcpy(ssid_tlv->ssid, priv->scan_ssid, priv->scan_ssid_len);
388 return sizeof(ssid_tlv->header) + priv->scan_ssid_len;
2afc0c5d
DW
389}
390
ffd074fc
HS
391/*
392 * Add CHANLIST TLV of the form
876c9d3a 393 *
ffd074fc
HS
394 * TLV-ID CHANLIST 01 01
395 * length 5b 00
396 * channel 1 00 01 00 00 00 64 00
397 * radio type 00
398 * channel 01
399 * scan type 00
400 * min scan time 00 00
401 * max scan time 64 00
402 * channel 2 00 02 00 00 00 64 00
403 * channel 3 00 03 00 00 00 64 00
404 * channel 4 00 04 00 00 00 64 00
405 * channel 5 00 05 00 00 00 64 00
406 * channel 6 00 06 00 00 00 64 00
407 * channel 7 00 07 00 00 00 64 00
408 * channel 8 00 08 00 00 00 64 00
409 * channel 9 00 09 00 00 00 64 00
410 * channel 10 00 0a 00 00 00 64 00
411 * channel 11 00 0b 00 00 00 64 00
412 * channel 12 00 0c 00 00 00 64 00
413 * channel 13 00 0d 00 00 00 64 00
876c9d3a 414 *
876c9d3a 415 */
f137e054
DW
416static int lbs_scan_add_chanlist_tlv(uint8_t *tlv,
417 struct chanscanparamset *chan_list,
418 int chan_count)
876c9d3a 419{
f137e054 420 size_t size = sizeof(struct chanscanparamset) *chan_count;
75b6a61a 421 struct mrvl_ie_chanlist_param_set *chan_tlv = (void *)tlv;
ffd074fc
HS
422
423 chan_tlv->header.type = cpu_to_le16(TLV_TYPE_CHANLIST);
424 memcpy(chan_tlv->chanscanparam, chan_list, size);
425 chan_tlv->header.len = cpu_to_le16(size);
426 return sizeof(chan_tlv->header) + size;
876c9d3a
MT
427}
428
ffd074fc
HS
429/*
430 * Add RATES TLV of the form
876c9d3a 431 *
ffd074fc
HS
432 * TLV-ID RATES 01 00
433 * length 0e 00
434 * rates 82 84 8b 96 0c 12 18 24 30 48 60 6c
876c9d3a 435 *
ffd074fc
HS
436 * The rates are in lbs_bg_rates[], but for the 802.11b
437 * rates the high bit isn't set.
876c9d3a 438 */
f137e054 439static int lbs_scan_add_rates_tlv(uint8_t *tlv)
876c9d3a 440{
ffd074fc 441 int i;
75b6a61a 442 struct mrvl_ie_rates_param_set *rate_tlv = (void *)tlv;
ffd074fc
HS
443
444 rate_tlv->header.type = cpu_to_le16(TLV_TYPE_RATES);
445 tlv += sizeof(rate_tlv->header);
446 for (i = 0; i < MAX_RATES; i++) {
447 *tlv = lbs_bg_rates[i];
448 if (*tlv == 0)
449 break;
450 /* This code makes sure that the 802.11b rates (1 MBit/s, 2
451 MBit/s, 5.5 MBit/s and 11 MBit/s get's the high bit set.
452 Note that the values are MBit/s * 2, to mark them as
453 basic rates so that the firmware likes it better */
454 if (*tlv == 0x02 || *tlv == 0x04 ||
455 *tlv == 0x0b || *tlv == 0x16)
456 *tlv |= 0x80;
457 tlv++;
2afc0c5d 458 }
ffd074fc
HS
459 rate_tlv->header.len = cpu_to_le16(i);
460 return sizeof(rate_tlv->header) + i;
876c9d3a
MT
461}
462
e56188ac 463/*
ffd074fc
HS
464 * Generate the CMD_802_11_SCAN command with the proper tlv
465 * for a bunch of channels.
466 */
fa62f99c 467static int lbs_do_scan(struct lbs_private *priv, uint8_t bsstype,
52933d81 468 struct chanscanparamset *chan_list, int chan_count)
eb8f7330 469{
ffd074fc 470 int ret = -ENOMEM;
fa62f99c
DW
471 struct cmd_ds_802_11_scan *scan_cmd;
472 uint8_t *tlv; /* pointer into our current, growing TLV storage area */
eb8f7330 473
fa62f99c 474 lbs_deb_enter_args(LBS_DEB_SCAN, "bsstype %d, chanlist[].chan %d, chan_count %d",
c0d43990
HS
475 bsstype, chan_list ? chan_list[0].channumber : -1,
476 chan_count);
e56188ac 477
ffd074fc
HS
478 /* create the fixed part for scan command */
479 scan_cmd = kzalloc(MAX_SCAN_CFG_ALLOC, GFP_KERNEL);
480 if (scan_cmd == NULL)
e56188ac 481 goto out;
fa62f99c 482
ffd074fc 483 tlv = scan_cmd->tlvbuffer;
52933d81
HS
484 /* TODO: do we need to scan for a specific BSSID?
485 memcpy(scan_cmd->bssid, priv->scan_bssid, ETH_ALEN); */
ffd074fc
HS
486 scan_cmd->bsstype = bsstype;
487
488 /* add TLVs */
52933d81
HS
489 if (priv->scan_ssid_len)
490 tlv += lbs_scan_add_ssid_tlv(priv, tlv);
ffd074fc
HS
491 if (chan_list && chan_count)
492 tlv += lbs_scan_add_chanlist_tlv(tlv, chan_list, chan_count);
493 tlv += lbs_scan_add_rates_tlv(tlv);
494
495 /* This is the final data we are about to send */
fa62f99c
DW
496 scan_cmd->hdr.size = cpu_to_le16(tlv - (uint8_t *)scan_cmd);
497 lbs_deb_hex(LBS_DEB_SCAN, "SCAN_CMD", (void *)scan_cmd,
498 sizeof(*scan_cmd));
ffd074fc 499 lbs_deb_hex(LBS_DEB_SCAN, "SCAN_TLV", scan_cmd->tlvbuffer,
fa62f99c
DW
500 tlv - scan_cmd->tlvbuffer);
501
502 ret = __lbs_cmd(priv, CMD_802_11_SCAN, &scan_cmd->hdr,
503 le16_to_cpu(scan_cmd->hdr.size),
504 lbs_ret_80211_scan, 0);
ffd074fc 505
e56188ac 506out:
ffd074fc
HS
507 kfree(scan_cmd);
508 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
509 return ret;
eb8f7330
DW
510}
511
876c9d3a
MT
512/**
513 * @brief Internal function used to start a scan based on an input config
514 *
515 * Use the input user scan configuration information when provided in
516 * order to send the appropriate scan commands to firmware to populate or
517 * update the internal driver scan table
518 *
69f9032d 519 * @param priv A pointer to struct lbs_private structure
52933d81 520 * @param full_scan Do a full-scan (blocking)
876c9d3a
MT
521 *
522 * @return 0 or < 0 if error
523 */
245bf20f 524int lbs_scan_networks(struct lbs_private *priv, int full_scan)
876c9d3a 525{
ffd074fc
HS
526 int ret = -ENOMEM;
527 struct chanscanparamset *chan_list;
528 struct chanscanparamset *curr_chans;
529 int chan_count;
f137e054 530 uint8_t bsstype = CMD_BSS_TYPE_ANY;
ffd074fc 531 int numchannels = MRVDRV_CHANNELS_PER_SCAN_CMD;
ffd074fc 532 union iwreq_data wrqu;
f8f55108 533#ifdef CONFIG_LIBERTAS_DEBUG
ffd074fc 534 struct bss_descriptor *iter;
f8f55108 535 int i = 0;
9387b7ca 536 DECLARE_SSID_BUF(ssid);
f8f55108 537#endif
876c9d3a 538
f137e054 539 lbs_deb_enter_args(LBS_DEB_SCAN, "full_scan %d", full_scan);
2afc0c5d
DW
540
541 /* Cancel any partial outstanding partial scans if this scan
542 * is a full scan.
543 */
544 if (full_scan && delayed_work_pending(&priv->scan_work))
545 cancel_delayed_work(&priv->scan_work);
876c9d3a 546
52933d81
HS
547 /* User-specified bsstype or channel list
548 TODO: this can be implemented if some user-space application
549 need the feature. Formerly, it was accessible from debugfs,
550 but then nowhere used.
ffd074fc
HS
551 if (user_cfg) {
552 if (user_cfg->bsstype)
52933d81
HS
553 bsstype = user_cfg->bsstype;
554 } */
555
556 lbs_deb_scan("numchannels %d, bsstype %d\n", numchannels, bsstype);
876c9d3a 557
ffd074fc
HS
558 /* Create list of channels to scan */
559 chan_list = kzalloc(sizeof(struct chanscanparamset) *
f137e054 560 LBS_IOCTL_USER_SCAN_CHAN_MAX, GFP_KERNEL);
ffd074fc
HS
561 if (!chan_list) {
562 lbs_pr_alert("SCAN: chan_list empty\n");
876c9d3a
MT
563 goto out;
564 }
565
ffd074fc 566 /* We want to scan all channels */
52933d81 567 chan_count = lbs_scan_create_channel_list(priv, chan_list);
876c9d3a 568
ffd074fc 569 netif_stop_queue(priv->dev);
659c8e52 570 if (priv->mesh_dev)
a27b9f96 571 netif_stop_queue(priv->mesh_dev);
876c9d3a 572
ffd074fc 573 /* Prepare to continue an interrupted scan */
8816edce
HS
574 lbs_deb_scan("chan_count %d, scan_channel %d\n",
575 chan_count, priv->scan_channel);
ffd074fc
HS
576 curr_chans = chan_list;
577 /* advance channel list by already-scanned-channels */
8816edce
HS
578 if (priv->scan_channel > 0) {
579 curr_chans += priv->scan_channel;
580 chan_count -= priv->scan_channel;
ffd074fc
HS
581 }
582
583 /* Send scan command(s)
584 * numchannels contains the number of channels we should maximally scan
585 * chan_count is the total number of channels to scan
586 */
587
588 while (chan_count) {
589 int to_scan = min(numchannels, chan_count);
590 lbs_deb_scan("scanning %d of %d channels\n",
f137e054 591 to_scan, chan_count);
ffd074fc 592 ret = lbs_do_scan(priv, bsstype, curr_chans,
52933d81 593 to_scan);
ffd074fc
HS
594 if (ret) {
595 lbs_pr_err("SCAN_CMD failed\n");
596 goto out2;
597 }
598 curr_chans += to_scan;
599 chan_count -= to_scan;
600
601 /* somehow schedule the next part of the scan */
f137e054 602 if (chan_count && !full_scan &&
aa21c004 603 !priv->surpriseremoved) {
ffd074fc 604 /* -1 marks just that we're currently scanning */
8816edce
HS
605 if (priv->scan_channel < 0)
606 priv->scan_channel = to_scan;
ffd074fc 607 else
8816edce 608 priv->scan_channel += to_scan;
ffd074fc
HS
609 cancel_delayed_work(&priv->scan_work);
610 queue_delayed_work(priv->work_thread, &priv->scan_work,
f137e054 611 msecs_to_jiffies(300));
ffd074fc
HS
612 /* skip over GIWSCAN event */
613 goto out;
614 }
615
616 }
617 memset(&wrqu, 0, sizeof(union iwreq_data));
618 wireless_send_event(priv->dev, SIOCGIWSCAN, &wrqu, NULL);
876c9d3a 619
f8f55108
DW
620#ifdef CONFIG_LIBERTAS_DEBUG
621 /* Dump the scan table */
aa21c004 622 mutex_lock(&priv->lock);
ffd074fc 623 lbs_deb_scan("scan table:\n");
aa21c004 624 list_for_each_entry(iter, &priv->network_list, list)
e174961c
JB
625 lbs_deb_scan("%02d: BSSID %pM, RSSI %d, SSID '%s'\n",
626 i++, iter->bssid, iter->rssi,
9387b7ca 627 print_ssid(ssid, iter->ssid, iter->ssid_len));
aa21c004 628 mutex_unlock(&priv->lock);
f8f55108 629#endif
876c9d3a 630
ffd074fc 631out2:
8816edce 632 priv->scan_channel = 0;
ffd074fc
HS
633
634out:
659c8e52
SO
635 if (priv->connect_status == LBS_CONNECTED && !priv->tx_pending_len)
636 netif_wake_queue(priv->dev);
637
638 if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED) &&
639 !priv->tx_pending_len)
640 netif_wake_queue(priv->mesh_dev);
641
ffd074fc 642 kfree(chan_list);
876c9d3a 643
9012b28a 644 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
876c9d3a
MT
645 return ret;
646}
647
52933d81
HS
648void lbs_scan_worker(struct work_struct *work)
649{
650 struct lbs_private *priv =
651 container_of(work, struct lbs_private, scan_work.work);
652
653 lbs_deb_enter(LBS_DEB_SCAN);
654 lbs_scan_networks(priv, 0);
655 lbs_deb_leave(LBS_DEB_SCAN);
656}
657
658
ffd074fc
HS
659/*********************************************************************/
660/* */
661/* Result interpretation */
662/* */
663/*********************************************************************/
664
876c9d3a
MT
665/**
666 * @brief Interpret a BSS scan response returned from the firmware
667 *
668 * Parse the various fixed fields and IEs passed back for a a BSS probe
ffd074fc
HS
669 * response or beacon from the scan command. Record information as needed
670 * in the scan table struct bss_descriptor for that entry.
876c9d3a 671 *
fcdb53db 672 * @param bss Output parameter: Pointer to the BSS Entry
876c9d3a
MT
673 *
674 * @return 0 or -1
675 */
10078321 676static int lbs_process_bss(struct bss_descriptor *bss,
f137e054 677 uint8_t **pbeaconinfo, int *bytesleft)
876c9d3a 678{
5fd164e9
DW
679 struct ieee_ie_fh_param_set *fh;
680 struct ieee_ie_ds_param_set *ds;
681 struct ieee_ie_cf_param_set *cf;
682 struct ieee_ie_ibss_param_set *ibss;
9387b7ca 683 DECLARE_SSID_BUF(ssid);
f137e054
DW
684 uint8_t *pos, *end, *p;
685 uint8_t n_ex_rates = 0, got_basic_rates = 0, n_basic_rates = 0;
686 uint16_t beaconsize = 0;
8c512765 687 int ret;
876c9d3a 688
e56188ac 689 lbs_deb_enter(LBS_DEB_SCAN);
876c9d3a 690
876c9d3a
MT
691 if (*bytesleft >= sizeof(beaconsize)) {
692 /* Extract & convert beacon size from the command buffer */
533dd1b0 693 beaconsize = get_unaligned_le16(*pbeaconinfo);
876c9d3a
MT
694 *bytesleft -= sizeof(beaconsize);
695 *pbeaconinfo += sizeof(beaconsize);
696 }
697
698 if (beaconsize == 0 || beaconsize > *bytesleft) {
876c9d3a
MT
699 *pbeaconinfo += *bytesleft;
700 *bytesleft = 0;
e56188ac
HS
701 ret = -1;
702 goto done;
876c9d3a
MT
703 }
704
705 /* Initialize the current working beacon pointer for this BSS iteration */
ab617971
DW
706 pos = *pbeaconinfo;
707 end = pos + beaconsize;
876c9d3a
MT
708
709 /* Advance the return beacon pointer past the current beacon */
710 *pbeaconinfo += beaconsize;
711 *bytesleft -= beaconsize;
712
ab617971 713 memcpy(bss->bssid, pos, ETH_ALEN);
e174961c 714 lbs_deb_scan("process_bss: BSSID %pM\n", bss->bssid);
ab617971 715 pos += ETH_ALEN;
876c9d3a 716
ab617971 717 if ((end - pos) < 12) {
fcdb53db 718 lbs_deb_scan("process_bss: Not enough bytes left\n");
e56188ac
HS
719 ret = -1;
720 goto done;
876c9d3a
MT
721 }
722
723 /*
724 * next 4 fields are RSSI, time stamp, beacon interval,
725 * and capability information
726 */
727
728 /* RSSI is 1 byte long */
ab617971 729 bss->rssi = *pos;
ffd074fc 730 lbs_deb_scan("process_bss: RSSI %d\n", *pos);
ab617971 731 pos++;
876c9d3a
MT
732
733 /* time stamp is 8 bytes long */
ab617971 734 pos += 8;
876c9d3a
MT
735
736 /* beacon interval is 2 bytes long */
814feefa 737 bss->beaconperiod = get_unaligned_le16(pos);
ab617971 738 pos += 2;
876c9d3a
MT
739
740 /* capability information is 2 bytes long */
814feefa 741 bss->capability = get_unaligned_le16(pos);
ffd074fc 742 lbs_deb_scan("process_bss: capabilities 0x%04x\n", bss->capability);
ab617971 743 pos += 2;
876c9d3a 744
0c9ca690 745 if (bss->capability & WLAN_CAPABILITY_PRIVACY)
ffd074fc 746 lbs_deb_scan("process_bss: WEP enabled\n");
0c9ca690
DW
747 if (bss->capability & WLAN_CAPABILITY_IBSS)
748 bss->mode = IW_MODE_ADHOC;
749 else
750 bss->mode = IW_MODE_INFRA;
751
876c9d3a 752 /* rest of the current buffer are IE's */
ffd074fc 753 lbs_deb_scan("process_bss: IE len %zd\n", end - pos);
ece56191 754 lbs_deb_hex(LBS_DEB_SCAN, "process_bss: IE info", pos, end - pos);
876c9d3a 755
876c9d3a 756 /* process variable IE */
ab617971 757 while (pos <= end - 2) {
2c706002 758 if (pos + pos[1] > end) {
fcdb53db 759 lbs_deb_scan("process_bss: error in processing IE, "
f137e054 760 "bytes left < IE length\n");
ab617971 761 break;
876c9d3a
MT
762 }
763
2c706002
JB
764 switch (pos[0]) {
765 case WLAN_EID_SSID:
766 bss->ssid_len = min_t(int, IEEE80211_MAX_SSID_LEN, pos[1]);
767 memcpy(bss->ssid, pos + 2, bss->ssid_len);
ffd074fc 768 lbs_deb_scan("got SSID IE: '%s', len %u\n",
9387b7ca 769 print_ssid(ssid, bss->ssid, bss->ssid_len),
d8efea25 770 bss->ssid_len);
876c9d3a
MT
771 break;
772
2c706002
JB
773 case WLAN_EID_SUPP_RATES:
774 n_basic_rates = min_t(uint8_t, MAX_RATES, pos[1]);
775 memcpy(bss->rates, pos + 2, n_basic_rates);
8c512765 776 got_basic_rates = 1;
ffd074fc 777 lbs_deb_scan("got RATES IE\n");
876c9d3a
MT
778 break;
779
2c706002 780 case WLAN_EID_FH_PARAMS:
5fd164e9
DW
781 fh = (struct ieee_ie_fh_param_set *) pos;
782 memcpy(&bss->phy.fh, fh, sizeof(*fh));
ffd074fc 783 lbs_deb_scan("got FH IE\n");
876c9d3a
MT
784 break;
785
2c706002 786 case WLAN_EID_DS_PARAMS:
5fd164e9
DW
787 ds = (struct ieee_ie_ds_param_set *) pos;
788 bss->channel = ds->channel;
789 memcpy(&bss->phy.ds, ds, sizeof(*ds));
ffd074fc 790 lbs_deb_scan("got DS IE, channel %d\n", bss->channel);
876c9d3a
MT
791 break;
792
2c706002 793 case WLAN_EID_CF_PARAMS:
5fd164e9
DW
794 cf = (struct ieee_ie_cf_param_set *) pos;
795 memcpy(&bss->ss.cf, cf, sizeof(*cf));
ffd074fc 796 lbs_deb_scan("got CF IE\n");
876c9d3a
MT
797 break;
798
2c706002 799 case WLAN_EID_IBSS_PARAMS:
5fd164e9
DW
800 ibss = (struct ieee_ie_ibss_param_set *) pos;
801 bss->atimwindow = ibss->atimwindow;
802 memcpy(&bss->ss.ibss, ibss, sizeof(*ibss));
ffd074fc 803 lbs_deb_scan("got IBSS IE\n");
876c9d3a
MT
804 break;
805
2c706002 806 case WLAN_EID_EXT_SUPP_RATES:
ab617971
DW
807 /* only process extended supported rate if data rate is
808 * already found. Data rate IE should come before
876c9d3a
MT
809 * extended supported rate IE
810 */
ffd074fc
HS
811 lbs_deb_scan("got RATESEX IE\n");
812 if (!got_basic_rates) {
813 lbs_deb_scan("... but ignoring it\n");
ab617971 814 break;
ffd074fc 815 }
876c9d3a 816
2c706002 817 n_ex_rates = pos[1];
8c512765
DW
818 if (n_basic_rates + n_ex_rates > MAX_RATES)
819 n_ex_rates = MAX_RATES - n_basic_rates;
876c9d3a 820
8c512765 821 p = bss->rates + n_basic_rates;
2c706002 822 memcpy(p, pos + 2, n_ex_rates);
876c9d3a 823 break;
ab617971 824
2c706002
JB
825 case WLAN_EID_GENERIC:
826 if (pos[1] >= 4 &&
827 pos[2] == 0x00 && pos[3] == 0x50 &&
828 pos[4] == 0xf2 && pos[5] == 0x01) {
829 bss->wpa_ie_len = min(pos[1] + 2, MAX_WPA_IE_LEN);
830 memcpy(bss->wpa_ie, pos, bss->wpa_ie_len);
ffd074fc 831 lbs_deb_scan("got WPA IE\n");
2c706002
JB
832 lbs_deb_hex(LBS_DEB_SCAN, "WPA IE", bss->wpa_ie,
833 bss->wpa_ie_len);
834 } else if (pos[1] >= MARVELL_MESH_IE_LENGTH &&
835 pos[2] == 0x00 && pos[3] == 0x50 &&
baf62eec 836 pos[4] == 0x43 && pos[5] == 0x04) {
ffd074fc 837 lbs_deb_scan("got mesh IE\n");
1e838bf3 838 bss->mesh = 1;
ffd074fc 839 } else {
f137e054 840 lbs_deb_scan("got generic IE: %02x:%02x:%02x:%02x, len %d\n",
2c706002
JB
841 pos[2], pos[3],
842 pos[4], pos[5],
843 pos[1]);
ab617971 844 }
876c9d3a 845 break;
ab617971 846
2c706002 847 case WLAN_EID_RSN:
ffd074fc 848 lbs_deb_scan("got RSN IE\n");
2c706002
JB
849 bss->rsn_ie_len = min(pos[1] + 2, MAX_WPA_IE_LEN);
850 memcpy(bss->rsn_ie, pos, bss->rsn_ie_len);
ffd074fc 851 lbs_deb_hex(LBS_DEB_SCAN, "process_bss: RSN_IE",
2c706002 852 bss->rsn_ie, bss->rsn_ie_len);
876c9d3a
MT
853 break;
854
ab617971 855 default:
ffd074fc 856 lbs_deb_scan("got IE 0x%04x, len %d\n",
2c706002 857 pos[0], pos[1]);
876c9d3a
MT
858 break;
859 }
860
2c706002 861 pos += pos[1] + 2;
ab617971 862 }
fcdb53db
DW
863
864 /* Timestamp */
865 bss->last_scanned = jiffies;
10078321 866 lbs_unset_basic_rate_flags(bss->rates, sizeof(bss->rates));
fcdb53db 867
9012b28a 868 ret = 0;
876c9d3a 869
9012b28a
HS
870done:
871 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
872 return ret;
876c9d3a
MT
873}
874
876c9d3a
MT
875/**
876 * @brief Send a scan command for all available channels filtered on a spec
877 *
e56188ac
HS
878 * Used in association code and from debugfs
879 *
69f9032d 880 * @param priv A pointer to struct lbs_private structure
e56188ac
HS
881 * @param ssid A pointer to the SSID to scan for
882 * @param ssid_len Length of the SSID
876c9d3a
MT
883 *
884 * @return 0-success, otherwise fail
885 */
f137e054 886int lbs_send_specific_ssid_scan(struct lbs_private *priv, uint8_t *ssid,
52933d81 887 uint8_t ssid_len)
876c9d3a 888{
9387b7ca 889 DECLARE_SSID_BUF(ssid_buf);
eb8f7330 890 int ret = 0;
876c9d3a 891
52933d81 892 lbs_deb_enter_args(LBS_DEB_SCAN, "SSID '%s'\n",
9387b7ca 893 print_ssid(ssid_buf, ssid, ssid_len));
876c9d3a 894
d8efea25 895 if (!ssid_len)
eb8f7330 896 goto out;
876c9d3a 897
52933d81
HS
898 memcpy(priv->scan_ssid, ssid, ssid_len);
899 priv->scan_ssid_len = ssid_len;
876c9d3a 900
52933d81 901 lbs_scan_networks(priv, 1);
aa21c004 902 if (priv->surpriseremoved) {
e56188ac
HS
903 ret = -1;
904 goto out;
905 }
876c9d3a 906
eb8f7330 907out:
e56188ac 908 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
eb8f7330 909 return ret;
876c9d3a
MT
910}
911
e56188ac
HS
912
913
914
915/*********************************************************************/
916/* */
917/* Support for Wireless Extensions */
918/* */
919/*********************************************************************/
920
ffd074fc 921
00af0157
DW
922#define MAX_CUSTOM_LEN 64
923
69f9032d 924static inline char *lbs_translate_scan(struct lbs_private *priv,
ccc58057
DM
925 struct iw_request_info *info,
926 char *start, char *stop,
927 struct bss_descriptor *bss)
876c9d3a 928{
876c9d3a 929 struct chan_freq_power *cfp;
876c9d3a
MT
930 char *current_val; /* For rates */
931 struct iw_event iwe; /* Temporary buffer */
876c9d3a 932 int j;
f137e054
DW
933#define PERFECT_RSSI ((uint8_t)50)
934#define WORST_RSSI ((uint8_t)0)
935#define RSSI_DIFF ((uint8_t)(PERFECT_RSSI - WORST_RSSI))
936 uint8_t rssi;
876c9d3a 937
e56188ac
HS
938 lbs_deb_enter(LBS_DEB_SCAN);
939
aa21c004 940 cfp = lbs_find_cfp_by_band_and_channel(priv, 0, bss->channel);
fcdb53db
DW
941 if (!cfp) {
942 lbs_deb_scan("Invalid channel number %d\n", bss->channel);
e56188ac
HS
943 start = NULL;
944 goto out;
2be92196 945 }
876c9d3a 946
ffd074fc 947 /* First entry *MUST* be the BSSID */
fcdb53db
DW
948 iwe.cmd = SIOCGIWAP;
949 iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
950 memcpy(iwe.u.ap_addr.sa_data, &bss->bssid, ETH_ALEN);
ccc58057 951 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_ADDR_LEN);
fcdb53db
DW
952
953 /* SSID */
954 iwe.cmd = SIOCGIWESSID;
955 iwe.u.data.flags = 1;
243e84e9 956 iwe.u.data.length = min((uint32_t) bss->ssid_len, (uint32_t) IEEE80211_MAX_SSID_LEN);
ccc58057 957 start = iwe_stream_add_point(info, start, stop, &iwe, bss->ssid);
fcdb53db
DW
958
959 /* Mode */
960 iwe.cmd = SIOCGIWMODE;
961 iwe.u.mode = bss->mode;
ccc58057 962 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_UINT_LEN);
fcdb53db
DW
963
964 /* Frequency */
965 iwe.cmd = SIOCGIWFREQ;
966 iwe.u.freq.m = (long)cfp->freq * 100000;
967 iwe.u.freq.e = 1;
ccc58057 968 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_FREQ_LEN);
fcdb53db
DW
969
970 /* Add quality statistics */
971 iwe.cmd = IWEVQUAL;
972 iwe.u.qual.updated = IW_QUAL_ALL_UPDATED;
973 iwe.u.qual.level = SCAN_RSSI(bss->rssi);
974
975 rssi = iwe.u.qual.level - MRVDRV_NF_DEFAULT_SCAN_VALUE;
976 iwe.u.qual.qual =
f137e054
DW
977 (100 * RSSI_DIFF * RSSI_DIFF - (PERFECT_RSSI - rssi) *
978 (15 * (RSSI_DIFF) + 62 * (PERFECT_RSSI - rssi))) /
979 (RSSI_DIFF * RSSI_DIFF);
fcdb53db
DW
980 if (iwe.u.qual.qual > 100)
981 iwe.u.qual.qual = 100;
982
aa21c004 983 if (priv->NF[TYPE_BEACON][TYPE_NOAVG] == 0) {
fcdb53db
DW
984 iwe.u.qual.noise = MRVDRV_NF_DEFAULT_SCAN_VALUE;
985 } else {
f137e054 986 iwe.u.qual.noise = CAL_NF(priv->NF[TYPE_BEACON][TYPE_NOAVG]);
fcdb53db 987 }
80e78ef7
DW
988
989 /* Locally created ad-hoc BSSs won't have beacons if this is the
990 * only station in the adhoc network; so get signal strength
991 * from receive statistics.
992 */
f137e054 993 if ((priv->mode == IW_MODE_ADHOC) && priv->adhoccreate
aa21c004 994 && !lbs_ssid_cmp(priv->curbssparams.ssid,
f137e054
DW
995 priv->curbssparams.ssid_len,
996 bss->ssid, bss->ssid_len)) {
80e78ef7 997 int snr, nf;
aa21c004
DW
998 snr = priv->SNR[TYPE_RXPD][TYPE_AVG] / AVG_SCALE;
999 nf = priv->NF[TYPE_RXPD][TYPE_AVG] / AVG_SCALE;
80e78ef7 1000 iwe.u.qual.level = CAL_RSSI(snr, nf);
fcdb53db 1001 }
ccc58057 1002 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_QUAL_LEN);
876c9d3a 1003
fcdb53db
DW
1004 /* Add encryption capability */
1005 iwe.cmd = SIOCGIWENCODE;
0c9ca690 1006 if (bss->capability & WLAN_CAPABILITY_PRIVACY) {
fcdb53db
DW
1007 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
1008 } else {
1009 iwe.u.data.flags = IW_ENCODE_DISABLED;
1010 }
1011 iwe.u.data.length = 0;
ccc58057 1012 start = iwe_stream_add_point(info, start, stop, &iwe, bss->ssid);
876c9d3a 1013
ccc58057 1014 current_val = start + iwe_stream_lcp_len(info);
876c9d3a 1015
fcdb53db
DW
1016 iwe.cmd = SIOCGIWRATE;
1017 iwe.u.bitrate.fixed = 0;
1018 iwe.u.bitrate.disabled = 0;
1019 iwe.u.bitrate.value = 0;
876c9d3a 1020
430453fc 1021 for (j = 0; j < ARRAY_SIZE(bss->rates) && bss->rates[j]; j++) {
8c512765
DW
1022 /* Bit rate given in 500 kb/s units */
1023 iwe.u.bitrate.value = bss->rates[j] * 500000;
ccc58057
DM
1024 current_val = iwe_stream_add_value(info, start, current_val,
1025 stop, &iwe, IW_EV_PARAM_LEN);
fcdb53db 1026 }
f137e054 1027 if ((bss->mode == IW_MODE_ADHOC) && priv->adhoccreate
aa21c004 1028 && !lbs_ssid_cmp(priv->curbssparams.ssid,
f137e054
DW
1029 priv->curbssparams.ssid_len,
1030 bss->ssid, bss->ssid_len)) {
fcdb53db 1031 iwe.u.bitrate.value = 22 * 500000;
ccc58057 1032 current_val = iwe_stream_add_value(info, start, current_val,
f137e054 1033 stop, &iwe, IW_EV_PARAM_LEN);
fcdb53db
DW
1034 }
1035 /* Check if we added any event */
ccc58057 1036 if ((current_val - start) > iwe_stream_lcp_len(info))
fcdb53db
DW
1037 start = current_val;
1038
1039 memset(&iwe, 0, sizeof(iwe));
1040 if (bss->wpa_ie_len) {
1041 char buf[MAX_WPA_IE_LEN];
1042 memcpy(buf, bss->wpa_ie, bss->wpa_ie_len);
1043 iwe.cmd = IWEVGENIE;
1044 iwe.u.data.length = bss->wpa_ie_len;
ccc58057 1045 start = iwe_stream_add_point(info, start, stop, &iwe, buf);
fcdb53db 1046 }
876c9d3a 1047
fcdb53db
DW
1048 memset(&iwe, 0, sizeof(iwe));
1049 if (bss->rsn_ie_len) {
1050 char buf[MAX_WPA_IE_LEN];
1051 memcpy(buf, bss->rsn_ie, bss->rsn_ie_len);
1052 iwe.cmd = IWEVGENIE;
1053 iwe.u.data.length = bss->rsn_ie_len;
ccc58057 1054 start = iwe_stream_add_point(info, start, stop, &iwe, buf);
fcdb53db 1055 }
876c9d3a 1056
00af0157
DW
1057 if (bss->mesh) {
1058 char custom[MAX_CUSTOM_LEN];
1059 char *p = custom;
1060
1061 iwe.cmd = IWEVCUSTOM;
f137e054 1062 p += snprintf(p, MAX_CUSTOM_LEN, "mesh-type: olpc");
00af0157
DW
1063 iwe.u.data.length = p - custom;
1064 if (iwe.u.data.length)
ccc58057
DM
1065 start = iwe_stream_add_point(info, start, stop,
1066 &iwe, custom);
00af0157
DW
1067 }
1068
e56188ac
HS
1069out:
1070 lbs_deb_leave_args(LBS_DEB_SCAN, "start %p", start);
fcdb53db
DW
1071 return start;
1072}
876c9d3a 1073
ffd074fc
HS
1074
1075/**
1076 * @brief Handle Scan Network ioctl
1077 *
1078 * @param dev A pointer to net_device structure
1079 * @param info A pointer to iw_request_info structure
1080 * @param vwrq A pointer to iw_param structure
1081 * @param extra A pointer to extra data buf
1082 *
1083 * @return 0 --success, otherwise fail
1084 */
1085int lbs_set_scan(struct net_device *dev, struct iw_request_info *info,
52933d81 1086 union iwreq_data *wrqu, char *extra)
ffd074fc 1087{
9387b7ca 1088 DECLARE_SSID_BUF(ssid);
ab65f649 1089 struct lbs_private *priv = dev->ml_priv;
52933d81 1090 int ret = 0;
ffd074fc 1091
52933d81 1092 lbs_deb_enter(LBS_DEB_WEXT);
ffd074fc 1093
d5db2dfa
DW
1094 if (!priv->radio_on) {
1095 ret = -EINVAL;
1096 goto out;
1097 }
1098
52933d81
HS
1099 if (!netif_running(dev)) {
1100 ret = -ENETDOWN;
1101 goto out;
1102 }
ffd074fc
HS
1103
1104 /* mac80211 does this:
1105 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
52933d81
HS
1106 if (sdata->type != IEEE80211_IF_TYPE_xxx) {
1107 ret = -EOPNOTSUPP;
1108 goto out;
1109 }
1110 */
ffd074fc
HS
1111
1112 if (wrqu->data.length == sizeof(struct iw_scan_req) &&
1113 wrqu->data.flags & IW_SCAN_THIS_ESSID) {
52933d81
HS
1114 struct iw_scan_req *req = (struct iw_scan_req *)extra;
1115 priv->scan_ssid_len = req->essid_len;
1116 memcpy(priv->scan_ssid, req->essid, priv->scan_ssid_len);
1117 lbs_deb_wext("set_scan, essid '%s'\n",
9387b7ca 1118 print_ssid(ssid, priv->scan_ssid, priv->scan_ssid_len));
52933d81
HS
1119 } else {
1120 priv->scan_ssid_len = 0;
ffd074fc 1121 }
ffd074fc
HS
1122
1123 if (!delayed_work_pending(&priv->scan_work))
1124 queue_delayed_work(priv->work_thread, &priv->scan_work,
f137e054 1125 msecs_to_jiffies(50));
ffd074fc 1126 /* set marker that currently a scan is taking place */
8816edce 1127 priv->scan_channel = -1;
ffd074fc 1128
aa21c004 1129 if (priv->surpriseremoved)
52933d81 1130 ret = -EIO;
ffd074fc 1131
52933d81
HS
1132out:
1133 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
1134 return ret;
ffd074fc
HS
1135}
1136
1137
fcdb53db 1138/**
e56188ac 1139 * @brief Handle Retrieve scan table ioctl
fcdb53db
DW
1140 *
1141 * @param dev A pointer to net_device structure
1142 * @param info A pointer to iw_request_info structure
1143 * @param dwrq A pointer to iw_point structure
1144 * @param extra A pointer to extra data buf
1145 *
1146 * @return 0 --success, otherwise fail
1147 */
10078321 1148int lbs_get_scan(struct net_device *dev, struct iw_request_info *info,
f137e054 1149 struct iw_point *dwrq, char *extra)
fcdb53db
DW
1150{
1151#define SCAN_ITEM_SIZE 128
ab65f649 1152 struct lbs_private *priv = dev->ml_priv;
fcdb53db
DW
1153 int err = 0;
1154 char *ev = extra;
1155 char *stop = ev + dwrq->length;
f137e054
DW
1156 struct bss_descriptor *iter_bss;
1157 struct bss_descriptor *safe;
876c9d3a 1158
52933d81 1159 lbs_deb_enter(LBS_DEB_WEXT);
876c9d3a 1160
ffd074fc 1161 /* iwlist should wait until the current scan is finished */
8816edce 1162 if (priv->scan_channel)
ffd074fc
HS
1163 return -EAGAIN;
1164
80e78ef7 1165 /* Update RSSI if current BSS is a locally created ad-hoc BSS */
c0bbd576
AK
1166 if ((priv->mode == IW_MODE_ADHOC) && priv->adhoccreate) {
1167 err = lbs_prepare_and_send_command(priv, CMD_802_11_RSSI, 0,
1168 CMD_OPTION_WAITFORRSP, 0, NULL);
1169 if (err)
1170 goto out;
1171 }
80e78ef7 1172
aa21c004
DW
1173 mutex_lock(&priv->lock);
1174 list_for_each_entry_safe (iter_bss, safe, &priv->network_list, list) {
f137e054 1175 char *next_ev;
fcdb53db 1176 unsigned long stale_time;
876c9d3a 1177
fcdb53db
DW
1178 if (stop - ev < SCAN_ITEM_SIZE) {
1179 err = -E2BIG;
1180 break;
876c9d3a 1181 }
876c9d3a 1182
1e838bf3
LCC
1183 /* For mesh device, list only mesh networks */
1184 if (dev == priv->mesh_dev && !iter_bss->mesh)
1185 continue;
1186
fcdb53db
DW
1187 /* Prune old an old scan result */
1188 stale_time = iter_bss->last_scanned + DEFAULT_MAX_SCAN_AGE;
1189 if (time_after(jiffies, stale_time)) {
f137e054 1190 list_move_tail(&iter_bss->list, &priv->network_free_list);
fcdb53db
DW
1191 clear_bss_descriptor(iter_bss);
1192 continue;
876c9d3a
MT
1193 }
1194
fcdb53db 1195 /* Translate to WE format this entry */
ccc58057 1196 next_ev = lbs_translate_scan(priv, info, ev, stop, iter_bss);
fcdb53db
DW
1197 if (next_ev == NULL)
1198 continue;
1199 ev = next_ev;
876c9d3a 1200 }
aa21c004 1201 mutex_unlock(&priv->lock);
876c9d3a 1202
fcdb53db 1203 dwrq->length = (ev - extra);
876c9d3a 1204 dwrq->flags = 0;
c0bbd576 1205out:
52933d81 1206 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", err);
fcdb53db 1207 return err;
876c9d3a
MT
1208}
1209
e56188ac
HS
1210
1211
1212
1213/*********************************************************************/
1214/* */
1215/* Command execution */
1216/* */
1217/*********************************************************************/
1218
1219
876c9d3a
MT
1220/**
1221 * @brief This function handles the command response of scan
1222 *
e56188ac
HS
1223 * Called from handle_cmd_response() in cmdrespc.
1224 *
876c9d3a
MT
1225 * The response buffer for the scan command has the following
1226 * memory layout:
1227 *
1228 * .-----------------------------------------------------------.
1229 * | header (4 * sizeof(u16)): Standard command response hdr |
1230 * .-----------------------------------------------------------.
1231 * | bufsize (u16) : sizeof the BSS Description data |
1232 * .-----------------------------------------------------------.
1233 * | NumOfSet (u8) : Number of BSS Descs returned |
1234 * .-----------------------------------------------------------.
1235 * | BSSDescription data (variable, size given in bufsize) |
1236 * .-----------------------------------------------------------.
1237 * | TLV data (variable, size calculated using header->size, |
1238 * | bufsize and sizeof the fixed fields above) |
1239 * .-----------------------------------------------------------.
1240 *
69f9032d 1241 * @param priv A pointer to struct lbs_private structure
876c9d3a
MT
1242 * @param resp A pointer to cmd_ds_command
1243 *
1244 * @return 0 or -1
1245 */
fa62f99c
DW
1246static int lbs_ret_80211_scan(struct lbs_private *priv, unsigned long dummy,
1247 struct cmd_header *resp)
876c9d3a 1248{
fa62f99c 1249 struct cmd_ds_802_11_scan_rsp *scanresp = (void *)resp;
f137e054
DW
1250 struct bss_descriptor *iter_bss;
1251 struct bss_descriptor *safe;
fa62f99c
DW
1252 uint8_t *bssinfo;
1253 uint16_t scanrespsize;
876c9d3a 1254 int bytesleft;
876c9d3a
MT
1255 int idx;
1256 int tlvbufsize;
9012b28a 1257 int ret;
876c9d3a 1258
e56188ac 1259 lbs_deb_enter(LBS_DEB_SCAN);
876c9d3a 1260
fcdb53db 1261 /* Prune old entries from scan table */
aa21c004 1262 list_for_each_entry_safe (iter_bss, safe, &priv->network_list, list) {
fcdb53db
DW
1263 unsigned long stale_time = iter_bss->last_scanned + DEFAULT_MAX_SCAN_AGE;
1264 if (time_before(jiffies, stale_time))
1265 continue;
aa21c004 1266 list_move_tail (&iter_bss->list, &priv->network_free_list);
fcdb53db
DW
1267 clear_bss_descriptor(iter_bss);
1268 }
1269
fa62f99c
DW
1270 if (scanresp->nr_sets > MAX_NETWORK_COUNT) {
1271 lbs_deb_scan("SCAN_RESP: too many scan results (%d, max %d)\n",
1272 scanresp->nr_sets, MAX_NETWORK_COUNT);
9012b28a
HS
1273 ret = -1;
1274 goto done;
876c9d3a
MT
1275 }
1276
2c5b9e51 1277 bytesleft = get_unaligned_le16(&scanresp->bssdescriptsize);
9012b28a 1278 lbs_deb_scan("SCAN_RESP: bssdescriptsize %d\n", bytesleft);
876c9d3a 1279
e7240aca 1280 scanrespsize = le16_to_cpu(resp->size);
fa62f99c 1281 lbs_deb_scan("SCAN_RESP: scan results %d\n", scanresp->nr_sets);
876c9d3a 1282
fa62f99c 1283 bssinfo = scanresp->bssdesc_and_tlvbuffer;
876c9d3a
MT
1284
1285 /* The size of the TLV buffer is equal to the entire command response
1286 * size (scanrespsize) minus the fixed fields (sizeof()'s), the
1287 * BSS Descriptions (bssdescriptsize as bytesLef) and the command
8ec97cc8 1288 * response header (sizeof(struct cmd_header))
876c9d3a 1289 */
fa62f99c
DW
1290 tlvbufsize = scanrespsize - (bytesleft + sizeof(scanresp->bssdescriptsize)
1291 + sizeof(scanresp->nr_sets)
8ec97cc8 1292 + sizeof(struct cmd_header));
876c9d3a 1293
876c9d3a 1294 /*
fa62f99c 1295 * Process each scan response returned (scanresp->nr_sets). Save
876c9d3a
MT
1296 * the information in the newbssentry and then insert into the
1297 * driver scan table either as an update to an existing entry
1298 * or as an addition at the end of the table
1299 */
fa62f99c 1300 for (idx = 0; idx < scanresp->nr_sets && bytesleft; idx++) {
fcdb53db 1301 struct bss_descriptor new;
fa62f99c
DW
1302 struct bss_descriptor *found = NULL;
1303 struct bss_descriptor *oldest = NULL;
876c9d3a
MT
1304
1305 /* Process the data fields and IEs returned for this BSS */
fcdb53db 1306 memset(&new, 0, sizeof (struct bss_descriptor));
fa62f99c 1307 if (lbs_process_bss(&new, &bssinfo, &bytesleft) != 0) {
fcdb53db
DW
1308 /* error parsing the scan response, skipped */
1309 lbs_deb_scan("SCAN_RESP: process_bss returned ERROR\n");
1310 continue;
1311 }
876c9d3a 1312
fcdb53db 1313 /* Try to find this bss in the scan table */
aa21c004 1314 list_for_each_entry (iter_bss, &priv->network_list, list) {
fcdb53db
DW
1315 if (is_same_network(iter_bss, &new)) {
1316 found = iter_bss;
1317 break;
876c9d3a
MT
1318 }
1319
fcdb53db
DW
1320 if ((oldest == NULL) ||
1321 (iter_bss->last_scanned < oldest->last_scanned))
1322 oldest = iter_bss;
1323 }
876c9d3a 1324
fcdb53db
DW
1325 if (found) {
1326 /* found, clear it */
1327 clear_bss_descriptor(found);
aa21c004 1328 } else if (!list_empty(&priv->network_free_list)) {
fcdb53db 1329 /* Pull one from the free list */
aa21c004 1330 found = list_entry(priv->network_free_list.next,
fcdb53db 1331 struct bss_descriptor, list);
aa21c004 1332 list_move_tail(&found->list, &priv->network_list);
fcdb53db
DW
1333 } else if (oldest) {
1334 /* If there are no more slots, expire the oldest */
1335 found = oldest;
1336 clear_bss_descriptor(found);
aa21c004 1337 list_move_tail(&found->list, &priv->network_list);
876c9d3a 1338 } else {
fcdb53db
DW
1339 continue;
1340 }
876c9d3a 1341
e174961c 1342 lbs_deb_scan("SCAN_RESP: BSSID %pM\n", new.bssid);
fcdb53db 1343
fcdb53db
DW
1344 /* Copy the locally created newbssentry to the scan table */
1345 memcpy(found, &new, offsetof(struct bss_descriptor, list));
1346 }
876c9d3a 1347
9012b28a 1348 ret = 0;
876c9d3a 1349
9012b28a
HS
1350done:
1351 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
1352 return ret;
876c9d3a 1353}