blob: 4ce554ac900fb42479549637a9561f517fcad35f [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
Holger Schurig2d465022009-10-22 15:30:48 +020026/**
27 * 802.11b/g supported bitrates (in 500Kb/s units)
28 */
29u8 lbs_bg_rates[MAX_RATES] =
30 { 0x02, 0x04, 0x0b, 0x16, 0x0c, 0x12, 0x18, 0x24, 0x30, 0x48, 0x60, 0x6c,
310x00, 0x00 };
32
Holger Schurig697900a2008-04-02 16:27:10 +020033
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040034/**
35 * @brief This function finds common rates between rates and card rates.
36 *
37 * It will fill common rates in rates as output if found.
38 *
39 * NOTE: Setting the MSB of the basic rates need to be taken
40 * care, either before or after calling this function
41 *
42 * @param priv A pointer to struct lbs_private structure
43 * @param rates the buffer which keeps input and output
Dan Williamsca4fe302009-08-21 09:35:20 -050044 * @param rates_size the size of rates buffer; new size of buffer on return,
45 * which will be less than or equal to original rates_size
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040046 *
47 * @return 0 on success, or -1 on error
48 */
49static int get_common_rates(struct lbs_private *priv,
50 u8 *rates,
51 u16 *rates_size)
52{
Roel Kluin1e3d31c2009-08-02 09:44:12 +020053 int i, j;
Dan Williamsca4fe302009-08-21 09:35:20 -050054 u8 intersection[MAX_RATES];
55 u16 intersection_size;
56 u16 num_rates = 0;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040057
Dan Williamsca4fe302009-08-21 09:35:20 -050058 intersection_size = min_t(u16, *rates_size, ARRAY_SIZE(intersection));
Andrey Yurovsky6f632d52009-08-13 17:34:40 -070059
Dan Williamsca4fe302009-08-21 09:35:20 -050060 /* Allow each rate from 'rates' that is supported by the hardware */
61 for (i = 0; i < ARRAY_SIZE(lbs_bg_rates) && lbs_bg_rates[i]; i++) {
62 for (j = 0; j < intersection_size && rates[j]; j++) {
63 if (rates[j] == lbs_bg_rates[i])
64 intersection[num_rates++] = rates[j];
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040065 }
66 }
67
68 lbs_deb_hex(LBS_DEB_JOIN, "AP rates ", rates, *rates_size);
Dan Williamsca4fe302009-08-21 09:35:20 -050069 lbs_deb_hex(LBS_DEB_JOIN, "card rates ", lbs_bg_rates,
70 ARRAY_SIZE(lbs_bg_rates));
71 lbs_deb_hex(LBS_DEB_JOIN, "common rates", intersection, num_rates);
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040072 lbs_deb_join("TX data rate 0x%02x\n", priv->cur_rate);
73
74 if (!priv->enablehwauto) {
Dan Williamsca4fe302009-08-21 09:35:20 -050075 for (i = 0; i < num_rates; i++) {
76 if (intersection[i] == priv->cur_rate)
77 goto done;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040078 }
Dan Williamsca4fe302009-08-21 09:35:20 -050079 lbs_pr_alert("Previously set fixed data rate %#x isn't "
80 "compatible with the network.\n", priv->cur_rate);
81 return -1;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040082 }
Dan Williamsca4fe302009-08-21 09:35:20 -050083
84done:
85 memset(rates, 0, *rates_size);
86 *rates_size = num_rates;
87 memcpy(rates, intersection, num_rates);
Roel Kluin1e3d31c2009-08-02 09:44:12 +020088 return 0;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -040089}
90
91
92/**
93 * @brief Sets the MSB on basic rates as the firmware requires
94 *
95 * Scan through an array and set the MSB for basic data rates.
96 *
97 * @param rates buffer of data rates
98 * @param len size of buffer
99 */
100static void lbs_set_basic_rate_flags(u8 *rates, size_t len)
101{
102 int i;
103
104 for (i = 0; i < len; i++) {
105 if (rates[i] == 0x02 || rates[i] == 0x04 ||
106 rates[i] == 0x0b || rates[i] == 0x16)
107 rates[i] |= 0x80;
108 }
109}
110
Holger Schurig697900a2008-04-02 16:27:10 +0200111
Dan Williamsbe0d76e2009-05-22 20:05:25 -0400112static u8 iw_auth_to_ieee_auth(u8 auth)
113{
114 if (auth == IW_AUTH_ALG_OPEN_SYSTEM)
115 return 0x00;
116 else if (auth == IW_AUTH_ALG_SHARED_KEY)
117 return 0x01;
118 else if (auth == IW_AUTH_ALG_LEAP)
119 return 0x80;
120
121 lbs_deb_join("%s: invalid auth alg 0x%X\n", __func__, auth);
122 return 0;
123}
124
125/**
126 * @brief This function prepares the authenticate command. AUTHENTICATE only
127 * sets the authentication suite for future associations, as the firmware
128 * handles authentication internally during the ASSOCIATE command.
129 *
130 * @param priv A pointer to struct lbs_private structure
131 * @param bssid The peer BSSID with which to authenticate
132 * @param auth The authentication mode to use (from wireless.h)
133 *
134 * @return 0 or -1
135 */
136static int lbs_set_authentication(struct lbs_private *priv, u8 bssid[6], u8 auth)
137{
138 struct cmd_ds_802_11_authenticate cmd;
139 int ret = -1;
Dan Williamsbe0d76e2009-05-22 20:05:25 -0400140
141 lbs_deb_enter(LBS_DEB_JOIN);
142
143 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
144 memcpy(cmd.bssid, bssid, ETH_ALEN);
145
146 cmd.authtype = iw_auth_to_ieee_auth(auth);
147
Johannes Berge91d8332009-07-15 17:21:41 +0200148 lbs_deb_join("AUTH_CMD: BSSID %pM, auth 0x%x\n", bssid, cmd.authtype);
Dan Williamsbe0d76e2009-05-22 20:05:25 -0400149
150 ret = lbs_cmd_with_response(priv, CMD_802_11_AUTHENTICATE, &cmd);
151
152 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
153 return ret;
154}
155
Dan Williams822ac032009-05-22 20:07:14 -0400156
Holger Schurigd0de3742009-10-22 15:30:51 +0200157int lbs_cmd_802_11_set_wep(struct lbs_private *priv, uint16_t cmd_action,
158 struct assoc_request *assoc)
159{
160 struct cmd_ds_802_11_set_wep cmd;
161 int ret = 0;
162
163 lbs_deb_enter(LBS_DEB_CMD);
164
165 memset(&cmd, 0, sizeof(cmd));
166 cmd.hdr.command = cpu_to_le16(CMD_802_11_SET_WEP);
167 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
168
169 cmd.action = cpu_to_le16(cmd_action);
170
171 if (cmd_action == CMD_ACT_ADD) {
172 int i;
173
174 /* default tx key index */
175 cmd.keyindex = cpu_to_le16(assoc->wep_tx_keyidx &
176 CMD_WEP_KEY_INDEX_MASK);
177
178 /* Copy key types and material to host command structure */
179 for (i = 0; i < 4; i++) {
180 struct enc_key *pkey = &assoc->wep_keys[i];
181
182 switch (pkey->len) {
183 case KEY_LEN_WEP_40:
184 cmd.keytype[i] = CMD_TYPE_WEP_40_BIT;
185 memmove(cmd.keymaterial[i], pkey->key, pkey->len);
186 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
187 break;
188 case KEY_LEN_WEP_104:
189 cmd.keytype[i] = CMD_TYPE_WEP_104_BIT;
190 memmove(cmd.keymaterial[i], pkey->key, pkey->len);
191 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
192 break;
193 case 0:
194 break;
195 default:
196 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
197 i, pkey->len);
198 ret = -1;
199 goto done;
200 break;
201 }
202 }
203 } else if (cmd_action == CMD_ACT_REMOVE) {
204 /* ACT_REMOVE clears _all_ WEP keys */
205
206 /* default tx key index */
207 cmd.keyindex = cpu_to_le16(priv->wep_tx_keyidx &
208 CMD_WEP_KEY_INDEX_MASK);
209 lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx);
210 }
211
212 ret = lbs_cmd_with_response(priv, CMD_802_11_SET_WEP, &cmd);
213done:
214 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
215 return ret;
216}
217
218int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv, uint16_t cmd_action,
219 uint16_t *enable)
220{
221 struct cmd_ds_802_11_enable_rsn cmd;
222 int ret;
223
224 lbs_deb_enter(LBS_DEB_CMD);
225
226 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
227 cmd.action = cpu_to_le16(cmd_action);
228
229 if (cmd_action == CMD_ACT_GET)
230 cmd.enable = 0;
231 else {
232 if (*enable)
233 cmd.enable = cpu_to_le16(CMD_ENABLE_RSN);
234 else
235 cmd.enable = cpu_to_le16(CMD_DISABLE_RSN);
236 lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
237 }
238
239 ret = lbs_cmd_with_response(priv, CMD_802_11_ENABLE_RSN, &cmd);
240 if (!ret && cmd_action == CMD_ACT_GET)
241 *enable = le16_to_cpu(cmd.enable);
242
243 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
244 return ret;
245}
246
247static void set_one_wpa_key(struct MrvlIEtype_keyParamSet *keyparam,
248 struct enc_key *key)
249{
250 lbs_deb_enter(LBS_DEB_CMD);
251
252 if (key->flags & KEY_INFO_WPA_ENABLED)
253 keyparam->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
254 if (key->flags & KEY_INFO_WPA_UNICAST)
255 keyparam->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
256 if (key->flags & KEY_INFO_WPA_MCAST)
257 keyparam->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
258
259 keyparam->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
260 keyparam->keytypeid = cpu_to_le16(key->type);
261 keyparam->keylen = cpu_to_le16(key->len);
262 memcpy(keyparam->key, key->key, key->len);
263
264 /* Length field doesn't include the {type,length} header */
265 keyparam->length = cpu_to_le16(sizeof(*keyparam) - 4);
266 lbs_deb_leave(LBS_DEB_CMD);
267}
268
269int lbs_cmd_802_11_key_material(struct lbs_private *priv, uint16_t cmd_action,
270 struct assoc_request *assoc)
271{
272 struct cmd_ds_802_11_key_material cmd;
273 int ret = 0;
274 int index = 0;
275
276 lbs_deb_enter(LBS_DEB_CMD);
277
278 cmd.action = cpu_to_le16(cmd_action);
279 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
280
281 if (cmd_action == CMD_ACT_GET) {
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200282 cmd.hdr.size = cpu_to_le16(sizeof(struct cmd_header) + 2);
Holger Schurigd0de3742009-10-22 15:30:51 +0200283 } else {
284 memset(cmd.keyParamSet, 0, sizeof(cmd.keyParamSet));
285
286 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc->flags)) {
287 set_one_wpa_key(&cmd.keyParamSet[index],
288 &assoc->wpa_unicast_key);
289 index++;
290 }
291
292 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc->flags)) {
293 set_one_wpa_key(&cmd.keyParamSet[index],
294 &assoc->wpa_mcast_key);
295 index++;
296 }
297
298 /* The common header and as many keys as we included */
299 cmd.hdr.size = cpu_to_le16(offsetof(typeof(cmd),
300 keyParamSet[index]));
301 }
302 ret = lbs_cmd_with_response(priv, CMD_802_11_KEY_MATERIAL, &cmd);
303 /* Copy the returned key to driver private data */
304 if (!ret && cmd_action == CMD_ACT_GET) {
305 void *buf_ptr = cmd.keyParamSet;
306 void *resp_end = &(&cmd)[1];
307
308 while (buf_ptr < resp_end) {
309 struct MrvlIEtype_keyParamSet *keyparam = buf_ptr;
310 struct enc_key *key;
311 uint16_t param_set_len = le16_to_cpu(keyparam->length);
312 uint16_t key_len = le16_to_cpu(keyparam->keylen);
313 uint16_t key_flags = le16_to_cpu(keyparam->keyinfo);
314 uint16_t key_type = le16_to_cpu(keyparam->keytypeid);
315 void *end;
316
317 end = (void *)keyparam + sizeof(keyparam->type)
318 + sizeof(keyparam->length) + param_set_len;
319
320 /* Make sure we don't access past the end of the IEs */
321 if (end > resp_end)
322 break;
323
324 if (key_flags & KEY_INFO_WPA_UNICAST)
325 key = &priv->wpa_unicast_key;
326 else if (key_flags & KEY_INFO_WPA_MCAST)
327 key = &priv->wpa_mcast_key;
328 else
329 break;
330
331 /* Copy returned key into driver */
332 memset(key, 0, sizeof(struct enc_key));
333 if (key_len > sizeof(key->key))
334 break;
335 key->type = key_type;
336 key->flags = key_flags;
337 key->len = key_len;
338 memcpy(key->key, keyparam->key, key->len);
339
340 buf_ptr = end + 1;
341 }
342 }
343
344 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
345 return ret;
346}
347
348static __le16 lbs_rate_to_fw_bitmap(int rate, int lower_rates_ok)
349{
350/* Bit Rate
351* 15:13 Reserved
352* 12 54 Mbps
353* 11 48 Mbps
354* 10 36 Mbps
355* 9 24 Mbps
356* 8 18 Mbps
357* 7 12 Mbps
358* 6 9 Mbps
359* 5 6 Mbps
360* 4 Reserved
361* 3 11 Mbps
362* 2 5.5 Mbps
363* 1 2 Mbps
364* 0 1 Mbps
365**/
366
367 uint16_t ratemask;
368 int i = lbs_data_rate_to_fw_index(rate);
369 if (lower_rates_ok)
370 ratemask = (0x1fef >> (12 - i));
371 else
372 ratemask = (1 << i);
373 return cpu_to_le16(ratemask);
374}
375
376int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
377 uint16_t cmd_action)
378{
379 struct cmd_ds_802_11_rate_adapt_rateset cmd;
380 int ret;
381
382 lbs_deb_enter(LBS_DEB_CMD);
383
384 if (!priv->cur_rate && !priv->enablehwauto)
385 return -EINVAL;
386
387 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
388
389 cmd.action = cpu_to_le16(cmd_action);
390 cmd.enablehwauto = cpu_to_le16(priv->enablehwauto);
391 cmd.bitmap = lbs_rate_to_fw_bitmap(priv->cur_rate, priv->enablehwauto);
392 ret = lbs_cmd_with_response(priv, CMD_802_11_RATE_ADAPT_RATESET, &cmd);
393 if (!ret && cmd_action == CMD_ACT_GET) {
394 priv->ratebitmap = le16_to_cpu(cmd.bitmap);
395 priv->enablehwauto = le16_to_cpu(cmd.enablehwauto);
396 }
397
398 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
399 return ret;
400}
401
402/**
403 * @brief Set the data rate
404 *
405 * @param priv A pointer to struct lbs_private structure
406 * @param rate The desired data rate, or 0 to clear a locked rate
407 *
408 * @return 0 on success, error on failure
409 */
410int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
411{
412 struct cmd_ds_802_11_data_rate cmd;
413 int ret = 0;
414
415 lbs_deb_enter(LBS_DEB_CMD);
416
417 memset(&cmd, 0, sizeof(cmd));
418 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
419
420 if (rate > 0) {
421 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
422 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
423 if (cmd.rates[0] == 0) {
424 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
425 " 0x%02X\n", rate);
426 ret = 0;
427 goto out;
428 }
429 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
430 } else {
431 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
432 lbs_deb_cmd("DATA_RATE: setting auto\n");
433 }
434
435 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
436 if (ret)
437 goto out;
438
439 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof(cmd));
440
441 /* FIXME: get actual rates FW can do if this command actually returns
442 * all data rates supported.
443 */
444 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
445 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
446
447out:
448 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
449 return ret;
450}
451
452
453int lbs_cmd_802_11_rssi(struct lbs_private *priv,
454 struct cmd_ds_command *cmd)
455{
456
457 lbs_deb_enter(LBS_DEB_CMD);
458 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200459 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) +
460 sizeof(struct cmd_header));
Holger Schurigd0de3742009-10-22 15:30:51 +0200461 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
462
463 /* reset Beacon SNR/NF/RSSI values */
464 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
465 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
466 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
467 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
468 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
469 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
470
471 lbs_deb_leave(LBS_DEB_CMD);
472 return 0;
473}
474
475int lbs_ret_802_11_rssi(struct lbs_private *priv,
476 struct cmd_ds_command *resp)
477{
478 struct cmd_ds_802_11_rssi_rsp *rssirsp = &resp->params.rssirsp;
479
480 lbs_deb_enter(LBS_DEB_CMD);
481
482 /* store the non average value */
483 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = get_unaligned_le16(&rssirsp->SNR);
484 priv->NF[TYPE_BEACON][TYPE_NOAVG] =
485 get_unaligned_le16(&rssirsp->noisefloor);
486
487 priv->SNR[TYPE_BEACON][TYPE_AVG] = get_unaligned_le16(&rssirsp->avgSNR);
488 priv->NF[TYPE_BEACON][TYPE_AVG] =
489 get_unaligned_le16(&rssirsp->avgnoisefloor);
490
491 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] =
492 CAL_RSSI(priv->SNR[TYPE_BEACON][TYPE_NOAVG],
493 priv->NF[TYPE_BEACON][TYPE_NOAVG]);
494
495 priv->RSSI[TYPE_BEACON][TYPE_AVG] =
496 CAL_RSSI(priv->SNR[TYPE_BEACON][TYPE_AVG] / AVG_SCALE,
497 priv->NF[TYPE_BEACON][TYPE_AVG] / AVG_SCALE);
498
499 lbs_deb_cmd("RSSI: beacon %d, avg %d\n",
500 priv->RSSI[TYPE_BEACON][TYPE_NOAVG],
501 priv->RSSI[TYPE_BEACON][TYPE_AVG]);
502
503 lbs_deb_leave(LBS_DEB_CMD);
504 return 0;
505}
506
507
508int lbs_cmd_bcn_ctrl(struct lbs_private *priv,
509 struct cmd_ds_command *cmd,
510 u16 cmd_action)
511{
512 struct cmd_ds_802_11_beacon_control
513 *bcn_ctrl = &cmd->params.bcn_ctrl;
514
515 lbs_deb_enter(LBS_DEB_CMD);
516 cmd->size =
517 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200518 + sizeof(struct cmd_header));
Holger Schurigd0de3742009-10-22 15:30:51 +0200519 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
520
521 bcn_ctrl->action = cpu_to_le16(cmd_action);
522 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
523 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
524
525 lbs_deb_leave(LBS_DEB_CMD);
526 return 0;
527}
528
529int lbs_ret_802_11_bcn_ctrl(struct lbs_private *priv,
530 struct cmd_ds_command *resp)
531{
532 struct cmd_ds_802_11_beacon_control *bcn_ctrl =
533 &resp->params.bcn_ctrl;
534
535 lbs_deb_enter(LBS_DEB_CMD);
536
537 if (bcn_ctrl->action == CMD_ACT_GET) {
538 priv->beacon_enable = (u8) le16_to_cpu(bcn_ctrl->beacon_enable);
539 priv->beacon_period = le16_to_cpu(bcn_ctrl->beacon_period);
540 }
541
542 lbs_deb_enter(LBS_DEB_CMD);
543 return 0;
544}
545
546
547
Dan Williams822ac032009-05-22 20:07:14 -0400548static int lbs_assoc_post(struct lbs_private *priv,
549 struct cmd_ds_802_11_associate_response *resp)
550{
551 int ret = 0;
552 union iwreq_data wrqu;
553 struct bss_descriptor *bss;
554 u16 status_code;
555
556 lbs_deb_enter(LBS_DEB_ASSOC);
557
558 if (!priv->in_progress_assoc_req) {
559 lbs_deb_assoc("ASSOC_RESP: no in-progress assoc request\n");
560 ret = -1;
561 goto done;
562 }
563 bss = &priv->in_progress_assoc_req->bss;
564
565 /*
566 * Older FW versions map the IEEE 802.11 Status Code in the association
567 * response to the following values returned in resp->statuscode:
568 *
569 * IEEE Status Code Marvell Status Code
570 * 0 -> 0x0000 ASSOC_RESULT_SUCCESS
571 * 13 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
572 * 14 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
573 * 15 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
574 * 16 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
575 * others -> 0x0003 ASSOC_RESULT_REFUSED
576 *
577 * Other response codes:
578 * 0x0001 -> ASSOC_RESULT_INVALID_PARAMETERS (unused)
579 * 0x0002 -> ASSOC_RESULT_TIMEOUT (internal timer expired waiting for
580 * association response from the AP)
581 */
582
583 status_code = le16_to_cpu(resp->statuscode);
584 if (priv->fwrelease < 0x09000000) {
585 switch (status_code) {
586 case 0x00:
587 break;
588 case 0x01:
589 lbs_deb_assoc("ASSOC_RESP: invalid parameters\n");
590 break;
591 case 0x02:
592 lbs_deb_assoc("ASSOC_RESP: internal timer "
593 "expired while waiting for the AP\n");
594 break;
595 case 0x03:
596 lbs_deb_assoc("ASSOC_RESP: association "
597 "refused by AP\n");
598 break;
599 case 0x04:
600 lbs_deb_assoc("ASSOC_RESP: authentication "
601 "refused by AP\n");
602 break;
603 default:
604 lbs_deb_assoc("ASSOC_RESP: failure reason 0x%02x "
605 " unknown\n", status_code);
606 break;
607 }
608 } else {
609 /* v9+ returns the AP's association response */
610 lbs_deb_assoc("ASSOC_RESP: failure reason 0x%02x\n", status_code);
611 }
612
613 if (status_code) {
614 lbs_mac_event_disconnected(priv);
615 ret = -1;
616 goto done;
617 }
618
619 lbs_deb_hex(LBS_DEB_ASSOC, "ASSOC_RESP",
620 (void *) (resp + sizeof (resp->hdr)),
621 le16_to_cpu(resp->hdr.size) - sizeof (resp->hdr));
622
623 /* Send a Media Connected event, according to the Spec */
624 priv->connect_status = LBS_CONNECTED;
625
626 /* Update current SSID and BSSID */
Holger Schurig243e84e2009-10-22 15:30:47 +0200627 memcpy(&priv->curbssparams.ssid, &bss->ssid, IEEE80211_MAX_SSID_LEN);
Dan Williams822ac032009-05-22 20:07:14 -0400628 priv->curbssparams.ssid_len = bss->ssid_len;
629 memcpy(priv->curbssparams.bssid, bss->bssid, ETH_ALEN);
630
631 priv->SNR[TYPE_RXPD][TYPE_AVG] = 0;
632 priv->NF[TYPE_RXPD][TYPE_AVG] = 0;
633
634 memset(priv->rawSNR, 0x00, sizeof(priv->rawSNR));
635 memset(priv->rawNF, 0x00, sizeof(priv->rawNF));
636 priv->nextSNRNF = 0;
637 priv->numSNRNF = 0;
638
639 netif_carrier_on(priv->dev);
640 if (!priv->tx_pending_len)
641 netif_wake_queue(priv->dev);
642
643 memcpy(wrqu.ap_addr.sa_data, priv->curbssparams.bssid, ETH_ALEN);
644 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
645 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
646
647done:
648 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
649 return ret;
650}
651
652/**
653 * @brief This function prepares an association-class command.
654 *
655 * @param priv A pointer to struct lbs_private structure
656 * @param assoc_req The association request describing the BSS to associate
657 * or reassociate with
658 * @param command The actual command, either CMD_802_11_ASSOCIATE or
659 * CMD_802_11_REASSOCIATE
660 *
661 * @return 0 or -1
662 */
663static int lbs_associate(struct lbs_private *priv,
664 struct assoc_request *assoc_req,
665 u16 command)
666{
667 struct cmd_ds_802_11_associate cmd;
668 int ret = 0;
669 struct bss_descriptor *bss = &assoc_req->bss;
670 u8 *pos = &(cmd.iebuf[0]);
671 u16 tmpcap, tmplen, tmpauth;
672 struct mrvl_ie_ssid_param_set *ssid;
673 struct mrvl_ie_ds_param_set *ds;
674 struct mrvl_ie_cf_param_set *cf;
675 struct mrvl_ie_rates_param_set *rates;
676 struct mrvl_ie_rsn_param_set *rsn;
677 struct mrvl_ie_auth_type *auth;
678
679 lbs_deb_enter(LBS_DEB_ASSOC);
680
681 BUG_ON((command != CMD_802_11_ASSOCIATE) &&
682 (command != CMD_802_11_REASSOCIATE));
683
684 memset(&cmd, 0, sizeof(cmd));
685 cmd.hdr.command = cpu_to_le16(command);
686
687 /* Fill in static fields */
688 memcpy(cmd.bssid, bss->bssid, ETH_ALEN);
689 cmd.listeninterval = cpu_to_le16(MRVDRV_DEFAULT_LISTEN_INTERVAL);
690
691 /* Capability info */
692 tmpcap = (bss->capability & CAPINFO_MASK);
693 if (bss->mode == IW_MODE_INFRA)
694 tmpcap |= WLAN_CAPABILITY_ESS;
695 cmd.capability = cpu_to_le16(tmpcap);
696 lbs_deb_assoc("ASSOC_CMD: capability 0x%04x\n", tmpcap);
697
698 /* SSID */
699 ssid = (struct mrvl_ie_ssid_param_set *) pos;
700 ssid->header.type = cpu_to_le16(TLV_TYPE_SSID);
701 tmplen = bss->ssid_len;
702 ssid->header.len = cpu_to_le16(tmplen);
703 memcpy(ssid->ssid, bss->ssid, tmplen);
704 pos += sizeof(ssid->header) + tmplen;
705
706 ds = (struct mrvl_ie_ds_param_set *) pos;
707 ds->header.type = cpu_to_le16(TLV_TYPE_PHY_DS);
708 ds->header.len = cpu_to_le16(1);
709 ds->channel = bss->phy.ds.channel;
710 pos += sizeof(ds->header) + 1;
711
712 cf = (struct mrvl_ie_cf_param_set *) pos;
713 cf->header.type = cpu_to_le16(TLV_TYPE_CF);
714 tmplen = sizeof(*cf) - sizeof (cf->header);
715 cf->header.len = cpu_to_le16(tmplen);
716 /* IE payload should be zeroed, firmware fills it in for us */
717 pos += sizeof(*cf);
718
719 rates = (struct mrvl_ie_rates_param_set *) pos;
720 rates->header.type = cpu_to_le16(TLV_TYPE_RATES);
Dan Williamsca4fe302009-08-21 09:35:20 -0500721 tmplen = min_t(u16, ARRAY_SIZE(bss->rates), MAX_RATES);
Roel Kluin1e3d31c2009-08-02 09:44:12 +0200722 memcpy(&rates->rates, &bss->rates, tmplen);
Dan Williams822ac032009-05-22 20:07:14 -0400723 if (get_common_rates(priv, rates->rates, &tmplen)) {
724 ret = -1;
725 goto done;
726 }
727 pos += sizeof(rates->header) + tmplen;
728 rates->header.len = cpu_to_le16(tmplen);
729 lbs_deb_assoc("ASSOC_CMD: num rates %u\n", tmplen);
730
731 /* Copy the infra. association rates into Current BSS state structure */
732 memset(&priv->curbssparams.rates, 0, sizeof(priv->curbssparams.rates));
733 memcpy(&priv->curbssparams.rates, &rates->rates, tmplen);
734
735 /* Set MSB on basic rates as the firmware requires, but _after_
736 * copying to current bss rates.
737 */
738 lbs_set_basic_rate_flags(rates->rates, tmplen);
739
740 /* Firmware v9+ indicate authentication suites as a TLV */
741 if (priv->fwrelease >= 0x09000000) {
Dan Williams822ac032009-05-22 20:07:14 -0400742 auth = (struct mrvl_ie_auth_type *) pos;
743 auth->header.type = cpu_to_le16(TLV_TYPE_AUTH_TYPE);
744 auth->header.len = cpu_to_le16(2);
745 tmpauth = iw_auth_to_ieee_auth(priv->secinfo.auth_mode);
746 auth->auth = cpu_to_le16(tmpauth);
747 pos += sizeof(auth->header) + 2;
748
Johannes Berge91d8332009-07-15 17:21:41 +0200749 lbs_deb_join("AUTH_CMD: BSSID %pM, auth 0x%x\n",
750 bss->bssid, priv->secinfo.auth_mode);
Dan Williams822ac032009-05-22 20:07:14 -0400751 }
752
753 /* WPA/WPA2 IEs */
754 if (assoc_req->secinfo.WPAenabled || assoc_req->secinfo.WPA2enabled) {
755 rsn = (struct mrvl_ie_rsn_param_set *) pos;
756 /* WPA_IE or WPA2_IE */
757 rsn->header.type = cpu_to_le16((u16) assoc_req->wpa_ie[0]);
758 tmplen = (u16) assoc_req->wpa_ie[1];
759 rsn->header.len = cpu_to_le16(tmplen);
760 memcpy(rsn->rsnie, &assoc_req->wpa_ie[2], tmplen);
761 lbs_deb_hex(LBS_DEB_JOIN, "ASSOC_CMD: WPA/RSN IE", (u8 *) rsn,
762 sizeof(rsn->header) + tmplen);
763 pos += sizeof(rsn->header) + tmplen;
764 }
765
766 cmd.hdr.size = cpu_to_le16((sizeof(cmd) - sizeof(cmd.iebuf)) +
767 (u16)(pos - (u8 *) &cmd.iebuf));
768
769 /* update curbssparams */
Holger Schurigc14951f2009-10-22 15:30:50 +0200770 priv->channel = bss->phy.ds.channel;
Dan Williams822ac032009-05-22 20:07:14 -0400771
Dan Williams822ac032009-05-22 20:07:14 -0400772 ret = lbs_cmd_with_response(priv, command, &cmd);
773 if (ret == 0) {
774 ret = lbs_assoc_post(priv,
775 (struct cmd_ds_802_11_associate_response *) &cmd);
776 }
777
778done:
779 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
780 return ret;
781}
782
Holger Schurig697900a2008-04-02 16:27:10 +0200783/**
784 * @brief Associate to a specific BSS discovered in a scan
785 *
786 * @param priv A pointer to struct lbs_private structure
Dan Williamsd5db2df2008-08-21 17:51:07 -0400787 * @param assoc_req The association request describing the BSS to associate with
Holger Schurig697900a2008-04-02 16:27:10 +0200788 *
789 * @return 0-success, otherwise fail
790 */
Dan Williams822ac032009-05-22 20:07:14 -0400791static int lbs_try_associate(struct lbs_private *priv,
Holger Schurig697900a2008-04-02 16:27:10 +0200792 struct assoc_request *assoc_req)
793{
794 int ret;
Dan Williamsd5db2df2008-08-21 17:51:07 -0400795 u8 preamble = RADIO_PREAMBLE_LONG;
Holger Schurig697900a2008-04-02 16:27:10 +0200796
797 lbs_deb_enter(LBS_DEB_ASSOC);
798
Dan Williamsbe0d76e2009-05-22 20:05:25 -0400799 /* FW v9 and higher indicate authentication suites as a TLV in the
800 * association command, not as a separate authentication command.
801 */
802 if (priv->fwrelease < 0x09000000) {
803 ret = lbs_set_authentication(priv, assoc_req->bss.bssid,
804 priv->secinfo.auth_mode);
805 if (ret)
806 goto out;
807 }
Holger Schurig697900a2008-04-02 16:27:10 +0200808
Dan Williamsd5db2df2008-08-21 17:51:07 -0400809 /* Use short preamble only when both the BSS and firmware support it */
Holger Schurig697900a2008-04-02 16:27:10 +0200810 if ((priv->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) &&
811 (assoc_req->bss.capability & WLAN_CAPABILITY_SHORT_PREAMBLE))
Dan Williamsd5db2df2008-08-21 17:51:07 -0400812 preamble = RADIO_PREAMBLE_SHORT;
Holger Schurig697900a2008-04-02 16:27:10 +0200813
Dan Williamsd5db2df2008-08-21 17:51:07 -0400814 ret = lbs_set_radio(priv, preamble, 1);
815 if (ret)
816 goto out;
Holger Schurig697900a2008-04-02 16:27:10 +0200817
Dan Williams822ac032009-05-22 20:07:14 -0400818 ret = lbs_associate(priv, assoc_req, CMD_802_11_ASSOCIATE);
Holger Schurig697900a2008-04-02 16:27:10 +0200819
Dan Williamsd5db2df2008-08-21 17:51:07 -0400820out:
Holger Schurig697900a2008-04-02 16:27:10 +0200821 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
822 return ret;
823}
824
Dan Williams822ac032009-05-22 20:07:14 -0400825static int lbs_adhoc_post(struct lbs_private *priv,
826 struct cmd_ds_802_11_ad_hoc_result *resp)
827{
828 int ret = 0;
829 u16 command = le16_to_cpu(resp->hdr.command);
830 u16 result = le16_to_cpu(resp->hdr.result);
831 union iwreq_data wrqu;
832 struct bss_descriptor *bss;
833 DECLARE_SSID_BUF(ssid);
834
835 lbs_deb_enter(LBS_DEB_JOIN);
836
837 if (!priv->in_progress_assoc_req) {
838 lbs_deb_join("ADHOC_RESP: no in-progress association "
839 "request\n");
840 ret = -1;
841 goto done;
842 }
843 bss = &priv->in_progress_assoc_req->bss;
844
845 /*
846 * Join result code 0 --> SUCCESS
847 */
848 if (result) {
849 lbs_deb_join("ADHOC_RESP: failed (result 0x%X)\n", result);
850 if (priv->connect_status == LBS_CONNECTED)
851 lbs_mac_event_disconnected(priv);
852 ret = -1;
853 goto done;
854 }
855
856 /* Send a Media Connected event, according to the Spec */
857 priv->connect_status = LBS_CONNECTED;
858
859 if (command == CMD_RET(CMD_802_11_AD_HOC_START)) {
860 /* Update the created network descriptor with the new BSSID */
861 memcpy(bss->bssid, resp->bssid, ETH_ALEN);
862 }
863
864 /* Set the BSSID from the joined/started descriptor */
865 memcpy(&priv->curbssparams.bssid, bss->bssid, ETH_ALEN);
866
867 /* Set the new SSID to current SSID */
Holger Schurig243e84e2009-10-22 15:30:47 +0200868 memcpy(&priv->curbssparams.ssid, &bss->ssid, IEEE80211_MAX_SSID_LEN);
Dan Williams822ac032009-05-22 20:07:14 -0400869 priv->curbssparams.ssid_len = bss->ssid_len;
870
871 netif_carrier_on(priv->dev);
872 if (!priv->tx_pending_len)
873 netif_wake_queue(priv->dev);
874
875 memset(&wrqu, 0, sizeof(wrqu));
876 memcpy(wrqu.ap_addr.sa_data, priv->curbssparams.bssid, ETH_ALEN);
877 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
878 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
879
880 lbs_deb_join("ADHOC_RESP: Joined/started '%s', BSSID %pM, channel %d\n",
881 print_ssid(ssid, bss->ssid, bss->ssid_len),
882 priv->curbssparams.bssid,
Holger Schurigc14951f2009-10-22 15:30:50 +0200883 priv->channel);
Dan Williams822ac032009-05-22 20:07:14 -0400884
885done:
886 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
887 return ret;
888}
889
Holger Schurig697900a2008-04-02 16:27:10 +0200890/**
891 * @brief Join an adhoc network found in a previous scan
892 *
893 * @param priv A pointer to struct lbs_private structure
Dan Williamsd5db2df2008-08-21 17:51:07 -0400894 * @param assoc_req The association request describing the BSS to join
Holger Schurig697900a2008-04-02 16:27:10 +0200895 *
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400896 * @return 0 on success, error on failure
Holger Schurig697900a2008-04-02 16:27:10 +0200897 */
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400898static int lbs_adhoc_join(struct lbs_private *priv,
Holger Schurig697900a2008-04-02 16:27:10 +0200899 struct assoc_request *assoc_req)
900{
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400901 struct cmd_ds_802_11_ad_hoc_join cmd;
Holger Schurig697900a2008-04-02 16:27:10 +0200902 struct bss_descriptor *bss = &assoc_req->bss;
Dan Williamsd5db2df2008-08-21 17:51:07 -0400903 u8 preamble = RADIO_PREAMBLE_LONG;
John W. Linville9387b7c2008-09-30 20:59:05 -0400904 DECLARE_SSID_BUF(ssid);
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400905 u16 ratesize = 0;
906 int ret = 0;
Dan Williamsd5db2df2008-08-21 17:51:07 -0400907
908 lbs_deb_enter(LBS_DEB_ASSOC);
Holger Schurig697900a2008-04-02 16:27:10 +0200909
910 lbs_deb_join("current SSID '%s', ssid length %u\n",
John W. Linville9387b7c2008-09-30 20:59:05 -0400911 print_ssid(ssid, priv->curbssparams.ssid,
Holger Schurig697900a2008-04-02 16:27:10 +0200912 priv->curbssparams.ssid_len),
913 priv->curbssparams.ssid_len);
914 lbs_deb_join("requested ssid '%s', ssid length %u\n",
John W. Linville9387b7c2008-09-30 20:59:05 -0400915 print_ssid(ssid, bss->ssid, bss->ssid_len),
Holger Schurig697900a2008-04-02 16:27:10 +0200916 bss->ssid_len);
917
918 /* check if the requested SSID is already joined */
919 if (priv->curbssparams.ssid_len &&
920 !lbs_ssid_cmp(priv->curbssparams.ssid,
921 priv->curbssparams.ssid_len,
922 bss->ssid, bss->ssid_len) &&
923 (priv->mode == IW_MODE_ADHOC) &&
924 (priv->connect_status == LBS_CONNECTED)) {
925 union iwreq_data wrqu;
926
927 lbs_deb_join("ADHOC_J_CMD: New ad-hoc SSID is the same as "
928 "current, not attempting to re-join");
929
930 /* Send the re-association event though, because the association
931 * request really was successful, even if just a null-op.
932 */
933 memset(&wrqu, 0, sizeof(wrqu));
934 memcpy(wrqu.ap_addr.sa_data, priv->curbssparams.bssid,
935 ETH_ALEN);
936 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
937 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
938 goto out;
939 }
940
Dan Williamsd5db2df2008-08-21 17:51:07 -0400941 /* Use short preamble only when both the BSS and firmware support it */
942 if ((priv->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) &&
943 (bss->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)) {
Holger Schurig697900a2008-04-02 16:27:10 +0200944 lbs_deb_join("AdhocJoin: Short preamble\n");
Dan Williamsd5db2df2008-08-21 17:51:07 -0400945 preamble = RADIO_PREAMBLE_SHORT;
Holger Schurig697900a2008-04-02 16:27:10 +0200946 }
947
Dan Williamsd5db2df2008-08-21 17:51:07 -0400948 ret = lbs_set_radio(priv, preamble, 1);
949 if (ret)
950 goto out;
Holger Schurig697900a2008-04-02 16:27:10 +0200951
952 lbs_deb_join("AdhocJoin: channel = %d\n", assoc_req->channel);
953 lbs_deb_join("AdhocJoin: band = %c\n", assoc_req->band);
954
955 priv->adhoccreate = 0;
Holger Schurigc14951f2009-10-22 15:30:50 +0200956 priv->channel = bss->channel;
Holger Schurig697900a2008-04-02 16:27:10 +0200957
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400958 /* Build the join command */
959 memset(&cmd, 0, sizeof(cmd));
960 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
961
962 cmd.bss.type = CMD_BSS_TYPE_IBSS;
963 cmd.bss.beaconperiod = cpu_to_le16(bss->beaconperiod);
964
965 memcpy(&cmd.bss.bssid, &bss->bssid, ETH_ALEN);
966 memcpy(&cmd.bss.ssid, &bss->ssid, bss->ssid_len);
967
Dan Williams5fd164e2009-05-22 20:01:21 -0400968 memcpy(&cmd.bss.ds, &bss->phy.ds, sizeof(struct ieee_ie_ds_param_set));
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400969
Dan Williams5fd164e2009-05-22 20:01:21 -0400970 memcpy(&cmd.bss.ibss, &bss->ss.ibss,
971 sizeof(struct ieee_ie_ibss_param_set));
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400972
973 cmd.bss.capability = cpu_to_le16(bss->capability & CAPINFO_MASK);
974 lbs_deb_join("ADHOC_J_CMD: tmpcap=%4X CAPINFO_MASK=%4X\n",
975 bss->capability, CAPINFO_MASK);
976
977 /* information on BSSID descriptor passed to FW */
Johannes Berge1749612008-10-27 15:59:26 -0700978 lbs_deb_join("ADHOC_J_CMD: BSSID = %pM, SSID = '%s'\n",
979 cmd.bss.bssid, cmd.bss.ssid);
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400980
981 /* Only v8 and below support setting these */
982 if (priv->fwrelease < 0x09000000) {
983 /* failtimeout */
984 cmd.failtimeout = cpu_to_le16(MRVDRV_ASSOCIATION_TIME_OUT);
985 /* probedelay */
986 cmd.probedelay = cpu_to_le16(CMD_SCAN_PROBE_DELAY_TIME);
987 }
988
989 /* Copy Data rates from the rates recorded in scan response */
990 memset(cmd.bss.rates, 0, sizeof(cmd.bss.rates));
Dan Williamsca4fe302009-08-21 09:35:20 -0500991 ratesize = min_t(u16, ARRAY_SIZE(cmd.bss.rates), ARRAY_SIZE (bss->rates));
Dan Williamsf5fe1fd2008-08-21 21:46:59 -0400992 memcpy(cmd.bss.rates, bss->rates, ratesize);
993 if (get_common_rates(priv, cmd.bss.rates, &ratesize)) {
994 lbs_deb_join("ADHOC_JOIN: get_common_rates returned error.\n");
995 ret = -1;
996 goto out;
997 }
998
999 /* Copy the ad-hoc creation rates into Current BSS state structure */
1000 memset(&priv->curbssparams.rates, 0, sizeof(priv->curbssparams.rates));
1001 memcpy(&priv->curbssparams.rates, cmd.bss.rates, ratesize);
1002
1003 /* Set MSB on basic rates as the firmware requires, but _after_
1004 * copying to current bss rates.
1005 */
1006 lbs_set_basic_rate_flags(cmd.bss.rates, ratesize);
1007
Dan Williams5fd164e2009-05-22 20:01:21 -04001008 cmd.bss.ibss.atimwindow = bss->atimwindow;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001009
1010 if (assoc_req->secinfo.wep_enabled) {
1011 u16 tmp = le16_to_cpu(cmd.bss.capability);
1012 tmp |= WLAN_CAPABILITY_PRIVACY;
1013 cmd.bss.capability = cpu_to_le16(tmp);
1014 }
1015
1016 if (priv->psmode == LBS802_11POWERMODEMAX_PSP) {
1017 __le32 local_ps_mode = cpu_to_le32(LBS802_11POWERMODECAM);
1018
1019 /* wake up first */
1020 ret = lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
1021 CMD_ACT_SET, 0, 0,
1022 &local_ps_mode);
1023 if (ret) {
1024 ret = -1;
1025 goto out;
1026 }
1027 }
1028
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001029 ret = lbs_cmd_with_response(priv, CMD_802_11_AD_HOC_JOIN, &cmd);
Dan Williams822ac032009-05-22 20:07:14 -04001030 if (ret == 0) {
1031 ret = lbs_adhoc_post(priv,
1032 (struct cmd_ds_802_11_ad_hoc_result *)&cmd);
1033 }
Holger Schurig697900a2008-04-02 16:27:10 +02001034
1035out:
Dan Williamsd5db2df2008-08-21 17:51:07 -04001036 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Holger Schurig697900a2008-04-02 16:27:10 +02001037 return ret;
1038}
1039
1040/**
1041 * @brief Start an Adhoc Network
1042 *
1043 * @param priv A pointer to struct lbs_private structure
Dan Williamsd5db2df2008-08-21 17:51:07 -04001044 * @param assoc_req The association request describing the BSS to start
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001045 *
1046 * @return 0 on success, error on failure
Holger Schurig697900a2008-04-02 16:27:10 +02001047 */
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001048static int lbs_adhoc_start(struct lbs_private *priv,
Holger Schurig697900a2008-04-02 16:27:10 +02001049 struct assoc_request *assoc_req)
1050{
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001051 struct cmd_ds_802_11_ad_hoc_start cmd;
Dan Williamsd5db2df2008-08-21 17:51:07 -04001052 u8 preamble = RADIO_PREAMBLE_LONG;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001053 size_t ratesize = 0;
1054 u16 tmpcap = 0;
1055 int ret = 0;
John W. Linville9387b7c2008-09-30 20:59:05 -04001056 DECLARE_SSID_BUF(ssid);
Dan Williamsd5db2df2008-08-21 17:51:07 -04001057
1058 lbs_deb_enter(LBS_DEB_ASSOC);
Holger Schurig697900a2008-04-02 16:27:10 +02001059
Holger Schurig697900a2008-04-02 16:27:10 +02001060 if (priv->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) {
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001061 lbs_deb_join("ADHOC_START: Will use short preamble\n");
Dan Williamsd5db2df2008-08-21 17:51:07 -04001062 preamble = RADIO_PREAMBLE_SHORT;
Holger Schurig697900a2008-04-02 16:27:10 +02001063 }
1064
Dan Williamsd5db2df2008-08-21 17:51:07 -04001065 ret = lbs_set_radio(priv, preamble, 1);
1066 if (ret)
1067 goto out;
Holger Schurig697900a2008-04-02 16:27:10 +02001068
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001069 /* Build the start command */
1070 memset(&cmd, 0, sizeof(cmd));
1071 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Holger Schurig697900a2008-04-02 16:27:10 +02001072
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001073 memcpy(cmd.ssid, assoc_req->ssid, assoc_req->ssid_len);
1074
1075 lbs_deb_join("ADHOC_START: SSID '%s', ssid length %u\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04001076 print_ssid(ssid, assoc_req->ssid, assoc_req->ssid_len),
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001077 assoc_req->ssid_len);
1078
1079 cmd.bsstype = CMD_BSS_TYPE_IBSS;
1080
1081 if (priv->beacon_period == 0)
1082 priv->beacon_period = MRVDRV_BEACON_INTERVAL;
1083 cmd.beaconperiod = cpu_to_le16(priv->beacon_period);
1084
1085 WARN_ON(!assoc_req->channel);
1086
1087 /* set Physical parameter set */
Dan Williams75b6a612009-05-22 20:03:09 -04001088 cmd.ds.header.id = WLAN_EID_DS_PARAMS;
1089 cmd.ds.header.len = 1;
Dan Williams5fd164e2009-05-22 20:01:21 -04001090 cmd.ds.channel = assoc_req->channel;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001091
1092 /* set IBSS parameter set */
Dan Williams75b6a612009-05-22 20:03:09 -04001093 cmd.ibss.header.id = WLAN_EID_IBSS_PARAMS;
1094 cmd.ibss.header.len = 2;
Dan Williams5fd164e2009-05-22 20:01:21 -04001095 cmd.ibss.atimwindow = cpu_to_le16(0);
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001096
1097 /* set capability info */
1098 tmpcap = WLAN_CAPABILITY_IBSS;
Dan Williams2fa7a982009-05-22 20:09:58 -04001099 if (assoc_req->secinfo.wep_enabled ||
1100 assoc_req->secinfo.WPAenabled ||
1101 assoc_req->secinfo.WPA2enabled) {
1102 lbs_deb_join("ADHOC_START: WEP/WPA enabled, privacy on\n");
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001103 tmpcap |= WLAN_CAPABILITY_PRIVACY;
1104 } else
Dan Williams2fa7a982009-05-22 20:09:58 -04001105 lbs_deb_join("ADHOC_START: WEP disabled, privacy off\n");
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001106
1107 cmd.capability = cpu_to_le16(tmpcap);
1108
1109 /* Only v8 and below support setting probe delay */
1110 if (priv->fwrelease < 0x09000000)
1111 cmd.probedelay = cpu_to_le16(CMD_SCAN_PROBE_DELAY_TIME);
1112
1113 ratesize = min(sizeof(cmd.rates), sizeof(lbs_bg_rates));
1114 memcpy(cmd.rates, lbs_bg_rates, ratesize);
1115
1116 /* Copy the ad-hoc creating rates into Current BSS state structure */
1117 memset(&priv->curbssparams.rates, 0, sizeof(priv->curbssparams.rates));
1118 memcpy(&priv->curbssparams.rates, &cmd.rates, ratesize);
1119
1120 /* Set MSB on basic rates as the firmware requires, but _after_
1121 * copying to current bss rates.
1122 */
1123 lbs_set_basic_rate_flags(cmd.rates, ratesize);
1124
1125 lbs_deb_join("ADHOC_START: rates=%02x %02x %02x %02x\n",
1126 cmd.rates[0], cmd.rates[1], cmd.rates[2], cmd.rates[3]);
1127
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001128 lbs_deb_join("ADHOC_START: Starting Ad-Hoc BSS on channel %d, band %d\n",
1129 assoc_req->channel, assoc_req->band);
1130
1131 priv->adhoccreate = 1;
1132 priv->mode = IW_MODE_ADHOC;
1133
1134 ret = lbs_cmd_with_response(priv, CMD_802_11_AD_HOC_START, &cmd);
1135 if (ret == 0)
Dan Williams822ac032009-05-22 20:07:14 -04001136 ret = lbs_adhoc_post(priv,
1137 (struct cmd_ds_802_11_ad_hoc_result *)&cmd);
Holger Schurig697900a2008-04-02 16:27:10 +02001138
Dan Williamsd5db2df2008-08-21 17:51:07 -04001139out:
1140 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Holger Schurig697900a2008-04-02 16:27:10 +02001141 return ret;
1142}
1143
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001144/**
1145 * @brief Stop and Ad-Hoc network and exit Ad-Hoc mode
1146 *
1147 * @param priv A pointer to struct lbs_private structure
1148 * @return 0 on success, or an error
1149 */
1150int lbs_adhoc_stop(struct lbs_private *priv)
Holger Schurig697900a2008-04-02 16:27:10 +02001151{
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001152 struct cmd_ds_802_11_ad_hoc_stop cmd;
1153 int ret;
1154
1155 lbs_deb_enter(LBS_DEB_JOIN);
1156
1157 memset(&cmd, 0, sizeof (cmd));
1158 cmd.hdr.size = cpu_to_le16 (sizeof (cmd));
1159
1160 ret = lbs_cmd_with_response(priv, CMD_802_11_AD_HOC_STOP, &cmd);
1161
1162 /* Clean up everything even if there was an error */
1163 lbs_mac_event_disconnected(priv);
1164
1165 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
1166 return ret;
Holger Schurig697900a2008-04-02 16:27:10 +02001167}
Dan Williamse76850d2007-05-25 17:09:41 -04001168
Holger Schurig245bf202008-04-02 16:27:42 +02001169static inline int match_bss_no_security(struct lbs_802_11_security *secinfo,
1170 struct bss_descriptor *match_bss)
1171{
1172 if (!secinfo->wep_enabled && !secinfo->WPAenabled
1173 && !secinfo->WPA2enabled
Johannes Berg2c7060022008-10-30 22:09:54 +01001174 && match_bss->wpa_ie[0] != WLAN_EID_GENERIC
1175 && match_bss->rsn_ie[0] != WLAN_EID_RSN
Holger Schurig245bf202008-04-02 16:27:42 +02001176 && !(match_bss->capability & WLAN_CAPABILITY_PRIVACY))
1177 return 1;
1178 else
1179 return 0;
1180}
1181
1182static inline int match_bss_static_wep(struct lbs_802_11_security *secinfo,
1183 struct bss_descriptor *match_bss)
1184{
1185 if (secinfo->wep_enabled && !secinfo->WPAenabled
1186 && !secinfo->WPA2enabled
1187 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY))
1188 return 1;
1189 else
1190 return 0;
1191}
1192
1193static inline int match_bss_wpa(struct lbs_802_11_security *secinfo,
1194 struct bss_descriptor *match_bss)
1195{
1196 if (!secinfo->wep_enabled && secinfo->WPAenabled
Johannes Berg2c7060022008-10-30 22:09:54 +01001197 && (match_bss->wpa_ie[0] == WLAN_EID_GENERIC)
Holger Schurig245bf202008-04-02 16:27:42 +02001198 /* privacy bit may NOT be set in some APs like LinkSys WRT54G
1199 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY) */
1200 )
1201 return 1;
1202 else
1203 return 0;
1204}
1205
1206static inline int match_bss_wpa2(struct lbs_802_11_security *secinfo,
1207 struct bss_descriptor *match_bss)
1208{
1209 if (!secinfo->wep_enabled && secinfo->WPA2enabled &&
Johannes Berg2c7060022008-10-30 22:09:54 +01001210 (match_bss->rsn_ie[0] == WLAN_EID_RSN)
Holger Schurig245bf202008-04-02 16:27:42 +02001211 /* privacy bit may NOT be set in some APs like LinkSys WRT54G
1212 (match_bss->capability & WLAN_CAPABILITY_PRIVACY) */
1213 )
1214 return 1;
1215 else
1216 return 0;
1217}
1218
1219static inline int match_bss_dynamic_wep(struct lbs_802_11_security *secinfo,
1220 struct bss_descriptor *match_bss)
1221{
1222 if (!secinfo->wep_enabled && !secinfo->WPAenabled
1223 && !secinfo->WPA2enabled
Johannes Berg2c7060022008-10-30 22:09:54 +01001224 && (match_bss->wpa_ie[0] != WLAN_EID_GENERIC)
1225 && (match_bss->rsn_ie[0] != WLAN_EID_RSN)
Holger Schurig245bf202008-04-02 16:27:42 +02001226 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY))
1227 return 1;
1228 else
1229 return 0;
1230}
1231
1232/**
1233 * @brief Check if a scanned network compatible with the driver settings
1234 *
1235 * WEP WPA WPA2 ad-hoc encrypt Network
1236 * enabled enabled enabled AES mode privacy WPA WPA2 Compatible
1237 * 0 0 0 0 NONE 0 0 0 yes No security
1238 * 1 0 0 0 NONE 1 0 0 yes Static WEP
1239 * 0 1 0 0 x 1x 1 x yes WPA
1240 * 0 0 1 0 x 1x x 1 yes WPA2
1241 * 0 0 0 1 NONE 1 0 0 yes Ad-hoc AES
1242 * 0 0 0 0 !=NONE 1 0 0 yes Dynamic WEP
1243 *
1244 *
1245 * @param priv A pointer to struct lbs_private
1246 * @param index Index in scantable to check against current driver settings
1247 * @param mode Network mode: Infrastructure or IBSS
1248 *
1249 * @return Index in scantable, or error code if negative
1250 */
1251static int is_network_compatible(struct lbs_private *priv,
1252 struct bss_descriptor *bss, uint8_t mode)
1253{
1254 int matched = 0;
1255
1256 lbs_deb_enter(LBS_DEB_SCAN);
1257
1258 if (bss->mode != mode)
1259 goto done;
1260
1261 matched = match_bss_no_security(&priv->secinfo, bss);
1262 if (matched)
1263 goto done;
1264 matched = match_bss_static_wep(&priv->secinfo, bss);
1265 if (matched)
1266 goto done;
1267 matched = match_bss_wpa(&priv->secinfo, bss);
1268 if (matched) {
1269 lbs_deb_scan("is_network_compatible() WPA: wpa_ie 0x%x "
1270 "wpa2_ie 0x%x WEP %s WPA %s WPA2 %s "
1271 "privacy 0x%x\n", bss->wpa_ie[0], bss->rsn_ie[0],
1272 priv->secinfo.wep_enabled ? "e" : "d",
1273 priv->secinfo.WPAenabled ? "e" : "d",
1274 priv->secinfo.WPA2enabled ? "e" : "d",
1275 (bss->capability & WLAN_CAPABILITY_PRIVACY));
1276 goto done;
1277 }
1278 matched = match_bss_wpa2(&priv->secinfo, bss);
1279 if (matched) {
1280 lbs_deb_scan("is_network_compatible() WPA2: wpa_ie 0x%x "
1281 "wpa2_ie 0x%x WEP %s WPA %s WPA2 %s "
1282 "privacy 0x%x\n", bss->wpa_ie[0], bss->rsn_ie[0],
1283 priv->secinfo.wep_enabled ? "e" : "d",
1284 priv->secinfo.WPAenabled ? "e" : "d",
1285 priv->secinfo.WPA2enabled ? "e" : "d",
1286 (bss->capability & WLAN_CAPABILITY_PRIVACY));
1287 goto done;
1288 }
1289 matched = match_bss_dynamic_wep(&priv->secinfo, bss);
1290 if (matched) {
1291 lbs_deb_scan("is_network_compatible() dynamic WEP: "
1292 "wpa_ie 0x%x wpa2_ie 0x%x privacy 0x%x\n",
1293 bss->wpa_ie[0], bss->rsn_ie[0],
1294 (bss->capability & WLAN_CAPABILITY_PRIVACY));
1295 goto done;
1296 }
1297
1298 /* bss security settings don't match those configured on card */
1299 lbs_deb_scan("is_network_compatible() FAILED: wpa_ie 0x%x "
1300 "wpa2_ie 0x%x WEP %s WPA %s WPA2 %s privacy 0x%x\n",
1301 bss->wpa_ie[0], bss->rsn_ie[0],
1302 priv->secinfo.wep_enabled ? "e" : "d",
1303 priv->secinfo.WPAenabled ? "e" : "d",
1304 priv->secinfo.WPA2enabled ? "e" : "d",
1305 (bss->capability & WLAN_CAPABILITY_PRIVACY));
1306
1307done:
1308 lbs_deb_leave_args(LBS_DEB_SCAN, "matched: %d", matched);
1309 return matched;
1310}
1311
1312/**
1313 * @brief This function finds a specific compatible BSSID in the scan list
1314 *
1315 * Used in association code
1316 *
1317 * @param priv A pointer to struct lbs_private
1318 * @param bssid BSSID to find in the scan list
1319 * @param mode Network mode: Infrastructure or IBSS
1320 *
1321 * @return index in BSSID list, or error return code (< 0)
1322 */
1323static struct bss_descriptor *lbs_find_bssid_in_list(struct lbs_private *priv,
1324 uint8_t *bssid, uint8_t mode)
1325{
1326 struct bss_descriptor *iter_bss;
1327 struct bss_descriptor *found_bss = NULL;
1328
1329 lbs_deb_enter(LBS_DEB_SCAN);
1330
1331 if (!bssid)
1332 goto out;
1333
1334 lbs_deb_hex(LBS_DEB_SCAN, "looking for", bssid, ETH_ALEN);
1335
1336 /* Look through the scan table for a compatible match. The loop will
1337 * continue past a matched bssid that is not compatible in case there
1338 * is an AP with multiple SSIDs assigned to the same BSSID
1339 */
1340 mutex_lock(&priv->lock);
1341 list_for_each_entry(iter_bss, &priv->network_list, list) {
1342 if (compare_ether_addr(iter_bss->bssid, bssid))
1343 continue; /* bssid doesn't match */
1344 switch (mode) {
1345 case IW_MODE_INFRA:
1346 case IW_MODE_ADHOC:
1347 if (!is_network_compatible(priv, iter_bss, mode))
1348 break;
1349 found_bss = iter_bss;
1350 break;
1351 default:
1352 found_bss = iter_bss;
1353 break;
1354 }
1355 }
1356 mutex_unlock(&priv->lock);
1357
1358out:
1359 lbs_deb_leave_args(LBS_DEB_SCAN, "found_bss %p", found_bss);
1360 return found_bss;
1361}
1362
1363/**
1364 * @brief This function finds ssid in ssid list.
1365 *
1366 * Used in association code
1367 *
1368 * @param priv A pointer to struct lbs_private
1369 * @param ssid SSID to find in the list
1370 * @param bssid BSSID to qualify the SSID selection (if provided)
1371 * @param mode Network mode: Infrastructure or IBSS
1372 *
1373 * @return index in BSSID list
1374 */
1375static struct bss_descriptor *lbs_find_ssid_in_list(struct lbs_private *priv,
1376 uint8_t *ssid, uint8_t ssid_len,
1377 uint8_t *bssid, uint8_t mode,
1378 int channel)
1379{
1380 u32 bestrssi = 0;
1381 struct bss_descriptor *iter_bss = NULL;
1382 struct bss_descriptor *found_bss = NULL;
1383 struct bss_descriptor *tmp_oldest = NULL;
1384
1385 lbs_deb_enter(LBS_DEB_SCAN);
1386
1387 mutex_lock(&priv->lock);
1388
1389 list_for_each_entry(iter_bss, &priv->network_list, list) {
1390 if (!tmp_oldest ||
1391 (iter_bss->last_scanned < tmp_oldest->last_scanned))
1392 tmp_oldest = iter_bss;
1393
1394 if (lbs_ssid_cmp(iter_bss->ssid, iter_bss->ssid_len,
1395 ssid, ssid_len) != 0)
1396 continue; /* ssid doesn't match */
1397 if (bssid && compare_ether_addr(iter_bss->bssid, bssid) != 0)
1398 continue; /* bssid doesn't match */
1399 if ((channel > 0) && (iter_bss->channel != channel))
1400 continue; /* channel doesn't match */
1401
1402 switch (mode) {
1403 case IW_MODE_INFRA:
1404 case IW_MODE_ADHOC:
1405 if (!is_network_compatible(priv, iter_bss, mode))
1406 break;
1407
1408 if (bssid) {
1409 /* Found requested BSSID */
1410 found_bss = iter_bss;
1411 goto out;
1412 }
1413
1414 if (SCAN_RSSI(iter_bss->rssi) > bestrssi) {
1415 bestrssi = SCAN_RSSI(iter_bss->rssi);
1416 found_bss = iter_bss;
1417 }
1418 break;
1419 case IW_MODE_AUTO:
1420 default:
1421 if (SCAN_RSSI(iter_bss->rssi) > bestrssi) {
1422 bestrssi = SCAN_RSSI(iter_bss->rssi);
1423 found_bss = iter_bss;
1424 }
1425 break;
1426 }
1427 }
1428
1429out:
1430 mutex_unlock(&priv->lock);
1431 lbs_deb_leave_args(LBS_DEB_SCAN, "found_bss %p", found_bss);
1432 return found_bss;
1433}
1434
Holger Schurig69f90322007-11-23 15:43:44 +01001435static int assoc_helper_essid(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001436 struct assoc_request * assoc_req)
1437{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001438 int ret = 0;
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001439 struct bss_descriptor * bss;
Dan Williamsaeea0ab2007-05-25 22:30:48 -04001440 int channel = -1;
John W. Linville9387b7c2008-09-30 20:59:05 -04001441 DECLARE_SSID_BUF(ssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001442
Holger Schurig9012b282007-05-25 11:27:16 -04001443 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001444
Dan Williamsef9a2642007-05-25 16:46:33 -04001445 /* FIXME: take channel into account when picking SSIDs if a channel
1446 * is set.
1447 */
1448
Dan Williamsaeea0ab2007-05-25 22:30:48 -04001449 if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags))
1450 channel = assoc_req->channel;
1451
Holger Schurig0765af42007-10-15 12:55:56 +02001452 lbs_deb_assoc("SSID '%s' requested\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04001453 print_ssid(ssid, assoc_req->ssid, assoc_req->ssid_len));
Dan Williams0dc5a292007-05-10 22:58:02 -04001454 if (assoc_req->mode == IW_MODE_INFRA) {
Holger Schurig10078322007-11-15 18:05:47 -05001455 lbs_send_specific_ssid_scan(priv, assoc_req->ssid,
Holger Schurig52933d82008-03-05 07:05:32 +01001456 assoc_req->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001457
David Woodhouseaa21c002007-12-08 20:04:36 +00001458 bss = lbs_find_ssid_in_list(priv, assoc_req->ssid,
Dan Williamsd8efea22007-05-28 23:54:55 -04001459 assoc_req->ssid_len, NULL, IW_MODE_INFRA, channel);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001460 if (bss != NULL) {
Dan Williamse76850d2007-05-25 17:09:41 -04001461 memcpy(&assoc_req->bss, bss, sizeof(struct bss_descriptor));
Dan Williams822ac032009-05-22 20:07:14 -04001462 ret = lbs_try_associate(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001463 } else {
Dan Williamsd8efea22007-05-28 23:54:55 -04001464 lbs_deb_assoc("SSID not found; cannot associate\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001465 }
Dan Williams0dc5a292007-05-10 22:58:02 -04001466 } else if (assoc_req->mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001467 /* Scan for the network, do not save previous results. Stale
1468 * scan data will cause us to join a non-existant adhoc network
1469 */
Holger Schurig10078322007-11-15 18:05:47 -05001470 lbs_send_specific_ssid_scan(priv, assoc_req->ssid,
Holger Schurig52933d82008-03-05 07:05:32 +01001471 assoc_req->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001472
1473 /* Search for the requested SSID in the scan table */
David Woodhouseaa21c002007-12-08 20:04:36 +00001474 bss = lbs_find_ssid_in_list(priv, assoc_req->ssid,
Dan Williamsd8efea22007-05-28 23:54:55 -04001475 assoc_req->ssid_len, NULL, IW_MODE_ADHOC, channel);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001476 if (bss != NULL) {
Dan Williamsd8efea22007-05-28 23:54:55 -04001477 lbs_deb_assoc("SSID found, will join\n");
Dan Williamse76850d2007-05-25 17:09:41 -04001478 memcpy(&assoc_req->bss, bss, sizeof(struct bss_descriptor));
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001479 lbs_adhoc_join(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001480 } else {
1481 /* else send START command */
Dan Williamsd8efea22007-05-28 23:54:55 -04001482 lbs_deb_assoc("SSID not found, creating adhoc network\n");
Dan Williamse76850d2007-05-25 17:09:41 -04001483 memcpy(&assoc_req->bss.ssid, &assoc_req->ssid,
Holger Schurig243e84e2009-10-22 15:30:47 +02001484 IEEE80211_MAX_SSID_LEN);
Dan Williamsd8efea22007-05-28 23:54:55 -04001485 assoc_req->bss.ssid_len = assoc_req->ssid_len;
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001486 lbs_adhoc_start(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001487 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001488 }
1489
Holger Schurig9012b282007-05-25 11:27:16 -04001490 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001491 return ret;
1492}
1493
1494
Holger Schurig69f90322007-11-23 15:43:44 +01001495static int assoc_helper_bssid(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001496 struct assoc_request * assoc_req)
1497{
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001498 int ret = 0;
1499 struct bss_descriptor * bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001500
Johannes Berge1749612008-10-27 15:59:26 -07001501 lbs_deb_enter_args(LBS_DEB_ASSOC, "BSSID %pM", assoc_req->bssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001502
1503 /* Search for index position in list for requested MAC */
David Woodhouseaa21c002007-12-08 20:04:36 +00001504 bss = lbs_find_bssid_in_list(priv, assoc_req->bssid,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001505 assoc_req->mode);
Dan Williamsfcdb53d2007-05-25 16:15:56 -04001506 if (bss == NULL) {
Johannes Berge1749612008-10-27 15:59:26 -07001507 lbs_deb_assoc("ASSOC: WAP: BSSID %pM not found, "
1508 "cannot associate.\n", assoc_req->bssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001509 goto out;
1510 }
1511
Dan Williamse76850d2007-05-25 17:09:41 -04001512 memcpy(&assoc_req->bss, bss, sizeof(struct bss_descriptor));
Dan Williams0dc5a292007-05-10 22:58:02 -04001513 if (assoc_req->mode == IW_MODE_INFRA) {
Dan Williams822ac032009-05-22 20:07:14 -04001514 ret = lbs_try_associate(priv, assoc_req);
1515 lbs_deb_assoc("ASSOC: lbs_try_associate(bssid) returned %d\n",
1516 ret);
Dan Williams0dc5a292007-05-10 22:58:02 -04001517 } else if (assoc_req->mode == IW_MODE_ADHOC) {
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04001518 lbs_adhoc_join(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001519 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001520
1521out:
Holger Schurig9012b282007-05-25 11:27:16 -04001522 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001523 return ret;
1524}
1525
1526
Holger Schurig69f90322007-11-23 15:43:44 +01001527static int assoc_helper_associate(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001528 struct assoc_request * assoc_req)
1529{
1530 int ret = 0, done = 0;
1531
Holger Schurig0765af42007-10-15 12:55:56 +02001532 lbs_deb_enter(LBS_DEB_ASSOC);
1533
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001534 /* If we're given and 'any' BSSID, try associating based on SSID */
1535
1536 if (test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)) {
Dan Williams3cf20932007-05-25 17:28:30 -04001537 if (compare_ether_addr(bssid_any, assoc_req->bssid)
1538 && compare_ether_addr(bssid_off, assoc_req->bssid)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001539 ret = assoc_helper_bssid(priv, assoc_req);
1540 done = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001541 }
1542 }
1543
1544 if (!done && test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)) {
1545 ret = assoc_helper_essid(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001546 }
1547
Holger Schurig0765af42007-10-15 12:55:56 +02001548 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001549 return ret;
1550}
1551
1552
Holger Schurig69f90322007-11-23 15:43:44 +01001553static int assoc_helper_mode(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001554 struct assoc_request * assoc_req)
1555{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001556 int ret = 0;
1557
Holger Schurig9012b282007-05-25 11:27:16 -04001558 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001559
David Woodhouseaa21c002007-12-08 20:04:36 +00001560 if (assoc_req->mode == priv->mode)
Holger Schurig9012b282007-05-25 11:27:16 -04001561 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001562
Dan Williams0dc5a292007-05-10 22:58:02 -04001563 if (assoc_req->mode == IW_MODE_INFRA) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001564 if (priv->psstate != PS_STATE_FULL_POWER)
Holger Schurig10078322007-11-15 18:05:47 -05001565 lbs_ps_wakeup(priv, CMD_OPTION_WAITFORRSP);
David Woodhouseaa21c002007-12-08 20:04:36 +00001566 priv->psmode = LBS802_11POWERMODECAM;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001567 }
1568
David Woodhouseaa21c002007-12-08 20:04:36 +00001569 priv->mode = assoc_req->mode;
Dan Williams39fcf7a2008-09-10 12:49:00 -04001570 ret = lbs_set_snmp_mib(priv, SNMP_MIB_OID_BSS_TYPE, assoc_req->mode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001571
Holger Schurig9012b282007-05-25 11:27:16 -04001572done:
1573 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001574 return ret;
1575}
1576
Holger Schurig69f90322007-11-23 15:43:44 +01001577static int assoc_helper_channel(struct lbs_private *priv,
Dan Williamsef9a2642007-05-25 16:46:33 -04001578 struct assoc_request * assoc_req)
1579{
Dan Williamsef9a2642007-05-25 16:46:33 -04001580 int ret = 0;
1581
1582 lbs_deb_enter(LBS_DEB_ASSOC);
1583
David Woodhouse9f462572007-12-12 22:50:21 -05001584 ret = lbs_update_channel(priv);
David Woodhoused1a469f2007-12-16 17:21:00 -05001585 if (ret) {
David Woodhouse23d36ee2007-12-12 00:14:21 -05001586 lbs_deb_assoc("ASSOC: channel: error getting channel.\n");
David Woodhoused1a469f2007-12-16 17:21:00 -05001587 goto done;
Dan Williamsef9a2642007-05-25 16:46:33 -04001588 }
1589
Holger Schurigc14951f2009-10-22 15:30:50 +02001590 if (assoc_req->channel == priv->channel)
Dan Williamsef9a2642007-05-25 16:46:33 -04001591 goto done;
1592
David Woodhouse8642f1f2007-12-11 20:03:01 -05001593 if (priv->mesh_dev) {
David Woodhouse86062132007-12-13 00:32:36 -05001594 /* Change mesh channel first; 21.p21 firmware won't let
1595 you change channel otherwise (even though it'll return
1596 an error to this */
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001597 lbs_mesh_config(priv, CMD_ACT_MESH_CONFIG_STOP,
1598 assoc_req->channel);
David Woodhouse8642f1f2007-12-11 20:03:01 -05001599 }
1600
Dan Williamsef9a2642007-05-25 16:46:33 -04001601 lbs_deb_assoc("ASSOC: channel: %d -> %d\n",
Holger Schurigc14951f2009-10-22 15:30:50 +02001602 priv->channel, assoc_req->channel);
Dan Williamsef9a2642007-05-25 16:46:33 -04001603
Dan Williams2dd4b262007-12-11 16:54:15 -05001604 ret = lbs_set_channel(priv, assoc_req->channel);
1605 if (ret < 0)
David Woodhouse23d36ee2007-12-12 00:14:21 -05001606 lbs_deb_assoc("ASSOC: channel: error setting channel.\n");
Dan Williamsef9a2642007-05-25 16:46:33 -04001607
Dan Williams2dd4b262007-12-11 16:54:15 -05001608 /* FIXME: shouldn't need to grab the channel _again_ after setting
1609 * it since the firmware is supposed to return the new channel, but
1610 * whatever... */
David Woodhouse9f462572007-12-12 22:50:21 -05001611 ret = lbs_update_channel(priv);
David Woodhoused1a469f2007-12-16 17:21:00 -05001612 if (ret) {
David Woodhouse23d36ee2007-12-12 00:14:21 -05001613 lbs_deb_assoc("ASSOC: channel: error getting channel.\n");
David Woodhoused1a469f2007-12-16 17:21:00 -05001614 goto done;
1615 }
Dan Williamsef9a2642007-05-25 16:46:33 -04001616
Holger Schurigc14951f2009-10-22 15:30:50 +02001617 if (assoc_req->channel != priv->channel) {
David Woodhouse88ae2912007-12-11 19:57:05 -05001618 lbs_deb_assoc("ASSOC: channel: failed to update channel to %d\n",
Dan Williamsef9a2642007-05-25 16:46:33 -04001619 assoc_req->channel);
David Woodhouse8642f1f2007-12-11 20:03:01 -05001620 goto restore_mesh;
Dan Williamsef9a2642007-05-25 16:46:33 -04001621 }
1622
1623 if ( assoc_req->secinfo.wep_enabled
1624 && (assoc_req->wep_keys[0].len
1625 || assoc_req->wep_keys[1].len
1626 || assoc_req->wep_keys[2].len
1627 || assoc_req->wep_keys[3].len)) {
1628 /* Make sure WEP keys are re-sent to firmware */
1629 set_bit(ASSOC_FLAG_WEP_KEYS, &assoc_req->flags);
1630 }
1631
1632 /* Must restart/rejoin adhoc networks after channel change */
David Woodhouse23d36ee2007-12-12 00:14:21 -05001633 set_bit(ASSOC_FLAG_SSID, &assoc_req->flags);
Dan Williamsef9a2642007-05-25 16:46:33 -04001634
David Woodhouse8642f1f2007-12-11 20:03:01 -05001635 restore_mesh:
1636 if (priv->mesh_dev)
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001637 lbs_mesh_config(priv, CMD_ACT_MESH_CONFIG_START,
Holger Schurigc14951f2009-10-22 15:30:50 +02001638 priv->channel);
David Woodhouse8642f1f2007-12-11 20:03:01 -05001639
1640 done:
Dan Williamsef9a2642007-05-25 16:46:33 -04001641 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
1642 return ret;
1643}
1644
1645
Holger Schurig69f90322007-11-23 15:43:44 +01001646static int assoc_helper_wep_keys(struct lbs_private *priv,
David Woodhousef70dd452007-12-18 00:18:05 -05001647 struct assoc_request *assoc_req)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001648{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001649 int i;
1650 int ret = 0;
1651
Holger Schurig9012b282007-05-25 11:27:16 -04001652 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001653
1654 /* Set or remove WEP keys */
David Woodhousef70dd452007-12-18 00:18:05 -05001655 if (assoc_req->wep_keys[0].len || assoc_req->wep_keys[1].len ||
1656 assoc_req->wep_keys[2].len || assoc_req->wep_keys[3].len)
1657 ret = lbs_cmd_802_11_set_wep(priv, CMD_ACT_ADD, assoc_req);
1658 else
1659 ret = lbs_cmd_802_11_set_wep(priv, CMD_ACT_REMOVE, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001660
1661 if (ret)
1662 goto out;
1663
1664 /* enable/disable the MAC's WEP packet filter */
Dan Williams889c05b2007-05-10 22:57:23 -04001665 if (assoc_req->secinfo.wep_enabled)
Holger Schurigd9e97782008-03-12 16:06:43 +01001666 priv->mac_control |= CMD_ACT_MAC_WEP_ENABLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001667 else
Holger Schurigd9e97782008-03-12 16:06:43 +01001668 priv->mac_control &= ~CMD_ACT_MAC_WEP_ENABLE;
David Woodhousef70dd452007-12-18 00:18:05 -05001669
Holger Schurigc97329e2008-03-18 11:20:21 +01001670 lbs_set_mac_control(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001671
David Woodhouseaa21c002007-12-08 20:04:36 +00001672 mutex_lock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001673
David Woodhouseaa21c002007-12-08 20:04:36 +00001674 /* Copy WEP keys into priv wep key fields */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001675 for (i = 0; i < 4; i++) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001676 memcpy(&priv->wep_keys[i], &assoc_req->wep_keys[i],
David Woodhousef70dd452007-12-18 00:18:05 -05001677 sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001678 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001679 priv->wep_tx_keyidx = assoc_req->wep_tx_keyidx;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001680
David Woodhouseaa21c002007-12-08 20:04:36 +00001681 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001682
1683out:
Holger Schurig9012b282007-05-25 11:27:16 -04001684 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001685 return ret;
1686}
1687
Holger Schurig69f90322007-11-23 15:43:44 +01001688static int assoc_helper_secinfo(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001689 struct assoc_request * assoc_req)
1690{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001691 int ret = 0;
David Woodhouse4f59abf2007-12-18 00:47:17 -05001692 uint16_t do_wpa;
1693 uint16_t rsn = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001694
Holger Schurig9012b282007-05-25 11:27:16 -04001695 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001696
David Woodhouseaa21c002007-12-08 20:04:36 +00001697 memcpy(&priv->secinfo, &assoc_req->secinfo,
Holger Schurig10078322007-11-15 18:05:47 -05001698 sizeof(struct lbs_802_11_security));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001699
Holger Schurigc97329e2008-03-18 11:20:21 +01001700 lbs_set_mac_control(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001701
Dan Williams18c96c342007-06-18 12:01:12 -04001702 /* If RSN is already enabled, don't try to enable it again, since
1703 * ENABLE_RSN resets internal state machines and will clobber the
1704 * 4-way WPA handshake.
1705 */
1706
1707 /* Get RSN enabled/disabled */
David Woodhouse4f59abf2007-12-18 00:47:17 -05001708 ret = lbs_cmd_802_11_enable_rsn(priv, CMD_ACT_GET, &rsn);
Dan Williams18c96c342007-06-18 12:01:12 -04001709 if (ret) {
David Woodhouse23d36ee2007-12-12 00:14:21 -05001710 lbs_deb_assoc("Failed to get RSN status: %d\n", ret);
Dan Williams18c96c342007-06-18 12:01:12 -04001711 goto out;
1712 }
1713
1714 /* Don't re-enable RSN if it's already enabled */
David Woodhouse4f59abf2007-12-18 00:47:17 -05001715 do_wpa = assoc_req->secinfo.WPAenabled || assoc_req->secinfo.WPA2enabled;
Dan Williams18c96c342007-06-18 12:01:12 -04001716 if (do_wpa == rsn)
1717 goto out;
1718
1719 /* Set RSN enabled/disabled */
David Woodhouse4f59abf2007-12-18 00:47:17 -05001720 ret = lbs_cmd_802_11_enable_rsn(priv, CMD_ACT_SET, &do_wpa);
Dan Williams90a42212007-05-25 23:01:24 -04001721
1722out:
Holger Schurig9012b282007-05-25 11:27:16 -04001723 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001724 return ret;
1725}
1726
1727
Holger Schurig69f90322007-11-23 15:43:44 +01001728static int assoc_helper_wpa_keys(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001729 struct assoc_request * assoc_req)
1730{
1731 int ret = 0;
Dan Williams2bcde512007-10-03 10:37:45 -04001732 unsigned int flags = assoc_req->flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001733
Holger Schurig9012b282007-05-25 11:27:16 -04001734 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001735
Dan Williams2bcde512007-10-03 10:37:45 -04001736 /* Work around older firmware bug where WPA unicast and multicast
1737 * keys must be set independently. Seen in SDIO parts with firmware
1738 * version 5.0.11p0.
1739 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001740
Dan Williams2bcde512007-10-03 10:37:45 -04001741 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
1742 clear_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags);
David Woodhouse9e1228d2008-03-03 12:15:39 +01001743 ret = lbs_cmd_802_11_key_material(priv, CMD_ACT_SET, assoc_req);
Dan Williams2bcde512007-10-03 10:37:45 -04001744 assoc_req->flags = flags;
1745 }
1746
1747 if (ret)
1748 goto out;
1749
Andrey Yurovskyce8d0962009-06-17 18:45:34 -07001750 memcpy(&priv->wpa_unicast_key, &assoc_req->wpa_unicast_key,
1751 sizeof(struct enc_key));
1752
Dan Williams2bcde512007-10-03 10:37:45 -04001753 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
1754 clear_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags);
1755
David Woodhouse9e1228d2008-03-03 12:15:39 +01001756 ret = lbs_cmd_802_11_key_material(priv, CMD_ACT_SET, assoc_req);
Dan Williams2bcde512007-10-03 10:37:45 -04001757 assoc_req->flags = flags;
Andrey Yurovskyce8d0962009-06-17 18:45:34 -07001758
1759 memcpy(&priv->wpa_mcast_key, &assoc_req->wpa_mcast_key,
1760 sizeof(struct enc_key));
Dan Williams2bcde512007-10-03 10:37:45 -04001761 }
1762
1763out:
Holger Schurig9012b282007-05-25 11:27:16 -04001764 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001765 return ret;
1766}
1767
1768
Holger Schurig69f90322007-11-23 15:43:44 +01001769static int assoc_helper_wpa_ie(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001770 struct assoc_request * assoc_req)
1771{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001772 int ret = 0;
1773
Holger Schurig9012b282007-05-25 11:27:16 -04001774 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001775
1776 if (assoc_req->secinfo.WPAenabled || assoc_req->secinfo.WPA2enabled) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001777 memcpy(&priv->wpa_ie, &assoc_req->wpa_ie, assoc_req->wpa_ie_len);
1778 priv->wpa_ie_len = assoc_req->wpa_ie_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001779 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001780 memset(&priv->wpa_ie, 0, MAX_WPA_IE_LEN);
1781 priv->wpa_ie_len = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001782 }
1783
Holger Schurig9012b282007-05-25 11:27:16 -04001784 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001785 return ret;
1786}
1787
1788
David Woodhouseaa21c002007-12-08 20:04:36 +00001789static int should_deauth_infrastructure(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001790 struct assoc_request * assoc_req)
1791{
Holger Schurig0765af42007-10-15 12:55:56 +02001792 int ret = 0;
1793
David Woodhouseaa21c002007-12-08 20:04:36 +00001794 if (priv->connect_status != LBS_CONNECTED)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001795 return 0;
1796
Holger Schurig52507c22008-01-28 17:25:53 +01001797 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001798 if (test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)) {
Holger Schurig0765af42007-10-15 12:55:56 +02001799 lbs_deb_assoc("Deauthenticating due to new SSID\n");
1800 ret = 1;
1801 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001802 }
1803
1804 if (test_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001805 if (priv->secinfo.auth_mode != assoc_req->secinfo.auth_mode) {
Holger Schurig0765af42007-10-15 12:55:56 +02001806 lbs_deb_assoc("Deauthenticating due to new security\n");
1807 ret = 1;
1808 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001809 }
1810 }
1811
1812 if (test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)) {
Holger Schurig0765af42007-10-15 12:55:56 +02001813 lbs_deb_assoc("Deauthenticating due to new BSSID\n");
1814 ret = 1;
1815 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001816 }
1817
Luis Carlos Cobo Rusfff47f12007-05-30 12:16:13 -04001818 if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags)) {
Holger Schurig0765af42007-10-15 12:55:56 +02001819 lbs_deb_assoc("Deauthenticating due to channel switch\n");
1820 ret = 1;
1821 goto out;
Luis Carlos Cobo Rusfff47f12007-05-30 12:16:13 -04001822 }
1823
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001824 /* FIXME: deal with 'auto' mode somehow */
1825 if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) {
Holger Schurig0765af42007-10-15 12:55:56 +02001826 if (assoc_req->mode != IW_MODE_INFRA) {
1827 lbs_deb_assoc("Deauthenticating due to leaving "
1828 "infra mode\n");
1829 ret = 1;
1830 goto out;
1831 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001832 }
1833
Holger Schurig0765af42007-10-15 12:55:56 +02001834out:
1835 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Holger Schurig52507c22008-01-28 17:25:53 +01001836 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001837}
1838
1839
David Woodhouseaa21c002007-12-08 20:04:36 +00001840static int should_stop_adhoc(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001841 struct assoc_request * assoc_req)
1842{
Holger Schurig0765af42007-10-15 12:55:56 +02001843 lbs_deb_enter(LBS_DEB_ASSOC);
1844
David Woodhouseaa21c002007-12-08 20:04:36 +00001845 if (priv->connect_status != LBS_CONNECTED)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001846 return 0;
1847
David Woodhouseaa21c002007-12-08 20:04:36 +00001848 if (lbs_ssid_cmp(priv->curbssparams.ssid,
1849 priv->curbssparams.ssid_len,
Dan Williamsd8efea22007-05-28 23:54:55 -04001850 assoc_req->ssid, assoc_req->ssid_len) != 0)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001851 return 1;
1852
1853 /* FIXME: deal with 'auto' mode somehow */
1854 if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) {
Dan Williams0dc5a292007-05-10 22:58:02 -04001855 if (assoc_req->mode != IW_MODE_ADHOC)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001856 return 1;
1857 }
1858
Dan Williamsef9a2642007-05-25 16:46:33 -04001859 if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags)) {
Holger Schurigc14951f2009-10-22 15:30:50 +02001860 if (assoc_req->channel != priv->channel)
Dan Williamsef9a2642007-05-25 16:46:33 -04001861 return 1;
1862 }
1863
Holger Schurig0765af42007-10-15 12:55:56 +02001864 lbs_deb_leave(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001865 return 0;
1866}
1867
1868
Holger Schurig245bf202008-04-02 16:27:42 +02001869/**
1870 * @brief This function finds the best SSID in the Scan List
1871 *
1872 * Search the scan table for the best SSID that also matches the current
1873 * adapter network preference (infrastructure or adhoc)
1874 *
1875 * @param priv A pointer to struct lbs_private
1876 *
1877 * @return index in BSSID list
1878 */
1879static struct bss_descriptor *lbs_find_best_ssid_in_list(
1880 struct lbs_private *priv, uint8_t mode)
1881{
1882 uint8_t bestrssi = 0;
1883 struct bss_descriptor *iter_bss;
1884 struct bss_descriptor *best_bss = NULL;
1885
1886 lbs_deb_enter(LBS_DEB_SCAN);
1887
1888 mutex_lock(&priv->lock);
1889
1890 list_for_each_entry(iter_bss, &priv->network_list, list) {
1891 switch (mode) {
1892 case IW_MODE_INFRA:
1893 case IW_MODE_ADHOC:
1894 if (!is_network_compatible(priv, iter_bss, mode))
1895 break;
1896 if (SCAN_RSSI(iter_bss->rssi) <= bestrssi)
1897 break;
1898 bestrssi = SCAN_RSSI(iter_bss->rssi);
1899 best_bss = iter_bss;
1900 break;
1901 case IW_MODE_AUTO:
1902 default:
1903 if (SCAN_RSSI(iter_bss->rssi) <= bestrssi)
1904 break;
1905 bestrssi = SCAN_RSSI(iter_bss->rssi);
1906 best_bss = iter_bss;
1907 break;
1908 }
1909 }
1910
1911 mutex_unlock(&priv->lock);
1912 lbs_deb_leave_args(LBS_DEB_SCAN, "best_bss %p", best_bss);
1913 return best_bss;
1914}
1915
1916/**
1917 * @brief Find the best AP
1918 *
1919 * Used from association worker.
1920 *
1921 * @param priv A pointer to struct lbs_private structure
1922 * @param pSSID A pointer to AP's ssid
1923 *
1924 * @return 0--success, otherwise--fail
1925 */
1926static int lbs_find_best_network_ssid(struct lbs_private *priv,
1927 uint8_t *out_ssid, uint8_t *out_ssid_len, uint8_t preferred_mode,
1928 uint8_t *out_mode)
1929{
1930 int ret = -1;
1931 struct bss_descriptor *found;
1932
1933 lbs_deb_enter(LBS_DEB_SCAN);
1934
1935 priv->scan_ssid_len = 0;
1936 lbs_scan_networks(priv, 1);
1937 if (priv->surpriseremoved)
1938 goto out;
1939
1940 found = lbs_find_best_ssid_in_list(priv, preferred_mode);
1941 if (found && (found->ssid_len > 0)) {
Holger Schurig243e84e2009-10-22 15:30:47 +02001942 memcpy(out_ssid, &found->ssid, IEEE80211_MAX_SSID_LEN);
Holger Schurig245bf202008-04-02 16:27:42 +02001943 *out_ssid_len = found->ssid_len;
1944 *out_mode = found->mode;
1945 ret = 0;
1946 }
1947
1948out:
1949 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
1950 return ret;
1951}
1952
1953
Holger Schurig10078322007-11-15 18:05:47 -05001954void lbs_association_worker(struct work_struct *work)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001955{
Holger Schurig69f90322007-11-23 15:43:44 +01001956 struct lbs_private *priv = container_of(work, struct lbs_private,
1957 assoc_work.work);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001958 struct assoc_request * assoc_req = NULL;
1959 int ret = 0;
1960 int find_any_ssid = 0;
John W. Linville9387b7c2008-09-30 20:59:05 -04001961 DECLARE_SSID_BUF(ssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001962
Holger Schurig9012b282007-05-25 11:27:16 -04001963 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001964
David Woodhouseaa21c002007-12-08 20:04:36 +00001965 mutex_lock(&priv->lock);
1966 assoc_req = priv->pending_assoc_req;
1967 priv->pending_assoc_req = NULL;
1968 priv->in_progress_assoc_req = assoc_req;
1969 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001970
Holger Schurig9012b282007-05-25 11:27:16 -04001971 if (!assoc_req)
1972 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001973
Holger Schurig0765af42007-10-15 12:55:56 +02001974 lbs_deb_assoc(
1975 "Association Request:\n"
1976 " flags: 0x%08lx\n"
1977 " SSID: '%s'\n"
1978 " chann: %d\n"
1979 " band: %d\n"
1980 " mode: %d\n"
Johannes Berge1749612008-10-27 15:59:26 -07001981 " BSSID: %pM\n"
Holger Schurig0765af42007-10-15 12:55:56 +02001982 " secinfo: %s%s%s\n"
1983 " auth_mode: %d\n",
1984 assoc_req->flags,
John W. Linville9387b7c2008-09-30 20:59:05 -04001985 print_ssid(ssid, assoc_req->ssid, assoc_req->ssid_len),
Holger Schurig0765af42007-10-15 12:55:56 +02001986 assoc_req->channel, assoc_req->band, assoc_req->mode,
Johannes Berge1749612008-10-27 15:59:26 -07001987 assoc_req->bssid,
Holger Schurig0765af42007-10-15 12:55:56 +02001988 assoc_req->secinfo.WPAenabled ? " WPA" : "",
1989 assoc_req->secinfo.WPA2enabled ? " WPA2" : "",
1990 assoc_req->secinfo.wep_enabled ? " WEP" : "",
1991 assoc_req->secinfo.auth_mode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001992
1993 /* If 'any' SSID was specified, find an SSID to associate with */
1994 if (test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)
Dan Williamsd8efea22007-05-28 23:54:55 -04001995 && !assoc_req->ssid_len)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001996 find_any_ssid = 1;
1997
1998 /* But don't use 'any' SSID if there's a valid locked BSSID to use */
1999 if (test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)) {
Dan Williams3cf20932007-05-25 17:28:30 -04002000 if (compare_ether_addr(assoc_req->bssid, bssid_any)
2001 && compare_ether_addr(assoc_req->bssid, bssid_off))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002002 find_any_ssid = 0;
2003 }
2004
2005 if (find_any_ssid) {
Holger Schurig877cb0d2008-04-02 16:34:51 +02002006 u8 new_mode = assoc_req->mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002007
Holger Schurig10078322007-11-15 18:05:47 -05002008 ret = lbs_find_best_network_ssid(priv, assoc_req->ssid,
Dan Williamsd8efea22007-05-28 23:54:55 -04002009 &assoc_req->ssid_len, assoc_req->mode, &new_mode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002010 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -04002011 lbs_deb_assoc("Could not find best network\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002012 ret = -ENETUNREACH;
2013 goto out;
2014 }
2015
2016 /* Ensure we switch to the mode of the AP */
Dan Williams0dc5a292007-05-10 22:58:02 -04002017 if (assoc_req->mode == IW_MODE_AUTO) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002018 set_bit(ASSOC_FLAG_MODE, &assoc_req->flags);
2019 assoc_req->mode = new_mode;
2020 }
2021 }
2022
2023 /*
2024 * Check if the attributes being changing require deauthentication
2025 * from the currently associated infrastructure access point.
2026 */
David Woodhouseaa21c002007-12-08 20:04:36 +00002027 if (priv->mode == IW_MODE_INFRA) {
2028 if (should_deauth_infrastructure(priv, assoc_req)) {
Dan Williams191bb402008-08-21 17:46:18 -04002029 ret = lbs_cmd_80211_deauthenticate(priv,
2030 priv->curbssparams.bssid,
2031 WLAN_REASON_DEAUTH_LEAVING);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002032 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -04002033 lbs_deb_assoc("Deauthentication due to new "
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002034 "configuration request failed: %d\n",
2035 ret);
2036 }
2037 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002038 } else if (priv->mode == IW_MODE_ADHOC) {
2039 if (should_stop_adhoc(priv, assoc_req)) {
Dan Williamsf5fe1fd2008-08-21 21:46:59 -04002040 ret = lbs_adhoc_stop(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002041 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -04002042 lbs_deb_assoc("Teardown of AdHoc network due to "
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002043 "new configuration request failed: %d\n",
2044 ret);
2045 }
2046
2047 }
2048 }
2049
2050 /* Send the various configuration bits to the firmware */
2051 if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) {
2052 ret = assoc_helper_mode(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02002053 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002054 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002055 }
2056
Dan Williamsef9a2642007-05-25 16:46:33 -04002057 if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags)) {
2058 ret = assoc_helper_channel(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02002059 if (ret)
Dan Williamsef9a2642007-05-25 16:46:33 -04002060 goto out;
Dan Williamsef9a2642007-05-25 16:46:33 -04002061 }
2062
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002063 if ( test_bit(ASSOC_FLAG_WEP_KEYS, &assoc_req->flags)
2064 || test_bit(ASSOC_FLAG_WEP_TX_KEYIDX, &assoc_req->flags)) {
2065 ret = assoc_helper_wep_keys(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02002066 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002067 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002068 }
2069
2070 if (test_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags)) {
2071 ret = assoc_helper_secinfo(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02002072 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002073 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002074 }
2075
2076 if (test_bit(ASSOC_FLAG_WPA_IE, &assoc_req->flags)) {
2077 ret = assoc_helper_wpa_ie(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02002078 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002079 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002080 }
2081
2082 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)
2083 || test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
2084 ret = assoc_helper_wpa_keys(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02002085 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002086 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002087 }
2088
2089 /* SSID/BSSID should be the _last_ config option set, because they
2090 * trigger the association attempt.
2091 */
2092 if (test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)
2093 || test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)) {
2094 int success = 1;
2095
2096 ret = assoc_helper_associate(priv, assoc_req);
2097 if (ret) {
Holger Schurig91843462007-11-28 14:05:02 +01002098 lbs_deb_assoc("ASSOC: association unsuccessful: %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002099 ret);
2100 success = 0;
2101 }
2102
David Woodhouseaa21c002007-12-08 20:04:36 +00002103 if (priv->connect_status != LBS_CONNECTED) {
Holger Schurig91843462007-11-28 14:05:02 +01002104 lbs_deb_assoc("ASSOC: association unsuccessful, "
2105 "not connected\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002106 success = 0;
2107 }
2108
2109 if (success) {
Johannes Berge1749612008-10-27 15:59:26 -07002110 lbs_deb_assoc("associated to %pM\n",
2111 priv->curbssparams.bssid);
Holger Schurig10078322007-11-15 18:05:47 -05002112 lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04002113 CMD_802_11_RSSI,
2114 0, CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002115 } else {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002116 ret = -1;
2117 }
2118 }
2119
2120out:
2121 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -04002122 lbs_deb_assoc("ASSOC: reconfiguration attempt unsuccessful: %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002123 ret);
2124 }
Dan Williamse76850d2007-05-25 17:09:41 -04002125
David Woodhouseaa21c002007-12-08 20:04:36 +00002126 mutex_lock(&priv->lock);
2127 priv->in_progress_assoc_req = NULL;
2128 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002129 kfree(assoc_req);
Holger Schurig9012b282007-05-25 11:27:16 -04002130
2131done:
2132 lbs_deb_leave(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002133}
2134
2135
2136/*
2137 * Caller MUST hold any necessary locks
2138 */
David Woodhouseaa21c002007-12-08 20:04:36 +00002139struct assoc_request *lbs_get_association_request(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002140{
2141 struct assoc_request * assoc_req;
2142
Holger Schurig0765af42007-10-15 12:55:56 +02002143 lbs_deb_enter(LBS_DEB_ASSOC);
David Woodhouseaa21c002007-12-08 20:04:36 +00002144 if (!priv->pending_assoc_req) {
2145 priv->pending_assoc_req = kzalloc(sizeof(struct assoc_request),
Dan Williamse76850d2007-05-25 17:09:41 -04002146 GFP_KERNEL);
David Woodhouseaa21c002007-12-08 20:04:36 +00002147 if (!priv->pending_assoc_req) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002148 lbs_pr_info("Not enough memory to allocate association"
2149 " request!\n");
2150 return NULL;
2151 }
2152 }
2153
2154 /* Copy current configuration attributes to the association request,
2155 * but don't overwrite any that are already set.
2156 */
David Woodhouseaa21c002007-12-08 20:04:36 +00002157 assoc_req = priv->pending_assoc_req;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002158 if (!test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00002159 memcpy(&assoc_req->ssid, &priv->curbssparams.ssid,
Holger Schurig243e84e2009-10-22 15:30:47 +02002160 IEEE80211_MAX_SSID_LEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00002161 assoc_req->ssid_len = priv->curbssparams.ssid_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002162 }
2163
2164 if (!test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags))
Holger Schurigc14951f2009-10-22 15:30:50 +02002165 assoc_req->channel = priv->channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002166
Dan Williamse76850d2007-05-25 17:09:41 -04002167 if (!test_bit(ASSOC_FLAG_BAND, &assoc_req->flags))
David Woodhouseaa21c002007-12-08 20:04:36 +00002168 assoc_req->band = priv->curbssparams.band;
Dan Williamse76850d2007-05-25 17:09:41 -04002169
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002170 if (!test_bit(ASSOC_FLAG_MODE, &assoc_req->flags))
David Woodhouseaa21c002007-12-08 20:04:36 +00002171 assoc_req->mode = priv->mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002172
2173 if (!test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00002174 memcpy(&assoc_req->bssid, priv->curbssparams.bssid,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002175 ETH_ALEN);
2176 }
2177
2178 if (!test_bit(ASSOC_FLAG_WEP_KEYS, &assoc_req->flags)) {
2179 int i;
2180 for (i = 0; i < 4; i++) {
David Woodhouseaa21c002007-12-08 20:04:36 +00002181 memcpy(&assoc_req->wep_keys[i], &priv->wep_keys[i],
Dan Williams1443b652007-08-02 10:45:55 -04002182 sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002183 }
2184 }
2185
2186 if (!test_bit(ASSOC_FLAG_WEP_TX_KEYIDX, &assoc_req->flags))
David Woodhouseaa21c002007-12-08 20:04:36 +00002187 assoc_req->wep_tx_keyidx = priv->wep_tx_keyidx;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002188
2189 if (!test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00002190 memcpy(&assoc_req->wpa_mcast_key, &priv->wpa_mcast_key,
Dan Williams1443b652007-08-02 10:45:55 -04002191 sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002192 }
2193
2194 if (!test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00002195 memcpy(&assoc_req->wpa_unicast_key, &priv->wpa_unicast_key,
Dan Williams1443b652007-08-02 10:45:55 -04002196 sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002197 }
2198
2199 if (!test_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00002200 memcpy(&assoc_req->secinfo, &priv->secinfo,
Holger Schurig10078322007-11-15 18:05:47 -05002201 sizeof(struct lbs_802_11_security));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002202 }
2203
2204 if (!test_bit(ASSOC_FLAG_WPA_IE, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00002205 memcpy(&assoc_req->wpa_ie, &priv->wpa_ie,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002206 MAX_WPA_IE_LEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00002207 assoc_req->wpa_ie_len = priv->wpa_ie_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002208 }
2209
Holger Schurig0765af42007-10-15 12:55:56 +02002210 lbs_deb_leave(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002211 return assoc_req;
2212}
Holger Schurig697900a2008-04-02 16:27:10 +02002213
2214
2215/**
Dan Williams191bb402008-08-21 17:46:18 -04002216 * @brief Deauthenticate from a specific BSS
2217 *
2218 * @param priv A pointer to struct lbs_private structure
2219 * @param bssid The specific BSS to deauthenticate from
2220 * @param reason The 802.11 sec. 7.3.1.7 Reason Code for deauthenticating
2221 *
2222 * @return 0 on success, error on failure
2223 */
2224int lbs_cmd_80211_deauthenticate(struct lbs_private *priv, u8 bssid[ETH_ALEN],
2225 u16 reason)
Holger Schurig697900a2008-04-02 16:27:10 +02002226{
Dan Williams191bb402008-08-21 17:46:18 -04002227 struct cmd_ds_802_11_deauthenticate cmd;
2228 int ret;
Holger Schurig697900a2008-04-02 16:27:10 +02002229
2230 lbs_deb_enter(LBS_DEB_JOIN);
2231
Dan Williams191bb402008-08-21 17:46:18 -04002232 memset(&cmd, 0, sizeof(cmd));
2233 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
2234 memcpy(cmd.macaddr, &bssid[0], ETH_ALEN);
2235 cmd.reasoncode = cpu_to_le16(reason);
Holger Schurig697900a2008-04-02 16:27:10 +02002236
Dan Williams191bb402008-08-21 17:46:18 -04002237 ret = lbs_cmd_with_response(priv, CMD_802_11_DEAUTHENTICATE, &cmd);
Holger Schurig697900a2008-04-02 16:27:10 +02002238
Dan Williams191bb402008-08-21 17:46:18 -04002239 /* Clean up everything even if there was an error; can't assume that
2240 * we're still authenticated to the AP after trying to deauth.
2241 */
2242 lbs_mac_event_disconnected(priv);
Holger Schurig697900a2008-04-02 16:27:10 +02002243
2244 lbs_deb_leave(LBS_DEB_JOIN);
Dan Williams191bb402008-08-21 17:46:18 -04002245 return ret;
Holger Schurig697900a2008-04-02 16:27:10 +02002246}
2247