blob: 4a0c3e3cd3b1bbf4e731e31f2d734199c415f0db [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
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 */
John W. Linville7e272fc2008-09-24 18:13:14 -04007#include <linux/types.h>
Roel Kluin430453f2009-07-28 09:59:47 +02008#include <linux/kernel.h>
Dan Williamsfcdb53d2007-05-25 16:15:56 -04009#include <linux/etherdevice.h>
Johannes Berg2c7060022008-10-30 22:09:54 +010010#include <linux/if_arp.h>
Vladimir Davydovac630c22007-09-06 21:45:36 -040011#include <asm/unaligned.h>
John W. Linville7e272fc2008-09-24 18:13:14 -040012#include <net/lib80211.h>
13
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020014#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020015#include "dev.h"
16#include "scan.h"
Holger Schurig2d465022009-10-22 15:30:48 +020017#include "assoc.h"
Holger Schurige93156e2009-10-22 15:30:58 +020018#include "wext.h"
David Woodhousefa62f992008-03-03 12:18:03 +010019#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020020
21//! Approximate amount of data needed to pass a scan result back to iwlist
22#define MAX_SCAN_CELL_SIZE (IW_EV_ADDR_LEN \
Holger Schurig243e84e2009-10-22 15:30:47 +020023 + IEEE80211_MAX_SSID_LEN \
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020024 + IW_EV_UINT_LEN \
25 + IW_EV_FREQ_LEN \
26 + IW_EV_QUAL_LEN \
Holger Schurig243e84e2009-10-22 15:30:47 +020027 + IEEE80211_MAX_SSID_LEN \
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020028 + 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
Dan Williams75b6a612009-05-22 20:03:09 -040032#define CHAN_TLV_MAX_SIZE (sizeof(struct mrvl_ie_header) \
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020033 + (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
Dan Williams75b6a612009-05-22 20:03:09 -040037#define SSID_TLV_MAX_SIZE (1 * sizeof(struct mrvl_ie_ssid_param_set))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020038
David Woodhousefa62f992008-03-03 12:18:03 +010039//! 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)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020042
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
Johannes Berg2c7060022008-10-30 22:09:54 +010060#define DEFAULT_MAX_SCAN_AGE (15 * HZ)
61
David Woodhousefa62f992008-03-03 12:18:03 +010062static int lbs_ret_80211_scan(struct lbs_private *priv, unsigned long dummy,
63 struct cmd_header *resp);
Holger Schurige56188a2007-10-09 14:15:19 +020064
65/*********************************************************************/
66/* */
67/* Misc helper functions */
68/* */
69/*********************************************************************/
70
Holger Schurig23ff5032008-01-28 17:27:03 +010071/**
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
David Woodhousef137e052008-03-03 12:18:59 +010088static inline void clear_bss_descriptor(struct bss_descriptor *bss)
Dan Williamsfcdb53d2007-05-25 16:15:56 -040089{
90 /* Don't blow away ->list, just BSS data */
91 memset(bss, 0, offsetof(struct bss_descriptor, list));
92}
93
Holger Schurigffd074f2007-12-07 16:52:10 +010094/**
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 */
David Woodhousef137e052008-03-03 12:18:59 +0100102int lbs_ssid_cmp(uint8_t *ssid1, uint8_t ssid1_len, uint8_t *ssid2,
103 uint8_t ssid2_len)
Holger Schurigffd074f2007-12-07 16:52:10 +0100104{
105 if (ssid1_len != ssid2_len)
106 return -1;
107
108 return memcmp(ssid1, ssid2, ssid1_len);
109}
110
Holger Schurigffd074f2007-12-07 16:52:10 +0100111static 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
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200123
Holger Schurige56188a2007-10-09 14:15:19 +0200124
Holger Schurig2d465022009-10-22 15:30:48 +0200125/*********************************************************************/
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
Holger Schurige56188a2007-10-09 14:15:19 +0200308
Holger Schurige56188a2007-10-09 14:15:19 +0200309/*********************************************************************/
310/* */
311/* Main scanning support */
312/* */
313/*********************************************************************/
314
Holger Schurige56188a2007-10-09 14:15:19 +0200315/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200316 * @brief Create a channel list for the driver to scan based on region info
317 *
Holger Schurig10078322007-11-15 18:05:47 -0500318 * Only used from lbs_scan_setup_scan_config()
Holger Schurige56188a2007-10-09 14:15:19 +0200319 *
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200320 * 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 *
Holger Schurig69f90322007-11-23 15:43:44 +0100324 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200325 * @param scanchanlist Output parameter: resulting channel list to scan
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200326 *
327 * @return void
328 */
Holger Schurigffd074f2007-12-07 16:52:10 +0100329static int lbs_scan_create_channel_list(struct lbs_private *priv,
Holger Schurig52933d82008-03-05 07:05:32 +0100330 struct chanscanparamset *scanchanlist)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200331{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200332 struct region_channel *scanregion;
333 struct chan_freq_power *cfp;
334 int rgnidx;
335 int chanidx;
336 int nextchan;
David Woodhousef137e052008-03-03 12:18:59 +0100337 uint8_t scantype;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200338
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 */
Holger Schurig4f2fdaa2007-08-02 13:12:27 -0400345 scantype = CMD_SCAN_TYPE_ACTIVE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200346
David Woodhouseaa21c002007-12-08 20:04:36 +0000347 for (rgnidx = 0; rgnidx < ARRAY_SIZE(priv->region_channel); rgnidx++) {
Holger Schurigd37b4fd2009-10-22 15:30:45 +0200348 if (!priv->region_channel[rgnidx].valid)
349 continue;
350 scanregion = &priv->region_channel[rgnidx];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200351
David Woodhousef137e052008-03-03 12:18:59 +0100352 for (nextchan = 0; nextchan < scanregion->nrcfp; nextchan++, chanidx++) {
353 struct chanscanparamset *chan = &scanchanlist[chanidx];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200354
355 cfp = scanregion->CFP + nextchan;
356
David Woodhousef137e052008-03-03 12:18:59 +0100357 if (scanregion->band == BAND_B || scanregion->band == BAND_G)
358 chan->radiotype = CMD_SCAN_RADIO_TYPE_BG;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200359
Dan Williams0aef64d2007-08-02 11:31:18 -0400360 if (scantype == CMD_SCAN_TYPE_PASSIVE) {
David Woodhousef137e052008-03-03 12:18:59 +0100361 chan->maxscantime = cpu_to_le16(MRVDRV_PASSIVE_SCAN_CHAN_TIME);
362 chan->chanscanmode.passivescan = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200363 } else {
David Woodhousef137e052008-03-03 12:18:59 +0100364 chan->maxscantime = cpu_to_le16(MRVDRV_ACTIVE_SCAN_CHAN_TIME);
365 chan->chanscanmode.passivescan = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200366 }
367
David Woodhousef137e052008-03-03 12:18:59 +0100368 chan->channumber = cfp->channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200369 }
370 }
Holger Schurigffd074f2007-12-07 16:52:10 +0100371 return chanidx;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200372}
373
Holger Schurige56188a2007-10-09 14:15:19 +0200374/*
Holger Schurigffd074f2007-12-07 16:52:10 +0100375 * 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 */
Holger Schurig52933d82008-03-05 07:05:32 +0100381static int lbs_scan_add_ssid_tlv(struct lbs_private *priv, u8 *tlv)
Dan Williamseb8f7332007-05-25 16:25:21 -0400382{
Dan Williams75b6a612009-05-22 20:03:09 -0400383 struct mrvl_ie_ssid_param_set *ssid_tlv = (void *)tlv;
David Woodhousef137e052008-03-03 12:18:59 +0100384
Holger Schurigffd074f2007-12-07 16:52:10 +0100385 ssid_tlv->header.type = cpu_to_le16(TLV_TYPE_SSID);
Holger Schurig52933d82008-03-05 07:05:32 +0100386 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;
Holger Schurigffd074f2007-12-07 16:52:10 +0100389}
Dan Williamseb8f7332007-05-25 16:25:21 -0400390
Holger Schurigffd074f2007-12-07 16:52:10 +0100391/*
392 * Add CHANLIST TLV of the form
393 *
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
414 *
415 */
David Woodhousef137e052008-03-03 12:18:59 +0100416static int lbs_scan_add_chanlist_tlv(uint8_t *tlv,
417 struct chanscanparamset *chan_list,
418 int chan_count)
Holger Schurigffd074f2007-12-07 16:52:10 +0100419{
David Woodhousef137e052008-03-03 12:18:59 +0100420 size_t size = sizeof(struct chanscanparamset) *chan_count;
Dan Williams75b6a612009-05-22 20:03:09 -0400421 struct mrvl_ie_chanlist_param_set *chan_tlv = (void *)tlv;
Dan Williamseb8f7332007-05-25 16:25:21 -0400422
Holger Schurigffd074f2007-12-07 16:52:10 +0100423 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;
427}
Dan Williamseb8f7332007-05-25 16:25:21 -0400428
Holger Schurigffd074f2007-12-07 16:52:10 +0100429/*
430 * Add RATES TLV of the form
431 *
432 * TLV-ID RATES 01 00
433 * length 0e 00
434 * rates 82 84 8b 96 0c 12 18 24 30 48 60 6c
435 *
436 * The rates are in lbs_bg_rates[], but for the 802.11b
437 * rates the high bit isn't set.
438 */
David Woodhousef137e052008-03-03 12:18:59 +0100439static int lbs_scan_add_rates_tlv(uint8_t *tlv)
Holger Schurigffd074f2007-12-07 16:52:10 +0100440{
441 int i;
Dan Williams75b6a612009-05-22 20:03:09 -0400442 struct mrvl_ie_rates_param_set *rate_tlv = (void *)tlv;
Holger Schurigffd074f2007-12-07 16:52:10 +0100443
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++;
Dan Williamseb8f7332007-05-25 16:25:21 -0400458 }
Holger Schurigffd074f2007-12-07 16:52:10 +0100459 rate_tlv->header.len = cpu_to_le16(i);
460 return sizeof(rate_tlv->header) + i;
461}
Dan Williamseb8f7332007-05-25 16:25:21 -0400462
Holger Schurigffd074f2007-12-07 16:52:10 +0100463/*
464 * Generate the CMD_802_11_SCAN command with the proper tlv
465 * for a bunch of channels.
466 */
David Woodhousefa62f992008-03-03 12:18:03 +0100467static int lbs_do_scan(struct lbs_private *priv, uint8_t bsstype,
Holger Schurig52933d82008-03-05 07:05:32 +0100468 struct chanscanparamset *chan_list, int chan_count)
Holger Schurigffd074f2007-12-07 16:52:10 +0100469{
470 int ret = -ENOMEM;
David Woodhousefa62f992008-03-03 12:18:03 +0100471 struct cmd_ds_802_11_scan *scan_cmd;
472 uint8_t *tlv; /* pointer into our current, growing TLV storage area */
Holger Schurigffd074f2007-12-07 16:52:10 +0100473
David Woodhousefa62f992008-03-03 12:18:03 +0100474 lbs_deb_enter_args(LBS_DEB_SCAN, "bsstype %d, chanlist[].chan %d, chan_count %d",
Holger Schurigc0d43992008-04-29 10:07:56 +0200475 bsstype, chan_list ? chan_list[0].channumber : -1,
476 chan_count);
Holger Schurigffd074f2007-12-07 16:52:10 +0100477
478 /* create the fixed part for scan command */
479 scan_cmd = kzalloc(MAX_SCAN_CFG_ALLOC, GFP_KERNEL);
480 if (scan_cmd == NULL)
Holger Schurige56188a2007-10-09 14:15:19 +0200481 goto out;
David Woodhousefa62f992008-03-03 12:18:03 +0100482
Holger Schurigffd074f2007-12-07 16:52:10 +0100483 tlv = scan_cmd->tlvbuffer;
Holger Schurig52933d82008-03-05 07:05:32 +0100484 /* TODO: do we need to scan for a specific BSSID?
485 memcpy(scan_cmd->bssid, priv->scan_bssid, ETH_ALEN); */
Holger Schurigffd074f2007-12-07 16:52:10 +0100486 scan_cmd->bsstype = bsstype;
Dan Williamseb8f7332007-05-25 16:25:21 -0400487
Holger Schurigffd074f2007-12-07 16:52:10 +0100488 /* add TLVs */
Holger Schurig52933d82008-03-05 07:05:32 +0100489 if (priv->scan_ssid_len)
490 tlv += lbs_scan_add_ssid_tlv(priv, tlv);
Holger Schurigffd074f2007-12-07 16:52:10 +0100491 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);
Dan Williamseb8f7332007-05-25 16:25:21 -0400494
Holger Schurigffd074f2007-12-07 16:52:10 +0100495 /* This is the final data we are about to send */
David Woodhousefa62f992008-03-03 12:18:03 +0100496 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));
Holger Schurigffd074f2007-12-07 16:52:10 +0100499 lbs_deb_hex(LBS_DEB_SCAN, "SCAN_TLV", scan_cmd->tlvbuffer,
David Woodhousefa62f992008-03-03 12:18:03 +0100500 tlv - scan_cmd->tlvbuffer);
Dan Williamseb8f7332007-05-25 16:25:21 -0400501
David Woodhousefa62f992008-03-03 12:18:03 +0100502 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);
505
Holger Schurige56188a2007-10-09 14:15:19 +0200506out:
Holger Schurigffd074f2007-12-07 16:52:10 +0100507 kfree(scan_cmd);
508 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
509 return ret;
Dan Williamseb8f7332007-05-25 16:25:21 -0400510}
511
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200512/**
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 *
Holger Schurig69f90322007-11-23 15:43:44 +0100519 * @param priv A pointer to struct lbs_private structure
Holger Schurig52933d82008-03-05 07:05:32 +0100520 * @param full_scan Do a full-scan (blocking)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200521 *
522 * @return 0 or < 0 if error
523 */
Holger Schurig245bf202008-04-02 16:27:42 +0200524int lbs_scan_networks(struct lbs_private *priv, int full_scan)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200525{
Holger Schurigffd074f2007-12-07 16:52:10 +0100526 int ret = -ENOMEM;
527 struct chanscanparamset *chan_list;
528 struct chanscanparamset *curr_chans;
529 int chan_count;
David Woodhousef137e052008-03-03 12:18:59 +0100530 uint8_t bsstype = CMD_BSS_TYPE_ANY;
Holger Schurigffd074f2007-12-07 16:52:10 +0100531 int numchannels = MRVDRV_CHANNELS_PER_SCAN_CMD;
Holger Schurigffd074f2007-12-07 16:52:10 +0100532 union iwreq_data wrqu;
Dan Williamsf8f55102007-05-30 10:12:55 -0400533#ifdef CONFIG_LIBERTAS_DEBUG
Holger Schurigffd074f2007-12-07 16:52:10 +0100534 struct bss_descriptor *iter;
Dan Williamsf8f55102007-05-30 10:12:55 -0400535 int i = 0;
John W. Linville9387b7c2008-09-30 20:59:05 -0400536 DECLARE_SSID_BUF(ssid);
Dan Williamsf8f55102007-05-30 10:12:55 -0400537#endif
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200538
David Woodhousef137e052008-03-03 12:18:59 +0100539 lbs_deb_enter_args(LBS_DEB_SCAN, "full_scan %d", full_scan);
Dan Williams2afc0c52007-08-02 13:19:04 -0400540
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);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200546
Holger Schurig52933d82008-03-05 07:05:32 +0100547 /* 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.
Holger Schurigffd074f2007-12-07 16:52:10 +0100551 if (user_cfg) {
552 if (user_cfg->bsstype)
Holger Schurig52933d82008-03-05 07:05:32 +0100553 bsstype = user_cfg->bsstype;
554 } */
555
556 lbs_deb_scan("numchannels %d, bsstype %d\n", numchannels, bsstype);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200557
Holger Schurigffd074f2007-12-07 16:52:10 +0100558 /* Create list of channels to scan */
559 chan_list = kzalloc(sizeof(struct chanscanparamset) *
David Woodhousef137e052008-03-03 12:18:59 +0100560 LBS_IOCTL_USER_SCAN_CHAN_MAX, GFP_KERNEL);
Holger Schurigffd074f2007-12-07 16:52:10 +0100561 if (!chan_list) {
562 lbs_pr_alert("SCAN: chan_list empty\n");
563 goto out;
564 }
565
566 /* We want to scan all channels */
Holger Schurig52933d82008-03-05 07:05:32 +0100567 chan_count = lbs_scan_create_channel_list(priv, chan_list);
Holger Schurigffd074f2007-12-07 16:52:10 +0100568
569 netif_stop_queue(priv->dev);
570 netif_carrier_off(priv->dev);
571 if (priv->mesh_dev) {
David Woodhousea27b9f92007-12-12 00:41:51 -0500572 netif_stop_queue(priv->mesh_dev);
573 netif_carrier_off(priv->mesh_dev);
Holger Schurigffd074f2007-12-07 16:52:10 +0100574 }
575
576 /* Prepare to continue an interrupted scan */
Holger Schurig8816edc2008-01-28 17:28:05 +0100577 lbs_deb_scan("chan_count %d, scan_channel %d\n",
578 chan_count, priv->scan_channel);
Holger Schurigffd074f2007-12-07 16:52:10 +0100579 curr_chans = chan_list;
580 /* advance channel list by already-scanned-channels */
Holger Schurig8816edc2008-01-28 17:28:05 +0100581 if (priv->scan_channel > 0) {
582 curr_chans += priv->scan_channel;
583 chan_count -= priv->scan_channel;
Holger Schurigffd074f2007-12-07 16:52:10 +0100584 }
585
586 /* Send scan command(s)
587 * numchannels contains the number of channels we should maximally scan
588 * chan_count is the total number of channels to scan
589 */
590
591 while (chan_count) {
592 int to_scan = min(numchannels, chan_count);
593 lbs_deb_scan("scanning %d of %d channels\n",
David Woodhousef137e052008-03-03 12:18:59 +0100594 to_scan, chan_count);
Holger Schurigffd074f2007-12-07 16:52:10 +0100595 ret = lbs_do_scan(priv, bsstype, curr_chans,
Holger Schurig52933d82008-03-05 07:05:32 +0100596 to_scan);
Holger Schurigffd074f2007-12-07 16:52:10 +0100597 if (ret) {
598 lbs_pr_err("SCAN_CMD failed\n");
599 goto out2;
600 }
601 curr_chans += to_scan;
602 chan_count -= to_scan;
603
604 /* somehow schedule the next part of the scan */
David Woodhousef137e052008-03-03 12:18:59 +0100605 if (chan_count && !full_scan &&
David Woodhouseaa21c002007-12-08 20:04:36 +0000606 !priv->surpriseremoved) {
Holger Schurigffd074f2007-12-07 16:52:10 +0100607 /* -1 marks just that we're currently scanning */
Holger Schurig8816edc2008-01-28 17:28:05 +0100608 if (priv->scan_channel < 0)
609 priv->scan_channel = to_scan;
Holger Schurigffd074f2007-12-07 16:52:10 +0100610 else
Holger Schurig8816edc2008-01-28 17:28:05 +0100611 priv->scan_channel += to_scan;
Holger Schurigffd074f2007-12-07 16:52:10 +0100612 cancel_delayed_work(&priv->scan_work);
613 queue_delayed_work(priv->work_thread, &priv->scan_work,
David Woodhousef137e052008-03-03 12:18:59 +0100614 msecs_to_jiffies(300));
Holger Schurigffd074f2007-12-07 16:52:10 +0100615 /* skip over GIWSCAN event */
616 goto out;
617 }
618
619 }
620 memset(&wrqu, 0, sizeof(union iwreq_data));
621 wireless_send_event(priv->dev, SIOCGIWSCAN, &wrqu, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200622
Dan Williamsf8f55102007-05-30 10:12:55 -0400623#ifdef CONFIG_LIBERTAS_DEBUG
624 /* Dump the scan table */
David Woodhouseaa21c002007-12-08 20:04:36 +0000625 mutex_lock(&priv->lock);
Holger Schurigffd074f2007-12-07 16:52:10 +0100626 lbs_deb_scan("scan table:\n");
David Woodhouseaa21c002007-12-08 20:04:36 +0000627 list_for_each_entry(iter, &priv->network_list, list)
Johannes Berge1749612008-10-27 15:59:26 -0700628 lbs_deb_scan("%02d: BSSID %pM, RSSI %d, SSID '%s'\n",
629 i++, iter->bssid, iter->rssi,
John W. Linville9387b7c2008-09-30 20:59:05 -0400630 print_ssid(ssid, iter->ssid, iter->ssid_len));
David Woodhouseaa21c002007-12-08 20:04:36 +0000631 mutex_unlock(&priv->lock);
Dan Williamsf8f55102007-05-30 10:12:55 -0400632#endif
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200633
Holger Schurigffd074f2007-12-07 16:52:10 +0100634out2:
Holger Schurig8816edc2008-01-28 17:28:05 +0100635 priv->scan_channel = 0;
Holger Schurigffd074f2007-12-07 16:52:10 +0100636
637out:
David Woodhouseaa21c002007-12-08 20:04:36 +0000638 if (priv->connect_status == LBS_CONNECTED) {
Holger Schurig634b8f42007-05-25 13:05:16 -0400639 netif_carrier_on(priv->dev);
David Woodhousea27b9f92007-12-12 00:41:51 -0500640 if (!priv->tx_pending_len)
641 netif_wake_queue(priv->dev);
Brajesh Dave01d77d82007-11-20 17:44:14 -0500642 }
Holger Schurig602114a2009-12-02 15:26:01 +0100643 if (priv->mesh_dev && lbs_mesh_connected(priv)) {
Brajesh Dave01d77d82007-11-20 17:44:14 -0500644 netif_carrier_on(priv->mesh_dev);
David Woodhousea27b9f92007-12-12 00:41:51 -0500645 if (!priv->tx_pending_len)
646 netif_wake_queue(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200647 }
Holger Schurigffd074f2007-12-07 16:52:10 +0100648 kfree(chan_list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200649
Holger Schurig9012b282007-05-25 11:27:16 -0400650 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200651 return ret;
652}
653
Holger Schurig52933d82008-03-05 07:05:32 +0100654void lbs_scan_worker(struct work_struct *work)
655{
656 struct lbs_private *priv =
657 container_of(work, struct lbs_private, scan_work.work);
658
659 lbs_deb_enter(LBS_DEB_SCAN);
660 lbs_scan_networks(priv, 0);
661 lbs_deb_leave(LBS_DEB_SCAN);
662}
663
664
Holger Schurigffd074f2007-12-07 16:52:10 +0100665/*********************************************************************/
666/* */
667/* Result interpretation */
668/* */
669/*********************************************************************/
670
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200671/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200672 * @brief Interpret a BSS scan response returned from the firmware
673 *
674 * Parse the various fixed fields and IEs passed back for a a BSS probe
Holger Schurigffd074f2007-12-07 16:52:10 +0100675 * response or beacon from the scan command. Record information as needed
676 * in the scan table struct bss_descriptor for that entry.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200677 *
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400678 * @param bss Output parameter: Pointer to the BSS Entry
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200679 *
680 * @return 0 or -1
681 */
Holger Schurig10078322007-11-15 18:05:47 -0500682static int lbs_process_bss(struct bss_descriptor *bss,
David Woodhousef137e052008-03-03 12:18:59 +0100683 uint8_t **pbeaconinfo, int *bytesleft)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200684{
Dan Williams5fd164e2009-05-22 20:01:21 -0400685 struct ieee_ie_fh_param_set *fh;
686 struct ieee_ie_ds_param_set *ds;
687 struct ieee_ie_cf_param_set *cf;
688 struct ieee_ie_ibss_param_set *ibss;
John W. Linville9387b7c2008-09-30 20:59:05 -0400689 DECLARE_SSID_BUF(ssid);
David Woodhousef137e052008-03-03 12:18:59 +0100690 uint8_t *pos, *end, *p;
691 uint8_t n_ex_rates = 0, got_basic_rates = 0, n_basic_rates = 0;
692 uint16_t beaconsize = 0;
Holger Schurig9012b282007-05-25 11:27:16 -0400693 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200694
Holger Schurige56188a2007-10-09 14:15:19 +0200695 lbs_deb_enter(LBS_DEB_SCAN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200696
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200697 if (*bytesleft >= sizeof(beaconsize)) {
698 /* Extract & convert beacon size from the command buffer */
Harvey Harrison533dd1b2008-04-29 01:03:36 -0700699 beaconsize = get_unaligned_le16(*pbeaconinfo);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200700 *bytesleft -= sizeof(beaconsize);
701 *pbeaconinfo += sizeof(beaconsize);
702 }
703
704 if (beaconsize == 0 || beaconsize > *bytesleft) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200705 *pbeaconinfo += *bytesleft;
706 *bytesleft = 0;
Holger Schurige56188a2007-10-09 14:15:19 +0200707 ret = -1;
708 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200709 }
710
711 /* Initialize the current working beacon pointer for this BSS iteration */
Dan Williamsab617972007-08-02 10:48:02 -0400712 pos = *pbeaconinfo;
713 end = pos + beaconsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200714
715 /* Advance the return beacon pointer past the current beacon */
716 *pbeaconinfo += beaconsize;
717 *bytesleft -= beaconsize;
718
Dan Williamsab617972007-08-02 10:48:02 -0400719 memcpy(bss->bssid, pos, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -0700720 lbs_deb_scan("process_bss: BSSID %pM\n", bss->bssid);
Dan Williamsab617972007-08-02 10:48:02 -0400721 pos += ETH_ALEN;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200722
Dan Williamsab617972007-08-02 10:48:02 -0400723 if ((end - pos) < 12) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400724 lbs_deb_scan("process_bss: Not enough bytes left\n");
Holger Schurige56188a2007-10-09 14:15:19 +0200725 ret = -1;
726 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200727 }
728
729 /*
730 * next 4 fields are RSSI, time stamp, beacon interval,
731 * and capability information
732 */
733
734 /* RSSI is 1 byte long */
Dan Williamsab617972007-08-02 10:48:02 -0400735 bss->rssi = *pos;
Holger Schurigffd074f2007-12-07 16:52:10 +0100736 lbs_deb_scan("process_bss: RSSI %d\n", *pos);
Dan Williamsab617972007-08-02 10:48:02 -0400737 pos++;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200738
739 /* time stamp is 8 bytes long */
Dan Williamsab617972007-08-02 10:48:02 -0400740 pos += 8;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200741
742 /* beacon interval is 2 bytes long */
Ihar Hrachyshka814feef2008-07-09 09:29:58 +0300743 bss->beaconperiod = get_unaligned_le16(pos);
Dan Williamsab617972007-08-02 10:48:02 -0400744 pos += 2;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200745
746 /* capability information is 2 bytes long */
Ihar Hrachyshka814feef2008-07-09 09:29:58 +0300747 bss->capability = get_unaligned_le16(pos);
Holger Schurigffd074f2007-12-07 16:52:10 +0100748 lbs_deb_scan("process_bss: capabilities 0x%04x\n", bss->capability);
Dan Williamsab617972007-08-02 10:48:02 -0400749 pos += 2;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200750
Dan Williams0c9ca6902007-08-02 10:43:44 -0400751 if (bss->capability & WLAN_CAPABILITY_PRIVACY)
Holger Schurigffd074f2007-12-07 16:52:10 +0100752 lbs_deb_scan("process_bss: WEP enabled\n");
Dan Williams0c9ca6902007-08-02 10:43:44 -0400753 if (bss->capability & WLAN_CAPABILITY_IBSS)
754 bss->mode = IW_MODE_ADHOC;
755 else
756 bss->mode = IW_MODE_INFRA;
757
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200758 /* rest of the current buffer are IE's */
Holger Schurigffd074f2007-12-07 16:52:10 +0100759 lbs_deb_scan("process_bss: IE len %zd\n", end - pos);
Holger Schurigece56192007-08-02 11:53:06 -0400760 lbs_deb_hex(LBS_DEB_SCAN, "process_bss: IE info", pos, end - pos);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200761
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200762 /* process variable IE */
Dan Williamsab617972007-08-02 10:48:02 -0400763 while (pos <= end - 2) {
Johannes Berg2c7060022008-10-30 22:09:54 +0100764 if (pos + pos[1] > end) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400765 lbs_deb_scan("process_bss: error in processing IE, "
David Woodhousef137e052008-03-03 12:18:59 +0100766 "bytes left < IE length\n");
Dan Williamsab617972007-08-02 10:48:02 -0400767 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200768 }
769
Johannes Berg2c7060022008-10-30 22:09:54 +0100770 switch (pos[0]) {
771 case WLAN_EID_SSID:
772 bss->ssid_len = min_t(int, IEEE80211_MAX_SSID_LEN, pos[1]);
773 memcpy(bss->ssid, pos + 2, bss->ssid_len);
Holger Schurigffd074f2007-12-07 16:52:10 +0100774 lbs_deb_scan("got SSID IE: '%s', len %u\n",
John W. Linville9387b7c2008-09-30 20:59:05 -0400775 print_ssid(ssid, bss->ssid, bss->ssid_len),
Dan Williamsd8efea22007-05-28 23:54:55 -0400776 bss->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200777 break;
778
Johannes Berg2c7060022008-10-30 22:09:54 +0100779 case WLAN_EID_SUPP_RATES:
780 n_basic_rates = min_t(uint8_t, MAX_RATES, pos[1]);
781 memcpy(bss->rates, pos + 2, n_basic_rates);
Dan Williams8c512762007-08-02 11:40:45 -0400782 got_basic_rates = 1;
Holger Schurigffd074f2007-12-07 16:52:10 +0100783 lbs_deb_scan("got RATES IE\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200784 break;
785
Johannes Berg2c7060022008-10-30 22:09:54 +0100786 case WLAN_EID_FH_PARAMS:
Dan Williams5fd164e2009-05-22 20:01:21 -0400787 fh = (struct ieee_ie_fh_param_set *) pos;
788 memcpy(&bss->phy.fh, fh, sizeof(*fh));
Holger Schurigffd074f2007-12-07 16:52:10 +0100789 lbs_deb_scan("got FH IE\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200790 break;
791
Johannes Berg2c7060022008-10-30 22:09:54 +0100792 case WLAN_EID_DS_PARAMS:
Dan Williams5fd164e2009-05-22 20:01:21 -0400793 ds = (struct ieee_ie_ds_param_set *) pos;
794 bss->channel = ds->channel;
795 memcpy(&bss->phy.ds, ds, sizeof(*ds));
Holger Schurigffd074f2007-12-07 16:52:10 +0100796 lbs_deb_scan("got DS IE, channel %d\n", bss->channel);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200797 break;
798
Johannes Berg2c7060022008-10-30 22:09:54 +0100799 case WLAN_EID_CF_PARAMS:
Dan Williams5fd164e2009-05-22 20:01:21 -0400800 cf = (struct ieee_ie_cf_param_set *) pos;
801 memcpy(&bss->ss.cf, cf, sizeof(*cf));
Holger Schurigffd074f2007-12-07 16:52:10 +0100802 lbs_deb_scan("got CF IE\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200803 break;
804
Johannes Berg2c7060022008-10-30 22:09:54 +0100805 case WLAN_EID_IBSS_PARAMS:
Dan Williams5fd164e2009-05-22 20:01:21 -0400806 ibss = (struct ieee_ie_ibss_param_set *) pos;
807 bss->atimwindow = ibss->atimwindow;
808 memcpy(&bss->ss.ibss, ibss, sizeof(*ibss));
Holger Schurigffd074f2007-12-07 16:52:10 +0100809 lbs_deb_scan("got IBSS IE\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200810 break;
811
Johannes Berg2c7060022008-10-30 22:09:54 +0100812 case WLAN_EID_EXT_SUPP_RATES:
Dan Williamsab617972007-08-02 10:48:02 -0400813 /* only process extended supported rate if data rate is
814 * already found. Data rate IE should come before
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200815 * extended supported rate IE
816 */
Holger Schurigffd074f2007-12-07 16:52:10 +0100817 lbs_deb_scan("got RATESEX IE\n");
818 if (!got_basic_rates) {
819 lbs_deb_scan("... but ignoring it\n");
Dan Williamsab617972007-08-02 10:48:02 -0400820 break;
Holger Schurigffd074f2007-12-07 16:52:10 +0100821 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200822
Johannes Berg2c7060022008-10-30 22:09:54 +0100823 n_ex_rates = pos[1];
Dan Williams8c512762007-08-02 11:40:45 -0400824 if (n_basic_rates + n_ex_rates > MAX_RATES)
825 n_ex_rates = MAX_RATES - n_basic_rates;
Dan Williamsab617972007-08-02 10:48:02 -0400826
Dan Williams8c512762007-08-02 11:40:45 -0400827 p = bss->rates + n_basic_rates;
Johannes Berg2c7060022008-10-30 22:09:54 +0100828 memcpy(p, pos + 2, n_ex_rates);
Dan Williamsab617972007-08-02 10:48:02 -0400829 break;
830
Johannes Berg2c7060022008-10-30 22:09:54 +0100831 case WLAN_EID_GENERIC:
832 if (pos[1] >= 4 &&
833 pos[2] == 0x00 && pos[3] == 0x50 &&
834 pos[4] == 0xf2 && pos[5] == 0x01) {
835 bss->wpa_ie_len = min(pos[1] + 2, MAX_WPA_IE_LEN);
836 memcpy(bss->wpa_ie, pos, bss->wpa_ie_len);
Holger Schurigffd074f2007-12-07 16:52:10 +0100837 lbs_deb_scan("got WPA IE\n");
Johannes Berg2c7060022008-10-30 22:09:54 +0100838 lbs_deb_hex(LBS_DEB_SCAN, "WPA IE", bss->wpa_ie,
839 bss->wpa_ie_len);
840 } else if (pos[1] >= MARVELL_MESH_IE_LENGTH &&
841 pos[2] == 0x00 && pos[3] == 0x50 &&
Roel Kluinbaf62ee2009-02-03 17:15:57 +0100842 pos[4] == 0x43 && pos[5] == 0x04) {
Holger Schurigffd074f2007-12-07 16:52:10 +0100843 lbs_deb_scan("got mesh IE\n");
Luis Carlos Cobo1e838bf2007-08-02 10:51:27 -0400844 bss->mesh = 1;
Holger Schurigffd074f2007-12-07 16:52:10 +0100845 } else {
David Woodhousef137e052008-03-03 12:18:59 +0100846 lbs_deb_scan("got generic IE: %02x:%02x:%02x:%02x, len %d\n",
Johannes Berg2c7060022008-10-30 22:09:54 +0100847 pos[2], pos[3],
848 pos[4], pos[5],
849 pos[1]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200850 }
851 break;
852
Johannes Berg2c7060022008-10-30 22:09:54 +0100853 case WLAN_EID_RSN:
Holger Schurigffd074f2007-12-07 16:52:10 +0100854 lbs_deb_scan("got RSN IE\n");
Johannes Berg2c7060022008-10-30 22:09:54 +0100855 bss->rsn_ie_len = min(pos[1] + 2, MAX_WPA_IE_LEN);
856 memcpy(bss->rsn_ie, pos, bss->rsn_ie_len);
Holger Schurigffd074f2007-12-07 16:52:10 +0100857 lbs_deb_hex(LBS_DEB_SCAN, "process_bss: RSN_IE",
Johannes Berg2c7060022008-10-30 22:09:54 +0100858 bss->rsn_ie, bss->rsn_ie_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200859 break;
860
Dan Williamsab617972007-08-02 10:48:02 -0400861 default:
Holger Schurigffd074f2007-12-07 16:52:10 +0100862 lbs_deb_scan("got IE 0x%04x, len %d\n",
Johannes Berg2c7060022008-10-30 22:09:54 +0100863 pos[0], pos[1]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200864 break;
865 }
866
Johannes Berg2c7060022008-10-30 22:09:54 +0100867 pos += pos[1] + 2;
Dan Williamsab617972007-08-02 10:48:02 -0400868 }
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400869
870 /* Timestamp */
871 bss->last_scanned = jiffies;
Holger Schurig10078322007-11-15 18:05:47 -0500872 lbs_unset_basic_rate_flags(bss->rates, sizeof(bss->rates));
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400873
Holger Schurig9012b282007-05-25 11:27:16 -0400874 ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200875
Holger Schurig9012b282007-05-25 11:27:16 -0400876done:
877 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
878 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200879}
880
881/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200882 * @brief Send a scan command for all available channels filtered on a spec
883 *
Holger Schurige56188a2007-10-09 14:15:19 +0200884 * Used in association code and from debugfs
885 *
Holger Schurig69f90322007-11-23 15:43:44 +0100886 * @param priv A pointer to struct lbs_private structure
Holger Schurige56188a2007-10-09 14:15:19 +0200887 * @param ssid A pointer to the SSID to scan for
888 * @param ssid_len Length of the SSID
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200889 *
890 * @return 0-success, otherwise fail
891 */
David Woodhousef137e052008-03-03 12:18:59 +0100892int lbs_send_specific_ssid_scan(struct lbs_private *priv, uint8_t *ssid,
Holger Schurig52933d82008-03-05 07:05:32 +0100893 uint8_t ssid_len)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200894{
John W. Linville9387b7c2008-09-30 20:59:05 -0400895 DECLARE_SSID_BUF(ssid_buf);
Dan Williamseb8f7332007-05-25 16:25:21 -0400896 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200897
Holger Schurig52933d82008-03-05 07:05:32 +0100898 lbs_deb_enter_args(LBS_DEB_SCAN, "SSID '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -0400899 print_ssid(ssid_buf, ssid, ssid_len));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200900
Dan Williamsd8efea22007-05-28 23:54:55 -0400901 if (!ssid_len)
Dan Williamseb8f7332007-05-25 16:25:21 -0400902 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200903
Holger Schurig52933d82008-03-05 07:05:32 +0100904 memcpy(priv->scan_ssid, ssid, ssid_len);
905 priv->scan_ssid_len = ssid_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200906
Holger Schurig52933d82008-03-05 07:05:32 +0100907 lbs_scan_networks(priv, 1);
David Woodhouseaa21c002007-12-08 20:04:36 +0000908 if (priv->surpriseremoved) {
Holger Schurige56188a2007-10-09 14:15:19 +0200909 ret = -1;
910 goto out;
911 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200912
Dan Williamseb8f7332007-05-25 16:25:21 -0400913out:
Holger Schurige56188a2007-10-09 14:15:19 +0200914 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
Dan Williamseb8f7332007-05-25 16:25:21 -0400915 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200916}
917
Holger Schurige56188a2007-10-09 14:15:19 +0200918
919
920
921/*********************************************************************/
922/* */
923/* Support for Wireless Extensions */
924/* */
925/*********************************************************************/
926
Holger Schurigffd074f2007-12-07 16:52:10 +0100927
Dan Williams00af0152007-08-02 13:14:56 -0400928#define MAX_CUSTOM_LEN 64
929
Holger Schurig69f90322007-11-23 15:43:44 +0100930static inline char *lbs_translate_scan(struct lbs_private *priv,
David S. Millerccc58052008-06-16 18:50:49 -0700931 struct iw_request_info *info,
932 char *start, char *stop,
933 struct bss_descriptor *bss)
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400934{
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400935 struct chan_freq_power *cfp;
936 char *current_val; /* For rates */
937 struct iw_event iwe; /* Temporary buffer */
938 int j;
David Woodhousef137e052008-03-03 12:18:59 +0100939#define PERFECT_RSSI ((uint8_t)50)
940#define WORST_RSSI ((uint8_t)0)
941#define RSSI_DIFF ((uint8_t)(PERFECT_RSSI - WORST_RSSI))
942 uint8_t rssi;
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400943
Holger Schurige56188a2007-10-09 14:15:19 +0200944 lbs_deb_enter(LBS_DEB_SCAN);
945
David Woodhouseaa21c002007-12-08 20:04:36 +0000946 cfp = lbs_find_cfp_by_band_and_channel(priv, 0, bss->channel);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400947 if (!cfp) {
948 lbs_deb_scan("Invalid channel number %d\n", bss->channel);
Holger Schurige56188a2007-10-09 14:15:19 +0200949 start = NULL;
950 goto out;
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400951 }
952
Holger Schurigffd074f2007-12-07 16:52:10 +0100953 /* First entry *MUST* be the BSSID */
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400954 iwe.cmd = SIOCGIWAP;
955 iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
956 memcpy(iwe.u.ap_addr.sa_data, &bss->bssid, ETH_ALEN);
David S. Millerccc58052008-06-16 18:50:49 -0700957 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_ADDR_LEN);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400958
959 /* SSID */
960 iwe.cmd = SIOCGIWESSID;
961 iwe.u.data.flags = 1;
Holger Schurig243e84e2009-10-22 15:30:47 +0200962 iwe.u.data.length = min((uint32_t) bss->ssid_len, (uint32_t) IEEE80211_MAX_SSID_LEN);
David S. Millerccc58052008-06-16 18:50:49 -0700963 start = iwe_stream_add_point(info, start, stop, &iwe, bss->ssid);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400964
965 /* Mode */
966 iwe.cmd = SIOCGIWMODE;
967 iwe.u.mode = bss->mode;
David S. Millerccc58052008-06-16 18:50:49 -0700968 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_UINT_LEN);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400969
970 /* Frequency */
971 iwe.cmd = SIOCGIWFREQ;
972 iwe.u.freq.m = (long)cfp->freq * 100000;
973 iwe.u.freq.e = 1;
David S. Millerccc58052008-06-16 18:50:49 -0700974 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_FREQ_LEN);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400975
976 /* Add quality statistics */
977 iwe.cmd = IWEVQUAL;
978 iwe.u.qual.updated = IW_QUAL_ALL_UPDATED;
979 iwe.u.qual.level = SCAN_RSSI(bss->rssi);
980
981 rssi = iwe.u.qual.level - MRVDRV_NF_DEFAULT_SCAN_VALUE;
982 iwe.u.qual.qual =
David Woodhousef137e052008-03-03 12:18:59 +0100983 (100 * RSSI_DIFF * RSSI_DIFF - (PERFECT_RSSI - rssi) *
984 (15 * (RSSI_DIFF) + 62 * (PERFECT_RSSI - rssi))) /
985 (RSSI_DIFF * RSSI_DIFF);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400986 if (iwe.u.qual.qual > 100)
987 iwe.u.qual.qual = 100;
988
David Woodhouseaa21c002007-12-08 20:04:36 +0000989 if (priv->NF[TYPE_BEACON][TYPE_NOAVG] == 0) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400990 iwe.u.qual.noise = MRVDRV_NF_DEFAULT_SCAN_VALUE;
991 } else {
David Woodhousef137e052008-03-03 12:18:59 +0100992 iwe.u.qual.noise = CAL_NF(priv->NF[TYPE_BEACON][TYPE_NOAVG]);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400993 }
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400994
Dan Williams80e78ef2007-05-25 22:18:47 -0400995 /* Locally created ad-hoc BSSs won't have beacons if this is the
996 * only station in the adhoc network; so get signal strength
997 * from receive statistics.
998 */
David Woodhousef137e052008-03-03 12:18:59 +0100999 if ((priv->mode == IW_MODE_ADHOC) && priv->adhoccreate
David Woodhouseaa21c002007-12-08 20:04:36 +00001000 && !lbs_ssid_cmp(priv->curbssparams.ssid,
David Woodhousef137e052008-03-03 12:18:59 +01001001 priv->curbssparams.ssid_len,
1002 bss->ssid, bss->ssid_len)) {
Dan Williams80e78ef2007-05-25 22:18:47 -04001003 int snr, nf;
David Woodhouseaa21c002007-12-08 20:04:36 +00001004 snr = priv->SNR[TYPE_RXPD][TYPE_AVG] / AVG_SCALE;
1005 nf = priv->NF[TYPE_RXPD][TYPE_AVG] / AVG_SCALE;
Dan Williams80e78ef2007-05-25 22:18:47 -04001006 iwe.u.qual.level = CAL_RSSI(snr, nf);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001007 }
David S. Millerccc58052008-06-16 18:50:49 -07001008 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_QUAL_LEN);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001009
1010 /* Add encryption capability */
1011 iwe.cmd = SIOCGIWENCODE;
Dan Williams0c9ca6902007-08-02 10:43:44 -04001012 if (bss->capability & WLAN_CAPABILITY_PRIVACY) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001013 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
1014 } else {
1015 iwe.u.data.flags = IW_ENCODE_DISABLED;
1016 }
1017 iwe.u.data.length = 0;
David S. Millerccc58052008-06-16 18:50:49 -07001018 start = iwe_stream_add_point(info, start, stop, &iwe, bss->ssid);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001019
David S. Millerccc58052008-06-16 18:50:49 -07001020 current_val = start + iwe_stream_lcp_len(info);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001021
1022 iwe.cmd = SIOCGIWRATE;
1023 iwe.u.bitrate.fixed = 0;
1024 iwe.u.bitrate.disabled = 0;
1025 iwe.u.bitrate.value = 0;
1026
Roel Kluin430453f2009-07-28 09:59:47 +02001027 for (j = 0; j < ARRAY_SIZE(bss->rates) && bss->rates[j]; j++) {
Dan Williams8c512762007-08-02 11:40:45 -04001028 /* Bit rate given in 500 kb/s units */
1029 iwe.u.bitrate.value = bss->rates[j] * 500000;
David S. Millerccc58052008-06-16 18:50:49 -07001030 current_val = iwe_stream_add_value(info, start, current_val,
1031 stop, &iwe, IW_EV_PARAM_LEN);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001032 }
David Woodhousef137e052008-03-03 12:18:59 +01001033 if ((bss->mode == IW_MODE_ADHOC) && priv->adhoccreate
David Woodhouseaa21c002007-12-08 20:04:36 +00001034 && !lbs_ssid_cmp(priv->curbssparams.ssid,
David Woodhousef137e052008-03-03 12:18:59 +01001035 priv->curbssparams.ssid_len,
1036 bss->ssid, bss->ssid_len)) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001037 iwe.u.bitrate.value = 22 * 500000;
David S. Millerccc58052008-06-16 18:50:49 -07001038 current_val = iwe_stream_add_value(info, start, current_val,
David Woodhousef137e052008-03-03 12:18:59 +01001039 stop, &iwe, IW_EV_PARAM_LEN);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001040 }
1041 /* Check if we added any event */
David S. Millerccc58052008-06-16 18:50:49 -07001042 if ((current_val - start) > iwe_stream_lcp_len(info))
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001043 start = current_val;
1044
1045 memset(&iwe, 0, sizeof(iwe));
1046 if (bss->wpa_ie_len) {
1047 char buf[MAX_WPA_IE_LEN];
1048 memcpy(buf, bss->wpa_ie, bss->wpa_ie_len);
1049 iwe.cmd = IWEVGENIE;
1050 iwe.u.data.length = bss->wpa_ie_len;
David S. Millerccc58052008-06-16 18:50:49 -07001051 start = iwe_stream_add_point(info, start, stop, &iwe, buf);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001052 }
1053
1054 memset(&iwe, 0, sizeof(iwe));
1055 if (bss->rsn_ie_len) {
1056 char buf[MAX_WPA_IE_LEN];
1057 memcpy(buf, bss->rsn_ie, bss->rsn_ie_len);
1058 iwe.cmd = IWEVGENIE;
1059 iwe.u.data.length = bss->rsn_ie_len;
David S. Millerccc58052008-06-16 18:50:49 -07001060 start = iwe_stream_add_point(info, start, stop, &iwe, buf);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001061 }
1062
Dan Williams00af0152007-08-02 13:14:56 -04001063 if (bss->mesh) {
1064 char custom[MAX_CUSTOM_LEN];
1065 char *p = custom;
1066
1067 iwe.cmd = IWEVCUSTOM;
David Woodhousef137e052008-03-03 12:18:59 +01001068 p += snprintf(p, MAX_CUSTOM_LEN, "mesh-type: olpc");
Dan Williams00af0152007-08-02 13:14:56 -04001069 iwe.u.data.length = p - custom;
1070 if (iwe.u.data.length)
David S. Millerccc58052008-06-16 18:50:49 -07001071 start = iwe_stream_add_point(info, start, stop,
1072 &iwe, custom);
Dan Williams00af0152007-08-02 13:14:56 -04001073 }
1074
Holger Schurige56188a2007-10-09 14:15:19 +02001075out:
1076 lbs_deb_leave_args(LBS_DEB_SCAN, "start %p", start);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001077 return start;
1078}
1079
Holger Schurigffd074f2007-12-07 16:52:10 +01001080
1081/**
1082 * @brief Handle Scan Network ioctl
1083 *
1084 * @param dev A pointer to net_device structure
1085 * @param info A pointer to iw_request_info structure
1086 * @param vwrq A pointer to iw_param structure
1087 * @param extra A pointer to extra data buf
1088 *
1089 * @return 0 --success, otherwise fail
1090 */
1091int lbs_set_scan(struct net_device *dev, struct iw_request_info *info,
Holger Schurig52933d82008-03-05 07:05:32 +01001092 union iwreq_data *wrqu, char *extra)
Holger Schurigffd074f2007-12-07 16:52:10 +01001093{
John W. Linville9387b7c2008-09-30 20:59:05 -04001094 DECLARE_SSID_BUF(ssid);
Kiran Divekarab65f642009-02-19 19:32:39 -05001095 struct lbs_private *priv = dev->ml_priv;
Holger Schurig52933d82008-03-05 07:05:32 +01001096 int ret = 0;
Holger Schurigffd074f2007-12-07 16:52:10 +01001097
Holger Schurig52933d82008-03-05 07:05:32 +01001098 lbs_deb_enter(LBS_DEB_WEXT);
Holger Schurigffd074f2007-12-07 16:52:10 +01001099
Dan Williamsd5db2df2008-08-21 17:51:07 -04001100 if (!priv->radio_on) {
1101 ret = -EINVAL;
1102 goto out;
1103 }
1104
Holger Schurig52933d82008-03-05 07:05:32 +01001105 if (!netif_running(dev)) {
1106 ret = -ENETDOWN;
1107 goto out;
1108 }
Holger Schurigffd074f2007-12-07 16:52:10 +01001109
1110 /* mac80211 does this:
1111 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Holger Schurig52933d82008-03-05 07:05:32 +01001112 if (sdata->type != IEEE80211_IF_TYPE_xxx) {
1113 ret = -EOPNOTSUPP;
1114 goto out;
1115 }
1116 */
Holger Schurigffd074f2007-12-07 16:52:10 +01001117
1118 if (wrqu->data.length == sizeof(struct iw_scan_req) &&
1119 wrqu->data.flags & IW_SCAN_THIS_ESSID) {
Holger Schurig52933d82008-03-05 07:05:32 +01001120 struct iw_scan_req *req = (struct iw_scan_req *)extra;
1121 priv->scan_ssid_len = req->essid_len;
1122 memcpy(priv->scan_ssid, req->essid, priv->scan_ssid_len);
1123 lbs_deb_wext("set_scan, essid '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04001124 print_ssid(ssid, priv->scan_ssid, priv->scan_ssid_len));
Holger Schurig52933d82008-03-05 07:05:32 +01001125 } else {
1126 priv->scan_ssid_len = 0;
Holger Schurigffd074f2007-12-07 16:52:10 +01001127 }
Holger Schurigffd074f2007-12-07 16:52:10 +01001128
1129 if (!delayed_work_pending(&priv->scan_work))
1130 queue_delayed_work(priv->work_thread, &priv->scan_work,
David Woodhousef137e052008-03-03 12:18:59 +01001131 msecs_to_jiffies(50));
Holger Schurigffd074f2007-12-07 16:52:10 +01001132 /* set marker that currently a scan is taking place */
Holger Schurig8816edc2008-01-28 17:28:05 +01001133 priv->scan_channel = -1;
Holger Schurigffd074f2007-12-07 16:52:10 +01001134
David Woodhouseaa21c002007-12-08 20:04:36 +00001135 if (priv->surpriseremoved)
Holger Schurig52933d82008-03-05 07:05:32 +01001136 ret = -EIO;
Holger Schurigffd074f2007-12-07 16:52:10 +01001137
Holger Schurig52933d82008-03-05 07:05:32 +01001138out:
1139 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
1140 return ret;
Holger Schurigffd074f2007-12-07 16:52:10 +01001141}
1142
1143
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001144/**
Holger Schurige56188a2007-10-09 14:15:19 +02001145 * @brief Handle Retrieve scan table ioctl
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001146 *
1147 * @param dev A pointer to net_device structure
1148 * @param info A pointer to iw_request_info structure
1149 * @param dwrq A pointer to iw_point structure
1150 * @param extra A pointer to extra data buf
1151 *
1152 * @return 0 --success, otherwise fail
1153 */
Holger Schurig10078322007-11-15 18:05:47 -05001154int lbs_get_scan(struct net_device *dev, struct iw_request_info *info,
David Woodhousef137e052008-03-03 12:18:59 +01001155 struct iw_point *dwrq, char *extra)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001156{
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001157#define SCAN_ITEM_SIZE 128
Kiran Divekarab65f642009-02-19 19:32:39 -05001158 struct lbs_private *priv = dev->ml_priv;
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001159 int err = 0;
1160 char *ev = extra;
1161 char *stop = ev + dwrq->length;
David Woodhousef137e052008-03-03 12:18:59 +01001162 struct bss_descriptor *iter_bss;
1163 struct bss_descriptor *safe;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001164
Holger Schurig52933d82008-03-05 07:05:32 +01001165 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001166
Holger Schurigffd074f2007-12-07 16:52:10 +01001167 /* iwlist should wait until the current scan is finished */
Holger Schurig8816edc2008-01-28 17:28:05 +01001168 if (priv->scan_channel)
Holger Schurigffd074f2007-12-07 16:52:10 +01001169 return -EAGAIN;
1170
Dan Williams80e78ef2007-05-25 22:18:47 -04001171 /* Update RSSI if current BSS is a locally created ad-hoc BSS */
Amitkumar Karwarc0bbd572009-10-08 19:38:45 -07001172 if ((priv->mode == IW_MODE_ADHOC) && priv->adhoccreate) {
1173 err = lbs_prepare_and_send_command(priv, CMD_802_11_RSSI, 0,
1174 CMD_OPTION_WAITFORRSP, 0, NULL);
1175 if (err)
1176 goto out;
1177 }
Dan Williams80e78ef2007-05-25 22:18:47 -04001178
David Woodhouseaa21c002007-12-08 20:04:36 +00001179 mutex_lock(&priv->lock);
1180 list_for_each_entry_safe (iter_bss, safe, &priv->network_list, list) {
David Woodhousef137e052008-03-03 12:18:59 +01001181 char *next_ev;
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001182 unsigned long stale_time;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001183
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001184 if (stop - ev < SCAN_ITEM_SIZE) {
1185 err = -E2BIG;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001186 break;
1187 }
1188
Luis Carlos Cobo1e838bf2007-08-02 10:51:27 -04001189 /* For mesh device, list only mesh networks */
1190 if (dev == priv->mesh_dev && !iter_bss->mesh)
1191 continue;
1192
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001193 /* Prune old an old scan result */
1194 stale_time = iter_bss->last_scanned + DEFAULT_MAX_SCAN_AGE;
1195 if (time_after(jiffies, stale_time)) {
David Woodhousef137e052008-03-03 12:18:59 +01001196 list_move_tail(&iter_bss->list, &priv->network_free_list);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001197 clear_bss_descriptor(iter_bss);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001198 continue;
1199 }
1200
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001201 /* Translate to WE format this entry */
David S. Millerccc58052008-06-16 18:50:49 -07001202 next_ev = lbs_translate_scan(priv, info, ev, stop, iter_bss);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001203 if (next_ev == NULL)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001204 continue;
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001205 ev = next_ev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001206 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001207 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001208
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001209 dwrq->length = (ev - extra);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001210 dwrq->flags = 0;
Amitkumar Karwarc0bbd572009-10-08 19:38:45 -07001211out:
Holger Schurig52933d82008-03-05 07:05:32 +01001212 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", err);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001213 return err;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001214}
1215
Holger Schurige56188a2007-10-09 14:15:19 +02001216
1217
1218
1219/*********************************************************************/
1220/* */
1221/* Command execution */
1222/* */
1223/*********************************************************************/
1224
1225
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001226/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001227 * @brief This function handles the command response of scan
1228 *
Holger Schurige56188a2007-10-09 14:15:19 +02001229 * Called from handle_cmd_response() in cmdrespc.
1230 *
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001231 * The response buffer for the scan command has the following
1232 * memory layout:
1233 *
1234 * .-----------------------------------------------------------.
1235 * | header (4 * sizeof(u16)): Standard command response hdr |
1236 * .-----------------------------------------------------------.
1237 * | bufsize (u16) : sizeof the BSS Description data |
1238 * .-----------------------------------------------------------.
1239 * | NumOfSet (u8) : Number of BSS Descs returned |
1240 * .-----------------------------------------------------------.
1241 * | BSSDescription data (variable, size given in bufsize) |
1242 * .-----------------------------------------------------------.
1243 * | TLV data (variable, size calculated using header->size, |
1244 * | bufsize and sizeof the fixed fields above) |
1245 * .-----------------------------------------------------------.
1246 *
Holger Schurig69f90322007-11-23 15:43:44 +01001247 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001248 * @param resp A pointer to cmd_ds_command
1249 *
1250 * @return 0 or -1
1251 */
David Woodhousefa62f992008-03-03 12:18:03 +01001252static int lbs_ret_80211_scan(struct lbs_private *priv, unsigned long dummy,
1253 struct cmd_header *resp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001254{
David Woodhousefa62f992008-03-03 12:18:03 +01001255 struct cmd_ds_802_11_scan_rsp *scanresp = (void *)resp;
David Woodhousef137e052008-03-03 12:18:59 +01001256 struct bss_descriptor *iter_bss;
1257 struct bss_descriptor *safe;
David Woodhousefa62f992008-03-03 12:18:03 +01001258 uint8_t *bssinfo;
1259 uint16_t scanrespsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001260 int bytesleft;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001261 int idx;
1262 int tlvbufsize;
Holger Schurig9012b282007-05-25 11:27:16 -04001263 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001264
Holger Schurige56188a2007-10-09 14:15:19 +02001265 lbs_deb_enter(LBS_DEB_SCAN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001266
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001267 /* Prune old entries from scan table */
David Woodhouseaa21c002007-12-08 20:04:36 +00001268 list_for_each_entry_safe (iter_bss, safe, &priv->network_list, list) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001269 unsigned long stale_time = iter_bss->last_scanned + DEFAULT_MAX_SCAN_AGE;
1270 if (time_before(jiffies, stale_time))
1271 continue;
David Woodhouseaa21c002007-12-08 20:04:36 +00001272 list_move_tail (&iter_bss->list, &priv->network_free_list);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001273 clear_bss_descriptor(iter_bss);
1274 }
1275
David Woodhousefa62f992008-03-03 12:18:03 +01001276 if (scanresp->nr_sets > MAX_NETWORK_COUNT) {
1277 lbs_deb_scan("SCAN_RESP: too many scan results (%d, max %d)\n",
1278 scanresp->nr_sets, MAX_NETWORK_COUNT);
Holger Schurig9012b282007-05-25 11:27:16 -04001279 ret = -1;
1280 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001281 }
1282
Cliff Cai2c5b9e512009-05-27 14:03:09 -04001283 bytesleft = get_unaligned_le16(&scanresp->bssdescriptsize);
Holger Schurig9012b282007-05-25 11:27:16 -04001284 lbs_deb_scan("SCAN_RESP: bssdescriptsize %d\n", bytesleft);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001285
David Woodhousee7240ac2007-12-11 17:54:36 -05001286 scanrespsize = le16_to_cpu(resp->size);
David Woodhousefa62f992008-03-03 12:18:03 +01001287 lbs_deb_scan("SCAN_RESP: scan results %d\n", scanresp->nr_sets);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001288
David Woodhousefa62f992008-03-03 12:18:03 +01001289 bssinfo = scanresp->bssdesc_and_tlvbuffer;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001290
1291 /* The size of the TLV buffer is equal to the entire command response
1292 * size (scanrespsize) minus the fixed fields (sizeof()'s), the
1293 * BSS Descriptions (bssdescriptsize as bytesLef) and the command
Holger Schurig8ec97cc2009-10-22 15:30:55 +02001294 * response header (sizeof(struct cmd_header))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001295 */
David Woodhousefa62f992008-03-03 12:18:03 +01001296 tlvbufsize = scanrespsize - (bytesleft + sizeof(scanresp->bssdescriptsize)
1297 + sizeof(scanresp->nr_sets)
Holger Schurig8ec97cc2009-10-22 15:30:55 +02001298 + sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001299
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001300 /*
David Woodhousefa62f992008-03-03 12:18:03 +01001301 * Process each scan response returned (scanresp->nr_sets). Save
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001302 * the information in the newbssentry and then insert into the
1303 * driver scan table either as an update to an existing entry
1304 * or as an addition at the end of the table
1305 */
David Woodhousefa62f992008-03-03 12:18:03 +01001306 for (idx = 0; idx < scanresp->nr_sets && bytesleft; idx++) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001307 struct bss_descriptor new;
David Woodhousefa62f992008-03-03 12:18:03 +01001308 struct bss_descriptor *found = NULL;
1309 struct bss_descriptor *oldest = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001310
1311 /* Process the data fields and IEs returned for this BSS */
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001312 memset(&new, 0, sizeof (struct bss_descriptor));
David Woodhousefa62f992008-03-03 12:18:03 +01001313 if (lbs_process_bss(&new, &bssinfo, &bytesleft) != 0) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001314 /* error parsing the scan response, skipped */
1315 lbs_deb_scan("SCAN_RESP: process_bss returned ERROR\n");
1316 continue;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001317 }
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001318
1319 /* Try to find this bss in the scan table */
David Woodhouseaa21c002007-12-08 20:04:36 +00001320 list_for_each_entry (iter_bss, &priv->network_list, list) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001321 if (is_same_network(iter_bss, &new)) {
1322 found = iter_bss;
1323 break;
1324 }
1325
1326 if ((oldest == NULL) ||
1327 (iter_bss->last_scanned < oldest->last_scanned))
1328 oldest = iter_bss;
1329 }
1330
1331 if (found) {
1332 /* found, clear it */
1333 clear_bss_descriptor(found);
David Woodhouseaa21c002007-12-08 20:04:36 +00001334 } else if (!list_empty(&priv->network_free_list)) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001335 /* Pull one from the free list */
David Woodhouseaa21c002007-12-08 20:04:36 +00001336 found = list_entry(priv->network_free_list.next,
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001337 struct bss_descriptor, list);
David Woodhouseaa21c002007-12-08 20:04:36 +00001338 list_move_tail(&found->list, &priv->network_list);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001339 } else if (oldest) {
1340 /* If there are no more slots, expire the oldest */
1341 found = oldest;
1342 clear_bss_descriptor(found);
David Woodhouseaa21c002007-12-08 20:04:36 +00001343 list_move_tail(&found->list, &priv->network_list);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001344 } else {
1345 continue;
1346 }
1347
Johannes Berge1749612008-10-27 15:59:26 -07001348 lbs_deb_scan("SCAN_RESP: BSSID %pM\n", new.bssid);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001349
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001350 /* Copy the locally created newbssentry to the scan table */
1351 memcpy(found, &new, offsetof(struct bss_descriptor, list));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001352 }
1353
Holger Schurig9012b282007-05-25 11:27:16 -04001354 ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001355
Holger Schurig9012b282007-05-25 11:27:16 -04001356done:
1357 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
1358 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001359}