blob: 5072a8917fd994898558b81c5ada46d34c5e7a05 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/* Copyright (C) 2006, Red Hat, Inc. */
2
Dan Williams3cf209312007-05-25 17:28:30 -04003#include <linux/etherdevice.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02004
5#include "assoc.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02006#include "decl.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02007#include "host.h"
Holger Schurig245bf202008-04-02 16:27:42 +02008#include "scan.h"
Dan Williams2dd4b262007-12-11 16:54:15 -05009#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020010
11
Ihar Hrachyshka5a6e0432008-01-25 14:15:00 +010012static const u8 bssid_any[ETH_ALEN] __attribute__ ((aligned (2))) =
13 { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
14static const u8 bssid_off[ETH_ALEN] __attribute__ ((aligned (2))) =
15 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020016
Holger Schurig697900a2008-04-02 16:27:10 +020017/* The firmware needs certain bits masked out of the beacon-derviced capability
18 * field when associating/joining to BSSs.
19 */
20#define CAPINFO_MASK (~(0xda00))
21
22
23
24/**
25 * @brief Associate to a specific BSS discovered in a scan
26 *
27 * @param priv A pointer to struct lbs_private structure
28 * @param pbssdesc Pointer to the BSS descriptor to associate with.
29 *
30 * @return 0-success, otherwise fail
31 */
32static int lbs_associate(struct lbs_private *priv,
33 struct assoc_request *assoc_req)
34{
35 int ret;
36
37 lbs_deb_enter(LBS_DEB_ASSOC);
38
39 ret = lbs_prepare_and_send_command(priv, CMD_802_11_AUTHENTICATE,
40 0, CMD_OPTION_WAITFORRSP,
41 0, assoc_req->bss.bssid);
42
43 if (ret)
44 goto done;
45
46 /* set preamble to firmware */
47 if ((priv->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) &&
48 (assoc_req->bss.capability & WLAN_CAPABILITY_SHORT_PREAMBLE))
49 priv->preamble = CMD_TYPE_SHORT_PREAMBLE;
50 else
51 priv->preamble = CMD_TYPE_LONG_PREAMBLE;
52
53 lbs_set_radio_control(priv);
54
55 ret = lbs_prepare_and_send_command(priv, CMD_802_11_ASSOCIATE,
56 0, CMD_OPTION_WAITFORRSP, 0, assoc_req);
57
58done:
59 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
60 return ret;
61}
62
63/**
64 * @brief Join an adhoc network found in a previous scan
65 *
66 * @param priv A pointer to struct lbs_private structure
67 * @param pbssdesc Pointer to a BSS descriptor found in a previous scan
68 * to attempt to join
69 *
70 * @return 0--success, -1--fail
71 */
72static int lbs_join_adhoc_network(struct lbs_private *priv,
73 struct assoc_request *assoc_req)
74{
75 struct bss_descriptor *bss = &assoc_req->bss;
76 int ret = 0;
77
78 lbs_deb_join("current SSID '%s', ssid length %u\n",
79 escape_essid(priv->curbssparams.ssid,
80 priv->curbssparams.ssid_len),
81 priv->curbssparams.ssid_len);
82 lbs_deb_join("requested ssid '%s', ssid length %u\n",
83 escape_essid(bss->ssid, bss->ssid_len),
84 bss->ssid_len);
85
86 /* check if the requested SSID is already joined */
87 if (priv->curbssparams.ssid_len &&
88 !lbs_ssid_cmp(priv->curbssparams.ssid,
89 priv->curbssparams.ssid_len,
90 bss->ssid, bss->ssid_len) &&
91 (priv->mode == IW_MODE_ADHOC) &&
92 (priv->connect_status == LBS_CONNECTED)) {
93 union iwreq_data wrqu;
94
95 lbs_deb_join("ADHOC_J_CMD: New ad-hoc SSID is the same as "
96 "current, not attempting to re-join");
97
98 /* Send the re-association event though, because the association
99 * request really was successful, even if just a null-op.
100 */
101 memset(&wrqu, 0, sizeof(wrqu));
102 memcpy(wrqu.ap_addr.sa_data, priv->curbssparams.bssid,
103 ETH_ALEN);
104 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
105 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
106 goto out;
107 }
108
109 /* Use shortpreamble only when both creator and card supports
110 short preamble */
111 if (!(bss->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) ||
112 !(priv->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)) {
113 lbs_deb_join("AdhocJoin: Long preamble\n");
114 priv->preamble = CMD_TYPE_LONG_PREAMBLE;
115 } else {
116 lbs_deb_join("AdhocJoin: Short preamble\n");
117 priv->preamble = CMD_TYPE_SHORT_PREAMBLE;
118 }
119
120 lbs_set_radio_control(priv);
121
122 lbs_deb_join("AdhocJoin: channel = %d\n", assoc_req->channel);
123 lbs_deb_join("AdhocJoin: band = %c\n", assoc_req->band);
124
125 priv->adhoccreate = 0;
126
127 ret = lbs_prepare_and_send_command(priv, CMD_802_11_AD_HOC_JOIN,
128 0, CMD_OPTION_WAITFORRSP,
129 OID_802_11_SSID, assoc_req);
130
131out:
132 return ret;
133}
134
135/**
136 * @brief Start an Adhoc Network
137 *
138 * @param priv A pointer to struct lbs_private structure
139 * @param adhocssid The ssid of the Adhoc Network
140 * @return 0--success, -1--fail
141 */
142static int lbs_start_adhoc_network(struct lbs_private *priv,
143 struct assoc_request *assoc_req)
144{
145 int ret = 0;
146
147 priv->adhoccreate = 1;
148
149 if (priv->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) {
150 lbs_deb_join("AdhocStart: Short preamble\n");
151 priv->preamble = CMD_TYPE_SHORT_PREAMBLE;
152 } else {
153 lbs_deb_join("AdhocStart: Long preamble\n");
154 priv->preamble = CMD_TYPE_LONG_PREAMBLE;
155 }
156
157 lbs_set_radio_control(priv);
158
159 lbs_deb_join("AdhocStart: channel = %d\n", assoc_req->channel);
160 lbs_deb_join("AdhocStart: band = %d\n", assoc_req->band);
161
162 ret = lbs_prepare_and_send_command(priv, CMD_802_11_AD_HOC_START,
163 0, CMD_OPTION_WAITFORRSP, 0, assoc_req);
164
165 return ret;
166}
167
168int lbs_stop_adhoc_network(struct lbs_private *priv)
169{
170 return lbs_prepare_and_send_command(priv, CMD_802_11_AD_HOC_STOP,
171 0, CMD_OPTION_WAITFORRSP, 0, NULL);
172}
Dan Williamse76850d2007-05-25 17:09:41 -0400173
Holger Schurig245bf202008-04-02 16:27:42 +0200174static inline int match_bss_no_security(struct lbs_802_11_security *secinfo,
175 struct bss_descriptor *match_bss)
176{
177 if (!secinfo->wep_enabled && !secinfo->WPAenabled
178 && !secinfo->WPA2enabled
179 && match_bss->wpa_ie[0] != MFIE_TYPE_GENERIC
180 && match_bss->rsn_ie[0] != MFIE_TYPE_RSN
181 && !(match_bss->capability & WLAN_CAPABILITY_PRIVACY))
182 return 1;
183 else
184 return 0;
185}
186
187static inline int match_bss_static_wep(struct lbs_802_11_security *secinfo,
188 struct bss_descriptor *match_bss)
189{
190 if (secinfo->wep_enabled && !secinfo->WPAenabled
191 && !secinfo->WPA2enabled
192 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY))
193 return 1;
194 else
195 return 0;
196}
197
198static inline int match_bss_wpa(struct lbs_802_11_security *secinfo,
199 struct bss_descriptor *match_bss)
200{
201 if (!secinfo->wep_enabled && secinfo->WPAenabled
202 && (match_bss->wpa_ie[0] == MFIE_TYPE_GENERIC)
203 /* privacy bit may NOT be set in some APs like LinkSys WRT54G
204 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY) */
205 )
206 return 1;
207 else
208 return 0;
209}
210
211static inline int match_bss_wpa2(struct lbs_802_11_security *secinfo,
212 struct bss_descriptor *match_bss)
213{
214 if (!secinfo->wep_enabled && secinfo->WPA2enabled &&
215 (match_bss->rsn_ie[0] == MFIE_TYPE_RSN)
216 /* privacy bit may NOT be set in some APs like LinkSys WRT54G
217 (match_bss->capability & WLAN_CAPABILITY_PRIVACY) */
218 )
219 return 1;
220 else
221 return 0;
222}
223
224static inline int match_bss_dynamic_wep(struct lbs_802_11_security *secinfo,
225 struct bss_descriptor *match_bss)
226{
227 if (!secinfo->wep_enabled && !secinfo->WPAenabled
228 && !secinfo->WPA2enabled
229 && (match_bss->wpa_ie[0] != MFIE_TYPE_GENERIC)
230 && (match_bss->rsn_ie[0] != MFIE_TYPE_RSN)
231 && (match_bss->capability & WLAN_CAPABILITY_PRIVACY))
232 return 1;
233 else
234 return 0;
235}
236
237/**
238 * @brief Check if a scanned network compatible with the driver settings
239 *
240 * WEP WPA WPA2 ad-hoc encrypt Network
241 * enabled enabled enabled AES mode privacy WPA WPA2 Compatible
242 * 0 0 0 0 NONE 0 0 0 yes No security
243 * 1 0 0 0 NONE 1 0 0 yes Static WEP
244 * 0 1 0 0 x 1x 1 x yes WPA
245 * 0 0 1 0 x 1x x 1 yes WPA2
246 * 0 0 0 1 NONE 1 0 0 yes Ad-hoc AES
247 * 0 0 0 0 !=NONE 1 0 0 yes Dynamic WEP
248 *
249 *
250 * @param priv A pointer to struct lbs_private
251 * @param index Index in scantable to check against current driver settings
252 * @param mode Network mode: Infrastructure or IBSS
253 *
254 * @return Index in scantable, or error code if negative
255 */
256static int is_network_compatible(struct lbs_private *priv,
257 struct bss_descriptor *bss, uint8_t mode)
258{
259 int matched = 0;
260
261 lbs_deb_enter(LBS_DEB_SCAN);
262
263 if (bss->mode != mode)
264 goto done;
265
266 matched = match_bss_no_security(&priv->secinfo, bss);
267 if (matched)
268 goto done;
269 matched = match_bss_static_wep(&priv->secinfo, bss);
270 if (matched)
271 goto done;
272 matched = match_bss_wpa(&priv->secinfo, bss);
273 if (matched) {
274 lbs_deb_scan("is_network_compatible() WPA: wpa_ie 0x%x "
275 "wpa2_ie 0x%x WEP %s WPA %s WPA2 %s "
276 "privacy 0x%x\n", bss->wpa_ie[0], bss->rsn_ie[0],
277 priv->secinfo.wep_enabled ? "e" : "d",
278 priv->secinfo.WPAenabled ? "e" : "d",
279 priv->secinfo.WPA2enabled ? "e" : "d",
280 (bss->capability & WLAN_CAPABILITY_PRIVACY));
281 goto done;
282 }
283 matched = match_bss_wpa2(&priv->secinfo, bss);
284 if (matched) {
285 lbs_deb_scan("is_network_compatible() WPA2: wpa_ie 0x%x "
286 "wpa2_ie 0x%x WEP %s WPA %s WPA2 %s "
287 "privacy 0x%x\n", bss->wpa_ie[0], bss->rsn_ie[0],
288 priv->secinfo.wep_enabled ? "e" : "d",
289 priv->secinfo.WPAenabled ? "e" : "d",
290 priv->secinfo.WPA2enabled ? "e" : "d",
291 (bss->capability & WLAN_CAPABILITY_PRIVACY));
292 goto done;
293 }
294 matched = match_bss_dynamic_wep(&priv->secinfo, bss);
295 if (matched) {
296 lbs_deb_scan("is_network_compatible() dynamic WEP: "
297 "wpa_ie 0x%x wpa2_ie 0x%x privacy 0x%x\n",
298 bss->wpa_ie[0], bss->rsn_ie[0],
299 (bss->capability & WLAN_CAPABILITY_PRIVACY));
300 goto done;
301 }
302
303 /* bss security settings don't match those configured on card */
304 lbs_deb_scan("is_network_compatible() FAILED: wpa_ie 0x%x "
305 "wpa2_ie 0x%x WEP %s WPA %s WPA2 %s privacy 0x%x\n",
306 bss->wpa_ie[0], bss->rsn_ie[0],
307 priv->secinfo.wep_enabled ? "e" : "d",
308 priv->secinfo.WPAenabled ? "e" : "d",
309 priv->secinfo.WPA2enabled ? "e" : "d",
310 (bss->capability & WLAN_CAPABILITY_PRIVACY));
311
312done:
313 lbs_deb_leave_args(LBS_DEB_SCAN, "matched: %d", matched);
314 return matched;
315}
316
317/**
318 * @brief This function finds a specific compatible BSSID in the scan list
319 *
320 * Used in association code
321 *
322 * @param priv A pointer to struct lbs_private
323 * @param bssid BSSID to find in the scan list
324 * @param mode Network mode: Infrastructure or IBSS
325 *
326 * @return index in BSSID list, or error return code (< 0)
327 */
328static struct bss_descriptor *lbs_find_bssid_in_list(struct lbs_private *priv,
329 uint8_t *bssid, uint8_t mode)
330{
331 struct bss_descriptor *iter_bss;
332 struct bss_descriptor *found_bss = NULL;
333
334 lbs_deb_enter(LBS_DEB_SCAN);
335
336 if (!bssid)
337 goto out;
338
339 lbs_deb_hex(LBS_DEB_SCAN, "looking for", bssid, ETH_ALEN);
340
341 /* Look through the scan table for a compatible match. The loop will
342 * continue past a matched bssid that is not compatible in case there
343 * is an AP with multiple SSIDs assigned to the same BSSID
344 */
345 mutex_lock(&priv->lock);
346 list_for_each_entry(iter_bss, &priv->network_list, list) {
347 if (compare_ether_addr(iter_bss->bssid, bssid))
348 continue; /* bssid doesn't match */
349 switch (mode) {
350 case IW_MODE_INFRA:
351 case IW_MODE_ADHOC:
352 if (!is_network_compatible(priv, iter_bss, mode))
353 break;
354 found_bss = iter_bss;
355 break;
356 default:
357 found_bss = iter_bss;
358 break;
359 }
360 }
361 mutex_unlock(&priv->lock);
362
363out:
364 lbs_deb_leave_args(LBS_DEB_SCAN, "found_bss %p", found_bss);
365 return found_bss;
366}
367
368/**
369 * @brief This function finds ssid in ssid list.
370 *
371 * Used in association code
372 *
373 * @param priv A pointer to struct lbs_private
374 * @param ssid SSID to find in the list
375 * @param bssid BSSID to qualify the SSID selection (if provided)
376 * @param mode Network mode: Infrastructure or IBSS
377 *
378 * @return index in BSSID list
379 */
380static struct bss_descriptor *lbs_find_ssid_in_list(struct lbs_private *priv,
381 uint8_t *ssid, uint8_t ssid_len,
382 uint8_t *bssid, uint8_t mode,
383 int channel)
384{
385 u32 bestrssi = 0;
386 struct bss_descriptor *iter_bss = NULL;
387 struct bss_descriptor *found_bss = NULL;
388 struct bss_descriptor *tmp_oldest = NULL;
389
390 lbs_deb_enter(LBS_DEB_SCAN);
391
392 mutex_lock(&priv->lock);
393
394 list_for_each_entry(iter_bss, &priv->network_list, list) {
395 if (!tmp_oldest ||
396 (iter_bss->last_scanned < tmp_oldest->last_scanned))
397 tmp_oldest = iter_bss;
398
399 if (lbs_ssid_cmp(iter_bss->ssid, iter_bss->ssid_len,
400 ssid, ssid_len) != 0)
401 continue; /* ssid doesn't match */
402 if (bssid && compare_ether_addr(iter_bss->bssid, bssid) != 0)
403 continue; /* bssid doesn't match */
404 if ((channel > 0) && (iter_bss->channel != channel))
405 continue; /* channel doesn't match */
406
407 switch (mode) {
408 case IW_MODE_INFRA:
409 case IW_MODE_ADHOC:
410 if (!is_network_compatible(priv, iter_bss, mode))
411 break;
412
413 if (bssid) {
414 /* Found requested BSSID */
415 found_bss = iter_bss;
416 goto out;
417 }
418
419 if (SCAN_RSSI(iter_bss->rssi) > bestrssi) {
420 bestrssi = SCAN_RSSI(iter_bss->rssi);
421 found_bss = iter_bss;
422 }
423 break;
424 case IW_MODE_AUTO:
425 default:
426 if (SCAN_RSSI(iter_bss->rssi) > bestrssi) {
427 bestrssi = SCAN_RSSI(iter_bss->rssi);
428 found_bss = iter_bss;
429 }
430 break;
431 }
432 }
433
434out:
435 mutex_unlock(&priv->lock);
436 lbs_deb_leave_args(LBS_DEB_SCAN, "found_bss %p", found_bss);
437 return found_bss;
438}
439
Holger Schurig69f90322007-11-23 15:43:44 +0100440static int assoc_helper_essid(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200441 struct assoc_request * assoc_req)
442{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200443 int ret = 0;
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400444 struct bss_descriptor * bss;
Dan Williamsaeea0ab2007-05-25 22:30:48 -0400445 int channel = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200446
Holger Schurig9012b282007-05-25 11:27:16 -0400447 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200448
Dan Williamsef9a2642007-05-25 16:46:33 -0400449 /* FIXME: take channel into account when picking SSIDs if a channel
450 * is set.
451 */
452
Dan Williamsaeea0ab2007-05-25 22:30:48 -0400453 if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags))
454 channel = assoc_req->channel;
455
Holger Schurig0765af42007-10-15 12:55:56 +0200456 lbs_deb_assoc("SSID '%s' requested\n",
Dan Williamsd8efea22007-05-28 23:54:55 -0400457 escape_essid(assoc_req->ssid, assoc_req->ssid_len));
Dan Williams0dc5a292007-05-10 22:58:02 -0400458 if (assoc_req->mode == IW_MODE_INFRA) {
Holger Schurig10078322007-11-15 18:05:47 -0500459 lbs_send_specific_ssid_scan(priv, assoc_req->ssid,
Holger Schurig52933d82008-03-05 07:05:32 +0100460 assoc_req->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200461
David Woodhouseaa21c002007-12-08 20:04:36 +0000462 bss = lbs_find_ssid_in_list(priv, assoc_req->ssid,
Dan Williamsd8efea22007-05-28 23:54:55 -0400463 assoc_req->ssid_len, NULL, IW_MODE_INFRA, channel);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400464 if (bss != NULL) {
Dan Williamse76850d2007-05-25 17:09:41 -0400465 memcpy(&assoc_req->bss, bss, sizeof(struct bss_descriptor));
Holger Schurig10078322007-11-15 18:05:47 -0500466 ret = lbs_associate(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200467 } else {
Dan Williamsd8efea22007-05-28 23:54:55 -0400468 lbs_deb_assoc("SSID not found; cannot associate\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200469 }
Dan Williams0dc5a292007-05-10 22:58:02 -0400470 } else if (assoc_req->mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200471 /* Scan for the network, do not save previous results. Stale
472 * scan data will cause us to join a non-existant adhoc network
473 */
Holger Schurig10078322007-11-15 18:05:47 -0500474 lbs_send_specific_ssid_scan(priv, assoc_req->ssid,
Holger Schurig52933d82008-03-05 07:05:32 +0100475 assoc_req->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200476
477 /* Search for the requested SSID in the scan table */
David Woodhouseaa21c002007-12-08 20:04:36 +0000478 bss = lbs_find_ssid_in_list(priv, assoc_req->ssid,
Dan Williamsd8efea22007-05-28 23:54:55 -0400479 assoc_req->ssid_len, NULL, IW_MODE_ADHOC, channel);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400480 if (bss != NULL) {
Dan Williamsd8efea22007-05-28 23:54:55 -0400481 lbs_deb_assoc("SSID found, will join\n");
Dan Williamse76850d2007-05-25 17:09:41 -0400482 memcpy(&assoc_req->bss, bss, sizeof(struct bss_descriptor));
Holger Schurig10078322007-11-15 18:05:47 -0500483 lbs_join_adhoc_network(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200484 } else {
485 /* else send START command */
Dan Williamsd8efea22007-05-28 23:54:55 -0400486 lbs_deb_assoc("SSID not found, creating adhoc network\n");
Dan Williamse76850d2007-05-25 17:09:41 -0400487 memcpy(&assoc_req->bss.ssid, &assoc_req->ssid,
Dan Williamsd8efea22007-05-28 23:54:55 -0400488 IW_ESSID_MAX_SIZE);
489 assoc_req->bss.ssid_len = assoc_req->ssid_len;
Holger Schurig10078322007-11-15 18:05:47 -0500490 lbs_start_adhoc_network(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200491 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200492 }
493
Holger Schurig9012b282007-05-25 11:27:16 -0400494 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200495 return ret;
496}
497
498
Holger Schurig69f90322007-11-23 15:43:44 +0100499static int assoc_helper_bssid(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200500 struct assoc_request * assoc_req)
501{
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400502 int ret = 0;
503 struct bss_descriptor * bss;
Joe Perches0795af52007-10-03 17:59:30 -0700504 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200505
Joe Perches0795af52007-10-03 17:59:30 -0700506 lbs_deb_enter_args(LBS_DEB_ASSOC, "BSSID %s",
507 print_mac(mac, assoc_req->bssid));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200508
509 /* Search for index position in list for requested MAC */
David Woodhouseaa21c002007-12-08 20:04:36 +0000510 bss = lbs_find_bssid_in_list(priv, assoc_req->bssid,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200511 assoc_req->mode);
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400512 if (bss == NULL) {
Joe Perches0795af52007-10-03 17:59:30 -0700513 lbs_deb_assoc("ASSOC: WAP: BSSID %s not found, "
514 "cannot associate.\n", print_mac(mac, assoc_req->bssid));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200515 goto out;
516 }
517
Dan Williamse76850d2007-05-25 17:09:41 -0400518 memcpy(&assoc_req->bss, bss, sizeof(struct bss_descriptor));
Dan Williams0dc5a292007-05-10 22:58:02 -0400519 if (assoc_req->mode == IW_MODE_INFRA) {
Holger Schurig10078322007-11-15 18:05:47 -0500520 ret = lbs_associate(priv, assoc_req);
521 lbs_deb_assoc("ASSOC: lbs_associate(bssid) returned %d\n", ret);
Dan Williams0dc5a292007-05-10 22:58:02 -0400522 } else if (assoc_req->mode == IW_MODE_ADHOC) {
Holger Schurig10078322007-11-15 18:05:47 -0500523 lbs_join_adhoc_network(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200524 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200525
526out:
Holger Schurig9012b282007-05-25 11:27:16 -0400527 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200528 return ret;
529}
530
531
Holger Schurig69f90322007-11-23 15:43:44 +0100532static int assoc_helper_associate(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200533 struct assoc_request * assoc_req)
534{
535 int ret = 0, done = 0;
536
Holger Schurig0765af42007-10-15 12:55:56 +0200537 lbs_deb_enter(LBS_DEB_ASSOC);
538
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200539 /* If we're given and 'any' BSSID, try associating based on SSID */
540
541 if (test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)) {
Dan Williams3cf209312007-05-25 17:28:30 -0400542 if (compare_ether_addr(bssid_any, assoc_req->bssid)
543 && compare_ether_addr(bssid_off, assoc_req->bssid)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200544 ret = assoc_helper_bssid(priv, assoc_req);
545 done = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200546 }
547 }
548
549 if (!done && test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)) {
550 ret = assoc_helper_essid(priv, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200551 }
552
Holger Schurig0765af42007-10-15 12:55:56 +0200553 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200554 return ret;
555}
556
557
Holger Schurig69f90322007-11-23 15:43:44 +0100558static int assoc_helper_mode(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200559 struct assoc_request * assoc_req)
560{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200561 int ret = 0;
562
Holger Schurig9012b282007-05-25 11:27:16 -0400563 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200564
David Woodhouseaa21c002007-12-08 20:04:36 +0000565 if (assoc_req->mode == priv->mode)
Holger Schurig9012b282007-05-25 11:27:16 -0400566 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200567
Dan Williams0dc5a292007-05-10 22:58:02 -0400568 if (assoc_req->mode == IW_MODE_INFRA) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000569 if (priv->psstate != PS_STATE_FULL_POWER)
Holger Schurig10078322007-11-15 18:05:47 -0500570 lbs_ps_wakeup(priv, CMD_OPTION_WAITFORRSP);
David Woodhouseaa21c002007-12-08 20:04:36 +0000571 priv->psmode = LBS802_11POWERMODECAM;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200572 }
573
David Woodhouseaa21c002007-12-08 20:04:36 +0000574 priv->mode = assoc_req->mode;
Holger Schurig10078322007-11-15 18:05:47 -0500575 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -0400576 CMD_802_11_SNMP_MIB,
577 0, CMD_OPTION_WAITFORRSP,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200578 OID_802_11_INFRASTRUCTURE_MODE,
David Woodhouse981f1872007-05-25 23:36:54 -0400579 /* Shoot me now */ (void *) (size_t) assoc_req->mode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200580
Holger Schurig9012b282007-05-25 11:27:16 -0400581done:
582 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200583 return ret;
584}
585
Holger Schurig69f90322007-11-23 15:43:44 +0100586static int assoc_helper_channel(struct lbs_private *priv,
Dan Williamsef9a2642007-05-25 16:46:33 -0400587 struct assoc_request * assoc_req)
588{
Dan Williamsef9a2642007-05-25 16:46:33 -0400589 int ret = 0;
590
591 lbs_deb_enter(LBS_DEB_ASSOC);
592
David Woodhouse9f462572007-12-12 22:50:21 -0500593 ret = lbs_update_channel(priv);
David Woodhoused1a469f2007-12-16 17:21:00 -0500594 if (ret) {
David Woodhouse23d36ee2007-12-12 00:14:21 -0500595 lbs_deb_assoc("ASSOC: channel: error getting channel.\n");
David Woodhoused1a469f2007-12-16 17:21:00 -0500596 goto done;
Dan Williamsef9a2642007-05-25 16:46:33 -0400597 }
598
David Woodhouseaa21c002007-12-08 20:04:36 +0000599 if (assoc_req->channel == priv->curbssparams.channel)
Dan Williamsef9a2642007-05-25 16:46:33 -0400600 goto done;
601
David Woodhouse8642f1f2007-12-11 20:03:01 -0500602 if (priv->mesh_dev) {
David Woodhouse86062132007-12-13 00:32:36 -0500603 /* Change mesh channel first; 21.p21 firmware won't let
604 you change channel otherwise (even though it'll return
605 an error to this */
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700606 lbs_mesh_config(priv, CMD_ACT_MESH_CONFIG_STOP,
607 assoc_req->channel);
David Woodhouse8642f1f2007-12-11 20:03:01 -0500608 }
609
Dan Williamsef9a2642007-05-25 16:46:33 -0400610 lbs_deb_assoc("ASSOC: channel: %d -> %d\n",
David Woodhouse86062132007-12-13 00:32:36 -0500611 priv->curbssparams.channel, assoc_req->channel);
Dan Williamsef9a2642007-05-25 16:46:33 -0400612
Dan Williams2dd4b262007-12-11 16:54:15 -0500613 ret = lbs_set_channel(priv, assoc_req->channel);
614 if (ret < 0)
David Woodhouse23d36ee2007-12-12 00:14:21 -0500615 lbs_deb_assoc("ASSOC: channel: error setting channel.\n");
Dan Williamsef9a2642007-05-25 16:46:33 -0400616
Dan Williams2dd4b262007-12-11 16:54:15 -0500617 /* FIXME: shouldn't need to grab the channel _again_ after setting
618 * it since the firmware is supposed to return the new channel, but
619 * whatever... */
David Woodhouse9f462572007-12-12 22:50:21 -0500620 ret = lbs_update_channel(priv);
David Woodhoused1a469f2007-12-16 17:21:00 -0500621 if (ret) {
David Woodhouse23d36ee2007-12-12 00:14:21 -0500622 lbs_deb_assoc("ASSOC: channel: error getting channel.\n");
David Woodhoused1a469f2007-12-16 17:21:00 -0500623 goto done;
624 }
Dan Williamsef9a2642007-05-25 16:46:33 -0400625
David Woodhouseaa21c002007-12-08 20:04:36 +0000626 if (assoc_req->channel != priv->curbssparams.channel) {
David Woodhouse88ae2912007-12-11 19:57:05 -0500627 lbs_deb_assoc("ASSOC: channel: failed to update channel to %d\n",
Dan Williamsef9a2642007-05-25 16:46:33 -0400628 assoc_req->channel);
David Woodhouse8642f1f2007-12-11 20:03:01 -0500629 goto restore_mesh;
Dan Williamsef9a2642007-05-25 16:46:33 -0400630 }
631
632 if ( assoc_req->secinfo.wep_enabled
633 && (assoc_req->wep_keys[0].len
634 || assoc_req->wep_keys[1].len
635 || assoc_req->wep_keys[2].len
636 || assoc_req->wep_keys[3].len)) {
637 /* Make sure WEP keys are re-sent to firmware */
638 set_bit(ASSOC_FLAG_WEP_KEYS, &assoc_req->flags);
639 }
640
641 /* Must restart/rejoin adhoc networks after channel change */
David Woodhouse23d36ee2007-12-12 00:14:21 -0500642 set_bit(ASSOC_FLAG_SSID, &assoc_req->flags);
Dan Williamsef9a2642007-05-25 16:46:33 -0400643
David Woodhouse8642f1f2007-12-11 20:03:01 -0500644 restore_mesh:
645 if (priv->mesh_dev)
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700646 lbs_mesh_config(priv, CMD_ACT_MESH_CONFIG_START,
647 priv->curbssparams.channel);
David Woodhouse8642f1f2007-12-11 20:03:01 -0500648
649 done:
Dan Williamsef9a2642007-05-25 16:46:33 -0400650 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
651 return ret;
652}
653
654
Holger Schurig69f90322007-11-23 15:43:44 +0100655static int assoc_helper_wep_keys(struct lbs_private *priv,
David Woodhousef70dd452007-12-18 00:18:05 -0500656 struct assoc_request *assoc_req)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200657{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200658 int i;
659 int ret = 0;
660
Holger Schurig9012b282007-05-25 11:27:16 -0400661 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200662
663 /* Set or remove WEP keys */
David Woodhousef70dd452007-12-18 00:18:05 -0500664 if (assoc_req->wep_keys[0].len || assoc_req->wep_keys[1].len ||
665 assoc_req->wep_keys[2].len || assoc_req->wep_keys[3].len)
666 ret = lbs_cmd_802_11_set_wep(priv, CMD_ACT_ADD, assoc_req);
667 else
668 ret = lbs_cmd_802_11_set_wep(priv, CMD_ACT_REMOVE, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200669
670 if (ret)
671 goto out;
672
673 /* enable/disable the MAC's WEP packet filter */
Dan Williams889c05b2007-05-10 22:57:23 -0400674 if (assoc_req->secinfo.wep_enabled)
Holger Schurigd9e97782008-03-12 16:06:43 +0100675 priv->mac_control |= CMD_ACT_MAC_WEP_ENABLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200676 else
Holger Schurigd9e97782008-03-12 16:06:43 +0100677 priv->mac_control &= ~CMD_ACT_MAC_WEP_ENABLE;
David Woodhousef70dd452007-12-18 00:18:05 -0500678
Holger Schurigc97329e2008-03-18 11:20:21 +0100679 lbs_set_mac_control(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200680
David Woodhouseaa21c002007-12-08 20:04:36 +0000681 mutex_lock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200682
David Woodhouseaa21c002007-12-08 20:04:36 +0000683 /* Copy WEP keys into priv wep key fields */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200684 for (i = 0; i < 4; i++) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000685 memcpy(&priv->wep_keys[i], &assoc_req->wep_keys[i],
David Woodhousef70dd452007-12-18 00:18:05 -0500686 sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200687 }
David Woodhouseaa21c002007-12-08 20:04:36 +0000688 priv->wep_tx_keyidx = assoc_req->wep_tx_keyidx;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200689
David Woodhouseaa21c002007-12-08 20:04:36 +0000690 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200691
692out:
Holger Schurig9012b282007-05-25 11:27:16 -0400693 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200694 return ret;
695}
696
Holger Schurig69f90322007-11-23 15:43:44 +0100697static int assoc_helper_secinfo(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200698 struct assoc_request * assoc_req)
699{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200700 int ret = 0;
David Woodhouse4f59abf2007-12-18 00:47:17 -0500701 uint16_t do_wpa;
702 uint16_t rsn = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200703
Holger Schurig9012b282007-05-25 11:27:16 -0400704 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200705
David Woodhouseaa21c002007-12-08 20:04:36 +0000706 memcpy(&priv->secinfo, &assoc_req->secinfo,
Holger Schurig10078322007-11-15 18:05:47 -0500707 sizeof(struct lbs_802_11_security));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200708
Holger Schurigc97329e2008-03-18 11:20:21 +0100709 lbs_set_mac_control(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200710
Dan Williams18c96c342007-06-18 12:01:12 -0400711 /* If RSN is already enabled, don't try to enable it again, since
712 * ENABLE_RSN resets internal state machines and will clobber the
713 * 4-way WPA handshake.
714 */
715
716 /* Get RSN enabled/disabled */
David Woodhouse4f59abf2007-12-18 00:47:17 -0500717 ret = lbs_cmd_802_11_enable_rsn(priv, CMD_ACT_GET, &rsn);
Dan Williams18c96c342007-06-18 12:01:12 -0400718 if (ret) {
David Woodhouse23d36ee2007-12-12 00:14:21 -0500719 lbs_deb_assoc("Failed to get RSN status: %d\n", ret);
Dan Williams18c96c342007-06-18 12:01:12 -0400720 goto out;
721 }
722
723 /* Don't re-enable RSN if it's already enabled */
David Woodhouse4f59abf2007-12-18 00:47:17 -0500724 do_wpa = assoc_req->secinfo.WPAenabled || assoc_req->secinfo.WPA2enabled;
Dan Williams18c96c342007-06-18 12:01:12 -0400725 if (do_wpa == rsn)
726 goto out;
727
728 /* Set RSN enabled/disabled */
David Woodhouse4f59abf2007-12-18 00:47:17 -0500729 ret = lbs_cmd_802_11_enable_rsn(priv, CMD_ACT_SET, &do_wpa);
Dan Williams90a42212007-05-25 23:01:24 -0400730
731out:
Holger Schurig9012b282007-05-25 11:27:16 -0400732 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200733 return ret;
734}
735
736
Holger Schurig69f90322007-11-23 15:43:44 +0100737static int assoc_helper_wpa_keys(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200738 struct assoc_request * assoc_req)
739{
740 int ret = 0;
Dan Williams2bcde512007-10-03 10:37:45 -0400741 unsigned int flags = assoc_req->flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200742
Holger Schurig9012b282007-05-25 11:27:16 -0400743 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200744
Dan Williams2bcde512007-10-03 10:37:45 -0400745 /* Work around older firmware bug where WPA unicast and multicast
746 * keys must be set independently. Seen in SDIO parts with firmware
747 * version 5.0.11p0.
748 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200749
Dan Williams2bcde512007-10-03 10:37:45 -0400750 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
751 clear_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags);
David Woodhouse9e1228d2008-03-03 12:15:39 +0100752 ret = lbs_cmd_802_11_key_material(priv, CMD_ACT_SET, assoc_req);
Dan Williams2bcde512007-10-03 10:37:45 -0400753 assoc_req->flags = flags;
754 }
755
756 if (ret)
757 goto out;
758
759 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
760 clear_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags);
761
David Woodhouse9e1228d2008-03-03 12:15:39 +0100762 ret = lbs_cmd_802_11_key_material(priv, CMD_ACT_SET, assoc_req);
Dan Williams2bcde512007-10-03 10:37:45 -0400763 assoc_req->flags = flags;
764 }
765
766out:
Holger Schurig9012b282007-05-25 11:27:16 -0400767 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200768 return ret;
769}
770
771
Holger Schurig69f90322007-11-23 15:43:44 +0100772static int assoc_helper_wpa_ie(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200773 struct assoc_request * assoc_req)
774{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200775 int ret = 0;
776
Holger Schurig9012b282007-05-25 11:27:16 -0400777 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200778
779 if (assoc_req->secinfo.WPAenabled || assoc_req->secinfo.WPA2enabled) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000780 memcpy(&priv->wpa_ie, &assoc_req->wpa_ie, assoc_req->wpa_ie_len);
781 priv->wpa_ie_len = assoc_req->wpa_ie_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200782 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +0000783 memset(&priv->wpa_ie, 0, MAX_WPA_IE_LEN);
784 priv->wpa_ie_len = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200785 }
786
Holger Schurig9012b282007-05-25 11:27:16 -0400787 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200788 return ret;
789}
790
791
David Woodhouseaa21c002007-12-08 20:04:36 +0000792static int should_deauth_infrastructure(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200793 struct assoc_request * assoc_req)
794{
Holger Schurig0765af42007-10-15 12:55:56 +0200795 int ret = 0;
796
David Woodhouseaa21c002007-12-08 20:04:36 +0000797 if (priv->connect_status != LBS_CONNECTED)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200798 return 0;
799
Holger Schurig52507c22008-01-28 17:25:53 +0100800 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200801 if (test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)) {
Holger Schurig0765af42007-10-15 12:55:56 +0200802 lbs_deb_assoc("Deauthenticating due to new SSID\n");
803 ret = 1;
804 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200805 }
806
807 if (test_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000808 if (priv->secinfo.auth_mode != assoc_req->secinfo.auth_mode) {
Holger Schurig0765af42007-10-15 12:55:56 +0200809 lbs_deb_assoc("Deauthenticating due to new security\n");
810 ret = 1;
811 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200812 }
813 }
814
815 if (test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)) {
Holger Schurig0765af42007-10-15 12:55:56 +0200816 lbs_deb_assoc("Deauthenticating due to new BSSID\n");
817 ret = 1;
818 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200819 }
820
Luis Carlos Cobo Rusfff47f12007-05-30 12:16:13 -0400821 if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags)) {
Holger Schurig0765af42007-10-15 12:55:56 +0200822 lbs_deb_assoc("Deauthenticating due to channel switch\n");
823 ret = 1;
824 goto out;
Luis Carlos Cobo Rusfff47f12007-05-30 12:16:13 -0400825 }
826
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200827 /* FIXME: deal with 'auto' mode somehow */
828 if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) {
Holger Schurig0765af42007-10-15 12:55:56 +0200829 if (assoc_req->mode != IW_MODE_INFRA) {
830 lbs_deb_assoc("Deauthenticating due to leaving "
831 "infra mode\n");
832 ret = 1;
833 goto out;
834 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200835 }
836
Holger Schurig0765af42007-10-15 12:55:56 +0200837out:
838 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
Holger Schurig52507c22008-01-28 17:25:53 +0100839 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200840}
841
842
David Woodhouseaa21c002007-12-08 20:04:36 +0000843static int should_stop_adhoc(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200844 struct assoc_request * assoc_req)
845{
Holger Schurig0765af42007-10-15 12:55:56 +0200846 lbs_deb_enter(LBS_DEB_ASSOC);
847
David Woodhouseaa21c002007-12-08 20:04:36 +0000848 if (priv->connect_status != LBS_CONNECTED)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200849 return 0;
850
David Woodhouseaa21c002007-12-08 20:04:36 +0000851 if (lbs_ssid_cmp(priv->curbssparams.ssid,
852 priv->curbssparams.ssid_len,
Dan Williamsd8efea22007-05-28 23:54:55 -0400853 assoc_req->ssid, assoc_req->ssid_len) != 0)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200854 return 1;
855
856 /* FIXME: deal with 'auto' mode somehow */
857 if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) {
Dan Williams0dc5a292007-05-10 22:58:02 -0400858 if (assoc_req->mode != IW_MODE_ADHOC)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200859 return 1;
860 }
861
Dan Williamsef9a2642007-05-25 16:46:33 -0400862 if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000863 if (assoc_req->channel != priv->curbssparams.channel)
Dan Williamsef9a2642007-05-25 16:46:33 -0400864 return 1;
865 }
866
Holger Schurig0765af42007-10-15 12:55:56 +0200867 lbs_deb_leave(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200868 return 0;
869}
870
871
Holger Schurig245bf202008-04-02 16:27:42 +0200872/**
873 * @brief This function finds the best SSID in the Scan List
874 *
875 * Search the scan table for the best SSID that also matches the current
876 * adapter network preference (infrastructure or adhoc)
877 *
878 * @param priv A pointer to struct lbs_private
879 *
880 * @return index in BSSID list
881 */
882static struct bss_descriptor *lbs_find_best_ssid_in_list(
883 struct lbs_private *priv, uint8_t mode)
884{
885 uint8_t bestrssi = 0;
886 struct bss_descriptor *iter_bss;
887 struct bss_descriptor *best_bss = NULL;
888
889 lbs_deb_enter(LBS_DEB_SCAN);
890
891 mutex_lock(&priv->lock);
892
893 list_for_each_entry(iter_bss, &priv->network_list, list) {
894 switch (mode) {
895 case IW_MODE_INFRA:
896 case IW_MODE_ADHOC:
897 if (!is_network_compatible(priv, iter_bss, mode))
898 break;
899 if (SCAN_RSSI(iter_bss->rssi) <= bestrssi)
900 break;
901 bestrssi = SCAN_RSSI(iter_bss->rssi);
902 best_bss = iter_bss;
903 break;
904 case IW_MODE_AUTO:
905 default:
906 if (SCAN_RSSI(iter_bss->rssi) <= bestrssi)
907 break;
908 bestrssi = SCAN_RSSI(iter_bss->rssi);
909 best_bss = iter_bss;
910 break;
911 }
912 }
913
914 mutex_unlock(&priv->lock);
915 lbs_deb_leave_args(LBS_DEB_SCAN, "best_bss %p", best_bss);
916 return best_bss;
917}
918
919/**
920 * @brief Find the best AP
921 *
922 * Used from association worker.
923 *
924 * @param priv A pointer to struct lbs_private structure
925 * @param pSSID A pointer to AP's ssid
926 *
927 * @return 0--success, otherwise--fail
928 */
929static int lbs_find_best_network_ssid(struct lbs_private *priv,
930 uint8_t *out_ssid, uint8_t *out_ssid_len, uint8_t preferred_mode,
931 uint8_t *out_mode)
932{
933 int ret = -1;
934 struct bss_descriptor *found;
935
936 lbs_deb_enter(LBS_DEB_SCAN);
937
938 priv->scan_ssid_len = 0;
939 lbs_scan_networks(priv, 1);
940 if (priv->surpriseremoved)
941 goto out;
942
943 found = lbs_find_best_ssid_in_list(priv, preferred_mode);
944 if (found && (found->ssid_len > 0)) {
945 memcpy(out_ssid, &found->ssid, IW_ESSID_MAX_SIZE);
946 *out_ssid_len = found->ssid_len;
947 *out_mode = found->mode;
948 ret = 0;
949 }
950
951out:
952 lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);
953 return ret;
954}
955
956
Holger Schurig10078322007-11-15 18:05:47 -0500957void lbs_association_worker(struct work_struct *work)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200958{
Holger Schurig69f90322007-11-23 15:43:44 +0100959 struct lbs_private *priv = container_of(work, struct lbs_private,
960 assoc_work.work);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200961 struct assoc_request * assoc_req = NULL;
962 int ret = 0;
963 int find_any_ssid = 0;
Joe Perches0795af52007-10-03 17:59:30 -0700964 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200965
Holger Schurig9012b282007-05-25 11:27:16 -0400966 lbs_deb_enter(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200967
David Woodhouseaa21c002007-12-08 20:04:36 +0000968 mutex_lock(&priv->lock);
969 assoc_req = priv->pending_assoc_req;
970 priv->pending_assoc_req = NULL;
971 priv->in_progress_assoc_req = assoc_req;
972 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200973
Holger Schurig9012b282007-05-25 11:27:16 -0400974 if (!assoc_req)
975 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200976
Holger Schurig0765af42007-10-15 12:55:56 +0200977 lbs_deb_assoc(
978 "Association Request:\n"
979 " flags: 0x%08lx\n"
980 " SSID: '%s'\n"
981 " chann: %d\n"
982 " band: %d\n"
983 " mode: %d\n"
984 " BSSID: %s\n"
985 " secinfo: %s%s%s\n"
986 " auth_mode: %d\n",
987 assoc_req->flags,
988 escape_essid(assoc_req->ssid, assoc_req->ssid_len),
989 assoc_req->channel, assoc_req->band, assoc_req->mode,
990 print_mac(mac, assoc_req->bssid),
991 assoc_req->secinfo.WPAenabled ? " WPA" : "",
992 assoc_req->secinfo.WPA2enabled ? " WPA2" : "",
993 assoc_req->secinfo.wep_enabled ? " WEP" : "",
994 assoc_req->secinfo.auth_mode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200995
996 /* If 'any' SSID was specified, find an SSID to associate with */
997 if (test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)
Dan Williamsd8efea22007-05-28 23:54:55 -0400998 && !assoc_req->ssid_len)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200999 find_any_ssid = 1;
1000
1001 /* But don't use 'any' SSID if there's a valid locked BSSID to use */
1002 if (test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)) {
Dan Williams3cf209312007-05-25 17:28:30 -04001003 if (compare_ether_addr(assoc_req->bssid, bssid_any)
1004 && compare_ether_addr(assoc_req->bssid, bssid_off))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001005 find_any_ssid = 0;
1006 }
1007
1008 if (find_any_ssid) {
Holger Schurig877cb0d2008-04-02 16:34:51 +02001009 u8 new_mode = assoc_req->mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001010
Holger Schurig10078322007-11-15 18:05:47 -05001011 ret = lbs_find_best_network_ssid(priv, assoc_req->ssid,
Dan Williamsd8efea22007-05-28 23:54:55 -04001012 &assoc_req->ssid_len, assoc_req->mode, &new_mode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001013 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -04001014 lbs_deb_assoc("Could not find best network\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001015 ret = -ENETUNREACH;
1016 goto out;
1017 }
1018
1019 /* Ensure we switch to the mode of the AP */
Dan Williams0dc5a292007-05-10 22:58:02 -04001020 if (assoc_req->mode == IW_MODE_AUTO) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001021 set_bit(ASSOC_FLAG_MODE, &assoc_req->flags);
1022 assoc_req->mode = new_mode;
1023 }
1024 }
1025
1026 /*
1027 * Check if the attributes being changing require deauthentication
1028 * from the currently associated infrastructure access point.
1029 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001030 if (priv->mode == IW_MODE_INFRA) {
1031 if (should_deauth_infrastructure(priv, assoc_req)) {
Dan Williams191bb402008-08-21 17:46:18 -04001032 ret = lbs_cmd_80211_deauthenticate(priv,
1033 priv->curbssparams.bssid,
1034 WLAN_REASON_DEAUTH_LEAVING);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001035 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -04001036 lbs_deb_assoc("Deauthentication due to new "
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001037 "configuration request failed: %d\n",
1038 ret);
1039 }
1040 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001041 } else if (priv->mode == IW_MODE_ADHOC) {
1042 if (should_stop_adhoc(priv, assoc_req)) {
Holger Schurig10078322007-11-15 18:05:47 -05001043 ret = lbs_stop_adhoc_network(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001044 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -04001045 lbs_deb_assoc("Teardown of AdHoc network due to "
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001046 "new configuration request failed: %d\n",
1047 ret);
1048 }
1049
1050 }
1051 }
1052
1053 /* Send the various configuration bits to the firmware */
1054 if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) {
1055 ret = assoc_helper_mode(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02001056 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001057 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001058 }
1059
Dan Williamsef9a2642007-05-25 16:46:33 -04001060 if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags)) {
1061 ret = assoc_helper_channel(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02001062 if (ret)
Dan Williamsef9a2642007-05-25 16:46:33 -04001063 goto out;
Dan Williamsef9a2642007-05-25 16:46:33 -04001064 }
1065
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001066 if ( test_bit(ASSOC_FLAG_WEP_KEYS, &assoc_req->flags)
1067 || test_bit(ASSOC_FLAG_WEP_TX_KEYIDX, &assoc_req->flags)) {
1068 ret = assoc_helper_wep_keys(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02001069 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001070 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001071 }
1072
1073 if (test_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags)) {
1074 ret = assoc_helper_secinfo(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02001075 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001076 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001077 }
1078
1079 if (test_bit(ASSOC_FLAG_WPA_IE, &assoc_req->flags)) {
1080 ret = assoc_helper_wpa_ie(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02001081 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001082 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001083 }
1084
1085 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)
1086 || test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
1087 ret = assoc_helper_wpa_keys(priv, assoc_req);
Holger Schurig0765af42007-10-15 12:55:56 +02001088 if (ret)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001089 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001090 }
1091
1092 /* SSID/BSSID should be the _last_ config option set, because they
1093 * trigger the association attempt.
1094 */
1095 if (test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)
1096 || test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)) {
1097 int success = 1;
1098
1099 ret = assoc_helper_associate(priv, assoc_req);
1100 if (ret) {
Holger Schurig91843462007-11-28 14:05:02 +01001101 lbs_deb_assoc("ASSOC: association unsuccessful: %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001102 ret);
1103 success = 0;
1104 }
1105
David Woodhouseaa21c002007-12-08 20:04:36 +00001106 if (priv->connect_status != LBS_CONNECTED) {
Holger Schurig91843462007-11-28 14:05:02 +01001107 lbs_deb_assoc("ASSOC: association unsuccessful, "
1108 "not connected\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001109 success = 0;
1110 }
1111
1112 if (success) {
Holger Schurig52507c22008-01-28 17:25:53 +01001113 lbs_deb_assoc("associated to %s\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001114 print_mac(mac, priv->curbssparams.bssid));
Holger Schurig10078322007-11-15 18:05:47 -05001115 lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001116 CMD_802_11_RSSI,
1117 0, CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001118 } else {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001119 ret = -1;
1120 }
1121 }
1122
1123out:
1124 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -04001125 lbs_deb_assoc("ASSOC: reconfiguration attempt unsuccessful: %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001126 ret);
1127 }
Dan Williamse76850d2007-05-25 17:09:41 -04001128
David Woodhouseaa21c002007-12-08 20:04:36 +00001129 mutex_lock(&priv->lock);
1130 priv->in_progress_assoc_req = NULL;
1131 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001132 kfree(assoc_req);
Holger Schurig9012b282007-05-25 11:27:16 -04001133
1134done:
1135 lbs_deb_leave(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001136}
1137
1138
1139/*
1140 * Caller MUST hold any necessary locks
1141 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001142struct assoc_request *lbs_get_association_request(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001143{
1144 struct assoc_request * assoc_req;
1145
Holger Schurig0765af42007-10-15 12:55:56 +02001146 lbs_deb_enter(LBS_DEB_ASSOC);
David Woodhouseaa21c002007-12-08 20:04:36 +00001147 if (!priv->pending_assoc_req) {
1148 priv->pending_assoc_req = kzalloc(sizeof(struct assoc_request),
Dan Williamse76850d2007-05-25 17:09:41 -04001149 GFP_KERNEL);
David Woodhouseaa21c002007-12-08 20:04:36 +00001150 if (!priv->pending_assoc_req) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001151 lbs_pr_info("Not enough memory to allocate association"
1152 " request!\n");
1153 return NULL;
1154 }
1155 }
1156
1157 /* Copy current configuration attributes to the association request,
1158 * but don't overwrite any that are already set.
1159 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001160 assoc_req = priv->pending_assoc_req;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001161 if (!test_bit(ASSOC_FLAG_SSID, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001162 memcpy(&assoc_req->ssid, &priv->curbssparams.ssid,
Dan Williamsd8efea22007-05-28 23:54:55 -04001163 IW_ESSID_MAX_SIZE);
David Woodhouseaa21c002007-12-08 20:04:36 +00001164 assoc_req->ssid_len = priv->curbssparams.ssid_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001165 }
1166
1167 if (!test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags))
David Woodhouseaa21c002007-12-08 20:04:36 +00001168 assoc_req->channel = priv->curbssparams.channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001169
Dan Williamse76850d2007-05-25 17:09:41 -04001170 if (!test_bit(ASSOC_FLAG_BAND, &assoc_req->flags))
David Woodhouseaa21c002007-12-08 20:04:36 +00001171 assoc_req->band = priv->curbssparams.band;
Dan Williamse76850d2007-05-25 17:09:41 -04001172
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001173 if (!test_bit(ASSOC_FLAG_MODE, &assoc_req->flags))
David Woodhouseaa21c002007-12-08 20:04:36 +00001174 assoc_req->mode = priv->mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001175
1176 if (!test_bit(ASSOC_FLAG_BSSID, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001177 memcpy(&assoc_req->bssid, priv->curbssparams.bssid,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001178 ETH_ALEN);
1179 }
1180
1181 if (!test_bit(ASSOC_FLAG_WEP_KEYS, &assoc_req->flags)) {
1182 int i;
1183 for (i = 0; i < 4; i++) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001184 memcpy(&assoc_req->wep_keys[i], &priv->wep_keys[i],
Dan Williams1443b652007-08-02 10:45:55 -04001185 sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001186 }
1187 }
1188
1189 if (!test_bit(ASSOC_FLAG_WEP_TX_KEYIDX, &assoc_req->flags))
David Woodhouseaa21c002007-12-08 20:04:36 +00001190 assoc_req->wep_tx_keyidx = priv->wep_tx_keyidx;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001191
1192 if (!test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001193 memcpy(&assoc_req->wpa_mcast_key, &priv->wpa_mcast_key,
Dan Williams1443b652007-08-02 10:45:55 -04001194 sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001195 }
1196
1197 if (!test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001198 memcpy(&assoc_req->wpa_unicast_key, &priv->wpa_unicast_key,
Dan Williams1443b652007-08-02 10:45:55 -04001199 sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001200 }
1201
1202 if (!test_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001203 memcpy(&assoc_req->secinfo, &priv->secinfo,
Holger Schurig10078322007-11-15 18:05:47 -05001204 sizeof(struct lbs_802_11_security));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001205 }
1206
1207 if (!test_bit(ASSOC_FLAG_WPA_IE, &assoc_req->flags)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001208 memcpy(&assoc_req->wpa_ie, &priv->wpa_ie,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001209 MAX_WPA_IE_LEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001210 assoc_req->wpa_ie_len = priv->wpa_ie_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001211 }
1212
Holger Schurig0765af42007-10-15 12:55:56 +02001213 lbs_deb_leave(LBS_DEB_ASSOC);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001214 return assoc_req;
1215}
Holger Schurig697900a2008-04-02 16:27:10 +02001216
1217
1218/**
1219 * @brief This function finds common rates between rate1 and card rates.
1220 *
1221 * It will fill common rates in rate1 as output if found.
1222 *
1223 * NOTE: Setting the MSB of the basic rates need to be taken
1224 * care, either before or after calling this function
1225 *
1226 * @param priv A pointer to struct lbs_private structure
1227 * @param rate1 the buffer which keeps input and output
1228 * @param rate1_size the size of rate1 buffer; new size of buffer on return
1229 *
1230 * @return 0 or -1
1231 */
1232static int get_common_rates(struct lbs_private *priv,
1233 u8 *rates,
1234 u16 *rates_size)
1235{
1236 u8 *card_rates = lbs_bg_rates;
1237 size_t num_card_rates = sizeof(lbs_bg_rates);
1238 int ret = 0, i, j;
1239 u8 tmp[30];
1240 size_t tmp_size = 0;
1241
1242 /* For each rate in card_rates that exists in rate1, copy to tmp */
1243 for (i = 0; card_rates[i] && (i < num_card_rates); i++) {
1244 for (j = 0; rates[j] && (j < *rates_size); j++) {
1245 if (rates[j] == card_rates[i])
1246 tmp[tmp_size++] = card_rates[i];
1247 }
1248 }
1249
1250 lbs_deb_hex(LBS_DEB_JOIN, "AP rates ", rates, *rates_size);
1251 lbs_deb_hex(LBS_DEB_JOIN, "card rates ", card_rates, num_card_rates);
1252 lbs_deb_hex(LBS_DEB_JOIN, "common rates", tmp, tmp_size);
1253 lbs_deb_join("TX data rate 0x%02x\n", priv->cur_rate);
1254
Javier Cardona85319f92008-05-24 10:59:49 +01001255 if (!priv->enablehwauto) {
Holger Schurig697900a2008-04-02 16:27:10 +02001256 for (i = 0; i < tmp_size; i++) {
1257 if (tmp[i] == priv->cur_rate)
1258 goto done;
1259 }
1260 lbs_pr_alert("Previously set fixed data rate %#x isn't "
1261 "compatible with the network.\n", priv->cur_rate);
1262 ret = -1;
1263 goto done;
1264 }
1265 ret = 0;
1266
1267done:
1268 memset(rates, 0, *rates_size);
1269 *rates_size = min_t(int, tmp_size, *rates_size);
1270 memcpy(rates, tmp, *rates_size);
1271 return ret;
1272}
1273
1274
1275/**
1276 * @brief Sets the MSB on basic rates as the firmware requires
1277 *
1278 * Scan through an array and set the MSB for basic data rates.
1279 *
1280 * @param rates buffer of data rates
1281 * @param len size of buffer
1282 */
1283static void lbs_set_basic_rate_flags(u8 *rates, size_t len)
1284{
1285 int i;
1286
1287 for (i = 0; i < len; i++) {
1288 if (rates[i] == 0x02 || rates[i] == 0x04 ||
1289 rates[i] == 0x0b || rates[i] == 0x16)
1290 rates[i] |= 0x80;
1291 }
1292}
1293
1294/**
Holger Schurig697900a2008-04-02 16:27:10 +02001295 * @brief This function prepares command of authenticate.
1296 *
1297 * @param priv A pointer to struct lbs_private structure
1298 * @param cmd A pointer to cmd_ds_command structure
1299 * @param pdata_buf Void cast of pointer to a BSSID to authenticate with
1300 *
1301 * @return 0 or -1
1302 */
1303int lbs_cmd_80211_authenticate(struct lbs_private *priv,
1304 struct cmd_ds_command *cmd,
1305 void *pdata_buf)
1306{
1307 struct cmd_ds_802_11_authenticate *pauthenticate = &cmd->params.auth;
1308 int ret = -1;
1309 u8 *bssid = pdata_buf;
1310 DECLARE_MAC_BUF(mac);
1311
1312 lbs_deb_enter(LBS_DEB_JOIN);
1313
1314 cmd->command = cpu_to_le16(CMD_802_11_AUTHENTICATE);
1315 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_authenticate)
1316 + S_DS_GEN);
1317
1318 /* translate auth mode to 802.11 defined wire value */
1319 switch (priv->secinfo.auth_mode) {
1320 case IW_AUTH_ALG_OPEN_SYSTEM:
1321 pauthenticate->authtype = 0x00;
1322 break;
1323 case IW_AUTH_ALG_SHARED_KEY:
1324 pauthenticate->authtype = 0x01;
1325 break;
1326 case IW_AUTH_ALG_LEAP:
1327 pauthenticate->authtype = 0x80;
1328 break;
1329 default:
1330 lbs_deb_join("AUTH_CMD: invalid auth alg 0x%X\n",
1331 priv->secinfo.auth_mode);
1332 goto out;
1333 }
1334
1335 memcpy(pauthenticate->macaddr, bssid, ETH_ALEN);
1336
1337 lbs_deb_join("AUTH_CMD: BSSID %s, auth 0x%x\n",
1338 print_mac(mac, bssid), pauthenticate->authtype);
1339 ret = 0;
1340
1341out:
1342 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
1343 return ret;
1344}
1345
Dan Williams191bb402008-08-21 17:46:18 -04001346/**
1347 * @brief Deauthenticate from a specific BSS
1348 *
1349 * @param priv A pointer to struct lbs_private structure
1350 * @param bssid The specific BSS to deauthenticate from
1351 * @param reason The 802.11 sec. 7.3.1.7 Reason Code for deauthenticating
1352 *
1353 * @return 0 on success, error on failure
1354 */
1355int lbs_cmd_80211_deauthenticate(struct lbs_private *priv, u8 bssid[ETH_ALEN],
1356 u16 reason)
Holger Schurig697900a2008-04-02 16:27:10 +02001357{
Dan Williams191bb402008-08-21 17:46:18 -04001358 struct cmd_ds_802_11_deauthenticate cmd;
1359 int ret;
Holger Schurig697900a2008-04-02 16:27:10 +02001360
1361 lbs_deb_enter(LBS_DEB_JOIN);
1362
Dan Williams191bb402008-08-21 17:46:18 -04001363 memset(&cmd, 0, sizeof(cmd));
1364 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1365 memcpy(cmd.macaddr, &bssid[0], ETH_ALEN);
1366 cmd.reasoncode = cpu_to_le16(reason);
Holger Schurig697900a2008-04-02 16:27:10 +02001367
Dan Williams191bb402008-08-21 17:46:18 -04001368 ret = lbs_cmd_with_response(priv, CMD_802_11_DEAUTHENTICATE, &cmd);
Holger Schurig697900a2008-04-02 16:27:10 +02001369
Dan Williams191bb402008-08-21 17:46:18 -04001370 /* Clean up everything even if there was an error; can't assume that
1371 * we're still authenticated to the AP after trying to deauth.
1372 */
1373 lbs_mac_event_disconnected(priv);
Holger Schurig697900a2008-04-02 16:27:10 +02001374
1375 lbs_deb_leave(LBS_DEB_JOIN);
Dan Williams191bb402008-08-21 17:46:18 -04001376 return ret;
Holger Schurig697900a2008-04-02 16:27:10 +02001377}
1378
1379int lbs_cmd_80211_associate(struct lbs_private *priv,
1380 struct cmd_ds_command *cmd, void *pdata_buf)
1381{
1382 struct cmd_ds_802_11_associate *passo = &cmd->params.associate;
1383 int ret = 0;
1384 struct assoc_request *assoc_req = pdata_buf;
1385 struct bss_descriptor *bss = &assoc_req->bss;
1386 u8 *pos;
1387 u16 tmpcap, tmplen;
1388 struct mrvlietypes_ssidparamset *ssid;
1389 struct mrvlietypes_phyparamset *phy;
1390 struct mrvlietypes_ssparamset *ss;
1391 struct mrvlietypes_ratesparamset *rates;
1392 struct mrvlietypes_rsnparamset *rsn;
1393
1394 lbs_deb_enter(LBS_DEB_ASSOC);
1395
1396 pos = (u8 *) passo;
1397
1398 if (!priv) {
1399 ret = -1;
1400 goto done;
1401 }
1402
1403 cmd->command = cpu_to_le16(CMD_802_11_ASSOCIATE);
1404
1405 memcpy(passo->peerstaaddr, bss->bssid, sizeof(passo->peerstaaddr));
1406 pos += sizeof(passo->peerstaaddr);
1407
1408 /* set the listen interval */
1409 passo->listeninterval = cpu_to_le16(MRVDRV_DEFAULT_LISTEN_INTERVAL);
1410
1411 pos += sizeof(passo->capability);
1412 pos += sizeof(passo->listeninterval);
1413 pos += sizeof(passo->bcnperiod);
1414 pos += sizeof(passo->dtimperiod);
1415
1416 ssid = (struct mrvlietypes_ssidparamset *) pos;
1417 ssid->header.type = cpu_to_le16(TLV_TYPE_SSID);
1418 tmplen = bss->ssid_len;
1419 ssid->header.len = cpu_to_le16(tmplen);
1420 memcpy(ssid->ssid, bss->ssid, tmplen);
1421 pos += sizeof(ssid->header) + tmplen;
1422
1423 phy = (struct mrvlietypes_phyparamset *) pos;
1424 phy->header.type = cpu_to_le16(TLV_TYPE_PHY_DS);
1425 tmplen = sizeof(phy->fh_ds.dsparamset);
1426 phy->header.len = cpu_to_le16(tmplen);
1427 memcpy(&phy->fh_ds.dsparamset,
1428 &bss->phyparamset.dsparamset.currentchan,
1429 tmplen);
1430 pos += sizeof(phy->header) + tmplen;
1431
1432 ss = (struct mrvlietypes_ssparamset *) pos;
1433 ss->header.type = cpu_to_le16(TLV_TYPE_CF);
1434 tmplen = sizeof(ss->cf_ibss.cfparamset);
1435 ss->header.len = cpu_to_le16(tmplen);
1436 pos += sizeof(ss->header) + tmplen;
1437
1438 rates = (struct mrvlietypes_ratesparamset *) pos;
1439 rates->header.type = cpu_to_le16(TLV_TYPE_RATES);
1440 memcpy(&rates->rates, &bss->rates, MAX_RATES);
1441 tmplen = MAX_RATES;
1442 if (get_common_rates(priv, rates->rates, &tmplen)) {
1443 ret = -1;
1444 goto done;
1445 }
1446 pos += sizeof(rates->header) + tmplen;
1447 rates->header.len = cpu_to_le16(tmplen);
1448 lbs_deb_assoc("ASSOC_CMD: num rates %u\n", tmplen);
1449
1450 /* Copy the infra. association rates into Current BSS state structure */
1451 memset(&priv->curbssparams.rates, 0, sizeof(priv->curbssparams.rates));
1452 memcpy(&priv->curbssparams.rates, &rates->rates, tmplen);
1453
1454 /* Set MSB on basic rates as the firmware requires, but _after_
1455 * copying to current bss rates.
1456 */
1457 lbs_set_basic_rate_flags(rates->rates, tmplen);
1458
1459 if (assoc_req->secinfo.WPAenabled || assoc_req->secinfo.WPA2enabled) {
1460 rsn = (struct mrvlietypes_rsnparamset *) pos;
1461 /* WPA_IE or WPA2_IE */
1462 rsn->header.type = cpu_to_le16((u16) assoc_req->wpa_ie[0]);
1463 tmplen = (u16) assoc_req->wpa_ie[1];
1464 rsn->header.len = cpu_to_le16(tmplen);
1465 memcpy(rsn->rsnie, &assoc_req->wpa_ie[2], tmplen);
1466 lbs_deb_hex(LBS_DEB_JOIN, "ASSOC_CMD: RSN IE", (u8 *) rsn,
1467 sizeof(rsn->header) + tmplen);
1468 pos += sizeof(rsn->header) + tmplen;
1469 }
1470
1471 /* update curbssparams */
1472 priv->curbssparams.channel = bss->phyparamset.dsparamset.currentchan;
1473
1474 if (lbs_parse_dnld_countryinfo_11d(priv, bss)) {
1475 ret = -1;
1476 goto done;
1477 }
1478
1479 cmd->size = cpu_to_le16((u16) (pos - (u8 *) passo) + S_DS_GEN);
1480
1481 /* set the capability info */
1482 tmpcap = (bss->capability & CAPINFO_MASK);
1483 if (bss->mode == IW_MODE_INFRA)
1484 tmpcap |= WLAN_CAPABILITY_ESS;
1485 passo->capability = cpu_to_le16(tmpcap);
1486 lbs_deb_assoc("ASSOC_CMD: capability 0x%04x\n", tmpcap);
1487
1488done:
1489 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
1490 return ret;
1491}
1492
1493int lbs_cmd_80211_ad_hoc_start(struct lbs_private *priv,
1494 struct cmd_ds_command *cmd, void *pdata_buf)
1495{
1496 struct cmd_ds_802_11_ad_hoc_start *adhs = &cmd->params.ads;
1497 int ret = 0;
1498 int cmdappendsize = 0;
1499 struct assoc_request *assoc_req = pdata_buf;
1500 u16 tmpcap = 0;
1501 size_t ratesize = 0;
1502
1503 lbs_deb_enter(LBS_DEB_JOIN);
1504
1505 if (!priv) {
1506 ret = -1;
1507 goto done;
1508 }
1509
1510 cmd->command = cpu_to_le16(CMD_802_11_AD_HOC_START);
1511
1512 /*
1513 * Fill in the parameters for 2 data structures:
1514 * 1. cmd_ds_802_11_ad_hoc_start command
1515 * 2. priv->scantable[i]
1516 *
1517 * Driver will fill up SSID, bsstype,IBSS param, Physical Param,
1518 * probe delay, and cap info.
1519 *
1520 * Firmware will fill up beacon period, DTIM, Basic rates
1521 * and operational rates.
1522 */
1523
1524 memset(adhs->ssid, 0, IW_ESSID_MAX_SIZE);
1525 memcpy(adhs->ssid, assoc_req->ssid, assoc_req->ssid_len);
1526
1527 lbs_deb_join("ADHOC_S_CMD: SSID '%s', ssid length %u\n",
1528 escape_essid(assoc_req->ssid, assoc_req->ssid_len),
1529 assoc_req->ssid_len);
1530
1531 /* set the BSS type */
1532 adhs->bsstype = CMD_BSS_TYPE_IBSS;
1533 priv->mode = IW_MODE_ADHOC;
1534 if (priv->beacon_period == 0)
1535 priv->beacon_period = MRVDRV_BEACON_INTERVAL;
1536 adhs->beaconperiod = cpu_to_le16(priv->beacon_period);
1537
1538 /* set Physical param set */
1539#define DS_PARA_IE_ID 3
1540#define DS_PARA_IE_LEN 1
1541
1542 adhs->phyparamset.dsparamset.elementid = DS_PARA_IE_ID;
1543 adhs->phyparamset.dsparamset.len = DS_PARA_IE_LEN;
1544
1545 WARN_ON(!assoc_req->channel);
1546
1547 lbs_deb_join("ADHOC_S_CMD: Creating ADHOC on channel %d\n",
1548 assoc_req->channel);
1549
1550 adhs->phyparamset.dsparamset.currentchan = assoc_req->channel;
1551
1552 /* set IBSS param set */
1553#define IBSS_PARA_IE_ID 6
1554#define IBSS_PARA_IE_LEN 2
1555
1556 adhs->ssparamset.ibssparamset.elementid = IBSS_PARA_IE_ID;
1557 adhs->ssparamset.ibssparamset.len = IBSS_PARA_IE_LEN;
1558 adhs->ssparamset.ibssparamset.atimwindow = 0;
1559
1560 /* set capability info */
1561 tmpcap = WLAN_CAPABILITY_IBSS;
1562 if (assoc_req->secinfo.wep_enabled) {
1563 lbs_deb_join("ADHOC_S_CMD: WEP enabled, "
1564 "setting privacy on\n");
1565 tmpcap |= WLAN_CAPABILITY_PRIVACY;
1566 } else {
1567 lbs_deb_join("ADHOC_S_CMD: WEP disabled, "
1568 "setting privacy off\n");
1569 }
1570 adhs->capability = cpu_to_le16(tmpcap);
1571
1572 /* probedelay */
1573 adhs->probedelay = cpu_to_le16(CMD_SCAN_PROBE_DELAY_TIME);
1574
1575 memset(adhs->rates, 0, sizeof(adhs->rates));
1576 ratesize = min(sizeof(adhs->rates), sizeof(lbs_bg_rates));
1577 memcpy(adhs->rates, lbs_bg_rates, ratesize);
1578
1579 /* Copy the ad-hoc creating rates into Current BSS state structure */
1580 memset(&priv->curbssparams.rates, 0, sizeof(priv->curbssparams.rates));
1581 memcpy(&priv->curbssparams.rates, &adhs->rates, ratesize);
1582
1583 /* Set MSB on basic rates as the firmware requires, but _after_
1584 * copying to current bss rates.
1585 */
1586 lbs_set_basic_rate_flags(adhs->rates, ratesize);
1587
1588 lbs_deb_join("ADHOC_S_CMD: rates=%02x %02x %02x %02x \n",
1589 adhs->rates[0], adhs->rates[1], adhs->rates[2], adhs->rates[3]);
1590
1591 lbs_deb_join("ADHOC_S_CMD: AD HOC Start command is ready\n");
1592
1593 if (lbs_create_dnld_countryinfo_11d(priv)) {
1594 lbs_deb_join("ADHOC_S_CMD: dnld_countryinfo_11d failed\n");
1595 ret = -1;
1596 goto done;
1597 }
1598
1599 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ad_hoc_start) +
1600 S_DS_GEN + cmdappendsize);
1601
1602 ret = 0;
1603done:
1604 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
1605 return ret;
1606}
1607
1608int lbs_cmd_80211_ad_hoc_stop(struct cmd_ds_command *cmd)
1609{
1610 cmd->command = cpu_to_le16(CMD_802_11_AD_HOC_STOP);
1611 cmd->size = cpu_to_le16(S_DS_GEN);
1612
1613 return 0;
1614}
1615
1616int lbs_cmd_80211_ad_hoc_join(struct lbs_private *priv,
1617 struct cmd_ds_command *cmd, void *pdata_buf)
1618{
1619 struct cmd_ds_802_11_ad_hoc_join *join_cmd = &cmd->params.adj;
1620 struct assoc_request *assoc_req = pdata_buf;
1621 struct bss_descriptor *bss = &assoc_req->bss;
1622 int cmdappendsize = 0;
1623 int ret = 0;
1624 u16 ratesize = 0;
1625 DECLARE_MAC_BUF(mac);
1626
1627 lbs_deb_enter(LBS_DEB_JOIN);
1628
1629 cmd->command = cpu_to_le16(CMD_802_11_AD_HOC_JOIN);
1630
1631 join_cmd->bss.type = CMD_BSS_TYPE_IBSS;
1632 join_cmd->bss.beaconperiod = cpu_to_le16(bss->beaconperiod);
1633
1634 memcpy(&join_cmd->bss.bssid, &bss->bssid, ETH_ALEN);
1635 memcpy(&join_cmd->bss.ssid, &bss->ssid, bss->ssid_len);
1636
1637 memcpy(&join_cmd->bss.phyparamset, &bss->phyparamset,
1638 sizeof(union ieeetypes_phyparamset));
1639
1640 memcpy(&join_cmd->bss.ssparamset, &bss->ssparamset,
1641 sizeof(union IEEEtypes_ssparamset));
1642
1643 join_cmd->bss.capability = cpu_to_le16(bss->capability & CAPINFO_MASK);
1644 lbs_deb_join("ADHOC_J_CMD: tmpcap=%4X CAPINFO_MASK=%4X\n",
1645 bss->capability, CAPINFO_MASK);
1646
1647 /* information on BSSID descriptor passed to FW */
1648 lbs_deb_join(
1649 "ADHOC_J_CMD: BSSID = %s, SSID = '%s'\n",
1650 print_mac(mac, join_cmd->bss.bssid),
1651 join_cmd->bss.ssid);
1652
1653 /* failtimeout */
1654 join_cmd->failtimeout = cpu_to_le16(MRVDRV_ASSOCIATION_TIME_OUT);
1655
1656 /* probedelay */
1657 join_cmd->probedelay = cpu_to_le16(CMD_SCAN_PROBE_DELAY_TIME);
1658
1659 priv->curbssparams.channel = bss->channel;
1660
1661 /* Copy Data rates from the rates recorded in scan response */
1662 memset(join_cmd->bss.rates, 0, sizeof(join_cmd->bss.rates));
1663 ratesize = min_t(u16, sizeof(join_cmd->bss.rates), MAX_RATES);
1664 memcpy(join_cmd->bss.rates, bss->rates, ratesize);
1665 if (get_common_rates(priv, join_cmd->bss.rates, &ratesize)) {
1666 lbs_deb_join("ADHOC_J_CMD: get_common_rates returns error.\n");
1667 ret = -1;
1668 goto done;
1669 }
1670
1671 /* Copy the ad-hoc creating rates into Current BSS state structure */
1672 memset(&priv->curbssparams.rates, 0, sizeof(priv->curbssparams.rates));
1673 memcpy(&priv->curbssparams.rates, join_cmd->bss.rates, ratesize);
1674
1675 /* Set MSB on basic rates as the firmware requires, but _after_
1676 * copying to current bss rates.
1677 */
1678 lbs_set_basic_rate_flags(join_cmd->bss.rates, ratesize);
1679
1680 join_cmd->bss.ssparamset.ibssparamset.atimwindow =
1681 cpu_to_le16(bss->atimwindow);
1682
1683 if (assoc_req->secinfo.wep_enabled) {
1684 u16 tmp = le16_to_cpu(join_cmd->bss.capability);
1685 tmp |= WLAN_CAPABILITY_PRIVACY;
1686 join_cmd->bss.capability = cpu_to_le16(tmp);
1687 }
1688
1689 if (priv->psmode == LBS802_11POWERMODEMAX_PSP) {
1690 /* wake up first */
1691 __le32 Localpsmode;
1692
1693 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
1694 ret = lbs_prepare_and_send_command(priv,
1695 CMD_802_11_PS_MODE,
1696 CMD_ACT_SET,
1697 0, 0, &Localpsmode);
1698
1699 if (ret) {
1700 ret = -1;
1701 goto done;
1702 }
1703 }
1704
1705 if (lbs_parse_dnld_countryinfo_11d(priv, bss)) {
1706 ret = -1;
1707 goto done;
1708 }
1709
1710 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ad_hoc_join) +
1711 S_DS_GEN + cmdappendsize);
1712
1713done:
1714 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
1715 return ret;
1716}
1717
1718int lbs_ret_80211_associate(struct lbs_private *priv,
1719 struct cmd_ds_command *resp)
1720{
1721 int ret = 0;
1722 union iwreq_data wrqu;
1723 struct ieeetypes_assocrsp *passocrsp;
1724 struct bss_descriptor *bss;
1725 u16 status_code;
1726
1727 lbs_deb_enter(LBS_DEB_ASSOC);
1728
1729 if (!priv->in_progress_assoc_req) {
1730 lbs_deb_assoc("ASSOC_RESP: no in-progress assoc request\n");
1731 ret = -1;
1732 goto done;
1733 }
1734 bss = &priv->in_progress_assoc_req->bss;
1735
1736 passocrsp = (struct ieeetypes_assocrsp *) &resp->params;
1737
1738 /*
1739 * Older FW versions map the IEEE 802.11 Status Code in the association
1740 * response to the following values returned in passocrsp->statuscode:
1741 *
1742 * IEEE Status Code Marvell Status Code
1743 * 0 -> 0x0000 ASSOC_RESULT_SUCCESS
1744 * 13 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
1745 * 14 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
1746 * 15 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
1747 * 16 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
1748 * others -> 0x0003 ASSOC_RESULT_REFUSED
1749 *
1750 * Other response codes:
1751 * 0x0001 -> ASSOC_RESULT_INVALID_PARAMETERS (unused)
1752 * 0x0002 -> ASSOC_RESULT_TIMEOUT (internal timer expired waiting for
1753 * association response from the AP)
1754 */
1755
1756 status_code = le16_to_cpu(passocrsp->statuscode);
1757 switch (status_code) {
1758 case 0x00:
1759 break;
1760 case 0x01:
1761 lbs_deb_assoc("ASSOC_RESP: invalid parameters\n");
1762 break;
1763 case 0x02:
1764 lbs_deb_assoc("ASSOC_RESP: internal timer "
1765 "expired while waiting for the AP\n");
1766 break;
1767 case 0x03:
1768 lbs_deb_assoc("ASSOC_RESP: association "
1769 "refused by AP\n");
1770 break;
1771 case 0x04:
1772 lbs_deb_assoc("ASSOC_RESP: authentication "
1773 "refused by AP\n");
1774 break;
1775 default:
1776 lbs_deb_assoc("ASSOC_RESP: failure reason 0x%02x "
1777 " unknown\n", status_code);
1778 break;
1779 }
1780
1781 if (status_code) {
1782 lbs_mac_event_disconnected(priv);
1783 ret = -1;
1784 goto done;
1785 }
1786
1787 lbs_deb_hex(LBS_DEB_ASSOC, "ASSOC_RESP", (void *)&resp->params,
1788 le16_to_cpu(resp->size) - S_DS_GEN);
1789
1790 /* Send a Media Connected event, according to the Spec */
1791 priv->connect_status = LBS_CONNECTED;
1792
1793 /* Update current SSID and BSSID */
1794 memcpy(&priv->curbssparams.ssid, &bss->ssid, IW_ESSID_MAX_SIZE);
1795 priv->curbssparams.ssid_len = bss->ssid_len;
1796 memcpy(priv->curbssparams.bssid, bss->bssid, ETH_ALEN);
1797
1798 priv->SNR[TYPE_RXPD][TYPE_AVG] = 0;
1799 priv->NF[TYPE_RXPD][TYPE_AVG] = 0;
1800
1801 memset(priv->rawSNR, 0x00, sizeof(priv->rawSNR));
1802 memset(priv->rawNF, 0x00, sizeof(priv->rawNF));
1803 priv->nextSNRNF = 0;
1804 priv->numSNRNF = 0;
1805
1806 netif_carrier_on(priv->dev);
1807 if (!priv->tx_pending_len)
1808 netif_wake_queue(priv->dev);
1809
1810 memcpy(wrqu.ap_addr.sa_data, priv->curbssparams.bssid, ETH_ALEN);
1811 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1812 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
1813
1814done:
1815 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
1816 return ret;
1817}
1818
Holger Schurig697900a2008-04-02 16:27:10 +02001819int lbs_ret_80211_ad_hoc_start(struct lbs_private *priv,
1820 struct cmd_ds_command *resp)
1821{
1822 int ret = 0;
1823 u16 command = le16_to_cpu(resp->command);
1824 u16 result = le16_to_cpu(resp->result);
1825 struct cmd_ds_802_11_ad_hoc_result *padhocresult;
1826 union iwreq_data wrqu;
1827 struct bss_descriptor *bss;
1828 DECLARE_MAC_BUF(mac);
1829
1830 lbs_deb_enter(LBS_DEB_JOIN);
1831
1832 padhocresult = &resp->params.result;
1833
1834 lbs_deb_join("ADHOC_RESP: size = %d\n", le16_to_cpu(resp->size));
1835 lbs_deb_join("ADHOC_RESP: command = %x\n", command);
1836 lbs_deb_join("ADHOC_RESP: result = %x\n", result);
1837
1838 if (!priv->in_progress_assoc_req) {
1839 lbs_deb_join("ADHOC_RESP: no in-progress association "
1840 "request\n");
1841 ret = -1;
1842 goto done;
1843 }
1844 bss = &priv->in_progress_assoc_req->bss;
1845
1846 /*
1847 * Join result code 0 --> SUCCESS
1848 */
1849 if (result) {
1850 lbs_deb_join("ADHOC_RESP: failed\n");
1851 if (priv->connect_status == LBS_CONNECTED)
1852 lbs_mac_event_disconnected(priv);
1853 ret = -1;
1854 goto done;
1855 }
1856
1857 /*
1858 * Now the join cmd should be successful
1859 * If BSSID has changed use SSID to compare instead of BSSID
1860 */
1861 lbs_deb_join("ADHOC_RESP: associated to '%s'\n",
1862 escape_essid(bss->ssid, bss->ssid_len));
1863
1864 /* Send a Media Connected event, according to the Spec */
1865 priv->connect_status = LBS_CONNECTED;
1866
1867 if (command == CMD_RET(CMD_802_11_AD_HOC_START)) {
1868 /* Update the created network descriptor with the new BSSID */
1869 memcpy(bss->bssid, padhocresult->bssid, ETH_ALEN);
1870 }
1871
1872 /* Set the BSSID from the joined/started descriptor */
1873 memcpy(&priv->curbssparams.bssid, bss->bssid, ETH_ALEN);
1874
1875 /* Set the new SSID to current SSID */
1876 memcpy(&priv->curbssparams.ssid, &bss->ssid, IW_ESSID_MAX_SIZE);
1877 priv->curbssparams.ssid_len = bss->ssid_len;
1878
1879 netif_carrier_on(priv->dev);
1880 if (!priv->tx_pending_len)
1881 netif_wake_queue(priv->dev);
1882
1883 memset(&wrqu, 0, sizeof(wrqu));
1884 memcpy(wrqu.ap_addr.sa_data, priv->curbssparams.bssid, ETH_ALEN);
1885 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1886 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
1887
1888 lbs_deb_join("ADHOC_RESP: - Joined/Started Ad Hoc\n");
1889 lbs_deb_join("ADHOC_RESP: channel = %d\n", priv->curbssparams.channel);
1890 lbs_deb_join("ADHOC_RESP: BSSID = %s\n",
1891 print_mac(mac, padhocresult->bssid));
1892
1893done:
1894 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
1895 return ret;
1896}
1897
1898int lbs_ret_80211_ad_hoc_stop(struct lbs_private *priv)
1899{
1900 lbs_deb_enter(LBS_DEB_JOIN);
1901
1902 lbs_mac_event_disconnected(priv);
1903
1904 lbs_deb_leave(LBS_DEB_JOIN);
1905 return 0;
1906}