blob: 7881890a4e98f7e3ce75dbee269bee456507d99b [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>
Dan Williamsfcdb53d2007-05-25 16:15:56 -04008#include <linux/etherdevice.h>
Vladimir Davydovac630c22007-09-06 21:45:36 -04009#include <asm/unaligned.h>
10
John W. Linville7e272fc2008-09-24 18:13:14 -040011#include <net/lib80211.h>
12
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020013#include "host.h"
14#include "decl.h"
15#include "dev.h"
16#include "scan.h"
David Woodhousefa62f992008-03-03 12:18:03 +010017#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020018
19//! Approximate amount of data needed to pass a scan result back to iwlist
20#define MAX_SCAN_CELL_SIZE (IW_EV_ADDR_LEN \
21 + IW_ESSID_MAX_SIZE \
22 + IW_EV_UINT_LEN \
23 + IW_EV_FREQ_LEN \
24 + IW_EV_QUAL_LEN \
25 + IW_ESSID_MAX_SIZE \
26 + IW_EV_PARAM_LEN \
27 + 40) /* 40 for WPAIE */
28
29//! Memory needed to store a max sized channel List TLV for a firmware scan
30#define CHAN_TLV_MAX_SIZE (sizeof(struct mrvlietypesheader) \
31 + (MRVDRV_MAX_CHANNELS_PER_SCAN \
32 * sizeof(struct chanscanparamset)))
33
34//! Memory needed to store a max number/size SSID TLV for a firmware scan
35#define SSID_TLV_MAX_SIZE (1 * sizeof(struct mrvlietypes_ssidparamset))
36
David Woodhousefa62f992008-03-03 12:18:03 +010037//! Maximum memory needed for a cmd_ds_802_11_scan with all TLVs at max
38#define MAX_SCAN_CFG_ALLOC (sizeof(struct cmd_ds_802_11_scan) \
39 + CHAN_TLV_MAX_SIZE + SSID_TLV_MAX_SIZE)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020040
41//! The maximum number of channels the firmware can scan per command
42#define MRVDRV_MAX_CHANNELS_PER_SCAN 14
43
44/**
45 * @brief Number of channels to scan per firmware scan command issuance.
46 *
47 * Number restricted to prevent hitting the limit on the amount of scan data
48 * returned in a single firmware scan command.
49 */
50#define MRVDRV_CHANNELS_PER_SCAN_CMD 4
51
52//! Scan time specified in the channel TLV for each channel for passive scans
53#define MRVDRV_PASSIVE_SCAN_CHAN_TIME 100
54
55//! Scan time specified in the channel TLV for each channel for active scans
56#define MRVDRV_ACTIVE_SCAN_CHAN_TIME 100
57
David Woodhousefa62f992008-03-03 12:18:03 +010058static int lbs_ret_80211_scan(struct lbs_private *priv, unsigned long dummy,
59 struct cmd_header *resp);
Holger Schurige56188a2007-10-09 14:15:19 +020060
61/*********************************************************************/
62/* */
63/* Misc helper functions */
64/* */
65/*********************************************************************/
66
Holger Schurig23ff5032008-01-28 17:27:03 +010067/**
68 * @brief Unsets the MSB on basic rates
69 *
70 * Scan through an array and unset the MSB for basic data rates.
71 *
72 * @param rates buffer of data rates
73 * @param len size of buffer
74 */
75static void lbs_unset_basic_rate_flags(u8 *rates, size_t len)
76{
77 int i;
78
79 for (i = 0; i < len; i++)
80 rates[i] &= 0x7f;
81}
82
83
David Woodhousef137e052008-03-03 12:18:59 +010084static inline void clear_bss_descriptor(struct bss_descriptor *bss)
Dan Williamsfcdb53d2007-05-25 16:15:56 -040085{
86 /* Don't blow away ->list, just BSS data */
87 memset(bss, 0, offsetof(struct bss_descriptor, list));
88}
89
Holger Schurigffd074f2007-12-07 16:52:10 +010090/**
91 * @brief Compare two SSIDs
92 *
93 * @param ssid1 A pointer to ssid to compare
94 * @param ssid2 A pointer to ssid to compare
95 *
96 * @return 0: ssid is same, otherwise is different
97 */
David Woodhousef137e052008-03-03 12:18:59 +010098int lbs_ssid_cmp(uint8_t *ssid1, uint8_t ssid1_len, uint8_t *ssid2,
99 uint8_t ssid2_len)
Holger Schurigffd074f2007-12-07 16:52:10 +0100100{
101 if (ssid1_len != ssid2_len)
102 return -1;
103
104 return memcmp(ssid1, ssid2, ssid1_len);
105}
106
Holger Schurigffd074f2007-12-07 16:52:10 +0100107static inline int is_same_network(struct bss_descriptor *src,
108 struct bss_descriptor *dst)
109{
110 /* A network is only a duplicate if the channel, BSSID, and ESSID
111 * all match. We treat all <hidden> with the same BSSID and channel
112 * as one network */
113 return ((src->ssid_len == dst->ssid_len) &&
114 (src->channel == dst->channel) &&
115 !compare_ether_addr(src->bssid, dst->bssid) &&
116 !memcmp(src->ssid, dst->ssid, src->ssid_len));
117}
118
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200119
Holger Schurige56188a2007-10-09 14:15:19 +0200120
121
Holger Schurige56188a2007-10-09 14:15:19 +0200122/*********************************************************************/
123/* */
124/* Main scanning support */
125/* */
126/*********************************************************************/
127
Holger Schurige56188a2007-10-09 14:15:19 +0200128/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200129 * @brief Create a channel list for the driver to scan based on region info
130 *
Holger Schurig10078322007-11-15 18:05:47 -0500131 * Only used from lbs_scan_setup_scan_config()
Holger Schurige56188a2007-10-09 14:15:19 +0200132 *
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200133 * Use the driver region/band information to construct a comprehensive list
134 * of channels to scan. This routine is used for any scan that is not
135 * provided a specific channel list to scan.
136 *
Holger Schurig69f90322007-11-23 15:43:44 +0100137 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200138 * @param scanchanlist Output parameter: resulting channel list to scan
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200139 *
140 * @return void
141 */
Holger Schurigffd074f2007-12-07 16:52:10 +0100142static int lbs_scan_create_channel_list(struct lbs_private *priv,
Holger Schurig52933d82008-03-05 07:05:32 +0100143 struct chanscanparamset *scanchanlist)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200144{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200145 struct region_channel *scanregion;
146 struct chan_freq_power *cfp;
147 int rgnidx;
148 int chanidx;
149 int nextchan;
David Woodhousef137e052008-03-03 12:18:59 +0100150 uint8_t scantype;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200151
152 chanidx = 0;
153
154 /* Set the default scan type to the user specified type, will later
155 * be changed to passive on a per channel basis if restricted by
156 * regulatory requirements (11d or 11h)
157 */
Holger Schurig4f2fdaa2007-08-02 13:12:27 -0400158 scantype = CMD_SCAN_TYPE_ACTIVE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200159
David Woodhouseaa21c002007-12-08 20:04:36 +0000160 for (rgnidx = 0; rgnidx < ARRAY_SIZE(priv->region_channel); rgnidx++) {
David Woodhousef137e052008-03-03 12:18:59 +0100161 if (priv->enable11d && (priv->connect_status != LBS_CONNECTED)
162 && (priv->mesh_connect_status != LBS_CONNECTED)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200163 /* Scan all the supported chan for the first scan */
David Woodhouseaa21c002007-12-08 20:04:36 +0000164 if (!priv->universal_channel[rgnidx].valid)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200165 continue;
David Woodhouseaa21c002007-12-08 20:04:36 +0000166 scanregion = &priv->universal_channel[rgnidx];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200167
168 /* clear the parsed_region_chan for the first scan */
David Woodhouseaa21c002007-12-08 20:04:36 +0000169 memset(&priv->parsed_region_chan, 0x00,
170 sizeof(priv->parsed_region_chan));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200171 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +0000172 if (!priv->region_channel[rgnidx].valid)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200173 continue;
David Woodhouseaa21c002007-12-08 20:04:36 +0000174 scanregion = &priv->region_channel[rgnidx];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200175 }
176
David Woodhousef137e052008-03-03 12:18:59 +0100177 for (nextchan = 0; nextchan < scanregion->nrcfp; nextchan++, chanidx++) {
178 struct chanscanparamset *chan = &scanchanlist[chanidx];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200179
180 cfp = scanregion->CFP + nextchan;
181
David Woodhousef137e052008-03-03 12:18:59 +0100182 if (priv->enable11d)
183 scantype = lbs_get_scan_type_11d(cfp->channel,
184 &priv->parsed_region_chan);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200185
David Woodhousef137e052008-03-03 12:18:59 +0100186 if (scanregion->band == BAND_B || scanregion->band == BAND_G)
187 chan->radiotype = CMD_SCAN_RADIO_TYPE_BG;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200188
Dan Williams0aef64d2007-08-02 11:31:18 -0400189 if (scantype == CMD_SCAN_TYPE_PASSIVE) {
David Woodhousef137e052008-03-03 12:18:59 +0100190 chan->maxscantime = cpu_to_le16(MRVDRV_PASSIVE_SCAN_CHAN_TIME);
191 chan->chanscanmode.passivescan = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200192 } else {
David Woodhousef137e052008-03-03 12:18:59 +0100193 chan->maxscantime = cpu_to_le16(MRVDRV_ACTIVE_SCAN_CHAN_TIME);
194 chan->chanscanmode.passivescan = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200195 }
196
David Woodhousef137e052008-03-03 12:18:59 +0100197 chan->channumber = cfp->channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200198 }
199 }
Holger Schurigffd074f2007-12-07 16:52:10 +0100200 return chanidx;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200201}
202
Holger Schurige56188a2007-10-09 14:15:19 +0200203/*
Holger Schurigffd074f2007-12-07 16:52:10 +0100204 * Add SSID TLV of the form:
205 *
206 * TLV-ID SSID 00 00
207 * length 06 00
208 * ssid 4d 4e 54 45 53 54
209 */
Holger Schurig52933d82008-03-05 07:05:32 +0100210static int lbs_scan_add_ssid_tlv(struct lbs_private *priv, u8 *tlv)
Dan Williamseb8f7332007-05-25 16:25:21 -0400211{
David Woodhousef137e052008-03-03 12:18:59 +0100212 struct mrvlietypes_ssidparamset *ssid_tlv = (void *)tlv;
213
Holger Schurigffd074f2007-12-07 16:52:10 +0100214 ssid_tlv->header.type = cpu_to_le16(TLV_TYPE_SSID);
Holger Schurig52933d82008-03-05 07:05:32 +0100215 ssid_tlv->header.len = cpu_to_le16(priv->scan_ssid_len);
216 memcpy(ssid_tlv->ssid, priv->scan_ssid, priv->scan_ssid_len);
217 return sizeof(ssid_tlv->header) + priv->scan_ssid_len;
Holger Schurigffd074f2007-12-07 16:52:10 +0100218}
Dan Williamseb8f7332007-05-25 16:25:21 -0400219
Holger Schurigffd074f2007-12-07 16:52:10 +0100220/*
221 * Add CHANLIST TLV of the form
222 *
223 * TLV-ID CHANLIST 01 01
224 * length 5b 00
225 * channel 1 00 01 00 00 00 64 00
226 * radio type 00
227 * channel 01
228 * scan type 00
229 * min scan time 00 00
230 * max scan time 64 00
231 * channel 2 00 02 00 00 00 64 00
232 * channel 3 00 03 00 00 00 64 00
233 * channel 4 00 04 00 00 00 64 00
234 * channel 5 00 05 00 00 00 64 00
235 * channel 6 00 06 00 00 00 64 00
236 * channel 7 00 07 00 00 00 64 00
237 * channel 8 00 08 00 00 00 64 00
238 * channel 9 00 09 00 00 00 64 00
239 * channel 10 00 0a 00 00 00 64 00
240 * channel 11 00 0b 00 00 00 64 00
241 * channel 12 00 0c 00 00 00 64 00
242 * channel 13 00 0d 00 00 00 64 00
243 *
244 */
David Woodhousef137e052008-03-03 12:18:59 +0100245static int lbs_scan_add_chanlist_tlv(uint8_t *tlv,
246 struct chanscanparamset *chan_list,
247 int chan_count)
Holger Schurigffd074f2007-12-07 16:52:10 +0100248{
David Woodhousef137e052008-03-03 12:18:59 +0100249 size_t size = sizeof(struct chanscanparamset) *chan_count;
250 struct mrvlietypes_chanlistparamset *chan_tlv = (void *)tlv;
Dan Williamseb8f7332007-05-25 16:25:21 -0400251
Holger Schurigffd074f2007-12-07 16:52:10 +0100252 chan_tlv->header.type = cpu_to_le16(TLV_TYPE_CHANLIST);
253 memcpy(chan_tlv->chanscanparam, chan_list, size);
254 chan_tlv->header.len = cpu_to_le16(size);
255 return sizeof(chan_tlv->header) + size;
256}
Dan Williamseb8f7332007-05-25 16:25:21 -0400257
Holger Schurigffd074f2007-12-07 16:52:10 +0100258/*
259 * Add RATES TLV of the form
260 *
261 * TLV-ID RATES 01 00
262 * length 0e 00
263 * rates 82 84 8b 96 0c 12 18 24 30 48 60 6c
264 *
265 * The rates are in lbs_bg_rates[], but for the 802.11b
266 * rates the high bit isn't set.
267 */
David Woodhousef137e052008-03-03 12:18:59 +0100268static int lbs_scan_add_rates_tlv(uint8_t *tlv)
Holger Schurigffd074f2007-12-07 16:52:10 +0100269{
270 int i;
David Woodhousef137e052008-03-03 12:18:59 +0100271 struct mrvlietypes_ratesparamset *rate_tlv = (void *)tlv;
Holger Schurigffd074f2007-12-07 16:52:10 +0100272
273 rate_tlv->header.type = cpu_to_le16(TLV_TYPE_RATES);
274 tlv += sizeof(rate_tlv->header);
275 for (i = 0; i < MAX_RATES; i++) {
276 *tlv = lbs_bg_rates[i];
277 if (*tlv == 0)
278 break;
279 /* This code makes sure that the 802.11b rates (1 MBit/s, 2
280 MBit/s, 5.5 MBit/s and 11 MBit/s get's the high bit set.
281 Note that the values are MBit/s * 2, to mark them as
282 basic rates so that the firmware likes it better */
283 if (*tlv == 0x02 || *tlv == 0x04 ||
284 *tlv == 0x0b || *tlv == 0x16)
285 *tlv |= 0x80;
286 tlv++;
Dan Williamseb8f7332007-05-25 16:25:21 -0400287 }
Holger Schurigffd074f2007-12-07 16:52:10 +0100288 rate_tlv->header.len = cpu_to_le16(i);
289 return sizeof(rate_tlv->header) + i;
290}
Dan Williamseb8f7332007-05-25 16:25:21 -0400291
Holger Schurigffd074f2007-12-07 16:52:10 +0100292/*
293 * Generate the CMD_802_11_SCAN command with the proper tlv
294 * for a bunch of channels.
295 */
David Woodhousefa62f992008-03-03 12:18:03 +0100296static int lbs_do_scan(struct lbs_private *priv, uint8_t bsstype,
Holger Schurig52933d82008-03-05 07:05:32 +0100297 struct chanscanparamset *chan_list, int chan_count)
Holger Schurigffd074f2007-12-07 16:52:10 +0100298{
299 int ret = -ENOMEM;
David Woodhousefa62f992008-03-03 12:18:03 +0100300 struct cmd_ds_802_11_scan *scan_cmd;
301 uint8_t *tlv; /* pointer into our current, growing TLV storage area */
Holger Schurigffd074f2007-12-07 16:52:10 +0100302
David Woodhousefa62f992008-03-03 12:18:03 +0100303 lbs_deb_enter_args(LBS_DEB_SCAN, "bsstype %d, chanlist[].chan %d, chan_count %d",
Holger Schurigc0d43992008-04-29 10:07:56 +0200304 bsstype, chan_list ? chan_list[0].channumber : -1,
305 chan_count);
Holger Schurigffd074f2007-12-07 16:52:10 +0100306
307 /* create the fixed part for scan command */
308 scan_cmd = kzalloc(MAX_SCAN_CFG_ALLOC, GFP_KERNEL);
309 if (scan_cmd == NULL)
Holger Schurige56188a2007-10-09 14:15:19 +0200310 goto out;
David Woodhousefa62f992008-03-03 12:18:03 +0100311
Holger Schurigffd074f2007-12-07 16:52:10 +0100312 tlv = scan_cmd->tlvbuffer;
Holger Schurig52933d82008-03-05 07:05:32 +0100313 /* TODO: do we need to scan for a specific BSSID?
314 memcpy(scan_cmd->bssid, priv->scan_bssid, ETH_ALEN); */
Holger Schurigffd074f2007-12-07 16:52:10 +0100315 scan_cmd->bsstype = bsstype;
Dan Williamseb8f7332007-05-25 16:25:21 -0400316
Holger Schurigffd074f2007-12-07 16:52:10 +0100317 /* add TLVs */
Holger Schurig52933d82008-03-05 07:05:32 +0100318 if (priv->scan_ssid_len)
319 tlv += lbs_scan_add_ssid_tlv(priv, tlv);
Holger Schurigffd074f2007-12-07 16:52:10 +0100320 if (chan_list && chan_count)
321 tlv += lbs_scan_add_chanlist_tlv(tlv, chan_list, chan_count);
322 tlv += lbs_scan_add_rates_tlv(tlv);
Dan Williamseb8f7332007-05-25 16:25:21 -0400323
Holger Schurigffd074f2007-12-07 16:52:10 +0100324 /* This is the final data we are about to send */
David Woodhousefa62f992008-03-03 12:18:03 +0100325 scan_cmd->hdr.size = cpu_to_le16(tlv - (uint8_t *)scan_cmd);
326 lbs_deb_hex(LBS_DEB_SCAN, "SCAN_CMD", (void *)scan_cmd,
327 sizeof(*scan_cmd));
Holger Schurigffd074f2007-12-07 16:52:10 +0100328 lbs_deb_hex(LBS_DEB_SCAN, "SCAN_TLV", scan_cmd->tlvbuffer,
David Woodhousefa62f992008-03-03 12:18:03 +0100329 tlv - scan_cmd->tlvbuffer);
Dan Williamseb8f7332007-05-25 16:25:21 -0400330
David Woodhousefa62f992008-03-03 12:18:03 +0100331 ret = __lbs_cmd(priv, CMD_802_11_SCAN, &scan_cmd->hdr,
332 le16_to_cpu(scan_cmd->hdr.size),
333 lbs_ret_80211_scan, 0);
334
Holger Schurige56188a2007-10-09 14:15:19 +0200335out:
Holger Schurigffd074f2007-12-07 16:52:10 +0100336 kfree(scan_cmd);
337 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
338 return ret;
Dan Williamseb8f7332007-05-25 16:25:21 -0400339}
340
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200341/**
342 * @brief Internal function used to start a scan based on an input config
343 *
344 * Use the input user scan configuration information when provided in
345 * order to send the appropriate scan commands to firmware to populate or
346 * update the internal driver scan table
347 *
Holger Schurig69f90322007-11-23 15:43:44 +0100348 * @param priv A pointer to struct lbs_private structure
Holger Schurig52933d82008-03-05 07:05:32 +0100349 * @param full_scan Do a full-scan (blocking)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200350 *
351 * @return 0 or < 0 if error
352 */
Holger Schurig245bf202008-04-02 16:27:42 +0200353int lbs_scan_networks(struct lbs_private *priv, int full_scan)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200354{
Holger Schurigffd074f2007-12-07 16:52:10 +0100355 int ret = -ENOMEM;
356 struct chanscanparamset *chan_list;
357 struct chanscanparamset *curr_chans;
358 int chan_count;
David Woodhousef137e052008-03-03 12:18:59 +0100359 uint8_t bsstype = CMD_BSS_TYPE_ANY;
Holger Schurigffd074f2007-12-07 16:52:10 +0100360 int numchannels = MRVDRV_CHANNELS_PER_SCAN_CMD;
Holger Schurigffd074f2007-12-07 16:52:10 +0100361 union iwreq_data wrqu;
Dan Williamsf8f55102007-05-30 10:12:55 -0400362#ifdef CONFIG_LIBERTAS_DEBUG
Holger Schurigffd074f2007-12-07 16:52:10 +0100363 struct bss_descriptor *iter;
Dan Williamsf8f55102007-05-30 10:12:55 -0400364 int i = 0;
365#endif
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200366
David Woodhousef137e052008-03-03 12:18:59 +0100367 lbs_deb_enter_args(LBS_DEB_SCAN, "full_scan %d", full_scan);
Dan Williams2afc0c52007-08-02 13:19:04 -0400368
369 /* Cancel any partial outstanding partial scans if this scan
370 * is a full scan.
371 */
372 if (full_scan && delayed_work_pending(&priv->scan_work))
373 cancel_delayed_work(&priv->scan_work);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200374
Holger Schurig52933d82008-03-05 07:05:32 +0100375 /* User-specified bsstype or channel list
376 TODO: this can be implemented if some user-space application
377 need the feature. Formerly, it was accessible from debugfs,
378 but then nowhere used.
Holger Schurigffd074f2007-12-07 16:52:10 +0100379 if (user_cfg) {
380 if (user_cfg->bsstype)
Holger Schurig52933d82008-03-05 07:05:32 +0100381 bsstype = user_cfg->bsstype;
382 } */
383
384 lbs_deb_scan("numchannels %d, bsstype %d\n", numchannels, bsstype);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200385
Holger Schurigffd074f2007-12-07 16:52:10 +0100386 /* Create list of channels to scan */
387 chan_list = kzalloc(sizeof(struct chanscanparamset) *
David Woodhousef137e052008-03-03 12:18:59 +0100388 LBS_IOCTL_USER_SCAN_CHAN_MAX, GFP_KERNEL);
Holger Schurigffd074f2007-12-07 16:52:10 +0100389 if (!chan_list) {
390 lbs_pr_alert("SCAN: chan_list empty\n");
391 goto out;
392 }
393
394 /* We want to scan all channels */
Holger Schurig52933d82008-03-05 07:05:32 +0100395 chan_count = lbs_scan_create_channel_list(priv, chan_list);
Holger Schurigffd074f2007-12-07 16:52:10 +0100396
397 netif_stop_queue(priv->dev);
398 netif_carrier_off(priv->dev);
399 if (priv->mesh_dev) {
David Woodhousea27b9f92007-12-12 00:41:51 -0500400 netif_stop_queue(priv->mesh_dev);
401 netif_carrier_off(priv->mesh_dev);
Holger Schurigffd074f2007-12-07 16:52:10 +0100402 }
403
404 /* Prepare to continue an interrupted scan */
Holger Schurig8816edc2008-01-28 17:28:05 +0100405 lbs_deb_scan("chan_count %d, scan_channel %d\n",
406 chan_count, priv->scan_channel);
Holger Schurigffd074f2007-12-07 16:52:10 +0100407 curr_chans = chan_list;
408 /* advance channel list by already-scanned-channels */
Holger Schurig8816edc2008-01-28 17:28:05 +0100409 if (priv->scan_channel > 0) {
410 curr_chans += priv->scan_channel;
411 chan_count -= priv->scan_channel;
Holger Schurigffd074f2007-12-07 16:52:10 +0100412 }
413
414 /* Send scan command(s)
415 * numchannels contains the number of channels we should maximally scan
416 * chan_count is the total number of channels to scan
417 */
418
419 while (chan_count) {
420 int to_scan = min(numchannels, chan_count);
421 lbs_deb_scan("scanning %d of %d channels\n",
David Woodhousef137e052008-03-03 12:18:59 +0100422 to_scan, chan_count);
Holger Schurigffd074f2007-12-07 16:52:10 +0100423 ret = lbs_do_scan(priv, bsstype, curr_chans,
Holger Schurig52933d82008-03-05 07:05:32 +0100424 to_scan);
Holger Schurigffd074f2007-12-07 16:52:10 +0100425 if (ret) {
426 lbs_pr_err("SCAN_CMD failed\n");
427 goto out2;
428 }
429 curr_chans += to_scan;
430 chan_count -= to_scan;
431
432 /* somehow schedule the next part of the scan */
David Woodhousef137e052008-03-03 12:18:59 +0100433 if (chan_count && !full_scan &&
David Woodhouseaa21c002007-12-08 20:04:36 +0000434 !priv->surpriseremoved) {
Holger Schurigffd074f2007-12-07 16:52:10 +0100435 /* -1 marks just that we're currently scanning */
Holger Schurig8816edc2008-01-28 17:28:05 +0100436 if (priv->scan_channel < 0)
437 priv->scan_channel = to_scan;
Holger Schurigffd074f2007-12-07 16:52:10 +0100438 else
Holger Schurig8816edc2008-01-28 17:28:05 +0100439 priv->scan_channel += to_scan;
Holger Schurigffd074f2007-12-07 16:52:10 +0100440 cancel_delayed_work(&priv->scan_work);
441 queue_delayed_work(priv->work_thread, &priv->scan_work,
David Woodhousef137e052008-03-03 12:18:59 +0100442 msecs_to_jiffies(300));
Holger Schurigffd074f2007-12-07 16:52:10 +0100443 /* skip over GIWSCAN event */
444 goto out;
445 }
446
447 }
448 memset(&wrqu, 0, sizeof(union iwreq_data));
449 wireless_send_event(priv->dev, SIOCGIWSCAN, &wrqu, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200450
Dan Williamsf8f55102007-05-30 10:12:55 -0400451#ifdef CONFIG_LIBERTAS_DEBUG
452 /* Dump the scan table */
David Woodhouseaa21c002007-12-08 20:04:36 +0000453 mutex_lock(&priv->lock);
Holger Schurigffd074f2007-12-07 16:52:10 +0100454 lbs_deb_scan("scan table:\n");
David Woodhouseaa21c002007-12-08 20:04:36 +0000455 list_for_each_entry(iter, &priv->network_list, list)
Johannes Berge1749612008-10-27 15:59:26 -0700456 lbs_deb_scan("%02d: BSSID %pM, RSSI %d, SSID '%s'\n",
457 i++, iter->bssid, iter->rssi,
John W. Linville7e272fc2008-09-24 18:13:14 -0400458 escape_ssid(iter->ssid, iter->ssid_len));
David Woodhouseaa21c002007-12-08 20:04:36 +0000459 mutex_unlock(&priv->lock);
Dan Williamsf8f55102007-05-30 10:12:55 -0400460#endif
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200461
Holger Schurigffd074f2007-12-07 16:52:10 +0100462out2:
Holger Schurig8816edc2008-01-28 17:28:05 +0100463 priv->scan_channel = 0;
Holger Schurigffd074f2007-12-07 16:52:10 +0100464
465out:
David Woodhouseaa21c002007-12-08 20:04:36 +0000466 if (priv->connect_status == LBS_CONNECTED) {
Holger Schurig634b8f42007-05-25 13:05:16 -0400467 netif_carrier_on(priv->dev);
David Woodhousea27b9f92007-12-12 00:41:51 -0500468 if (!priv->tx_pending_len)
469 netif_wake_queue(priv->dev);
Brajesh Dave01d77d82007-11-20 17:44:14 -0500470 }
David Woodhouseaa21c002007-12-08 20:04:36 +0000471 if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED)) {
Brajesh Dave01d77d82007-11-20 17:44:14 -0500472 netif_carrier_on(priv->mesh_dev);
David Woodhousea27b9f92007-12-12 00:41:51 -0500473 if (!priv->tx_pending_len)
474 netif_wake_queue(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200475 }
Holger Schurigffd074f2007-12-07 16:52:10 +0100476 kfree(chan_list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200477
Holger Schurig9012b282007-05-25 11:27:16 -0400478 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200479 return ret;
480}
481
Holger Schurig52933d82008-03-05 07:05:32 +0100482void lbs_scan_worker(struct work_struct *work)
483{
484 struct lbs_private *priv =
485 container_of(work, struct lbs_private, scan_work.work);
486
487 lbs_deb_enter(LBS_DEB_SCAN);
488 lbs_scan_networks(priv, 0);
489 lbs_deb_leave(LBS_DEB_SCAN);
490}
491
492
Holger Schurigffd074f2007-12-07 16:52:10 +0100493/*********************************************************************/
494/* */
495/* Result interpretation */
496/* */
497/*********************************************************************/
498
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200499/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200500 * @brief Interpret a BSS scan response returned from the firmware
501 *
502 * Parse the various fixed fields and IEs passed back for a a BSS probe
Holger Schurigffd074f2007-12-07 16:52:10 +0100503 * response or beacon from the scan command. Record information as needed
504 * in the scan table struct bss_descriptor for that entry.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200505 *
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400506 * @param bss Output parameter: Pointer to the BSS Entry
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200507 *
508 * @return 0 or -1
509 */
Holger Schurig10078322007-11-15 18:05:47 -0500510static int lbs_process_bss(struct bss_descriptor *bss,
David Woodhousef137e052008-03-03 12:18:59 +0100511 uint8_t **pbeaconinfo, int *bytesleft)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200512{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200513 struct ieeetypes_fhparamset *pFH;
514 struct ieeetypes_dsparamset *pDS;
515 struct ieeetypes_cfparamset *pCF;
516 struct ieeetypes_ibssparamset *pibss;
Dan Williams8c512762007-08-02 11:40:45 -0400517 struct ieeetypes_countryinfoset *pcountryinfo;
David Woodhousef137e052008-03-03 12:18:59 +0100518 uint8_t *pos, *end, *p;
519 uint8_t n_ex_rates = 0, got_basic_rates = 0, n_basic_rates = 0;
520 uint16_t beaconsize = 0;
Holger Schurig9012b282007-05-25 11:27:16 -0400521 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200522
Holger Schurige56188a2007-10-09 14:15:19 +0200523 lbs_deb_enter(LBS_DEB_SCAN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200524
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200525 if (*bytesleft >= sizeof(beaconsize)) {
526 /* Extract & convert beacon size from the command buffer */
Harvey Harrison533dd1b2008-04-29 01:03:36 -0700527 beaconsize = get_unaligned_le16(*pbeaconinfo);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200528 *bytesleft -= sizeof(beaconsize);
529 *pbeaconinfo += sizeof(beaconsize);
530 }
531
532 if (beaconsize == 0 || beaconsize > *bytesleft) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200533 *pbeaconinfo += *bytesleft;
534 *bytesleft = 0;
Holger Schurige56188a2007-10-09 14:15:19 +0200535 ret = -1;
536 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200537 }
538
539 /* Initialize the current working beacon pointer for this BSS iteration */
Dan Williamsab617972007-08-02 10:48:02 -0400540 pos = *pbeaconinfo;
541 end = pos + beaconsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200542
543 /* Advance the return beacon pointer past the current beacon */
544 *pbeaconinfo += beaconsize;
545 *bytesleft -= beaconsize;
546
Dan Williamsab617972007-08-02 10:48:02 -0400547 memcpy(bss->bssid, pos, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -0700548 lbs_deb_scan("process_bss: BSSID %pM\n", bss->bssid);
Dan Williamsab617972007-08-02 10:48:02 -0400549 pos += ETH_ALEN;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200550
Dan Williamsab617972007-08-02 10:48:02 -0400551 if ((end - pos) < 12) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400552 lbs_deb_scan("process_bss: Not enough bytes left\n");
Holger Schurige56188a2007-10-09 14:15:19 +0200553 ret = -1;
554 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200555 }
556
557 /*
558 * next 4 fields are RSSI, time stamp, beacon interval,
559 * and capability information
560 */
561
562 /* RSSI is 1 byte long */
Dan Williamsab617972007-08-02 10:48:02 -0400563 bss->rssi = *pos;
Holger Schurigffd074f2007-12-07 16:52:10 +0100564 lbs_deb_scan("process_bss: RSSI %d\n", *pos);
Dan Williamsab617972007-08-02 10:48:02 -0400565 pos++;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200566
567 /* time stamp is 8 bytes long */
Dan Williamsab617972007-08-02 10:48:02 -0400568 pos += 8;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200569
570 /* beacon interval is 2 bytes long */
Ihar Hrachyshka814feef2008-07-09 09:29:58 +0300571 bss->beaconperiod = get_unaligned_le16(pos);
Dan Williamsab617972007-08-02 10:48:02 -0400572 pos += 2;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200573
574 /* capability information is 2 bytes long */
Ihar Hrachyshka814feef2008-07-09 09:29:58 +0300575 bss->capability = get_unaligned_le16(pos);
Holger Schurigffd074f2007-12-07 16:52:10 +0100576 lbs_deb_scan("process_bss: capabilities 0x%04x\n", bss->capability);
Dan Williamsab617972007-08-02 10:48:02 -0400577 pos += 2;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200578
Dan Williams0c9ca6902007-08-02 10:43:44 -0400579 if (bss->capability & WLAN_CAPABILITY_PRIVACY)
Holger Schurigffd074f2007-12-07 16:52:10 +0100580 lbs_deb_scan("process_bss: WEP enabled\n");
Dan Williams0c9ca6902007-08-02 10:43:44 -0400581 if (bss->capability & WLAN_CAPABILITY_IBSS)
582 bss->mode = IW_MODE_ADHOC;
583 else
584 bss->mode = IW_MODE_INFRA;
585
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200586 /* rest of the current buffer are IE's */
Holger Schurigffd074f2007-12-07 16:52:10 +0100587 lbs_deb_scan("process_bss: IE len %zd\n", end - pos);
Holger Schurigece56192007-08-02 11:53:06 -0400588 lbs_deb_hex(LBS_DEB_SCAN, "process_bss: IE info", pos, end - pos);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200589
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200590 /* process variable IE */
Dan Williamsab617972007-08-02 10:48:02 -0400591 while (pos <= end - 2) {
David Woodhousef137e052008-03-03 12:18:59 +0100592 struct ieee80211_info_element * elem = (void *)pos;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200593
Dan Williamsab617972007-08-02 10:48:02 -0400594 if (pos + elem->len > end) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400595 lbs_deb_scan("process_bss: error in processing IE, "
David Woodhousef137e052008-03-03 12:18:59 +0100596 "bytes left < IE length\n");
Dan Williamsab617972007-08-02 10:48:02 -0400597 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200598 }
599
Dan Williamsab617972007-08-02 10:48:02 -0400600 switch (elem->id) {
601 case MFIE_TYPE_SSID:
Johannes Berg48735d82008-10-29 11:43:32 +0100602 bss->ssid_len = min_t(int, 32, elem->len);
603 memcpy(bss->ssid, elem->data, bss->ssid_len);
Holger Schurigffd074f2007-12-07 16:52:10 +0100604 lbs_deb_scan("got SSID IE: '%s', len %u\n",
John W. Linville7e272fc2008-09-24 18:13:14 -0400605 escape_ssid(bss->ssid, bss->ssid_len),
Dan Williamsd8efea22007-05-28 23:54:55 -0400606 bss->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200607 break;
608
Dan Williamsab617972007-08-02 10:48:02 -0400609 case MFIE_TYPE_RATES:
David Woodhousef137e052008-03-03 12:18:59 +0100610 n_basic_rates = min_t(uint8_t, MAX_RATES, elem->len);
Dan Williams8c512762007-08-02 11:40:45 -0400611 memcpy(bss->rates, elem->data, n_basic_rates);
612 got_basic_rates = 1;
Holger Schurigffd074f2007-12-07 16:52:10 +0100613 lbs_deb_scan("got RATES IE\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200614 break;
615
Dan Williamsab617972007-08-02 10:48:02 -0400616 case MFIE_TYPE_FH_SET:
617 pFH = (struct ieeetypes_fhparamset *) pos;
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400618 memmove(&bss->phyparamset.fhparamset, pFH,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200619 sizeof(struct ieeetypes_fhparamset));
Holger Schurigffd074f2007-12-07 16:52:10 +0100620 lbs_deb_scan("got FH IE\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200621 break;
622
Dan Williamsab617972007-08-02 10:48:02 -0400623 case MFIE_TYPE_DS_SET:
624 pDS = (struct ieeetypes_dsparamset *) pos;
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400625 bss->channel = pDS->currentchan;
626 memcpy(&bss->phyparamset.dsparamset, pDS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200627 sizeof(struct ieeetypes_dsparamset));
Holger Schurigffd074f2007-12-07 16:52:10 +0100628 lbs_deb_scan("got DS IE, channel %d\n", bss->channel);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200629 break;
630
Dan Williamsab617972007-08-02 10:48:02 -0400631 case MFIE_TYPE_CF_SET:
632 pCF = (struct ieeetypes_cfparamset *) pos;
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400633 memcpy(&bss->ssparamset.cfparamset, pCF,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200634 sizeof(struct ieeetypes_cfparamset));
Holger Schurigffd074f2007-12-07 16:52:10 +0100635 lbs_deb_scan("got CF IE\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200636 break;
637
Dan Williamsab617972007-08-02 10:48:02 -0400638 case MFIE_TYPE_IBSS_SET:
639 pibss = (struct ieeetypes_ibssparamset *) pos;
David Woodhousee7240ac2007-12-11 17:54:36 -0500640 bss->atimwindow = le16_to_cpu(pibss->atimwindow);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400641 memmove(&bss->ssparamset.ibssparamset, pibss,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200642 sizeof(struct ieeetypes_ibssparamset));
Holger Schurigffd074f2007-12-07 16:52:10 +0100643 lbs_deb_scan("got IBSS IE\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200644 break;
645
Dan Williamsab617972007-08-02 10:48:02 -0400646 case MFIE_TYPE_COUNTRY:
647 pcountryinfo = (struct ieeetypes_countryinfoset *) pos;
Holger Schurigffd074f2007-12-07 16:52:10 +0100648 lbs_deb_scan("got COUNTRY IE\n");
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400649 if (pcountryinfo->len < sizeof(pcountryinfo->countrycode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200650 || pcountryinfo->len > 254) {
David Woodhousef137e052008-03-03 12:18:59 +0100651 lbs_deb_scan("process_bss: 11D- Err CountryInfo len %d, min %zd, max 254\n",
652 pcountryinfo->len, sizeof(pcountryinfo->countrycode));
Holger Schurig9012b282007-05-25 11:27:16 -0400653 ret = -1;
654 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200655 }
656
David Woodhousef137e052008-03-03 12:18:59 +0100657 memcpy(&bss->countryinfo, pcountryinfo, pcountryinfo->len + 2);
Holger Schurigece56192007-08-02 11:53:06 -0400658 lbs_deb_hex(LBS_DEB_SCAN, "process_bss: 11d countryinfo",
David Woodhousef137e052008-03-03 12:18:59 +0100659 (uint8_t *) pcountryinfo,
660 (int) (pcountryinfo->len + 2));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200661 break;
662
Dan Williamsab617972007-08-02 10:48:02 -0400663 case MFIE_TYPE_RATES_EX:
664 /* only process extended supported rate if data rate is
665 * already found. Data rate IE should come before
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200666 * extended supported rate IE
667 */
Holger Schurigffd074f2007-12-07 16:52:10 +0100668 lbs_deb_scan("got RATESEX IE\n");
669 if (!got_basic_rates) {
670 lbs_deb_scan("... but ignoring it\n");
Dan Williamsab617972007-08-02 10:48:02 -0400671 break;
Holger Schurigffd074f2007-12-07 16:52:10 +0100672 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200673
Dan Williams8c512762007-08-02 11:40:45 -0400674 n_ex_rates = elem->len;
675 if (n_basic_rates + n_ex_rates > MAX_RATES)
676 n_ex_rates = MAX_RATES - n_basic_rates;
Dan Williamsab617972007-08-02 10:48:02 -0400677
Dan Williams8c512762007-08-02 11:40:45 -0400678 p = bss->rates + n_basic_rates;
679 memcpy(p, elem->data, n_ex_rates);
Dan Williamsab617972007-08-02 10:48:02 -0400680 break;
681
682 case MFIE_TYPE_GENERIC:
683 if (elem->len >= 4 &&
David Woodhousef137e052008-03-03 12:18:59 +0100684 elem->data[0] == 0x00 && elem->data[1] == 0x50 &&
685 elem->data[2] == 0xf2 && elem->data[3] == 0x01) {
686 bss->wpa_ie_len = min(elem->len + 2, MAX_WPA_IE_LEN);
Dan Williamsab617972007-08-02 10:48:02 -0400687 memcpy(bss->wpa_ie, elem, bss->wpa_ie_len);
Holger Schurigffd074f2007-12-07 16:52:10 +0100688 lbs_deb_scan("got WPA IE\n");
David Woodhousef137e052008-03-03 12:18:59 +0100689 lbs_deb_hex(LBS_DEB_SCAN, "WPA IE", bss->wpa_ie, elem->len);
Luis Carlos Cobo1e838bf2007-08-02 10:51:27 -0400690 } else if (elem->len >= MARVELL_MESH_IE_LENGTH &&
David Woodhousef137e052008-03-03 12:18:59 +0100691 elem->data[0] == 0x00 && elem->data[1] == 0x50 &&
692 elem->data[2] == 0x43 && elem->data[3] == 0x04) {
Holger Schurigffd074f2007-12-07 16:52:10 +0100693 lbs_deb_scan("got mesh IE\n");
Luis Carlos Cobo1e838bf2007-08-02 10:51:27 -0400694 bss->mesh = 1;
Holger Schurigffd074f2007-12-07 16:52:10 +0100695 } else {
David Woodhousef137e052008-03-03 12:18:59 +0100696 lbs_deb_scan("got generic IE: %02x:%02x:%02x:%02x, len %d\n",
Holger Schurigffd074f2007-12-07 16:52:10 +0100697 elem->data[0], elem->data[1],
698 elem->data[2], elem->data[3],
699 elem->len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200700 }
701 break;
702
Dan Williamsab617972007-08-02 10:48:02 -0400703 case MFIE_TYPE_RSN:
Holger Schurigffd074f2007-12-07 16:52:10 +0100704 lbs_deb_scan("got RSN IE\n");
Dan Williamsab617972007-08-02 10:48:02 -0400705 bss->rsn_ie_len = min(elem->len + 2, MAX_WPA_IE_LEN);
706 memcpy(bss->rsn_ie, elem, bss->rsn_ie_len);
Holger Schurigffd074f2007-12-07 16:52:10 +0100707 lbs_deb_hex(LBS_DEB_SCAN, "process_bss: RSN_IE",
David Woodhousef137e052008-03-03 12:18:59 +0100708 bss->rsn_ie, elem->len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200709 break;
710
Dan Williamsab617972007-08-02 10:48:02 -0400711 default:
Holger Schurigffd074f2007-12-07 16:52:10 +0100712 lbs_deb_scan("got IE 0x%04x, len %d\n",
David Woodhousef137e052008-03-03 12:18:59 +0100713 elem->id, elem->len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200714 break;
715 }
716
Dan Williamsab617972007-08-02 10:48:02 -0400717 pos += elem->len + 2;
718 }
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400719
720 /* Timestamp */
721 bss->last_scanned = jiffies;
Holger Schurig10078322007-11-15 18:05:47 -0500722 lbs_unset_basic_rate_flags(bss->rates, sizeof(bss->rates));
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400723
Holger Schurig9012b282007-05-25 11:27:16 -0400724 ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200725
Holger Schurig9012b282007-05-25 11:27:16 -0400726done:
727 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
728 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200729}
730
731/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200732 * @brief Send a scan command for all available channels filtered on a spec
733 *
Holger Schurige56188a2007-10-09 14:15:19 +0200734 * Used in association code and from debugfs
735 *
Holger Schurig69f90322007-11-23 15:43:44 +0100736 * @param priv A pointer to struct lbs_private structure
Holger Schurige56188a2007-10-09 14:15:19 +0200737 * @param ssid A pointer to the SSID to scan for
738 * @param ssid_len Length of the SSID
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200739 *
740 * @return 0-success, otherwise fail
741 */
David Woodhousef137e052008-03-03 12:18:59 +0100742int lbs_send_specific_ssid_scan(struct lbs_private *priv, uint8_t *ssid,
Holger Schurig52933d82008-03-05 07:05:32 +0100743 uint8_t ssid_len)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200744{
Dan Williamseb8f7332007-05-25 16:25:21 -0400745 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200746
Holger Schurig52933d82008-03-05 07:05:32 +0100747 lbs_deb_enter_args(LBS_DEB_SCAN, "SSID '%s'\n",
John W. Linville7e272fc2008-09-24 18:13:14 -0400748 escape_ssid(ssid, ssid_len));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200749
Dan Williamsd8efea22007-05-28 23:54:55 -0400750 if (!ssid_len)
Dan Williamseb8f7332007-05-25 16:25:21 -0400751 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200752
Holger Schurig52933d82008-03-05 07:05:32 +0100753 memcpy(priv->scan_ssid, ssid, ssid_len);
754 priv->scan_ssid_len = ssid_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200755
Holger Schurig52933d82008-03-05 07:05:32 +0100756 lbs_scan_networks(priv, 1);
David Woodhouseaa21c002007-12-08 20:04:36 +0000757 if (priv->surpriseremoved) {
Holger Schurige56188a2007-10-09 14:15:19 +0200758 ret = -1;
759 goto out;
760 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200761
Dan Williamseb8f7332007-05-25 16:25:21 -0400762out:
Holger Schurige56188a2007-10-09 14:15:19 +0200763 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
Dan Williamseb8f7332007-05-25 16:25:21 -0400764 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200765}
766
Holger Schurige56188a2007-10-09 14:15:19 +0200767
768
769
770/*********************************************************************/
771/* */
772/* Support for Wireless Extensions */
773/* */
774/*********************************************************************/
775
Holger Schurigffd074f2007-12-07 16:52:10 +0100776
Dan Williams00af0152007-08-02 13:14:56 -0400777#define MAX_CUSTOM_LEN 64
778
Holger Schurig69f90322007-11-23 15:43:44 +0100779static inline char *lbs_translate_scan(struct lbs_private *priv,
David S. Millerccc58052008-06-16 18:50:49 -0700780 struct iw_request_info *info,
781 char *start, char *stop,
782 struct bss_descriptor *bss)
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400783{
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400784 struct chan_freq_power *cfp;
785 char *current_val; /* For rates */
786 struct iw_event iwe; /* Temporary buffer */
787 int j;
David Woodhousef137e052008-03-03 12:18:59 +0100788#define PERFECT_RSSI ((uint8_t)50)
789#define WORST_RSSI ((uint8_t)0)
790#define RSSI_DIFF ((uint8_t)(PERFECT_RSSI - WORST_RSSI))
791 uint8_t rssi;
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400792
Holger Schurige56188a2007-10-09 14:15:19 +0200793 lbs_deb_enter(LBS_DEB_SCAN);
794
David Woodhouseaa21c002007-12-08 20:04:36 +0000795 cfp = lbs_find_cfp_by_band_and_channel(priv, 0, bss->channel);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400796 if (!cfp) {
797 lbs_deb_scan("Invalid channel number %d\n", bss->channel);
Holger Schurige56188a2007-10-09 14:15:19 +0200798 start = NULL;
799 goto out;
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400800 }
801
Holger Schurigffd074f2007-12-07 16:52:10 +0100802 /* First entry *MUST* be the BSSID */
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400803 iwe.cmd = SIOCGIWAP;
804 iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
805 memcpy(iwe.u.ap_addr.sa_data, &bss->bssid, ETH_ALEN);
David S. Millerccc58052008-06-16 18:50:49 -0700806 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_ADDR_LEN);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400807
808 /* SSID */
809 iwe.cmd = SIOCGIWESSID;
810 iwe.u.data.flags = 1;
David Woodhousef137e052008-03-03 12:18:59 +0100811 iwe.u.data.length = min((uint32_t) bss->ssid_len, (uint32_t) IW_ESSID_MAX_SIZE);
David S. Millerccc58052008-06-16 18:50:49 -0700812 start = iwe_stream_add_point(info, start, stop, &iwe, bss->ssid);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400813
814 /* Mode */
815 iwe.cmd = SIOCGIWMODE;
816 iwe.u.mode = bss->mode;
David S. Millerccc58052008-06-16 18:50:49 -0700817 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_UINT_LEN);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400818
819 /* Frequency */
820 iwe.cmd = SIOCGIWFREQ;
821 iwe.u.freq.m = (long)cfp->freq * 100000;
822 iwe.u.freq.e = 1;
David S. Millerccc58052008-06-16 18:50:49 -0700823 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_FREQ_LEN);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400824
825 /* Add quality statistics */
826 iwe.cmd = IWEVQUAL;
827 iwe.u.qual.updated = IW_QUAL_ALL_UPDATED;
828 iwe.u.qual.level = SCAN_RSSI(bss->rssi);
829
830 rssi = iwe.u.qual.level - MRVDRV_NF_DEFAULT_SCAN_VALUE;
831 iwe.u.qual.qual =
David Woodhousef137e052008-03-03 12:18:59 +0100832 (100 * RSSI_DIFF * RSSI_DIFF - (PERFECT_RSSI - rssi) *
833 (15 * (RSSI_DIFF) + 62 * (PERFECT_RSSI - rssi))) /
834 (RSSI_DIFF * RSSI_DIFF);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400835 if (iwe.u.qual.qual > 100)
836 iwe.u.qual.qual = 100;
837
David Woodhouseaa21c002007-12-08 20:04:36 +0000838 if (priv->NF[TYPE_BEACON][TYPE_NOAVG] == 0) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400839 iwe.u.qual.noise = MRVDRV_NF_DEFAULT_SCAN_VALUE;
840 } else {
David Woodhousef137e052008-03-03 12:18:59 +0100841 iwe.u.qual.noise = CAL_NF(priv->NF[TYPE_BEACON][TYPE_NOAVG]);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400842 }
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400843
Dan Williams80e78ef2007-05-25 22:18:47 -0400844 /* Locally created ad-hoc BSSs won't have beacons if this is the
845 * only station in the adhoc network; so get signal strength
846 * from receive statistics.
847 */
David Woodhousef137e052008-03-03 12:18:59 +0100848 if ((priv->mode == IW_MODE_ADHOC) && priv->adhoccreate
David Woodhouseaa21c002007-12-08 20:04:36 +0000849 && !lbs_ssid_cmp(priv->curbssparams.ssid,
David Woodhousef137e052008-03-03 12:18:59 +0100850 priv->curbssparams.ssid_len,
851 bss->ssid, bss->ssid_len)) {
Dan Williams80e78ef2007-05-25 22:18:47 -0400852 int snr, nf;
David Woodhouseaa21c002007-12-08 20:04:36 +0000853 snr = priv->SNR[TYPE_RXPD][TYPE_AVG] / AVG_SCALE;
854 nf = priv->NF[TYPE_RXPD][TYPE_AVG] / AVG_SCALE;
Dan Williams80e78ef2007-05-25 22:18:47 -0400855 iwe.u.qual.level = CAL_RSSI(snr, nf);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400856 }
David S. Millerccc58052008-06-16 18:50:49 -0700857 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_QUAL_LEN);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400858
859 /* Add encryption capability */
860 iwe.cmd = SIOCGIWENCODE;
Dan Williams0c9ca6902007-08-02 10:43:44 -0400861 if (bss->capability & WLAN_CAPABILITY_PRIVACY) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400862 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
863 } else {
864 iwe.u.data.flags = IW_ENCODE_DISABLED;
865 }
866 iwe.u.data.length = 0;
David S. Millerccc58052008-06-16 18:50:49 -0700867 start = iwe_stream_add_point(info, start, stop, &iwe, bss->ssid);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400868
David S. Millerccc58052008-06-16 18:50:49 -0700869 current_val = start + iwe_stream_lcp_len(info);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400870
871 iwe.cmd = SIOCGIWRATE;
872 iwe.u.bitrate.fixed = 0;
873 iwe.u.bitrate.disabled = 0;
874 iwe.u.bitrate.value = 0;
875
Dan Williams8c512762007-08-02 11:40:45 -0400876 for (j = 0; bss->rates[j] && (j < sizeof(bss->rates)); j++) {
877 /* Bit rate given in 500 kb/s units */
878 iwe.u.bitrate.value = bss->rates[j] * 500000;
David S. Millerccc58052008-06-16 18:50:49 -0700879 current_val = iwe_stream_add_value(info, start, current_val,
880 stop, &iwe, IW_EV_PARAM_LEN);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400881 }
David Woodhousef137e052008-03-03 12:18:59 +0100882 if ((bss->mode == IW_MODE_ADHOC) && priv->adhoccreate
David Woodhouseaa21c002007-12-08 20:04:36 +0000883 && !lbs_ssid_cmp(priv->curbssparams.ssid,
David Woodhousef137e052008-03-03 12:18:59 +0100884 priv->curbssparams.ssid_len,
885 bss->ssid, bss->ssid_len)) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400886 iwe.u.bitrate.value = 22 * 500000;
David S. Millerccc58052008-06-16 18:50:49 -0700887 current_val = iwe_stream_add_value(info, start, current_val,
David Woodhousef137e052008-03-03 12:18:59 +0100888 stop, &iwe, IW_EV_PARAM_LEN);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400889 }
890 /* Check if we added any event */
David S. Millerccc58052008-06-16 18:50:49 -0700891 if ((current_val - start) > iwe_stream_lcp_len(info))
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400892 start = current_val;
893
894 memset(&iwe, 0, sizeof(iwe));
895 if (bss->wpa_ie_len) {
896 char buf[MAX_WPA_IE_LEN];
897 memcpy(buf, bss->wpa_ie, bss->wpa_ie_len);
898 iwe.cmd = IWEVGENIE;
899 iwe.u.data.length = bss->wpa_ie_len;
David S. Millerccc58052008-06-16 18:50:49 -0700900 start = iwe_stream_add_point(info, start, stop, &iwe, buf);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400901 }
902
903 memset(&iwe, 0, sizeof(iwe));
904 if (bss->rsn_ie_len) {
905 char buf[MAX_WPA_IE_LEN];
906 memcpy(buf, bss->rsn_ie, bss->rsn_ie_len);
907 iwe.cmd = IWEVGENIE;
908 iwe.u.data.length = bss->rsn_ie_len;
David S. Millerccc58052008-06-16 18:50:49 -0700909 start = iwe_stream_add_point(info, start, stop, &iwe, buf);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400910 }
911
Dan Williams00af0152007-08-02 13:14:56 -0400912 if (bss->mesh) {
913 char custom[MAX_CUSTOM_LEN];
914 char *p = custom;
915
916 iwe.cmd = IWEVCUSTOM;
David Woodhousef137e052008-03-03 12:18:59 +0100917 p += snprintf(p, MAX_CUSTOM_LEN, "mesh-type: olpc");
Dan Williams00af0152007-08-02 13:14:56 -0400918 iwe.u.data.length = p - custom;
919 if (iwe.u.data.length)
David S. Millerccc58052008-06-16 18:50:49 -0700920 start = iwe_stream_add_point(info, start, stop,
921 &iwe, custom);
Dan Williams00af0152007-08-02 13:14:56 -0400922 }
923
Holger Schurige56188a2007-10-09 14:15:19 +0200924out:
925 lbs_deb_leave_args(LBS_DEB_SCAN, "start %p", start);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400926 return start;
927}
928
Holger Schurigffd074f2007-12-07 16:52:10 +0100929
930/**
931 * @brief Handle Scan Network ioctl
932 *
933 * @param dev A pointer to net_device structure
934 * @param info A pointer to iw_request_info structure
935 * @param vwrq A pointer to iw_param structure
936 * @param extra A pointer to extra data buf
937 *
938 * @return 0 --success, otherwise fail
939 */
940int lbs_set_scan(struct net_device *dev, struct iw_request_info *info,
Holger Schurig52933d82008-03-05 07:05:32 +0100941 union iwreq_data *wrqu, char *extra)
Holger Schurigffd074f2007-12-07 16:52:10 +0100942{
943 struct lbs_private *priv = dev->priv;
Holger Schurig52933d82008-03-05 07:05:32 +0100944 int ret = 0;
Holger Schurigffd074f2007-12-07 16:52:10 +0100945
Holger Schurig52933d82008-03-05 07:05:32 +0100946 lbs_deb_enter(LBS_DEB_WEXT);
Holger Schurigffd074f2007-12-07 16:52:10 +0100947
Dan Williamsd5db2df2008-08-21 17:51:07 -0400948 if (!priv->radio_on) {
949 ret = -EINVAL;
950 goto out;
951 }
952
Holger Schurig52933d82008-03-05 07:05:32 +0100953 if (!netif_running(dev)) {
954 ret = -ENETDOWN;
955 goto out;
956 }
Holger Schurigffd074f2007-12-07 16:52:10 +0100957
958 /* mac80211 does this:
959 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Holger Schurig52933d82008-03-05 07:05:32 +0100960 if (sdata->type != IEEE80211_IF_TYPE_xxx) {
961 ret = -EOPNOTSUPP;
962 goto out;
963 }
964 */
Holger Schurigffd074f2007-12-07 16:52:10 +0100965
966 if (wrqu->data.length == sizeof(struct iw_scan_req) &&
967 wrqu->data.flags & IW_SCAN_THIS_ESSID) {
Holger Schurig52933d82008-03-05 07:05:32 +0100968 struct iw_scan_req *req = (struct iw_scan_req *)extra;
969 priv->scan_ssid_len = req->essid_len;
970 memcpy(priv->scan_ssid, req->essid, priv->scan_ssid_len);
971 lbs_deb_wext("set_scan, essid '%s'\n",
John W. Linville7e272fc2008-09-24 18:13:14 -0400972 escape_ssid(priv->scan_ssid, priv->scan_ssid_len));
Holger Schurig52933d82008-03-05 07:05:32 +0100973 } else {
974 priv->scan_ssid_len = 0;
Holger Schurigffd074f2007-12-07 16:52:10 +0100975 }
Holger Schurigffd074f2007-12-07 16:52:10 +0100976
977 if (!delayed_work_pending(&priv->scan_work))
978 queue_delayed_work(priv->work_thread, &priv->scan_work,
David Woodhousef137e052008-03-03 12:18:59 +0100979 msecs_to_jiffies(50));
Holger Schurigffd074f2007-12-07 16:52:10 +0100980 /* set marker that currently a scan is taking place */
Holger Schurig8816edc2008-01-28 17:28:05 +0100981 priv->scan_channel = -1;
Holger Schurigffd074f2007-12-07 16:52:10 +0100982
David Woodhouseaa21c002007-12-08 20:04:36 +0000983 if (priv->surpriseremoved)
Holger Schurig52933d82008-03-05 07:05:32 +0100984 ret = -EIO;
Holger Schurigffd074f2007-12-07 16:52:10 +0100985
Holger Schurig52933d82008-03-05 07:05:32 +0100986out:
987 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
988 return ret;
Holger Schurigffd074f2007-12-07 16:52:10 +0100989}
990
991
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200992/**
Holger Schurige56188a2007-10-09 14:15:19 +0200993 * @brief Handle Retrieve scan table ioctl
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200994 *
995 * @param dev A pointer to net_device structure
996 * @param info A pointer to iw_request_info structure
997 * @param dwrq A pointer to iw_point structure
998 * @param extra A pointer to extra data buf
999 *
1000 * @return 0 --success, otherwise fail
1001 */
Holger Schurig10078322007-11-15 18:05:47 -05001002int lbs_get_scan(struct net_device *dev, struct iw_request_info *info,
David Woodhousef137e052008-03-03 12:18:59 +01001003 struct iw_point *dwrq, char *extra)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001004{
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001005#define SCAN_ITEM_SIZE 128
Holger Schurig69f90322007-11-23 15:43:44 +01001006 struct lbs_private *priv = dev->priv;
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001007 int err = 0;
1008 char *ev = extra;
1009 char *stop = ev + dwrq->length;
David Woodhousef137e052008-03-03 12:18:59 +01001010 struct bss_descriptor *iter_bss;
1011 struct bss_descriptor *safe;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001012
Holger Schurig52933d82008-03-05 07:05:32 +01001013 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001014
Holger Schurigffd074f2007-12-07 16:52:10 +01001015 /* iwlist should wait until the current scan is finished */
Holger Schurig8816edc2008-01-28 17:28:05 +01001016 if (priv->scan_channel)
Holger Schurigffd074f2007-12-07 16:52:10 +01001017 return -EAGAIN;
1018
Dan Williams80e78ef2007-05-25 22:18:47 -04001019 /* Update RSSI if current BSS is a locally created ad-hoc BSS */
David Woodhousef137e052008-03-03 12:18:59 +01001020 if ((priv->mode == IW_MODE_ADHOC) && priv->adhoccreate)
Holger Schurig10078322007-11-15 18:05:47 -05001021 lbs_prepare_and_send_command(priv, CMD_802_11_RSSI, 0,
David Woodhousef137e052008-03-03 12:18:59 +01001022 CMD_OPTION_WAITFORRSP, 0, NULL);
Dan Williams80e78ef2007-05-25 22:18:47 -04001023
David Woodhouseaa21c002007-12-08 20:04:36 +00001024 mutex_lock(&priv->lock);
1025 list_for_each_entry_safe (iter_bss, safe, &priv->network_list, list) {
David Woodhousef137e052008-03-03 12:18:59 +01001026 char *next_ev;
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001027 unsigned long stale_time;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001028
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001029 if (stop - ev < SCAN_ITEM_SIZE) {
1030 err = -E2BIG;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001031 break;
1032 }
1033
Luis Carlos Cobo1e838bf2007-08-02 10:51:27 -04001034 /* For mesh device, list only mesh networks */
1035 if (dev == priv->mesh_dev && !iter_bss->mesh)
1036 continue;
1037
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001038 /* Prune old an old scan result */
1039 stale_time = iter_bss->last_scanned + DEFAULT_MAX_SCAN_AGE;
1040 if (time_after(jiffies, stale_time)) {
David Woodhousef137e052008-03-03 12:18:59 +01001041 list_move_tail(&iter_bss->list, &priv->network_free_list);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001042 clear_bss_descriptor(iter_bss);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001043 continue;
1044 }
1045
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001046 /* Translate to WE format this entry */
David S. Millerccc58052008-06-16 18:50:49 -07001047 next_ev = lbs_translate_scan(priv, info, ev, stop, iter_bss);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001048 if (next_ev == NULL)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001049 continue;
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001050 ev = next_ev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001051 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001052 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001053
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001054 dwrq->length = (ev - extra);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001055 dwrq->flags = 0;
1056
Holger Schurig52933d82008-03-05 07:05:32 +01001057 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", err);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001058 return err;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001059}
1060
Holger Schurige56188a2007-10-09 14:15:19 +02001061
1062
1063
1064/*********************************************************************/
1065/* */
1066/* Command execution */
1067/* */
1068/*********************************************************************/
1069
1070
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001071/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001072 * @brief This function handles the command response of scan
1073 *
Holger Schurige56188a2007-10-09 14:15:19 +02001074 * Called from handle_cmd_response() in cmdrespc.
1075 *
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001076 * The response buffer for the scan command has the following
1077 * memory layout:
1078 *
1079 * .-----------------------------------------------------------.
1080 * | header (4 * sizeof(u16)): Standard command response hdr |
1081 * .-----------------------------------------------------------.
1082 * | bufsize (u16) : sizeof the BSS Description data |
1083 * .-----------------------------------------------------------.
1084 * | NumOfSet (u8) : Number of BSS Descs returned |
1085 * .-----------------------------------------------------------.
1086 * | BSSDescription data (variable, size given in bufsize) |
1087 * .-----------------------------------------------------------.
1088 * | TLV data (variable, size calculated using header->size, |
1089 * | bufsize and sizeof the fixed fields above) |
1090 * .-----------------------------------------------------------.
1091 *
Holger Schurig69f90322007-11-23 15:43:44 +01001092 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001093 * @param resp A pointer to cmd_ds_command
1094 *
1095 * @return 0 or -1
1096 */
David Woodhousefa62f992008-03-03 12:18:03 +01001097static int lbs_ret_80211_scan(struct lbs_private *priv, unsigned long dummy,
1098 struct cmd_header *resp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001099{
David Woodhousefa62f992008-03-03 12:18:03 +01001100 struct cmd_ds_802_11_scan_rsp *scanresp = (void *)resp;
David Woodhousef137e052008-03-03 12:18:59 +01001101 struct bss_descriptor *iter_bss;
1102 struct bss_descriptor *safe;
David Woodhousefa62f992008-03-03 12:18:03 +01001103 uint8_t *bssinfo;
1104 uint16_t scanrespsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001105 int bytesleft;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001106 int idx;
1107 int tlvbufsize;
Holger Schurig9012b282007-05-25 11:27:16 -04001108 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001109
Holger Schurige56188a2007-10-09 14:15:19 +02001110 lbs_deb_enter(LBS_DEB_SCAN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001111
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001112 /* Prune old entries from scan table */
David Woodhouseaa21c002007-12-08 20:04:36 +00001113 list_for_each_entry_safe (iter_bss, safe, &priv->network_list, list) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001114 unsigned long stale_time = iter_bss->last_scanned + DEFAULT_MAX_SCAN_AGE;
1115 if (time_before(jiffies, stale_time))
1116 continue;
David Woodhouseaa21c002007-12-08 20:04:36 +00001117 list_move_tail (&iter_bss->list, &priv->network_free_list);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001118 clear_bss_descriptor(iter_bss);
1119 }
1120
David Woodhousefa62f992008-03-03 12:18:03 +01001121 if (scanresp->nr_sets > MAX_NETWORK_COUNT) {
1122 lbs_deb_scan("SCAN_RESP: too many scan results (%d, max %d)\n",
1123 scanresp->nr_sets, MAX_NETWORK_COUNT);
Holger Schurig9012b282007-05-25 11:27:16 -04001124 ret = -1;
1125 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001126 }
1127
David Woodhousefa62f992008-03-03 12:18:03 +01001128 bytesleft = le16_to_cpu(scanresp->bssdescriptsize);
Holger Schurig9012b282007-05-25 11:27:16 -04001129 lbs_deb_scan("SCAN_RESP: bssdescriptsize %d\n", bytesleft);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001130
David Woodhousee7240ac2007-12-11 17:54:36 -05001131 scanrespsize = le16_to_cpu(resp->size);
David Woodhousefa62f992008-03-03 12:18:03 +01001132 lbs_deb_scan("SCAN_RESP: scan results %d\n", scanresp->nr_sets);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001133
David Woodhousefa62f992008-03-03 12:18:03 +01001134 bssinfo = scanresp->bssdesc_and_tlvbuffer;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001135
1136 /* The size of the TLV buffer is equal to the entire command response
1137 * size (scanrespsize) minus the fixed fields (sizeof()'s), the
1138 * BSS Descriptions (bssdescriptsize as bytesLef) and the command
1139 * response header (S_DS_GEN)
1140 */
David Woodhousefa62f992008-03-03 12:18:03 +01001141 tlvbufsize = scanrespsize - (bytesleft + sizeof(scanresp->bssdescriptsize)
1142 + sizeof(scanresp->nr_sets)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001143 + S_DS_GEN);
1144
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001145 /*
David Woodhousefa62f992008-03-03 12:18:03 +01001146 * Process each scan response returned (scanresp->nr_sets). Save
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001147 * the information in the newbssentry and then insert into the
1148 * driver scan table either as an update to an existing entry
1149 * or as an addition at the end of the table
1150 */
David Woodhousefa62f992008-03-03 12:18:03 +01001151 for (idx = 0; idx < scanresp->nr_sets && bytesleft; idx++) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001152 struct bss_descriptor new;
David Woodhousefa62f992008-03-03 12:18:03 +01001153 struct bss_descriptor *found = NULL;
1154 struct bss_descriptor *oldest = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001155
1156 /* Process the data fields and IEs returned for this BSS */
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001157 memset(&new, 0, sizeof (struct bss_descriptor));
David Woodhousefa62f992008-03-03 12:18:03 +01001158 if (lbs_process_bss(&new, &bssinfo, &bytesleft) != 0) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001159 /* error parsing the scan response, skipped */
1160 lbs_deb_scan("SCAN_RESP: process_bss returned ERROR\n");
1161 continue;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001162 }
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001163
1164 /* Try to find this bss in the scan table */
David Woodhouseaa21c002007-12-08 20:04:36 +00001165 list_for_each_entry (iter_bss, &priv->network_list, list) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001166 if (is_same_network(iter_bss, &new)) {
1167 found = iter_bss;
1168 break;
1169 }
1170
1171 if ((oldest == NULL) ||
1172 (iter_bss->last_scanned < oldest->last_scanned))
1173 oldest = iter_bss;
1174 }
1175
1176 if (found) {
1177 /* found, clear it */
1178 clear_bss_descriptor(found);
David Woodhouseaa21c002007-12-08 20:04:36 +00001179 } else if (!list_empty(&priv->network_free_list)) {
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001180 /* Pull one from the free list */
David Woodhouseaa21c002007-12-08 20:04:36 +00001181 found = list_entry(priv->network_free_list.next,
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001182 struct bss_descriptor, list);
David Woodhouseaa21c002007-12-08 20:04:36 +00001183 list_move_tail(&found->list, &priv->network_list);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001184 } else if (oldest) {
1185 /* If there are no more slots, expire the oldest */
1186 found = oldest;
1187 clear_bss_descriptor(found);
David Woodhouseaa21c002007-12-08 20:04:36 +00001188 list_move_tail(&found->list, &priv->network_list);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001189 } else {
1190 continue;
1191 }
1192
Johannes Berge1749612008-10-27 15:59:26 -07001193 lbs_deb_scan("SCAN_RESP: BSSID %pM\n", new.bssid);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001194
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001195 /* Copy the locally created newbssentry to the scan table */
1196 memcpy(found, &new, offsetof(struct bss_descriptor, list));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001197 }
1198
Holger Schurig9012b282007-05-25 11:27:16 -04001199 ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001200
Holger Schurig9012b282007-05-25 11:27:16 -04001201done:
1202 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
1203 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001204}