blob: 5a280ebadba4ed6ae2aa3fedd4d645f8dd28f568 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/* Copyright (C) 2006, Red Hat, Inc. */
2
John W. Linville7e272fc2008-09-24 18:13:14 -04003#include <linux/types.h>
Dan Williams3cf20932007-05-25 17:28:30 -04004#include <linux/etherdevice.h>
Johannes Berg2c7060022008-10-30 22:09:54 +01005#include <linux/ieee80211.h>
6#include <linux/if_arp.h>
John W. Linville7e272fc2008-09-24 18:13:14 -04007#include <net/lib80211.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02008
9#include "assoc.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020010#include "decl.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020011#include "host.h"
Holger Schurig245bf202008-04-02 16:27:42 +020012#include "scan.h"
Dan Williams2dd4b262007-12-11 16:54:15 -050013#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020014
Ihar Hrachyshka5a6e0432008-01-25 14:15:00 +010015static const u8 bssid_any[ETH_ALEN] __attribute__ ((aligned (2))) =
16 { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
17static const u8 bssid_off[ETH_ALEN] __attribute__ ((aligned (2))) =
18 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020019
Dan Williamsbe0d76e2009-05-22 20:05:25 -040020/* The firmware needs the following bits masked out of the beacon-derived
21 * capability field when associating/joining to a BSS:
22 * 9 (QoS), 11 (APSD), 12 (unused), 14 (unused), 15 (unused)
Holger Schurig697900a2008-04-02 16:27:10 +020023 */
24#define CAPINFO_MASK (~(0xda00))
25
26
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040027/**
28 * @brief This function finds common rates between rates and card rates.
29 *
30 * It will fill common rates in rates as output if found.
31 *
32 * NOTE: Setting the MSB of the basic rates need to be taken
33 * care, either before or after calling this function
34 *
35 * @param priv A pointer to struct lbs_private structure
36 * @param rates the buffer which keeps input and output
Dan Williamsca4fe302009-08-21 09:35:20 -050037 * @param rates_size the size of rates buffer; new size of buffer on return,
38 * which will be less than or equal to original rates_size
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040039 *
40 * @return 0 on success, or -1 on error
41 */
42static int get_common_rates(struct lbs_private *priv,
43 u8 *rates,
44 u16 *rates_size)
45{
Roel Kluin1e3d31c2009-08-02 09:44:12 +020046 int i, j;
Dan Williamsca4fe302009-08-21 09:35:20 -050047 u8 intersection[MAX_RATES];
48 u16 intersection_size;
49 u16 num_rates = 0;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040050
Dan Williamsca4fe302009-08-21 09:35:20 -050051 intersection_size = min_t(u16, *rates_size, ARRAY_SIZE(intersection));
Andrey Yurovsky6f632d52009-08-13 17:34:40 -070052
Dan Williamsca4fe302009-08-21 09:35:20 -050053 /* Allow each rate from 'rates' that is supported by the hardware */
54 for (i = 0; i < ARRAY_SIZE(lbs_bg_rates) && lbs_bg_rates[i]; i++) {
55 for (j = 0; j < intersection_size && rates[j]; j++) {
56 if (rates[j] == lbs_bg_rates[i])
57 intersection[num_rates++] = rates[j];
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040058 }
59 }
60
61 lbs_deb_hex(LBS_DEB_JOIN, "AP rates ", rates, *rates_size);
Dan Williamsca4fe302009-08-21 09:35:20 -050062 lbs_deb_hex(LBS_DEB_JOIN, "card rates ", lbs_bg_rates,
63 ARRAY_SIZE(lbs_bg_rates));
64 lbs_deb_hex(LBS_DEB_JOIN, "common rates", intersection, num_rates);
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040065 lbs_deb_join("TX data rate 0x%02x\n", priv->cur_rate);
66
67 if (!priv->enablehwauto) {
Dan Williamsca4fe302009-08-21 09:35:20 -050068 for (i = 0; i < num_rates; i++) {
69 if (intersection[i] == priv->cur_rate)
70 goto done;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040071 }
Dan Williamsca4fe302009-08-21 09:35:20 -050072 lbs_pr_alert("Previously set fixed data rate %#x isn't "
73 "compatible with the network.\n", priv->cur_rate);
74 return -1;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040075 }
Dan Williamsca4fe302009-08-21 09:35:20 -050076
77done:
78 memset(rates, 0, *rates_size);
79 *rates_size = num_rates;
80 memcpy(rates, intersection, num_rates);
Roel Kluin1e3d31c2009-08-02 09:44:12 +020081 return 0;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040082}
83
84
85/**
86 * @brief Sets the MSB on basic rates as the firmware requires
87 *
88 * Scan through an array and set the MSB for basic data rates.
89 *
90 * @param rates buffer of data rates
91 * @param len size of buffer
92 */
93static void lbs_set_basic_rate_flags(u8 *rates, size_t len)
94{
95 int i;
96
97 for (i = 0; i < len; i++) {
98 if (rates[i] == 0x02 || rates[i] == 0x04 ||
99 rates[i] == 0x0b || rates[i] == 0x16)
100 rates[i] |= 0x80;
101 }
102}
103
Holger Schurig697900a2008-04-02 16:27:10 +0200104
Dan Williamsbe0d76e2009-05-22 20:05:25 -0400105static u8 iw_auth_to_ieee_auth(u8 auth)
106{
107 if (auth == IW_AUTH_ALG_OPEN_SYSTEM)
108 return 0x00;
109 else if (auth == IW_AUTH_ALG_SHARED_KEY)
110 return 0x01;
111 else if (auth == IW_AUTH_ALG_LEAP)
112 return 0x80;
113
114 lbs_deb_join("%s: invalid auth alg 0x%X\n", __func__, auth);
115 return 0;
116}
117
118/**
119 * @brief This function prepares the authenticate command. AUTHENTICATE only
120 * sets the authentication suite for future associations, as the firmware
121 * handles authentication internally during the ASSOCIATE command.
122 *
123 * @param priv A pointer to struct lbs_private structure
124 * @param bssid The peer BSSID with which to authenticate
125 * @param auth The authentication mode to use (from wireless.h)
126 *
127 * @return 0 or -1
128 */
129static int lbs_set_authentication(struct lbs_private *priv, u8 bssid[6], u8 auth)
130{
131 struct cmd_ds_802_11_authenticate cmd;
132 int ret = -1;
Dan Williamsbe0d76e2009-05-22 20:05:25 -0400133
134 lbs_deb_enter(LBS_DEB_JOIN);
135
136 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
137 memcpy(cmd.bssid, bssid, ETH_ALEN);
138
139 cmd.authtype = iw_auth_to_ieee_auth(auth);
140
Johannes Berge91d8332009-07-15 17:21:41 +0200141 lbs_deb_join("AUTH_CMD: BSSID %pM, auth 0x%x\n", bssid, cmd.authtype);
Dan Williamsbe0d76e2009-05-22 20:05:25 -0400142
143 ret = lbs_cmd_with_response(priv, CMD_802_11_AUTHENTICATE, &cmd);
144
145 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
146 return ret;
147}
148
Dan Williams822ac032009-05-22 20:07:14 -0400149
150static int lbs_assoc_post(struct lbs_private *priv,
151 struct cmd_ds_802_11_associate_response *resp)
152{
153 int ret = 0;
154 union iwreq_data wrqu;
155 struct bss_descriptor *bss;
156 u16 status_code;
157
158 lbs_deb_enter(LBS_DEB_ASSOC);
159
160 if (!priv->in_progress_assoc_req) {
161 lbs_deb_assoc("ASSOC_RESP: no in-progress assoc request\n");
162 ret = -1;
163 goto done;
164 }
165 bss = &priv->in_progress_assoc_req->bss;
166
167 /*
168 * Older FW versions map the IEEE 802.11 Status Code in the association
169 * response to the following values returned in resp->statuscode:
170 *
171 * IEEE Status Code Marvell Status Code
172 * 0 -> 0x0000 ASSOC_RESULT_SUCCESS
173 * 13 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
174 * 14 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
175 * 15 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
176 * 16 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
177 * others -> 0x0003 ASSOC_RESULT_REFUSED
178 *
179 * Other response codes:
180 * 0x0001 -> ASSOC_RESULT_INVALID_PARAMETERS (unused)
181 * 0x0002 -> ASSOC_RESULT_TIMEOUT (internal timer expired waiting for
182 * association response from the AP)
183 */
184
185 status_code = le16_to_cpu(resp->statuscode);
186 if (priv->fwrelease < 0x09000000) {
187 switch (status_code) {
188 case 0x00:
189 break;
190 case 0x01:
191 lbs_deb_assoc("ASSOC_RESP: invalid parameters\n");
192 break;
193 case 0x02:
194 lbs_deb_assoc("ASSOC_RESP: internal timer "
195 "expired while waiting for the AP\n");
196 break;
197 case 0x03:
198 lbs_deb_assoc("ASSOC_RESP: association "
199 "refused by AP\n");
200 break;
201 case 0x04:
202 lbs_deb_assoc("ASSOC_RESP: authentication "
203 "refused by AP\n");
204 break;
205 default:
206 lbs_deb_assoc("ASSOC_RESP: failure reason 0x%02x "
207 " unknown\n", status_code);
208 break;
209 }
210 } else {
211 /* v9+ returns the AP's association response */
212 lbs_deb_assoc("ASSOC_RESP: failure reason 0x%02x\n", status_code);
213 }
214
215 if (status_code) {
216 lbs_mac_event_disconnected(priv);
217 ret = -1;
218 goto done;
219 }
220
221 lbs_deb_hex(LBS_DEB_ASSOC, "ASSOC_RESP",
222 (void *) (resp + sizeof (resp->hdr)),
223 le16_to_cpu(resp->hdr.size) - sizeof (resp->hdr));
224
225 /* Send a Media Connected event, according to the Spec */
226 priv->connect_status = LBS_CONNECTED;
227
228 /* Update current SSID and BSSID */
Holger Schurig243e84e2009-10-22 15:30:47 +0200229 memcpy(&priv->curbssparams.ssid, &bss->ssid, IEEE80211_MAX_SSID_LEN);
Dan Williams822ac032009-05-22 20:07:14 -0400230 priv->curbssparams.ssid_len = bss->ssid_len;
231 memcpy(priv->curbssparams.bssid, bss->bssid, ETH_ALEN);
232
233 priv->SNR[TYPE_RXPD][TYPE_AVG] = 0;
234 priv->NF[TYPE_RXPD][TYPE_AVG] = 0;
235
236 memset(priv->rawSNR, 0x00, sizeof(priv->rawSNR));
237 memset(priv->rawNF, 0x00, sizeof(priv->rawNF));
238 priv->nextSNRNF = 0;
239 priv->numSNRNF = 0;
240
241 netif_carrier_on(priv->dev);
242 if (!priv->tx_pending_len)
243 netif_wake_queue(priv->dev);
244
245 memcpy(wrqu.ap_addr.sa_data, priv->curbssparams.bssid, ETH_ALEN);
246 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
247 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
248
249done:
250 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
251 return ret;
252}
253
254/**
255 * @brief This function prepares an association-class command.
256 *
257 * @param priv A pointer to struct lbs_private structure
258 * @param assoc_req The association request describing the BSS to associate
259 * or reassociate with
260 * @param command The actual command, either CMD_802_11_ASSOCIATE or
261 * CMD_802_11_REASSOCIATE
262 *
263 * @return 0 or -1
264 */
265static int lbs_associate(struct lbs_private *priv,
266 struct assoc_request *assoc_req,
267 u16 command)
268{
269 struct cmd_ds_802_11_associate cmd;
270 int ret = 0;
271 struct bss_descriptor *bss = &assoc_req->bss;
272 u8 *pos = &(cmd.iebuf[0]);
273 u16 tmpcap, tmplen, tmpauth;
274 struct mrvl_ie_ssid_param_set *ssid;
275 struct mrvl_ie_ds_param_set *ds;
276 struct mrvl_ie_cf_param_set *cf;
277 struct mrvl_ie_rates_param_set *rates;
278 struct mrvl_ie_rsn_param_set *rsn;
279 struct mrvl_ie_auth_type *auth;
280
281 lbs_deb_enter(LBS_DEB_ASSOC);
282
283 BUG_ON((command != CMD_802_11_ASSOCIATE) &&
284 (command != CMD_802_11_REASSOCIATE));
285
286 memset(&cmd, 0, sizeof(cmd));
287 cmd.hdr.command = cpu_to_le16(command);
288
289 /* Fill in static fields */
290 memcpy(cmd.bssid, bss->bssid, ETH_ALEN);
291 cmd.listeninterval = cpu_to_le16(MRVDRV_DEFAULT_LISTEN_INTERVAL);
292
293 /* Capability info */
294 tmpcap = (bss->capability & CAPINFO_MASK);
295 if (bss->mode == IW_MODE_INFRA)
296 tmpcap |= WLAN_CAPABILITY_ESS;
297 cmd.capability = cpu_to_le16(tmpcap);
298 lbs_deb_assoc("ASSOC_CMD: capability 0x%04x\n", tmpcap);
299
300 /* SSID */
301 ssid = (struct mrvl_ie_ssid_param_set *) pos;
302 ssid->header.type = cpu_to_le16(TLV_TYPE_SSID);
303 tmplen = bss->ssid_len;
304 ssid->header.len = cpu_to_le16(tmplen);
305 memcpy(ssid->ssid, bss->ssid, tmplen);
306 pos += sizeof(ssid->header) + tmplen;
307
308 ds = (struct mrvl_ie_ds_param_set *) pos;
309 ds->header.type = cpu_to_le16(TLV_TYPE_PHY_DS);
310 ds->header.len = cpu_to_le16(1);
311 ds->channel = bss->phy.ds.channel;
312 pos += sizeof(ds->header) + 1;
313
314 cf = (struct mrvl_ie_cf_param_set *) pos;
315 cf->header.type = cpu_to_le16(TLV_TYPE_CF);
316 tmplen = sizeof(*cf) - sizeof (cf->header);
317 cf->header.len = cpu_to_le16(tmplen);
318 /* IE payload should be zeroed, firmware fills it in for us */
319 pos += sizeof(*cf);
320
321 rates = (struct mrvl_ie_rates_param_set *) pos;
322 rates->header.type = cpu_to_le16(TLV_TYPE_RATES);
Dan Williamsca4fe302009-08-21 09:35:20 -0500323 tmplen = min_t(u16, ARRAY_SIZE(bss->rates), MAX_RATES);
Roel Kluin1e3d31c2009-08-02 09:44:12 +0200324 memcpy(&rates->rates, &bss->rates, tmplen);
Dan Williams822ac032009-05-22 20:07:14 -0400325 if (get_common_rates(priv, rates->rates, &tmplen)) {
326 ret = -1;
327 goto done;
328 }
329 pos += sizeof(rates->header) + tmplen;
330 rates->header.len = cpu_to_le16(tmplen);
331 lbs_deb_assoc("ASSOC_CMD: num rates %u\n", tmplen);
332
333 /* Copy the infra. association rates into Current BSS state structure */
334 memset(&priv->curbssparams.rates, 0, sizeof(priv->curbssparams.rates));
335 memcpy(&priv->curbssparams.rates, &rates->rates, tmplen);
336
337 /* Set MSB on basic rates as the firmware requires, but _after_
338 * copying to current bss rates.
339 */
340 lbs_set_basic_rate_flags(rates->rates, tmplen);
341
342 /* Firmware v9+ indicate authentication suites as a TLV */
343 if (priv->fwrelease >= 0x09000000) {
Dan Williams822ac032009-05-22 20:07:14 -0400344 auth = (struct mrvl_ie_auth_type *) pos;
345 auth->header.type = cpu_to_le16(TLV_TYPE_AUTH_TYPE);
346 auth->header.len = cpu_to_le16(2);
347 tmpauth = iw_auth_to_ieee_auth(priv->secinfo.auth_mode);
348 auth->auth = cpu_to_le16(tmpauth);
349 pos += sizeof(auth->header) + 2;
350
Johannes Berge91d8332009-07-15 17:21:41 +0200351 lbs_deb_join("AUTH_CMD: BSSID %pM, auth 0x%x\n",
352 bss->bssid, priv->secinfo.auth_mode);
Dan Williams822ac032009-05-22 20:07:14 -0400353 }
354
355 /* WPA/WPA2 IEs */
356 if (assoc_req->secinfo.WPAenabled || assoc_req->secinfo.WPA2enabled) {
357 rsn = (struct mrvl_ie_rsn_param_set *) pos;
358 /* WPA_IE or WPA2_IE */
359 rsn->header.type = cpu_to_le16((u16) assoc_req->wpa_ie[0]);
360 tmplen = (u16) assoc_req->wpa_ie[1];
361 rsn->header.len = cpu_to_le16(tmplen);
362 memcpy(rsn->rsnie, &assoc_req->wpa_ie[2], tmplen);
363 lbs_deb_hex(LBS_DEB_JOIN, "ASSOC_CMD: WPA/RSN IE", (u8 *) rsn,
364 sizeof(rsn->header) + tmplen);
365 pos += sizeof(rsn->header) + tmplen;
366 }
367
368 cmd.hdr.size = cpu_to_le16((sizeof(cmd) - sizeof(cmd.iebuf)) +
369 (u16)(pos - (u8 *) &cmd.iebuf));
370
371 /* update curbssparams */
372 priv->curbssparams.channel = bss->phy.ds.channel;
373
Dan Williams822ac032009-05-22 20:07:14 -0400374 ret = lbs_cmd_with_response(priv, command, &cmd);
375 if (ret == 0) {
376 ret = lbs_assoc_post(priv,
377 (struct cmd_ds_802_11_associate_response *) &cmd);
378 }
379
380done:
381 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
382 return ret;
383}
384
Holger Schurig697900a2008-04-02 16:27:10 +0200385/**
386 * @brief Associate to a specific BSS discovered in a scan
387 *
388 * @param priv A pointer to struct lbs_private structure
Dan Williamsd5db2df2008-08-21 17:51:07 -0400389 * @param assoc_req The association request describing the BSS to associate with
Holger Schurig697900a2008-04-02 16:27:10 +0200390 *
391 * @return 0-success, otherwise fail
392 */
Dan Williams822ac032009-05-22 20:07:14 -0400393static int lbs_try_associate(struct lbs_private *priv,
Holger Schurig697900a2008-04-02 16:27:10 +0200394 struct assoc_request *assoc_req)
395{
396 int ret;
Dan Williamsd5db2df2008-08-21 17:51:07 -0400397 u8 preamble = RADIO_PREAMBLE_LONG;
Holger Schurig697900a2008-04-02 16:27:10 +0200398
399 lbs_deb_enter(LBS_DEB_ASSOC);
400
Dan Williamsbe0d76e2009-05-22 20:05:25 -0400401 /* FW v9 and higher indicate authentication suites as a TLV in the
402 * association command, not as a separate authentication command.
403 */
404 if (priv->fwrelease < 0x09000000) {
405 ret = lbs_set_authentication(priv, assoc_req->bss.bssid,
406 priv->secinfo.auth_mode);
407 if (ret)
408 goto out;
409 }
Holger Schurig697900a2008-04-02 16:27:10 +0200410
Dan Williamsd5db2df2008-08-21 17:51:07 -0400411 /* Use short preamble only when both the BSS and firmware support it */
Holger Schurig697900a2008-04-02 16:27:10 +0200412 if ((priv->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) &&
413 (assoc_req->bss.capability & WLAN_CAPABILITY_SHORT_PREAMBLE))
Dan Williamsd5db2df2008-08-21 17:51:07 -0400414 preamble = RADIO_PREAMBLE_SHORT;
Holger Schurig697900a2008-04-02 16:27:10 +0200415
Dan Williamsd5db2df2008-08-21 17:51:07 -0400416 ret = lbs_set_radio(priv, preamble, 1);
417 if (ret)
418 goto out;
Holger Schurig697900a2008-04-02 16:27:10 +0200419
Dan Williams822ac032009-05-22 20:07:14 -0400420 ret = lbs_associate(priv, assoc_req, CMD_802_11_ASSOCIATE);
Holger Schurig697900a2008-04-02 16:27:10 +0200421
Dan Williamsd5db2df2008-08-21 17:51:07 -0400422out:
Holger Schurig697900a2008-04-02 16:27:10 +0200423 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
424 return ret;
425}
426
Dan Williams822ac032009-05-22 20:07:14 -0400427static int lbs_adhoc_post(struct lbs_private *priv,
428 struct cmd_ds_802_11_ad_hoc_result *resp)
429{
430 int ret = 0;
431 u16 command = le16_to_cpu(resp->hdr.command);
432 u16 result = le16_to_cpu(resp->hdr.result);
433 union iwreq_data wrqu;
434 struct bss_descriptor *bss;
435 DECLARE_SSID_BUF(ssid);
436
437 lbs_deb_enter(LBS_DEB_JOIN);
438
439 if (!priv->in_progress_assoc_req) {
440 lbs_deb_join("ADHOC_RESP: no in-progress association "
441 "request\n");
442 ret = -1;
443 goto done;
444 }
445 bss = &priv->in_progress_assoc_req->bss;
446
447 /*
448 * Join result code 0 --> SUCCESS
449 */
450 if (result) {
451 lbs_deb_join("ADHOC_RESP: failed (result 0x%X)\n", result);
452 if (priv->connect_status == LBS_CONNECTED)
453 lbs_mac_event_disconnected(priv);
454 ret = -1;
455 goto done;
456 }
457
458 /* Send a Media Connected event, according to the Spec */
459 priv->connect_status = LBS_CONNECTED;
460
461 if (command == CMD_RET(CMD_802_11_AD_HOC_START)) {
462 /* Update the created network descriptor with the new BSSID */
463 memcpy(bss->bssid, resp->bssid, ETH_ALEN);
464 }
465
466 /* Set the BSSID from the joined/started descriptor */
467 memcpy(&priv->curbssparams.bssid, bss->bssid, ETH_ALEN);
468
469 /* Set the new SSID to current SSID */
Holger Schurig243e84e2009-10-22 15:30:47 +0200470 memcpy(&priv->curbssparams.ssid, &bss->ssid, IEEE80211_MAX_SSID_LEN);
Dan Williams822ac032009-05-22 20:07:14 -0400471 priv->curbssparams.ssid_len = bss->ssid_len;
472
473 netif_carrier_on(priv->dev);
474 if (!priv->tx_pending_len)
475 netif_wake_queue(priv->dev);
476
477 memset(&wrqu, 0, sizeof(wrqu));
478 memcpy(wrqu.ap_addr.sa_data, priv->curbssparams.bssid, ETH_ALEN);
479 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
480 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
481
482 lbs_deb_join("ADHOC_RESP: Joined/started '%s', BSSID %pM, channel %d\n",
483 print_ssid(ssid, bss->ssid, bss->ssid_len),
484 priv->curbssparams.bssid,
485 priv->curbssparams.channel);
486
487done:
488 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
489 return ret;
490}
491
Holger Schurig697900a2008-04-02 16:27:10 +0200492/**
493 * @brief Join an adhoc network found in a previous scan
494 *
495 * @param priv A pointer to struct lbs_private structure
Dan Williamsd5db2df2008-08-21 17:51:07 -0400496 * @param assoc_req The association request describing the BSS to join
Holger Schurig697900a2008-04-02 16:27:10 +0200497 *
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400498 * @return 0 on success, error on failure
Holger Schurig697900a2008-04-02 16:27:10 +0200499 */
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400500static int lbs_adhoc_join(struct lbs_private *priv,
Holger Schurig697900a2008-04-02 16:27:10 +0200501 struct assoc_request *assoc_req)
502{
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400503 struct cmd_ds_802_11_ad_hoc_join cmd;
Holger Schurig697900a2008-04-02 16:27:10 +0200504 struct bss_descriptor *bss = &assoc_req->bss;
Dan Williamsd5db2df2008-08-21 17:51:07 -0400505 u8 preamble = RADIO_PREAMBLE_LONG;
John W. Linville9387b7c2008-09-30 20:59:05 -0400506 DECLARE_SSID_BUF(ssid);
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400507 u16 ratesize = 0;
508 int ret = 0;
Dan Williamsd5db2df2008-08-21 17:51:07 -0400509
510 lbs_deb_enter(LBS_DEB_ASSOC);
Holger Schurig697900a2008-04-02 16:27:10 +0200511
512 lbs_deb_join("current SSID '%s', ssid length %u\n",
John W. Linville9387b7c2008-09-30 20:59:05 -0400513 print_ssid(ssid, priv->curbssparams.ssid,
Holger Schurig697900a2008-04-02 16:27:10 +0200514 priv->curbssparams.ssid_len),
515 priv->curbssparams.ssid_len);
516 lbs_deb_join("requested ssid '%s', ssid length %u\n",
John W. Linville9387b7c2008-09-30 20:59:05 -0400517 print_ssid(ssid, bss->ssid, bss->ssid_len),
Holger Schurig697900a2008-04-02 16:27:10 +0200518 bss->ssid_len);
519
520 /* check if the requested SSID is already joined */
521 if (priv->curbssparams.ssid_len &&
522 !lbs_ssid_cmp(priv->curbssparams.ssid,
523 priv->curbssparams.ssid_len,
524 bss->ssid, bss->ssid_len) &&
525 (priv->mode == IW_MODE_ADHOC) &&
526 (priv->connect_status == LBS_CONNECTED)) {
527 union iwreq_data wrqu;
528
529 lbs_deb_join("ADHOC_J_CMD: New ad-hoc SSID is the same as "
530 "current, not attempting to re-join");
531
532 /* Send the re-association event though, because the association
533 * request really was successful, even if just a null-op.
534 */
535 memset(&wrqu, 0, sizeof(wrqu));
536 memcpy(wrqu.ap_addr.sa_data, priv->curbssparams.bssid,
537 ETH_ALEN);
538 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
539 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
540 goto out;
541 }
542
Dan Williamsd5db2df2008-08-21 17:51:07 -0400543 /* Use short preamble only when both the BSS and firmware support it */
544 if ((priv->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) &&
545 (bss->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)) {
Holger Schurig697900a2008-04-02 16:27:10 +0200546 lbs_deb_join("AdhocJoin: Short preamble\n");
Dan Williamsd5db2df2008-08-21 17:51:07 -0400547 preamble = RADIO_PREAMBLE_SHORT;
Holger Schurig697900a2008-04-02 16:27:10 +0200548 }
549
Dan Williamsd5db2df2008-08-21 17:51:07 -0400550 ret = lbs_set_radio(priv, preamble, 1);
551 if (ret)
552 goto out;
Holger Schurig697900a2008-04-02 16:27:10 +0200553
554 lbs_deb_join("AdhocJoin: channel = %d\n", assoc_req->channel);
555 lbs_deb_join("AdhocJoin: band = %c\n", assoc_req->band);
556
557 priv->adhoccreate = 0;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400558 priv->curbssparams.channel = bss->channel;
Holger Schurig697900a2008-04-02 16:27:10 +0200559
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400560 /* Build the join command */
561 memset(&cmd, 0, sizeof(cmd));
562 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
563
564 cmd.bss.type = CMD_BSS_TYPE_IBSS;
565 cmd.bss.beaconperiod = cpu_to_le16(bss->beaconperiod);
566
567 memcpy(&cmd.bss.bssid, &bss->bssid, ETH_ALEN);
568 memcpy(&cmd.bss.ssid, &bss->ssid, bss->ssid_len);
569
Dan Williams5fd164e2009-05-22 20:01:21 -0400570 memcpy(&cmd.bss.ds, &bss->phy.ds, sizeof(struct ieee_ie_ds_param_set));
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400571
Dan Williams5fd164e2009-05-22 20:01:21 -0400572 memcpy(&cmd.bss.ibss, &bss->ss.ibss,
573 sizeof(struct ieee_ie_ibss_param_set));
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400574
575 cmd.bss.capability = cpu_to_le16(bss->capability & CAPINFO_MASK);
576 lbs_deb_join("ADHOC_J_CMD: tmpcap=%4X CAPINFO_MASK=%4X\n",
577 bss->capability, CAPINFO_MASK);
578
579 /* information on BSSID descriptor passed to FW */
Johannes Berge1749612008-10-27 15:59:26 -0700580 lbs_deb_join("ADHOC_J_CMD: BSSID = %pM, SSID = '%s'\n",
581 cmd.bss.bssid, cmd.bss.ssid);
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400582
583 /* Only v8 and below support setting these */
584 if (priv->fwrelease < 0x09000000) {
585 /* failtimeout */
586 cmd.failtimeout = cpu_to_le16(MRVDRV_ASSOCIATION_TIME_OUT);
587 /* probedelay */
588 cmd.probedelay = cpu_to_le16(CMD_SCAN_PROBE_DELAY_TIME);
589 }
590
591 /* Copy Data rates from the rates recorded in scan response */
592 memset(cmd.bss.rates, 0, sizeof(cmd.bss.rates));
Dan Williamsca4fe302009-08-21 09:35:20 -0500593 ratesize = min_t(u16, ARRAY_SIZE(cmd.bss.rates), ARRAY_SIZE (bss->rates));
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400594 memcpy(cmd.bss.rates, bss->rates, ratesize);
595 if (get_common_rates(priv, cmd.bss.rates, &ratesize)) {
596 lbs_deb_join("ADHOC_JOIN: get_common_rates returned error.\n");
597 ret = -1;
598 goto out;
599 }
600
601 /* Copy the ad-hoc creation rates into Current BSS state structure */
602 memset(&priv->curbssparams.rates, 0, sizeof(priv->curbssparams.rates));
603 memcpy(&priv->curbssparams.rates, cmd.bss.rates, ratesize);
604
605 /* Set MSB on basic rates as the firmware requires, but _after_
606 * copying to current bss rates.
607 */
608 lbs_set_basic_rate_flags(cmd.bss.rates, ratesize);
609
Dan Williams5fd164e2009-05-22 20:01:21 -0400610 cmd.bss.ibss.atimwindow = bss->atimwindow;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400611
612 if (assoc_req->secinfo.wep_enabled) {
613 u16 tmp = le16_to_cpu(cmd.bss.capability);
614 tmp |= WLAN_CAPABILITY_PRIVACY;
615 cmd.bss.capability = cpu_to_le16(tmp);
616 }
617
618 if (priv->psmode == LBS802_11POWERMODEMAX_PSP) {
619 __le32 local_ps_mode = cpu_to_le32(LBS802_11POWERMODECAM);
620
621 /* wake up first */
622 ret = lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
623 CMD_ACT_SET, 0, 0,
624 &local_ps_mode);
625 if (ret) {
626 ret = -1;
627 goto out;
628 }
629 }
630
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400631 ret = lbs_cmd_with_response(priv, CMD_802_11_AD_HOC_JOIN, &cmd);
Dan Williams822ac032009-05-22 20:07:14 -0400632 if (ret == 0) {
633 ret = lbs_adhoc_post(priv,
634 (struct cmd_ds_802_11_ad_hoc_result *)&cmd);
635 }
Holger Schurig697900a2008-04-02 16:27:10 +0200636
637out:
Dan Williamsd5db2df2008-08-21 17:51:07 -0400638 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Holger Schurig697900a2008-04-02 16:27:10 +0200639 return ret;
640}
641
642/**
643 * @brief Start an Adhoc Network
644 *
645 * @param priv A pointer to struct lbs_private structure
Dan Williamsd5db2df2008-08-21 17:51:07 -0400646 * @param assoc_req The association request describing the BSS to start
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400647 *
648 * @return 0 on success, error on failure
Holger Schurig697900a2008-04-02 16:27:10 +0200649 */
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400650static int lbs_adhoc_start(struct lbs_private *priv,
Holger Schurig697900a2008-04-02 16:27:10 +0200651 struct assoc_request *assoc_req)
652{
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400653 struct cmd_ds_802_11_ad_hoc_start cmd;
Dan Williamsd5db2df2008-08-21 17:51:07 -0400654 u8 preamble = RADIO_PREAMBLE_LONG;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400655 size_t ratesize = 0;
656 u16 tmpcap = 0;
657 int ret = 0;
John W. Linville9387b7c2008-09-30 20:59:05 -0400658 DECLARE_SSID_BUF(ssid);
Dan Williamsd5db2df2008-08-21 17:51:07 -0400659
660 lbs_deb_enter(LBS_DEB_ASSOC);
Holger Schurig697900a2008-04-02 16:27:10 +0200661
Holger Schurig697900a2008-04-02 16:27:10 +0200662 if (priv->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) {
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400663 lbs_deb_join("ADHOC_START: Will use short preamble\n");
Dan Williamsd5db2df2008-08-21 17:51:07 -0400664 preamble = RADIO_PREAMBLE_SHORT;
Holger Schurig697900a2008-04-02 16:27:10 +0200665 }
666
Dan Williamsd5db2df2008-08-21 17:51:07 -0400667 ret = lbs_set_radio(priv, preamble, 1);
668 if (ret)
669 goto out;
Holger Schurig697900a2008-04-02 16:27:10 +0200670
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400671 /* Build the start command */
672 memset(&cmd, 0, sizeof(cmd));
673 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Holger Schurig697900a2008-04-02 16:27:10 +0200674
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400675 memcpy(cmd.ssid, assoc_req->ssid, assoc_req->ssid_len);
676
677 lbs_deb_join("ADHOC_START: SSID '%s', ssid length %u\n",
John W. Linville9387b7c2008-09-30 20:59:05 -0400678 print_ssid(ssid, assoc_req->ssid, assoc_req->ssid_len),
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400679 assoc_req->ssid_len);
680
681 cmd.bsstype = CMD_BSS_TYPE_IBSS;
682
683 if (priv->beacon_period == 0)
684 priv->beacon_period = MRVDRV_BEACON_INTERVAL;
685 cmd.beaconperiod = cpu_to_le16(priv->beacon_period);
686
687 WARN_ON(!assoc_req->channel);
688
689 /* set Physical parameter set */
Dan Williams75b6a612009-05-22 20:03:09 -0400690 cmd.ds.header.id = WLAN_EID_DS_PARAMS;
691 cmd.ds.header.len = 1;
Dan Williams5fd164e2009-05-22 20:01:21 -0400692 cmd.ds.channel = assoc_req->channel;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400693
694 /* set IBSS parameter set */
Dan Williams75b6a612009-05-22 20:03:09 -0400695 cmd.ibss.header.id = WLAN_EID_IBSS_PARAMS;
696 cmd.ibss.header.len = 2;
Dan Williams5fd164e2009-05-22 20:01:21 -0400697 cmd.ibss.atimwindow = cpu_to_le16(0);
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400698
699 /* set capability info */
700 tmpcap = WLAN_CAPABILITY_IBSS;
Dan Williams2fa7a982009-05-22 20:09:58 -0400701 if (assoc_req->secinfo.wep_enabled ||
702 assoc_req->secinfo.WPAenabled ||
703 assoc_req->secinfo.WPA2enabled) {
704 lbs_deb_join("ADHOC_START: WEP/WPA enabled, privacy on\n");
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400705 tmpcap |= WLAN_CAPABILITY_PRIVACY;
706 } else
Dan Williams2fa7a982009-05-22 20:09:58 -0400707 lbs_deb_join("ADHOC_START: WEP disabled, privacy off\n");
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400708
709 cmd.capability = cpu_to_le16(tmpcap);
710
711 /* Only v8 and below support setting probe delay */
712 if (priv->fwrelease < 0x09000000)
713 cmd.probedelay = cpu_to_le16(CMD_SCAN_PROBE_DELAY_TIME);
714
715 ratesize = min(sizeof(cmd.rates), sizeof(lbs_bg_rates));
716 memcpy(cmd.rates, lbs_bg_rates, ratesize);
717
718 /* Copy the ad-hoc creating rates into Current BSS state structure */
719 memset(&priv->curbssparams.rates, 0, sizeof(priv->curbssparams.rates));
720 memcpy(&priv->curbssparams.rates, &cmd.rates, ratesize);
721
722 /* Set MSB on basic rates as the firmware requires, but _after_
723 * copying to current bss rates.
724 */
725 lbs_set_basic_rate_flags(cmd.rates, ratesize);
726
727 lbs_deb_join("ADHOC_START: rates=%02x %02x %02x %02x\n",
728 cmd.rates[0], cmd.rates[1], cmd.rates[2], cmd.rates[3]);
729
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400730 lbs_deb_join("ADHOC_START: Starting Ad-Hoc BSS on channel %d, band %d\n",
731 assoc_req->channel, assoc_req->band);
732
733 priv->adhoccreate = 1;
734 priv->mode = IW_MODE_ADHOC;
735
736 ret = lbs_cmd_with_response(priv, CMD_802_11_AD_HOC_START, &cmd);
737 if (ret == 0)
Dan Williams822ac032009-05-22 20:07:14 -0400738 ret = lbs_adhoc_post(priv,
739 (struct cmd_ds_802_11_ad_hoc_result *)&cmd);
Holger Schurig697900a2008-04-02 16:27:10 +0200740
Dan Williamsd5db2df2008-08-21 17:51:07 -0400741out:
742 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Holger Schurig697900a2008-04-02 16:27:10 +0200743 return ret;
744}
745
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400746/**
747 * @brief Stop and Ad-Hoc network and exit Ad-Hoc mode
748 *
749 * @param priv A pointer to struct lbs_private structure
750 * @return 0 on success, or an error
751 */
752int lbs_adhoc_stop(struct lbs_private *priv)
Holger Schurig697900a2008-04-02 16:27:10 +0200753{
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400754 struct cmd_ds_802_11_ad_hoc_stop cmd;
755 int ret;
756
757 lbs_deb_enter(LBS_DEB_JOIN);
758
759 memset(&cmd, 0, sizeof (cmd));
760 cmd.hdr.size = cpu_to_le16 (sizeof (cmd));
761
762 ret = lbs_cmd_with_response(priv, CMD_802_11_AD_HOC_STOP, &cmd);
763
764 /* Clean up everything even if there was an error */
765 lbs_mac_event_disconnected(priv);
766
767 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
768 return ret;
Holger Schurig697900a2008-04-02 16:27:10 +0200769}
Dan Williamse76850d2007-05-25 17:09:41 -0400770
Holger Schurig245bf202008-04-02 16:27:42 +0200771static inline int match_bss_no_security(struct lbs_802_11_security *secinfo,
772 struct bss_descriptor *match_bss)
773{
774 if (!secinfo->wep_enabled && !secinfo->WPAenabled
775 && !secinfo->WPA2enabled
Johannes Berg2c7060022008-10-30 22:09:54 +0100776 && match_bss->wpa_ie[0] != WLAN_EID_GENERIC
777 && match_bss->rsn_ie[0] != WLAN_EID_RSN
Holger Schurig245bf202008-04-02 16:27:42 +0200778 && !(match_bss->capability & WLAN_CAPABILITY_PRIVACY))
779 return 1;
780 else
781 return 0;
782}
783
784static inline int match_bss_static_wep(struct lbs_802_11_security *secinfo,
785 struct bss_descriptor *match_bss)
786{
787 if (secinfo->wep_enabled && !secinfo->WPAenabled
788 && !secinfo->WPA2enabled
789 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY))
790 return 1;
791 else
792 return 0;
793}
794
795static inline int match_bss_wpa(struct lbs_802_11_security *secinfo,
796 struct bss_descriptor *match_bss)
797{
798 if (!secinfo->wep_enabled && secinfo->WPAenabled
Johannes Berg2c7060022008-10-30 22:09:54 +0100799 && (match_bss->wpa_ie[0] == WLAN_EID_GENERIC)
Holger Schurig245bf202008-04-02 16:27:42 +0200800 /* privacy bit may NOT be set in some APs like LinkSys WRT54G
801 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY) */
802 )
803 return 1;
804 else
805 return 0;
806}
807
808static inline int match_bss_wpa2(struct lbs_802_11_security *secinfo,
809 struct bss_descriptor *match_bss)
810{
811 if (!secinfo->wep_enabled && secinfo->WPA2enabled &&
Johannes Berg2c7060022008-10-30 22:09:54 +0100812 (match_bss->rsn_ie[0] == WLAN_EID_RSN)
Holger Schurig245bf202008-04-02 16:27:42 +0200813 /* privacy bit may NOT be set in some APs like LinkSys WRT54G
814 (match_bss->capability & WLAN_CAPABILITY_PRIVACY) */
815 )
816 return 1;
817 else
818 return 0;
819}
820
821static inline int match_bss_dynamic_wep(struct lbs_802_11_security *secinfo,
822 struct bss_descriptor *match_bss)
823{
824 if (!secinfo->wep_enabled && !secinfo->WPAenabled
825 && !secinfo->WPA2enabled
Johannes Berg2c7060022008-10-30 22:09:54 +0100826 && (match_bss->wpa_ie[0] != WLAN_EID_GENERIC)
827 && (match_bss->rsn_ie[0] != WLAN_EID_RSN)
Holger Schurig245bf202008-04-02 16:27:42 +0200828 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY))
829 return 1;
830 else
831 return 0;
832}
833
834/**
835 * @brief Check if a scanned network compatible with the driver settings
836 *
837 * WEP WPA WPA2 ad-hoc encrypt Network
838 * enabled enabled enabled AES mode privacy WPA WPA2 Compatible
839 * 0 0 0 0 NONE 0 0 0 yes No security
840 * 1 0 0 0 NONE 1 0 0 yes Static WEP
841 * 0 1 0 0 x 1x 1 x yes WPA
842 * 0 0 1 0 x 1x x 1 yes WPA2
843 * 0 0 0 1 NONE 1 0 0 yes Ad-hoc AES
844 * 0 0 0 0 !=NONE 1 0 0 yes Dynamic WEP
845 *
846 *
847 * @param priv A pointer to struct lbs_private
848 * @param index Index in scantable to check against current driver settings
849 * @param mode Network mode: Infrastructure or IBSS
850 *
851 * @return Index in scantable, or error code if negative
852 */
853static int is_network_compatible(struct lbs_private *priv,
854 struct bss_descriptor *bss, uint8_t mode)
855{
856 int matched = 0;
857
858 lbs_deb_enter(LBS_DEB_SCAN);
859
860 if (bss->mode != mode)
861 goto done;
862
863 matched = match_bss_no_security(&priv->secinfo, bss);
864 if (matched)
865 goto done;
866 matched = match_bss_static_wep(&priv->secinfo, bss);
867 if (matched)
868 goto done;
869 matched = match_bss_wpa(&priv->secinfo, bss);
870 if (matched) {
871 lbs_deb_scan("is_network_compatible() WPA: wpa_ie 0x%x "
872 "wpa2_ie 0x%x WEP %s WPA %s WPA2 %s "
873 "privacy 0x%x\n", bss->wpa_ie[0], bss->rsn_ie[0],
874 priv->secinfo.wep_enabled ? "e" : "d",
875 priv->secinfo.WPAenabled ? "e" : "d",
876 priv->secinfo.WPA2enabled ? "e" : "d",
877 (bss->capability & WLAN_CAPABILITY_PRIVACY));
878 goto done;
879 }
880 matched = match_bss_wpa2(&priv->secinfo, bss);
881 if (matched) {
882 lbs_deb_scan("is_network_compatible() WPA2: wpa_ie 0x%x "
883 "wpa2_ie 0x%x WEP %s WPA %s WPA2 %s "
884 "privacy 0x%x\n", bss->wpa_ie[0], bss->rsn_ie[0],
885 priv->secinfo.wep_enabled ? "e" : "d",
886 priv->secinfo.WPAenabled ? "e" : "d",
887 priv->secinfo.WPA2enabled ? "e" : "d",
888 (bss->capability & WLAN_CAPABILITY_PRIVACY));
889 goto done;
890 }
891 matched = match_bss_dynamic_wep(&priv->secinfo, bss);
892 if (matched) {
893 lbs_deb_scan("is_network_compatible() dynamic WEP: "
894 "wpa_ie 0x%x wpa2_ie 0x%x privacy 0x%x\n",
895 bss->wpa_ie[0], bss->rsn_ie[0],
896 (bss->capability & WLAN_CAPABILITY_PRIVACY));
897 goto done;
898 }
899
900 /* bss security settings don't match those configured on card */
901 lbs_deb_scan("is_network_compatible() FAILED: wpa_ie 0x%x "
902 "wpa2_ie 0x%x WEP %s WPA %s WPA2 %s privacy 0x%x\n",
903 bss->wpa_ie[0], bss->rsn_ie[0],
904 priv->secinfo.wep_enabled ? "e" : "d",
905 priv->secinfo.WPAenabled ? "e" : "d",
906 priv->secinfo.WPA2enabled ? "e" : "d",
907 (bss->capability & WLAN_CAPABILITY_PRIVACY));
908
909done:
910 lbs_deb_leave_args(LBS_DEB_SCAN, "matched: %d", matched);
911 return matched;
912}
913
914/**
915 * @brief This function finds a specific compatible BSSID in the scan list
916 *
917 * Used in association code
918 *
919 * @param priv A pointer to struct lbs_private
920 * @param bssid BSSID to find in the scan list
921 * @param mode Network mode: Infrastructure or IBSS
922 *
923 * @return index in BSSID list, or error return code (< 0)
924 */
925static struct bss_descriptor *lbs_find_bssid_in_list(struct lbs_private *priv,
926 uint8_t *bssid, uint8_t mode)
927{
928 struct bss_descriptor *iter_bss;
929 struct bss_descriptor *found_bss = NULL;
930
931 lbs_deb_enter(LBS_DEB_SCAN);
932
933 if (!bssid)
934 goto out;
935
936 lbs_deb_hex(LBS_DEB_SCAN, "looking for", bssid, ETH_ALEN);
937
938 /* Look through the scan table for a compatible match. The loop will
939 * continue past a matched bssid that is not compatible in case there
940 * is an AP with multiple SSIDs assigned to the same BSSID
941 */
942 mutex_lock(&priv->lock);
943 list_for_each_entry(iter_bss, &priv->network_list, list) {
944 if (compare_ether_addr(iter_bss->bssid, bssid))
945 continue; /* bssid doesn't match */
946 switch (mode) {
947 case IW_MODE_INFRA:
948 case IW_MODE_ADHOC:
949 if (!is_network_compatible(priv, iter_bss, mode))
950 break;
951 found_bss = iter_bss;
952 break;
953 default:
954 found_bss = iter_bss;
955 break;
956 }
957 }
958 mutex_unlock(&priv->lock);
959
960out:
961 lbs_deb_leave_args(LBS_DEB_SCAN, "found_bss %p", found_bss);
962 return found_bss;
963}
964
965/**
966 * @brief This function finds ssid in ssid list.
967 *
968 * Used in association code
969 *
970 * @param priv A pointer to struct lbs_private
971 * @param ssid SSID to find in the list
972 * @param bssid BSSID to qualify the SSID selection (if provided)
973 * @param mode Network mode: Infrastructure or IBSS
974 *
975 * @return index in BSSID list
976 */
977static struct bss_descriptor *lbs_find_ssid_in_list(struct lbs_private *priv,
978 uint8_t *ssid, uint8_t ssid_len,
979 uint8_t *bssid, uint8_t mode,
980 int channel)
981{
982 u32 bestrssi = 0;
983 struct bss_descriptor *iter_bss = NULL;
984 struct bss_descriptor *found_bss = NULL;
985 struct bss_descriptor *tmp_oldest = NULL;
986
987 lbs_deb_enter(LBS_DEB_SCAN);
988
989 mutex_lock(&priv->lock);
990
991 list_for_each_entry(iter_bss, &priv->network_list, list) {
992 if (!tmp_oldest ||
993 (iter_bss->last_scanned < tmp_oldest->last_scanned))
994 tmp_oldest = iter_bss;
995
996 if (lbs_ssid_cmp(iter_bss->ssid, iter_bss->ssid_len,
997 ssid, ssid_len) != 0)
998 continue; /* ssid doesn't match */
999 if (bssid && compare_ether_addr(iter_bss->bssid, bssid) != 0)
1000 continue; /* bssid doesn't match */
1001 if ((channel > 0) && (iter_bss->channel != channel))
1002 continue; /* channel doesn't match */
1003
1004 switch (mode) {
1005 case IW_MODE_INFRA:
1006 case IW_MODE_ADHOC:
1007 if (!is_network_compatible(priv, iter_bss, mode))
1008 break;
1009
1010 if (bssid) {
1011 /* Found requested BSSID */
1012 found_bss = iter_bss;
1013 goto out;
1014 }
1015
1016 if (SCAN_RSSI(iter_bss->rssi) > bestrssi) {
1017 bestrssi = SCAN_RSSI(iter_bss->rssi);
1018 found_bss = iter_bss;
1019 }
1020 break;
1021 case IW_MODE_AUTO:
1022 default:
1023 if (SCAN_RSSI(iter_bss->rssi) > bestrssi) {
1024 bestrssi = SCAN_RSSI(iter_bss->rssi);
1025 found_bss = iter_bss;
1026 }
1027 break;
1028 }
1029 }
1030
1031out:
1032 mutex_unlock(&priv->lock);
1033 lbs_deb_leave_args(LBS_DEB_SCAN, "found_bss %p", found_bss);
1034 return found_bss;
1035}
1036
Holger Schurig69f90322007-11-23 15:43:44 +01001037static int assoc_helper_essid(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001038 struct assoc_request * assoc_req)
1039{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001040 int ret = 0;
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001041 struct bss_descriptor * bss;
Dan Williamsaeea0ab2007-05-25 22:30:48 -04001042 int channel = -1;
John W. Linville9387b7c2008-09-30 20:59:05 -04001043 DECLARE_SSID_BUF(ssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001044
Holger Schurig9012b282007-05-25 11:27:16 -04001045 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001046
Dan Williamsef9a2642007-05-25 16:46:33 -04001047 /* FIXME: take channel into account when picking SSIDs if a channel
1048 * is set.
1049 */
1050
Dan Williamsaeea0ab2007-05-25 22:30:48 -04001051 if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags))
1052 channel = assoc_req->channel;
1053
Holger Schurig0765af42007-10-15 12:55:56 +02001054 lbs_deb_assoc("SSID '%s' requested\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04001055 print_ssid(ssid, assoc_req->ssid, assoc_req->ssid_len));
Dan Williams0dc5a292007-05-10 22:58:02 -04001056 if (assoc_req->mode == IW_MODE_INFRA) {
Holger Schurig10078322007-11-15 18:05:47 -05001057 lbs_send_specific_ssid_scan(priv, assoc_req->ssid,
Holger Schurig52933d82008-03-05 07:05:32 +01001058 assoc_req->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001059
David Woodhouseaa21c002007-12-08 20:04:36 +00001060 bss = lbs_find_ssid_in_list(priv, assoc_req->ssid,
Dan Williamsd8efea22007-05-28 23:54:55 -04001061 assoc_req->ssid_len, NULL, IW_MODE_INFRA, channel);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001062 if (bss != NULL) {
Dan Williamse76850d2007-05-25 17:09:41 -04001063 memcpy(&assoc_req->bss, bss, sizeof(struct bss_descriptor));
Dan Williams822ac032009-05-22 20:07:14 -04001064 ret = lbs_try_associate(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001065 } else {
Dan Williamsd8efea22007-05-28 23:54:55 -04001066 lbs_deb_assoc("SSID not found; cannot associate\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001067 }
Dan Williams0dc5a292007-05-10 22:58:02 -04001068 } else if (assoc_req->mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001069 /* Scan for the network, do not save previous results. Stale
1070 * scan data will cause us to join a non-existant adhoc network
1071 */
Holger Schurig10078322007-11-15 18:05:47 -05001072 lbs_send_specific_ssid_scan(priv, assoc_req->ssid,
Holger Schurig52933d82008-03-05 07:05:32 +01001073 assoc_req->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001074
1075 /* Search for the requested SSID in the scan table */
David Woodhouseaa21c002007-12-08 20:04:36 +00001076 bss = lbs_find_ssid_in_list(priv, assoc_req->ssid,
Dan Williamsd8efea22007-05-28 23:54:55 -04001077 assoc_req->ssid_len, NULL, IW_MODE_ADHOC, channel);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001078 if (bss != NULL) {
Dan Williamsd8efea22007-05-28 23:54:55 -04001079 lbs_deb_assoc("SSID found, will join\n");
Dan Williamse76850d2007-05-25 17:09:41 -04001080 memcpy(&assoc_req->bss, bss, sizeof(struct bss_descriptor));
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001081 lbs_adhoc_join(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001082 } else {
1083 /* else send START command */
Dan Williamsd8efea22007-05-28 23:54:55 -04001084 lbs_deb_assoc("SSID not found, creating adhoc network\n");
Dan Williamse76850d2007-05-25 17:09:41 -04001085 memcpy(&assoc_req->bss.ssid, &assoc_req->ssid,
Holger Schurig243e84e2009-10-22 15:30:47 +02001086 IEEE80211_MAX_SSID_LEN);
Dan Williamsd8efea22007-05-28 23:54:55 -04001087 assoc_req->bss.ssid_len = assoc_req->ssid_len;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001088 lbs_adhoc_start(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001089 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001090 }
1091
Holger Schurig9012b282007-05-25 11:27:16 -04001092 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001093 return ret;
1094}
1095
1096
Holger Schurig69f90322007-11-23 15:43:44 +01001097static int assoc_helper_bssid(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001098 struct assoc_request * assoc_req)
1099{
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001100 int ret = 0;
1101 struct bss_descriptor * bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001102
Johannes Berge1749612008-10-27 15:59:26 -07001103 lbs_deb_enter_args(LBS_DEB_ASSOC, "BSSID %pM", assoc_req->bssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001104
1105 /* Search for index position in list for requested MAC */
David Woodhouseaa21c002007-12-08 20:04:36 +00001106 bss = lbs_find_bssid_in_list(priv, assoc_req->bssid,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001107 assoc_req->mode);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001108 if (bss == NULL) {
Johannes Berge1749612008-10-27 15:59:26 -07001109 lbs_deb_assoc("ASSOC: WAP: BSSID %pM not found, "
1110 "cannot associate.\n", assoc_req->bssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001111 goto out;
1112 }
1113
Dan Williamse76850d2007-05-25 17:09:41 -04001114 memcpy(&assoc_req->bss, bss, sizeof(struct bss_descriptor));
Dan Williams0dc5a292007-05-10 22:58:02 -04001115 if (assoc_req->mode == IW_MODE_INFRA) {
Dan Williams822ac032009-05-22 20:07:14 -04001116 ret = lbs_try_associate(priv, assoc_req);
1117 lbs_deb_assoc("ASSOC: lbs_try_associate(bssid) returned %d\n",
1118 ret);
Dan Williams0dc5a292007-05-10 22:58:02 -04001119 } else if (assoc_req->mode == IW_MODE_ADHOC) {
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001120 lbs_adhoc_join(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001121 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001122
1123out:
Holger Schurig9012b282007-05-25 11:27:16 -04001124 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001125 return ret;
1126}
1127
1128
Holger Schurig69f90322007-11-23 15:43:44 +01001129static int assoc_helper_associate(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001130 struct assoc_request * assoc_req)
1131{
1132 int ret = 0, done = 0;
1133
Holger Schurig0765af42007-10-15 12:55:56 +02001134 lbs_deb_enter(LBS_DEB_ASSOC);
1135
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001136 /* If we're given and 'any' BSSID, try associating based on SSID */
1137
1138 if (test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)) {
Dan Williams3cf20932007-05-25 17:28:30 -04001139 if (compare_ether_addr(bssid_any, assoc_req->bssid)
1140 && compare_ether_addr(bssid_off, assoc_req->bssid)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001141 ret = assoc_helper_bssid(priv, assoc_req);
1142 done = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001143 }
1144 }
1145
1146 if (!done && test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)) {
1147 ret = assoc_helper_essid(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001148 }
1149
Holger Schurig0765af42007-10-15 12:55:56 +02001150 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001151 return ret;
1152}
1153
1154
Holger Schurig69f90322007-11-23 15:43:44 +01001155static int assoc_helper_mode(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001156 struct assoc_request * assoc_req)
1157{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001158 int ret = 0;
1159
Holger Schurig9012b282007-05-25 11:27:16 -04001160 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001161
David Woodhouseaa21c002007-12-08 20:04:36 +00001162 if (assoc_req->mode == priv->mode)
Holger Schurig9012b282007-05-25 11:27:16 -04001163 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001164
Dan Williams0dc5a292007-05-10 22:58:02 -04001165 if (assoc_req->mode == IW_MODE_INFRA) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001166 if (priv->psstate != PS_STATE_FULL_POWER)
Holger Schurig10078322007-11-15 18:05:47 -05001167 lbs_ps_wakeup(priv, CMD_OPTION_WAITFORRSP);
David Woodhouseaa21c002007-12-08 20:04:36 +00001168 priv->psmode = LBS802_11POWERMODECAM;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001169 }
1170
David Woodhouseaa21c002007-12-08 20:04:36 +00001171 priv->mode = assoc_req->mode;
Dan Williams39fcf7a2008-09-10 12:49:00 -04001172 ret = lbs_set_snmp_mib(priv, SNMP_MIB_OID_BSS_TYPE, assoc_req->mode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001173
Holger Schurig9012b282007-05-25 11:27:16 -04001174done:
1175 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001176 return ret;
1177}
1178
Holger Schurig69f90322007-11-23 15:43:44 +01001179static int assoc_helper_channel(struct lbs_private *priv,
Dan Williamsef9a2642007-05-25 16:46:33 -04001180 struct assoc_request * assoc_req)
1181{
Dan Williamsef9a2642007-05-25 16:46:33 -04001182 int ret = 0;
1183
1184 lbs_deb_enter(LBS_DEB_ASSOC);
1185
David Woodhouse9f462572007-12-12 22:50:21 -05001186 ret = lbs_update_channel(priv);
David Woodhoused1a469f2007-12-16 17:21:00 -05001187 if (ret) {
David Woodhouse23d36ee2007-12-12 00:14:21 -05001188 lbs_deb_assoc("ASSOC: channel: error getting channel.\n");
David Woodhoused1a469f2007-12-16 17:21:00 -05001189 goto done;
Dan Williamsef9a2642007-05-25 16:46:33 -04001190 }
1191
David Woodhouseaa21c002007-12-08 20:04:36 +00001192 if (assoc_req->channel == priv->curbssparams.channel)
Dan Williamsef9a2642007-05-25 16:46:33 -04001193 goto done;
1194
David Woodhouse8642f1f2007-12-11 20:03:01 -05001195 if (priv->mesh_dev) {
David Woodhouse86062132007-12-13 00:32:36 -05001196 /* Change mesh channel first; 21.p21 firmware won't let
1197 you change channel otherwise (even though it'll return
1198 an error to this */
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001199 lbs_mesh_config(priv, CMD_ACT_MESH_CONFIG_STOP,
1200 assoc_req->channel);
David Woodhouse8642f1f2007-12-11 20:03:01 -05001201 }
1202
Dan Williamsef9a2642007-05-25 16:46:33 -04001203 lbs_deb_assoc("ASSOC: channel: %d -> %d\n",
David Woodhouse86062132007-12-13 00:32:36 -05001204 priv->curbssparams.channel, assoc_req->channel);
Dan Williamsef9a2642007-05-25 16:46:33 -04001205
Dan Williams2dd4b262007-12-11 16:54:15 -05001206 ret = lbs_set_channel(priv, assoc_req->channel);
1207 if (ret < 0)
David Woodhouse23d36ee2007-12-12 00:14:21 -05001208 lbs_deb_assoc("ASSOC: channel: error setting channel.\n");
Dan Williamsef9a2642007-05-25 16:46:33 -04001209
Dan Williams2dd4b262007-12-11 16:54:15 -05001210 /* FIXME: shouldn't need to grab the channel _again_ after setting
1211 * it since the firmware is supposed to return the new channel, but
1212 * whatever... */
David Woodhouse9f462572007-12-12 22:50:21 -05001213 ret = lbs_update_channel(priv);
David Woodhoused1a469f2007-12-16 17:21:00 -05001214 if (ret) {
David Woodhouse23d36ee2007-12-12 00:14:21 -05001215 lbs_deb_assoc("ASSOC: channel: error getting channel.\n");
David Woodhoused1a469f2007-12-16 17:21:00 -05001216 goto done;
1217 }
Dan Williamsef9a2642007-05-25 16:46:33 -04001218
David Woodhouseaa21c002007-12-08 20:04:36 +00001219 if (assoc_req->channel != priv->curbssparams.channel) {
David Woodhouse88ae2912007-12-11 19:57:05 -05001220 lbs_deb_assoc("ASSOC: channel: failed to update channel to %d\n",
Dan Williamsef9a2642007-05-25 16:46:33 -04001221 assoc_req->channel);
David Woodhouse8642f1f2007-12-11 20:03:01 -05001222 goto restore_mesh;
Dan Williamsef9a2642007-05-25 16:46:33 -04001223 }
1224
1225 if ( assoc_req->secinfo.wep_enabled
1226 && (assoc_req->wep_keys[0].len
1227 || assoc_req->wep_keys[1].len
1228 || assoc_req->wep_keys[2].len
1229 || assoc_req->wep_keys[3].len)) {
1230 /* Make sure WEP keys are re-sent to firmware */
1231 set_bit(ASSOC_FLAG_WEP_KEYS, &assoc_req->flags);
1232 }
1233
1234 /* Must restart/rejoin adhoc networks after channel change */
David Woodhouse23d36ee2007-12-12 00:14:21 -05001235 set_bit(ASSOC_FLAG_SSID, &assoc_req->flags);
Dan Williamsef9a2642007-05-25 16:46:33 -04001236
David Woodhouse8642f1f2007-12-11 20:03:01 -05001237 restore_mesh:
1238 if (priv->mesh_dev)
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001239 lbs_mesh_config(priv, CMD_ACT_MESH_CONFIG_START,
1240 priv->curbssparams.channel);
David Woodhouse8642f1f2007-12-11 20:03:01 -05001241
1242 done:
Dan Williamsef9a2642007-05-25 16:46:33 -04001243 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
1244 return ret;
1245}
1246
1247
Holger Schurig69f90322007-11-23 15:43:44 +01001248static int assoc_helper_wep_keys(struct lbs_private *priv,
David Woodhousef70dd452007-12-18 00:18:05 -05001249 struct assoc_request *assoc_req)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001250{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001251 int i;
1252 int ret = 0;
1253
Holger Schurig9012b282007-05-25 11:27:16 -04001254 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001255
1256 /* Set or remove WEP keys */
David Woodhousef70dd452007-12-18 00:18:05 -05001257 if (assoc_req->wep_keys[0].len || assoc_req->wep_keys[1].len ||
1258 assoc_req->wep_keys[2].len || assoc_req->wep_keys[3].len)
1259 ret = lbs_cmd_802_11_set_wep(priv, CMD_ACT_ADD, assoc_req);
1260 else
1261 ret = lbs_cmd_802_11_set_wep(priv, CMD_ACT_REMOVE, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001262
1263 if (ret)
1264 goto out;
1265
1266 /* enable/disable the MAC's WEP packet filter */
Dan Williams889c05b2007-05-10 22:57:23 -04001267 if (assoc_req->secinfo.wep_enabled)
Holger Schurigd9e97782008-03-12 16:06:43 +01001268 priv->mac_control |= CMD_ACT_MAC_WEP_ENABLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001269 else
Holger Schurigd9e97782008-03-12 16:06:43 +01001270 priv->mac_control &= ~CMD_ACT_MAC_WEP_ENABLE;
David Woodhousef70dd452007-12-18 00:18:05 -05001271
Holger Schurigc97329e2008-03-18 11:20:21 +01001272 lbs_set_mac_control(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001273
David Woodhouseaa21c002007-12-08 20:04:36 +00001274 mutex_lock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001275
David Woodhouseaa21c002007-12-08 20:04:36 +00001276 /* Copy WEP keys into priv wep key fields */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001277 for (i = 0; i < 4; i++) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001278 memcpy(&priv->wep_keys[i], &assoc_req->wep_keys[i],
David Woodhousef70dd452007-12-18 00:18:05 -05001279 sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001280 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001281 priv->wep_tx_keyidx = assoc_req->wep_tx_keyidx;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001282
David Woodhouseaa21c002007-12-08 20:04:36 +00001283 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001284
1285out:
Holger Schurig9012b282007-05-25 11:27:16 -04001286 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001287 return ret;
1288}
1289
Holger Schurig69f90322007-11-23 15:43:44 +01001290static int assoc_helper_secinfo(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001291 struct assoc_request * assoc_req)
1292{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001293 int ret = 0;
David Woodhouse4f59abf2007-12-18 00:47:17 -05001294 uint16_t do_wpa;
1295 uint16_t rsn = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001296
Holger Schurig9012b282007-05-25 11:27:16 -04001297 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001298
David Woodhouseaa21c002007-12-08 20:04:36 +00001299 memcpy(&priv->secinfo, &assoc_req->secinfo,
Holger Schurig10078322007-11-15 18:05:47 -05001300 sizeof(struct lbs_802_11_security));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001301
Holger Schurigc97329e2008-03-18 11:20:21 +01001302 lbs_set_mac_control(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001303
Dan Williams18c96c342007-06-18 12:01:12 -04001304 /* If RSN is already enabled, don't try to enable it again, since
1305 * ENABLE_RSN resets internal state machines and will clobber the
1306 * 4-way WPA handshake.
1307 */
1308
1309 /* Get RSN enabled/disabled */
David Woodhouse4f59abf2007-12-18 00:47:17 -05001310 ret = lbs_cmd_802_11_enable_rsn(priv, CMD_ACT_GET, &rsn);
Dan Williams18c96c342007-06-18 12:01:12 -04001311 if (ret) {
David Woodhouse23d36ee2007-12-12 00:14:21 -05001312 lbs_deb_assoc("Failed to get RSN status: %d\n", ret);
Dan Williams18c96c342007-06-18 12:01:12 -04001313 goto out;
1314 }
1315
1316 /* Don't re-enable RSN if it's already enabled */
David Woodhouse4f59abf2007-12-18 00:47:17 -05001317 do_wpa = assoc_req->secinfo.WPAenabled || assoc_req->secinfo.WPA2enabled;
Dan Williams18c96c342007-06-18 12:01:12 -04001318 if (do_wpa == rsn)
1319 goto out;
1320
1321 /* Set RSN enabled/disabled */
David Woodhouse4f59abf2007-12-18 00:47:17 -05001322 ret = lbs_cmd_802_11_enable_rsn(priv, CMD_ACT_SET, &do_wpa);
Dan Williams90a42212007-05-25 23:01:24 -04001323
1324out:
Holger Schurig9012b282007-05-25 11:27:16 -04001325 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001326 return ret;
1327}
1328
1329
Holger Schurig69f90322007-11-23 15:43:44 +01001330static int assoc_helper_wpa_keys(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001331 struct assoc_request * assoc_req)
1332{
1333 int ret = 0;
Dan Williams2bcde512007-10-03 10:37:45 -04001334 unsigned int flags = assoc_req->flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001335
Holger Schurig9012b282007-05-25 11:27:16 -04001336 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001337
Dan Williams2bcde512007-10-03 10:37:45 -04001338 /* Work around older firmware bug where WPA unicast and multicast
1339 * keys must be set independently. Seen in SDIO parts with firmware
1340 * version 5.0.11p0.
1341 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001342
Dan Williams2bcde512007-10-03 10:37:45 -04001343 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
1344 clear_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags);
David Woodhouse9e1228d2008-03-03 12:15:39 +01001345 ret = lbs_cmd_802_11_key_material(priv, CMD_ACT_SET, assoc_req);
Dan Williams2bcde512007-10-03 10:37:45 -04001346 assoc_req->flags = flags;
1347 }
1348
1349 if (ret)
1350 goto out;
1351
Andrey Yurovskyce8d0962009-06-17 18:45:34 -07001352 memcpy(&priv->wpa_unicast_key, &assoc_req->wpa_unicast_key,
1353 sizeof(struct enc_key));
1354
Dan Williams2bcde512007-10-03 10:37:45 -04001355 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
1356 clear_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags);
1357
David Woodhouse9e1228d2008-03-03 12:15:39 +01001358 ret = lbs_cmd_802_11_key_material(priv, CMD_ACT_SET, assoc_req);
Dan Williams2bcde512007-10-03 10:37:45 -04001359 assoc_req->flags = flags;
Andrey Yurovskyce8d0962009-06-17 18:45:34 -07001360
1361 memcpy(&priv->wpa_mcast_key, &assoc_req->wpa_mcast_key,
1362 sizeof(struct enc_key));
Dan Williams2bcde512007-10-03 10:37:45 -04001363 }
1364
1365out:
Holger Schurig9012b282007-05-25 11:27:16 -04001366 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001367 return ret;
1368}
1369
1370
Holger Schurig69f90322007-11-23 15:43:44 +01001371static int assoc_helper_wpa_ie(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001372 struct assoc_request * assoc_req)
1373{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001374 int ret = 0;
1375
Holger Schurig9012b282007-05-25 11:27:16 -04001376 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001377
1378 if (assoc_req->secinfo.WPAenabled || assoc_req->secinfo.WPA2enabled) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001379 memcpy(&priv->wpa_ie, &assoc_req->wpa_ie, assoc_req->wpa_ie_len);
1380 priv->wpa_ie_len = assoc_req->wpa_ie_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001381 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001382 memset(&priv->wpa_ie, 0, MAX_WPA_IE_LEN);
1383 priv->wpa_ie_len = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001384 }
1385
Holger Schurig9012b282007-05-25 11:27:16 -04001386 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001387 return ret;
1388}
1389
1390
David Woodhouseaa21c002007-12-08 20:04:36 +00001391static int should_deauth_infrastructure(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001392 struct assoc_request * assoc_req)
1393{
Holger Schurig0765af42007-10-15 12:55:56 +02001394 int ret = 0;
1395
David Woodhouseaa21c002007-12-08 20:04:36 +00001396 if (priv->connect_status != LBS_CONNECTED)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001397 return 0;
1398
Holger Schurig52507c22008-01-28 17:25:53 +01001399 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001400 if (test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)) {
Holger Schurig0765af42007-10-15 12:55:56 +02001401 lbs_deb_assoc("Deauthenticating due to new SSID\n");
1402 ret = 1;
1403 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001404 }
1405
1406 if (test_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001407 if (priv->secinfo.auth_mode != assoc_req->secinfo.auth_mode) {
Holger Schurig0765af42007-10-15 12:55:56 +02001408 lbs_deb_assoc("Deauthenticating due to new security\n");
1409 ret = 1;
1410 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001411 }
1412 }
1413
1414 if (test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)) {
Holger Schurig0765af42007-10-15 12:55:56 +02001415 lbs_deb_assoc("Deauthenticating due to new BSSID\n");
1416 ret = 1;
1417 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001418 }
1419
Luis Carlos Cobo Rusfff47f12007-05-30 12:16:13 -04001420 if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags)) {
Holger Schurig0765af42007-10-15 12:55:56 +02001421 lbs_deb_assoc("Deauthenticating due to channel switch\n");
1422 ret = 1;
1423 goto out;
Luis Carlos Cobo Rusfff47f12007-05-30 12:16:13 -04001424 }
1425
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001426 /* FIXME: deal with 'auto' mode somehow */
1427 if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) {
Holger Schurig0765af42007-10-15 12:55:56 +02001428 if (assoc_req->mode != IW_MODE_INFRA) {
1429 lbs_deb_assoc("Deauthenticating due to leaving "
1430 "infra mode\n");
1431 ret = 1;
1432 goto out;
1433 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001434 }
1435
Holger Schurig0765af42007-10-15 12:55:56 +02001436out:
1437 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Holger Schurig52507c22008-01-28 17:25:53 +01001438 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001439}
1440
1441
David Woodhouseaa21c002007-12-08 20:04:36 +00001442static int should_stop_adhoc(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001443 struct assoc_request * assoc_req)
1444{
Holger Schurig0765af42007-10-15 12:55:56 +02001445 lbs_deb_enter(LBS_DEB_ASSOC);
1446
David Woodhouseaa21c002007-12-08 20:04:36 +00001447 if (priv->connect_status != LBS_CONNECTED)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001448 return 0;
1449
David Woodhouseaa21c002007-12-08 20:04:36 +00001450 if (lbs_ssid_cmp(priv->curbssparams.ssid,
1451 priv->curbssparams.ssid_len,
Dan Williamsd8efea22007-05-28 23:54:55 -04001452 assoc_req->ssid, assoc_req->ssid_len) != 0)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001453 return 1;
1454
1455 /* FIXME: deal with 'auto' mode somehow */
1456 if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) {
Dan Williams0dc5a292007-05-10 22:58:02 -04001457 if (assoc_req->mode != IW_MODE_ADHOC)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001458 return 1;
1459 }
1460
Dan Williamsef9a2642007-05-25 16:46:33 -04001461 if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001462 if (assoc_req->channel != priv->curbssparams.channel)
Dan Williamsef9a2642007-05-25 16:46:33 -04001463 return 1;
1464 }
1465
Holger Schurig0765af42007-10-15 12:55:56 +02001466 lbs_deb_leave(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001467 return 0;
1468}
1469
1470
Holger Schurig245bf202008-04-02 16:27:42 +02001471/**
1472 * @brief This function finds the best SSID in the Scan List
1473 *
1474 * Search the scan table for the best SSID that also matches the current
1475 * adapter network preference (infrastructure or adhoc)
1476 *
1477 * @param priv A pointer to struct lbs_private
1478 *
1479 * @return index in BSSID list
1480 */
1481static struct bss_descriptor *lbs_find_best_ssid_in_list(
1482 struct lbs_private *priv, uint8_t mode)
1483{
1484 uint8_t bestrssi = 0;
1485 struct bss_descriptor *iter_bss;
1486 struct bss_descriptor *best_bss = NULL;
1487
1488 lbs_deb_enter(LBS_DEB_SCAN);
1489
1490 mutex_lock(&priv->lock);
1491
1492 list_for_each_entry(iter_bss, &priv->network_list, list) {
1493 switch (mode) {
1494 case IW_MODE_INFRA:
1495 case IW_MODE_ADHOC:
1496 if (!is_network_compatible(priv, iter_bss, mode))
1497 break;
1498 if (SCAN_RSSI(iter_bss->rssi) <= bestrssi)
1499 break;
1500 bestrssi = SCAN_RSSI(iter_bss->rssi);
1501 best_bss = iter_bss;
1502 break;
1503 case IW_MODE_AUTO:
1504 default:
1505 if (SCAN_RSSI(iter_bss->rssi) <= bestrssi)
1506 break;
1507 bestrssi = SCAN_RSSI(iter_bss->rssi);
1508 best_bss = iter_bss;
1509 break;
1510 }
1511 }
1512
1513 mutex_unlock(&priv->lock);
1514 lbs_deb_leave_args(LBS_DEB_SCAN, "best_bss %p", best_bss);
1515 return best_bss;
1516}
1517
1518/**
1519 * @brief Find the best AP
1520 *
1521 * Used from association worker.
1522 *
1523 * @param priv A pointer to struct lbs_private structure
1524 * @param pSSID A pointer to AP's ssid
1525 *
1526 * @return 0--success, otherwise--fail
1527 */
1528static int lbs_find_best_network_ssid(struct lbs_private *priv,
1529 uint8_t *out_ssid, uint8_t *out_ssid_len, uint8_t preferred_mode,
1530 uint8_t *out_mode)
1531{
1532 int ret = -1;
1533 struct bss_descriptor *found;
1534
1535 lbs_deb_enter(LBS_DEB_SCAN);
1536
1537 priv->scan_ssid_len = 0;
1538 lbs_scan_networks(priv, 1);
1539 if (priv->surpriseremoved)
1540 goto out;
1541
1542 found = lbs_find_best_ssid_in_list(priv, preferred_mode);
1543 if (found && (found->ssid_len > 0)) {
Holger Schurig243e84e2009-10-22 15:30:47 +02001544 memcpy(out_ssid, &found->ssid, IEEE80211_MAX_SSID_LEN);
Holger Schurig245bf202008-04-02 16:27:42 +02001545 *out_ssid_len = found->ssid_len;
1546 *out_mode = found->mode;
1547 ret = 0;
1548 }
1549
1550out:
1551 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
1552 return ret;
1553}
1554
1555
Holger Schurig10078322007-11-15 18:05:47 -05001556void lbs_association_worker(struct work_struct *work)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001557{
Holger Schurig69f90322007-11-23 15:43:44 +01001558 struct lbs_private *priv = container_of(work, struct lbs_private,
1559 assoc_work.work);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001560 struct assoc_request * assoc_req = NULL;
1561 int ret = 0;
1562 int find_any_ssid = 0;
John W. Linville9387b7c2008-09-30 20:59:05 -04001563 DECLARE_SSID_BUF(ssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001564
Holger Schurig9012b282007-05-25 11:27:16 -04001565 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001566
David Woodhouseaa21c002007-12-08 20:04:36 +00001567 mutex_lock(&priv->lock);
1568 assoc_req = priv->pending_assoc_req;
1569 priv->pending_assoc_req = NULL;
1570 priv->in_progress_assoc_req = assoc_req;
1571 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001572
Holger Schurig9012b282007-05-25 11:27:16 -04001573 if (!assoc_req)
1574 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001575
Holger Schurig0765af42007-10-15 12:55:56 +02001576 lbs_deb_assoc(
1577 "Association Request:\n"
1578 " flags: 0x%08lx\n"
1579 " SSID: '%s'\n"
1580 " chann: %d\n"
1581 " band: %d\n"
1582 " mode: %d\n"
Johannes Berge1749612008-10-27 15:59:26 -07001583 " BSSID: %pM\n"
Holger Schurig0765af42007-10-15 12:55:56 +02001584 " secinfo: %s%s%s\n"
1585 " auth_mode: %d\n",
1586 assoc_req->flags,
John W. Linville9387b7c2008-09-30 20:59:05 -04001587 print_ssid(ssid, assoc_req->ssid, assoc_req->ssid_len),
Holger Schurig0765af42007-10-15 12:55:56 +02001588 assoc_req->channel, assoc_req->band, assoc_req->mode,
Johannes Berge1749612008-10-27 15:59:26 -07001589 assoc_req->bssid,
Holger Schurig0765af42007-10-15 12:55:56 +02001590 assoc_req->secinfo.WPAenabled ? " WPA" : "",
1591 assoc_req->secinfo.WPA2enabled ? " WPA2" : "",
1592 assoc_req->secinfo.wep_enabled ? " WEP" : "",
1593 assoc_req->secinfo.auth_mode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001594
1595 /* If 'any' SSID was specified, find an SSID to associate with */
1596 if (test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)
Dan Williamsd8efea22007-05-28 23:54:55 -04001597 && !assoc_req->ssid_len)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001598 find_any_ssid = 1;
1599
1600 /* But don't use 'any' SSID if there's a valid locked BSSID to use */
1601 if (test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)) {
Dan Williams3cf20932007-05-25 17:28:30 -04001602 if (compare_ether_addr(assoc_req->bssid, bssid_any)
1603 && compare_ether_addr(assoc_req->bssid, bssid_off))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001604 find_any_ssid = 0;
1605 }
1606
1607 if (find_any_ssid) {
Holger Schurig877cb0d2008-04-02 16:34:51 +02001608 u8 new_mode = assoc_req->mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001609
Holger Schurig10078322007-11-15 18:05:47 -05001610 ret = lbs_find_best_network_ssid(priv, assoc_req->ssid,
Dan Williamsd8efea22007-05-28 23:54:55 -04001611 &assoc_req->ssid_len, assoc_req->mode, &new_mode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001612 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -04001613 lbs_deb_assoc("Could not find best network\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001614 ret = -ENETUNREACH;
1615 goto out;
1616 }
1617
1618 /* Ensure we switch to the mode of the AP */
Dan Williams0dc5a292007-05-10 22:58:02 -04001619 if (assoc_req->mode == IW_MODE_AUTO) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001620 set_bit(ASSOC_FLAG_MODE, &assoc_req->flags);
1621 assoc_req->mode = new_mode;
1622 }
1623 }
1624
1625 /*
1626 * Check if the attributes being changing require deauthentication
1627 * from the currently associated infrastructure access point.
1628 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001629 if (priv->mode == IW_MODE_INFRA) {
1630 if (should_deauth_infrastructure(priv, assoc_req)) {
Dan Williams191bb402008-08-21 17:46:18 -04001631 ret = lbs_cmd_80211_deauthenticate(priv,
1632 priv->curbssparams.bssid,
1633 WLAN_REASON_DEAUTH_LEAVING);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001634 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -04001635 lbs_deb_assoc("Deauthentication due to new "
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001636 "configuration request failed: %d\n",
1637 ret);
1638 }
1639 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001640 } else if (priv->mode == IW_MODE_ADHOC) {
1641 if (should_stop_adhoc(priv, assoc_req)) {
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001642 ret = lbs_adhoc_stop(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001643 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -04001644 lbs_deb_assoc("Teardown of AdHoc network due to "
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001645 "new configuration request failed: %d\n",
1646 ret);
1647 }
1648
1649 }
1650 }
1651
1652 /* Send the various configuration bits to the firmware */
1653 if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) {
1654 ret = assoc_helper_mode(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02001655 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001656 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001657 }
1658
Dan Williamsef9a2642007-05-25 16:46:33 -04001659 if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags)) {
1660 ret = assoc_helper_channel(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02001661 if (ret)
Dan Williamsef9a2642007-05-25 16:46:33 -04001662 goto out;
Dan Williamsef9a2642007-05-25 16:46:33 -04001663 }
1664
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001665 if ( test_bit(ASSOC_FLAG_WEP_KEYS, &assoc_req->flags)
1666 || test_bit(ASSOC_FLAG_WEP_TX_KEYIDX, &assoc_req->flags)) {
1667 ret = assoc_helper_wep_keys(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02001668 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001669 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001670 }
1671
1672 if (test_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags)) {
1673 ret = assoc_helper_secinfo(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02001674 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001675 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001676 }
1677
1678 if (test_bit(ASSOC_FLAG_WPA_IE, &assoc_req->flags)) {
1679 ret = assoc_helper_wpa_ie(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02001680 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001681 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001682 }
1683
1684 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)
1685 || test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
1686 ret = assoc_helper_wpa_keys(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02001687 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001688 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001689 }
1690
1691 /* SSID/BSSID should be the _last_ config option set, because they
1692 * trigger the association attempt.
1693 */
1694 if (test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)
1695 || test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)) {
1696 int success = 1;
1697
1698 ret = assoc_helper_associate(priv, assoc_req);
1699 if (ret) {
Holger Schurig91843462007-11-28 14:05:02 +01001700 lbs_deb_assoc("ASSOC: association unsuccessful: %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001701 ret);
1702 success = 0;
1703 }
1704
David Woodhouseaa21c002007-12-08 20:04:36 +00001705 if (priv->connect_status != LBS_CONNECTED) {
Holger Schurig91843462007-11-28 14:05:02 +01001706 lbs_deb_assoc("ASSOC: association unsuccessful, "
1707 "not connected\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001708 success = 0;
1709 }
1710
1711 if (success) {
Johannes Berge1749612008-10-27 15:59:26 -07001712 lbs_deb_assoc("associated to %pM\n",
1713 priv->curbssparams.bssid);
Holger Schurig10078322007-11-15 18:05:47 -05001714 lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001715 CMD_802_11_RSSI,
1716 0, CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001717 } else {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001718 ret = -1;
1719 }
1720 }
1721
1722out:
1723 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -04001724 lbs_deb_assoc("ASSOC: reconfiguration attempt unsuccessful: %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001725 ret);
1726 }
Dan Williamse76850d2007-05-25 17:09:41 -04001727
David Woodhouseaa21c002007-12-08 20:04:36 +00001728 mutex_lock(&priv->lock);
1729 priv->in_progress_assoc_req = NULL;
1730 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001731 kfree(assoc_req);
Holger Schurig9012b282007-05-25 11:27:16 -04001732
1733done:
1734 lbs_deb_leave(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001735}
1736
1737
1738/*
1739 * Caller MUST hold any necessary locks
1740 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001741struct assoc_request *lbs_get_association_request(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001742{
1743 struct assoc_request * assoc_req;
1744
Holger Schurig0765af42007-10-15 12:55:56 +02001745 lbs_deb_enter(LBS_DEB_ASSOC);
David Woodhouseaa21c002007-12-08 20:04:36 +00001746 if (!priv->pending_assoc_req) {
1747 priv->pending_assoc_req = kzalloc(sizeof(struct assoc_request),
Dan Williamse76850d2007-05-25 17:09:41 -04001748 GFP_KERNEL);
David Woodhouseaa21c002007-12-08 20:04:36 +00001749 if (!priv->pending_assoc_req) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001750 lbs_pr_info("Not enough memory to allocate association"
1751 " request!\n");
1752 return NULL;
1753 }
1754 }
1755
1756 /* Copy current configuration attributes to the association request,
1757 * but don't overwrite any that are already set.
1758 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001759 assoc_req = priv->pending_assoc_req;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001760 if (!test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001761 memcpy(&assoc_req->ssid, &priv->curbssparams.ssid,
Holger Schurig243e84e2009-10-22 15:30:47 +02001762 IEEE80211_MAX_SSID_LEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001763 assoc_req->ssid_len = priv->curbssparams.ssid_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001764 }
1765
1766 if (!test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags))
David Woodhouseaa21c002007-12-08 20:04:36 +00001767 assoc_req->channel = priv->curbssparams.channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001768
Dan Williamse76850d2007-05-25 17:09:41 -04001769 if (!test_bit(ASSOC_FLAG_BAND, &assoc_req->flags))
David Woodhouseaa21c002007-12-08 20:04:36 +00001770 assoc_req->band = priv->curbssparams.band;
Dan Williamse76850d2007-05-25 17:09:41 -04001771
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001772 if (!test_bit(ASSOC_FLAG_MODE, &assoc_req->flags))
David Woodhouseaa21c002007-12-08 20:04:36 +00001773 assoc_req->mode = priv->mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001774
1775 if (!test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001776 memcpy(&assoc_req->bssid, priv->curbssparams.bssid,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001777 ETH_ALEN);
1778 }
1779
1780 if (!test_bit(ASSOC_FLAG_WEP_KEYS, &assoc_req->flags)) {
1781 int i;
1782 for (i = 0; i < 4; i++) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001783 memcpy(&assoc_req->wep_keys[i], &priv->wep_keys[i],
Dan Williams1443b652007-08-02 10:45:55 -04001784 sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001785 }
1786 }
1787
1788 if (!test_bit(ASSOC_FLAG_WEP_TX_KEYIDX, &assoc_req->flags))
David Woodhouseaa21c002007-12-08 20:04:36 +00001789 assoc_req->wep_tx_keyidx = priv->wep_tx_keyidx;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001790
1791 if (!test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001792 memcpy(&assoc_req->wpa_mcast_key, &priv->wpa_mcast_key,
Dan Williams1443b652007-08-02 10:45:55 -04001793 sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001794 }
1795
1796 if (!test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001797 memcpy(&assoc_req->wpa_unicast_key, &priv->wpa_unicast_key,
Dan Williams1443b652007-08-02 10:45:55 -04001798 sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001799 }
1800
1801 if (!test_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001802 memcpy(&assoc_req->secinfo, &priv->secinfo,
Holger Schurig10078322007-11-15 18:05:47 -05001803 sizeof(struct lbs_802_11_security));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001804 }
1805
1806 if (!test_bit(ASSOC_FLAG_WPA_IE, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001807 memcpy(&assoc_req->wpa_ie, &priv->wpa_ie,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001808 MAX_WPA_IE_LEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001809 assoc_req->wpa_ie_len = priv->wpa_ie_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001810 }
1811
Holger Schurig0765af42007-10-15 12:55:56 +02001812 lbs_deb_leave(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001813 return assoc_req;
1814}
Holger Schurig697900a2008-04-02 16:27:10 +02001815
1816
1817/**
Dan Williams191bb402008-08-21 17:46:18 -04001818 * @brief Deauthenticate from a specific BSS
1819 *
1820 * @param priv A pointer to struct lbs_private structure
1821 * @param bssid The specific BSS to deauthenticate from
1822 * @param reason The 802.11 sec. 7.3.1.7 Reason Code for deauthenticating
1823 *
1824 * @return 0 on success, error on failure
1825 */
1826int lbs_cmd_80211_deauthenticate(struct lbs_private *priv, u8 bssid[ETH_ALEN],
1827 u16 reason)
Holger Schurig697900a2008-04-02 16:27:10 +02001828{
Dan Williams191bb402008-08-21 17:46:18 -04001829 struct cmd_ds_802_11_deauthenticate cmd;
1830 int ret;
Holger Schurig697900a2008-04-02 16:27:10 +02001831
1832 lbs_deb_enter(LBS_DEB_JOIN);
1833
Dan Williams191bb402008-08-21 17:46:18 -04001834 memset(&cmd, 0, sizeof(cmd));
1835 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1836 memcpy(cmd.macaddr, &bssid[0], ETH_ALEN);
1837 cmd.reasoncode = cpu_to_le16(reason);
Holger Schurig697900a2008-04-02 16:27:10 +02001838
Dan Williams191bb402008-08-21 17:46:18 -04001839 ret = lbs_cmd_with_response(priv, CMD_802_11_DEAUTHENTICATE, &cmd);
Holger Schurig697900a2008-04-02 16:27:10 +02001840
Dan Williams191bb402008-08-21 17:46:18 -04001841 /* Clean up everything even if there was an error; can't assume that
1842 * we're still authenticated to the AP after trying to deauth.
1843 */
1844 lbs_mac_event_disconnected(priv);
Holger Schurig697900a2008-04-02 16:27:10 +02001845
1846 lbs_deb_leave(LBS_DEB_JOIN);
Dan Williams191bb402008-08-21 17:46:18 -04001847 return ret;
Holger Schurig697900a2008-04-02 16:27:10 +02001848}
1849