blob: 65777b40d57b1dbc2137a3d8c857b347b2330a50 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * Functions implementing wlan infrastructure and adhoc join routines,
3 * IOCTL handlers as well as command preperation and response routines
4 * for sending adhoc start, adhoc join, and association commands
5 * to the firmware.
6 */
7#include <linux/netdevice.h>
8#include <linux/if_arp.h>
9#include <linux/wireless.h>
Dan Williamse76850d2007-05-25 17:09:41 -040010#include <linux/etherdevice.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020011
12#include <net/iw_handler.h>
13
14#include "host.h"
15#include "decl.h"
16#include "join.h"
17#include "dev.h"
Dan Williamse76850d2007-05-25 17:09:41 -040018#include "assoc.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020019
Dan Williams889c05b2007-05-10 22:57:23 -040020#define AD_HOC_CAP_PRIVACY_ON 1
21
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020022/**
23 * @brief This function finds out the common rates between rate1 and rate2.
24 *
25 * It will fill common rates in rate1 as output if found.
26 *
27 * NOTE: Setting the MSB of the basic rates need to be taken
28 * care, either before or after calling this function
29 *
30 * @param adapter A pointer to wlan_adapter structure
31 * @param rate1 the buffer which keeps input and output
32 * @param rate1_size the size of rate1 buffer
33 * @param rate2 the buffer which keeps rate2
34 * @param rate2_size the size of rate2 buffer.
35 *
36 * @return 0 or -1
37 */
38static int get_common_rates(wlan_adapter * adapter, u8 * rate1,
39 int rate1_size, u8 * rate2, int rate2_size)
40{
41 u8 *ptr = rate1;
42 int ret = 0;
43 u8 tmp[30];
44 int i;
45
46 memset(&tmp, 0, sizeof(tmp));
47 memcpy(&tmp, rate1, min_t(size_t, rate1_size, sizeof(tmp)));
48 memset(rate1, 0, rate1_size);
49
50 /* Mask the top bit of the original values */
51 for (i = 0; tmp[i] && i < sizeof(tmp); i++)
52 tmp[i] &= 0x7F;
53
54 for (i = 0; rate2[i] && i < rate2_size; i++) {
55 /* Check for Card Rate in tmp, excluding the top bit */
56 if (strchr(tmp, rate2[i] & 0x7F)) {
57 /* values match, so copy the Card Rate to rate1 */
58 *rate1++ = rate2[i];
59 }
60 }
61
62 lbs_dbg_hex("rate1 (AP) rates:", tmp, sizeof(tmp));
63 lbs_dbg_hex("rate2 (Card) rates:", rate2, rate2_size);
64 lbs_dbg_hex("Common rates:", ptr, rate1_size);
Holger Schurig9012b282007-05-25 11:27:16 -040065 lbs_deb_join("Tx datarate is set to 0x%X\n", adapter->datarate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020066
67 if (!adapter->is_datarate_auto) {
68 while (*ptr) {
69 if ((*ptr & 0x7f) == adapter->datarate) {
70 ret = 0;
71 goto done;
72 }
73 ptr++;
74 }
75 lbs_pr_alert( "Previously set fixed data rate %#x isn't "
76 "compatible with the network.\n", adapter->datarate);
77
78 ret = -1;
79 goto done;
80 }
81
82 ret = 0;
83done:
84 return ret;
85}
86
87int libertas_send_deauth(wlan_private * priv)
88{
89 wlan_adapter *adapter = priv->adapter;
90 int ret = 0;
91
Dan Williams0dc5a292007-05-10 22:58:02 -040092 if (adapter->mode == IW_MODE_INFRA &&
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020093 adapter->connect_status == libertas_connected)
94 ret = libertas_send_deauthentication(priv);
95 else
96 ret = -ENOTSUPP;
97
98 return ret;
99}
100
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200101/**
102 * @brief Associate to a specific BSS discovered in a scan
103 *
104 * @param priv A pointer to wlan_private structure
105 * @param pbssdesc Pointer to the BSS descriptor to associate with.
106 *
107 * @return 0-success, otherwise fail
108 */
Dan Williamse76850d2007-05-25 17:09:41 -0400109int wlan_associate(wlan_private * priv, struct assoc_request * assoc_req)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200110{
111 wlan_adapter *adapter = priv->adapter;
112 int ret;
113
Holger Schurig9012b282007-05-25 11:27:16 -0400114 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200115
116 ret = libertas_prepare_and_send_command(priv, cmd_802_11_authenticate,
117 0, cmd_option_waitforrsp,
Dan Williamse76850d2007-05-25 17:09:41 -0400118 0, assoc_req->bss.bssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200119
Holger Schurig9012b282007-05-25 11:27:16 -0400120 if (ret)
121 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200122
123 /* set preamble to firmware */
Dan Williamse76850d2007-05-25 17:09:41 -0400124 if (adapter->capinfo.shortpreamble && assoc_req->bss.cap.shortpreamble)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200125 adapter->preamble = cmd_type_short_preamble;
126 else
127 adapter->preamble = cmd_type_long_preamble;
128
129 libertas_set_radio_control(priv);
130
131 ret = libertas_prepare_and_send_command(priv, cmd_802_11_associate,
Dan Williamse76850d2007-05-25 17:09:41 -0400132 0, cmd_option_waitforrsp, 0, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200133
Holger Schurig9012b282007-05-25 11:27:16 -0400134done:
135 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200136 return ret;
137}
138
139/**
140 * @brief Start an Adhoc Network
141 *
142 * @param priv A pointer to wlan_private structure
143 * @param adhocssid The ssid of the Adhoc Network
144 * @return 0--success, -1--fail
145 */
Dan Williamse76850d2007-05-25 17:09:41 -0400146int libertas_start_adhoc_network(wlan_private * priv, struct assoc_request * assoc_req)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200147{
148 wlan_adapter *adapter = priv->adapter;
149 int ret = 0;
150
151 adapter->adhoccreate = 1;
152
153 if (!adapter->capinfo.shortpreamble) {
Holger Schurig9012b282007-05-25 11:27:16 -0400154 lbs_deb_join("AdhocStart: Long preamble\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200155 adapter->preamble = cmd_type_long_preamble;
156 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400157 lbs_deb_join("AdhocStart: Short preamble\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200158 adapter->preamble = cmd_type_short_preamble;
159 }
160
161 libertas_set_radio_control(priv);
162
Dan Williamse76850d2007-05-25 17:09:41 -0400163 lbs_deb_join("AdhocStart: channel = %d\n", assoc_req->channel);
164 lbs_deb_join("AdhocStart: band = %d\n", assoc_req->band);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200165
166 ret = libertas_prepare_and_send_command(priv, cmd_802_11_ad_hoc_start,
Dan Williamse76850d2007-05-25 17:09:41 -0400167 0, cmd_option_waitforrsp, 0, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200168
169 return ret;
170}
171
172/**
173 * @brief Join an adhoc network found in a previous scan
174 *
175 * @param priv A pointer to wlan_private structure
176 * @param pbssdesc Pointer to a BSS descriptor found in a previous scan
177 * to attempt to join
178 *
179 * @return 0--success, -1--fail
180 */
Dan Williamse76850d2007-05-25 17:09:41 -0400181int libertas_join_adhoc_network(wlan_private * priv, struct assoc_request * assoc_req)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200182{
183 wlan_adapter *adapter = priv->adapter;
Dan Williamse76850d2007-05-25 17:09:41 -0400184 struct bss_descriptor * bss = &assoc_req->bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200185 int ret = 0;
186
Holger Schurig9012b282007-05-25 11:27:16 -0400187 lbs_deb_join("libertas_join_adhoc_network: CurBss.ssid =%s\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200188 adapter->curbssparams.ssid.ssid);
Holger Schurig9012b282007-05-25 11:27:16 -0400189 lbs_deb_join("libertas_join_adhoc_network: CurBss.ssid_len =%u\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200190 adapter->curbssparams.ssid.ssidlength);
Dan Williamse76850d2007-05-25 17:09:41 -0400191 lbs_deb_join("libertas_join_adhoc_network: ssid = '%s'\n",
192 bss->ssid.ssid);
193 lbs_deb_join("libertas_join_adhoc_network: ssid len = %u\n",
194 bss->ssid.ssidlength);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200195
196 /* check if the requested SSID is already joined */
197 if (adapter->curbssparams.ssid.ssidlength
Dan Williamse76850d2007-05-25 17:09:41 -0400198 && !libertas_SSID_cmp(&bss->ssid, &adapter->curbssparams.ssid)
Dan Williams0dc5a292007-05-10 22:58:02 -0400199 && (adapter->mode == IW_MODE_ADHOC)) {
Dan Williamse76850d2007-05-25 17:09:41 -0400200 lbs_deb_join(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200201 "ADHOC_J_CMD: New ad-hoc SSID is the same as current, "
202 "not attempting to re-join");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200203 return -1;
204 }
205
206 /*Use shortpreamble only when both creator and card supports
207 short preamble */
Dan Williamse76850d2007-05-25 17:09:41 -0400208 if (!bss->cap.shortpreamble || !adapter->capinfo.shortpreamble) {
Holger Schurig9012b282007-05-25 11:27:16 -0400209 lbs_deb_join("AdhocJoin: Long preamble\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200210 adapter->preamble = cmd_type_long_preamble;
211 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400212 lbs_deb_join("AdhocJoin: Short preamble\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200213 adapter->preamble = cmd_type_short_preamble;
214 }
215
216 libertas_set_radio_control(priv);
217
Dan Williamse76850d2007-05-25 17:09:41 -0400218 lbs_deb_join("AdhocJoin: channel = %d\n", assoc_req->channel);
219 lbs_deb_join("AdhocJoin: band = %c\n", assoc_req->band);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200220
221 adapter->adhoccreate = 0;
222
223 ret = libertas_prepare_and_send_command(priv, cmd_802_11_ad_hoc_join,
224 0, cmd_option_waitforrsp,
Dan Williamse76850d2007-05-25 17:09:41 -0400225 OID_802_11_SSID, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200226
227 return ret;
228}
229
230int libertas_stop_adhoc_network(wlan_private * priv)
231{
232 return libertas_prepare_and_send_command(priv, cmd_802_11_ad_hoc_stop,
233 0, cmd_option_waitforrsp, 0, NULL);
234}
235
236/**
237 * @brief Send Deauthentication Request
238 *
239 * @param priv A pointer to wlan_private structure
240 * @return 0--success, -1--fail
241 */
242int libertas_send_deauthentication(wlan_private * priv)
243{
244 return libertas_prepare_and_send_command(priv, cmd_802_11_deauthenticate,
245 0, cmd_option_waitforrsp, 0, NULL);
246}
247
248/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200249 * @brief This function prepares command of authenticate.
250 *
251 * @param priv A pointer to wlan_private structure
252 * @param cmd A pointer to cmd_ds_command structure
253 * @param pdata_buf Void cast of pointer to a BSSID to authenticate with
254 *
255 * @return 0 or -1
256 */
257int libertas_cmd_80211_authenticate(wlan_private * priv,
258 struct cmd_ds_command *cmd,
259 void *pdata_buf)
260{
261 wlan_adapter *adapter = priv->adapter;
Dan Williams6affe782007-05-10 22:56:42 -0400262 struct cmd_ds_802_11_authenticate *pauthenticate = &cmd->params.auth;
263 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200264 u8 *bssid = pdata_buf;
265
266 cmd->command = cpu_to_le16(cmd_802_11_authenticate);
Dan Williams6affe782007-05-10 22:56:42 -0400267 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_authenticate)
268 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200269
Dan Williams6affe782007-05-10 22:56:42 -0400270 /* translate auth mode to 802.11 defined wire value */
271 switch (adapter->secinfo.auth_mode) {
272 case IW_AUTH_ALG_OPEN_SYSTEM:
273 pauthenticate->authtype = 0x00;
274 break;
275 case IW_AUTH_ALG_SHARED_KEY:
276 pauthenticate->authtype = 0x01;
277 break;
278 case IW_AUTH_ALG_LEAP:
279 pauthenticate->authtype = 0x80;
280 break;
281 default:
Holger Schurig9012b282007-05-25 11:27:16 -0400282 lbs_deb_join("AUTH_CMD: invalid auth alg 0x%X\n",
Dan Williams6affe782007-05-10 22:56:42 -0400283 adapter->secinfo.auth_mode);
284 goto out;
285 }
286
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200287 memcpy(pauthenticate->macaddr, bssid, ETH_ALEN);
288
Holger Schurig9012b282007-05-25 11:27:16 -0400289 lbs_deb_join("AUTH_CMD: Bssid is : %x:%x:%x:%x:%x:%x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200290 bssid[0], bssid[1], bssid[2], bssid[3], bssid[4], bssid[5]);
Dan Williams6affe782007-05-10 22:56:42 -0400291 ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200292
Dan Williams6affe782007-05-10 22:56:42 -0400293out:
294 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200295}
296
297int libertas_cmd_80211_deauthenticate(wlan_private * priv,
298 struct cmd_ds_command *cmd)
299{
300 wlan_adapter *adapter = priv->adapter;
301 struct cmd_ds_802_11_deauthenticate *dauth = &cmd->params.deauth;
302
Holger Schurig9012b282007-05-25 11:27:16 -0400303 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200304
305 cmd->command = cpu_to_le16(cmd_802_11_deauthenticate);
306 cmd->size =
307 cpu_to_le16(sizeof(struct cmd_ds_802_11_deauthenticate) +
308 S_DS_GEN);
309
310 /* set AP MAC address */
311 memmove(dauth->macaddr, adapter->curbssparams.bssid,
312 ETH_ALEN);
313
314 /* Reason code 3 = Station is leaving */
315#define REASON_CODE_STA_LEAVING 3
316 dauth->reasoncode = cpu_to_le16(REASON_CODE_STA_LEAVING);
317
Holger Schurig9012b282007-05-25 11:27:16 -0400318 lbs_deb_leave(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200319 return 0;
320}
321
322int libertas_cmd_80211_associate(wlan_private * priv,
323 struct cmd_ds_command *cmd, void *pdata_buf)
324{
325 wlan_adapter *adapter = priv->adapter;
326 struct cmd_ds_802_11_associate *passo = &cmd->params.associate;
327 int ret = 0;
Dan Williamse76850d2007-05-25 17:09:41 -0400328 struct assoc_request * assoc_req = pdata_buf;
329 struct bss_descriptor * bss = &assoc_req->bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200330 u8 *card_rates;
331 u8 *pos;
332 int card_rates_size;
333 u16 tmpcap;
334 struct mrvlietypes_ssidparamset *ssid;
335 struct mrvlietypes_phyparamset *phy;
336 struct mrvlietypes_ssparamset *ss;
337 struct mrvlietypes_ratesparamset *rates;
338 struct mrvlietypes_rsnparamset *rsn;
339
Holger Schurig9012b282007-05-25 11:27:16 -0400340 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200341
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200342 pos = (u8 *) passo;
343
344 if (!adapter) {
345 ret = -1;
346 goto done;
347 }
348
349 cmd->command = cpu_to_le16(cmd_802_11_associate);
350
Dan Williamse76850d2007-05-25 17:09:41 -0400351 memcpy(passo->peerstaaddr, bss->bssid, sizeof(passo->peerstaaddr));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200352 pos += sizeof(passo->peerstaaddr);
353
354 /* set the listen interval */
355 passo->listeninterval = adapter->listeninterval;
356
357 pos += sizeof(passo->capinfo);
358 pos += sizeof(passo->listeninterval);
359 pos += sizeof(passo->bcnperiod);
360 pos += sizeof(passo->dtimperiod);
361
362 ssid = (struct mrvlietypes_ssidparamset *) pos;
363 ssid->header.type = cpu_to_le16(TLV_TYPE_SSID);
Dan Williamse76850d2007-05-25 17:09:41 -0400364 ssid->header.len = bss->ssid.ssidlength;
365 memcpy(ssid->ssid, bss->ssid.ssid, ssid->header.len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200366 pos += sizeof(ssid->header) + ssid->header.len;
367 ssid->header.len = cpu_to_le16(ssid->header.len);
368
369 phy = (struct mrvlietypes_phyparamset *) pos;
370 phy->header.type = cpu_to_le16(TLV_TYPE_PHY_DS);
371 phy->header.len = sizeof(phy->fh_ds.dsparamset);
372 memcpy(&phy->fh_ds.dsparamset,
Dan Williamse76850d2007-05-25 17:09:41 -0400373 &bss->phyparamset.dsparamset.currentchan,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200374 sizeof(phy->fh_ds.dsparamset));
375 pos += sizeof(phy->header) + phy->header.len;
376 phy->header.len = cpu_to_le16(phy->header.len);
377
378 ss = (struct mrvlietypes_ssparamset *) pos;
379 ss->header.type = cpu_to_le16(TLV_TYPE_CF);
380 ss->header.len = sizeof(ss->cf_ibss.cfparamset);
381 pos += sizeof(ss->header) + ss->header.len;
382 ss->header.len = cpu_to_le16(ss->header.len);
383
384 rates = (struct mrvlietypes_ratesparamset *) pos;
385 rates->header.type = cpu_to_le16(TLV_TYPE_RATES);
386
Dan Williamse76850d2007-05-25 17:09:41 -0400387 memcpy(&rates->rates, &bss->libertas_supported_rates, WLAN_SUPPORTED_RATES);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200388
389 card_rates = libertas_supported_rates;
390 card_rates_size = sizeof(libertas_supported_rates);
391
392 if (get_common_rates(adapter, rates->rates, WLAN_SUPPORTED_RATES,
393 card_rates, card_rates_size)) {
394 ret = -1;
395 goto done;
396 }
397
398 rates->header.len = min_t(size_t, strlen(rates->rates), WLAN_SUPPORTED_RATES);
399 adapter->curbssparams.numofrates = rates->header.len;
400
401 pos += sizeof(rates->header) + rates->header.len;
402 rates->header.len = cpu_to_le16(rates->header.len);
403
Dan Williamse76850d2007-05-25 17:09:41 -0400404 if (assoc_req->secinfo.WPAenabled || assoc_req->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200405 rsn = (struct mrvlietypes_rsnparamset *) pos;
Dan Williamse76850d2007-05-25 17:09:41 -0400406 rsn->header.type = (u16) assoc_req->wpa_ie[0]; /* WPA_IE or WPA2_IE */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200407 rsn->header.type = cpu_to_le16(rsn->header.type);
Dan Williamse76850d2007-05-25 17:09:41 -0400408 rsn->header.len = (u16) assoc_req->wpa_ie[1];
409 memcpy(rsn->rsnie, &assoc_req->wpa_ie[2], rsn->header.len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200410 lbs_dbg_hex("ASSOC_CMD: RSN IE", (u8 *) rsn,
411 sizeof(rsn->header) + rsn->header.len);
412 pos += sizeof(rsn->header) + rsn->header.len;
413 rsn->header.len = cpu_to_le16(rsn->header.len);
414 }
415
416 /* update curbssparams */
417 adapter->curbssparams.channel =
Dan Williamse76850d2007-05-25 17:09:41 -0400418 (bss->phyparamset.dsparamset.currentchan);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200419
420 /* Copy the infra. association rates into Current BSS state structure */
421 memcpy(&adapter->curbssparams.datarates, &rates->rates,
422 min_t(size_t, sizeof(adapter->curbssparams.datarates), rates->header.len));
423
Holger Schurig9012b282007-05-25 11:27:16 -0400424 lbs_deb_join("ASSOC_CMD: rates->header.len = %d\n", rates->header.len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200425
426 /* set IBSS field */
Dan Williamse76850d2007-05-25 17:09:41 -0400427 if (bss->mode == IW_MODE_INFRA) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200428#define CAPINFO_ESS_MODE 1
429 passo->capinfo.ess = CAPINFO_ESS_MODE;
430 }
431
Dan Williamse76850d2007-05-25 17:09:41 -0400432 if (libertas_parse_dnld_countryinfo_11d(priv, bss)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200433 ret = -1;
434 goto done;
435 }
436
437 cmd->size = cpu_to_le16((u16) (pos - (u8 *) passo) + S_DS_GEN);
438
439 /* set the capability info at last */
Dan Williamse76850d2007-05-25 17:09:41 -0400440 memcpy(&tmpcap, &bss->cap, sizeof(passo->capinfo));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200441 tmpcap &= CAPINFO_MASK;
Holger Schurig9012b282007-05-25 11:27:16 -0400442 lbs_deb_join("ASSOC_CMD: tmpcap=%4X CAPINFO_MASK=%4X\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200443 tmpcap, CAPINFO_MASK);
444 tmpcap = cpu_to_le16(tmpcap);
445 memcpy(&passo->capinfo, &tmpcap, sizeof(passo->capinfo));
446
Holger Schurig9012b282007-05-25 11:27:16 -0400447done:
448 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200449 return ret;
450}
451
452int libertas_cmd_80211_ad_hoc_start(wlan_private * priv,
Dan Williamse76850d2007-05-25 17:09:41 -0400453 struct cmd_ds_command *cmd, void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200454{
455 wlan_adapter *adapter = priv->adapter;
456 struct cmd_ds_802_11_ad_hoc_start *adhs = &cmd->params.ads;
457 int ret = 0;
458 int cmdappendsize = 0;
459 int i;
460 u16 tmpcap;
Dan Williamse76850d2007-05-25 17:09:41 -0400461 struct assoc_request * assoc_req = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200462
Holger Schurig9012b282007-05-25 11:27:16 -0400463 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200464
465 if (!adapter) {
466 ret = -1;
467 goto done;
468 }
469
470 cmd->command = cpu_to_le16(cmd_802_11_ad_hoc_start);
471
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200472 /*
473 * Fill in the parameters for 2 data structures:
474 * 1. cmd_ds_802_11_ad_hoc_start command
475 * 2. adapter->scantable[i]
476 *
477 * Driver will fill up SSID, bsstype,IBSS param, Physical Param,
478 * probe delay, and cap info.
479 *
480 * Firmware will fill up beacon period, DTIM, Basic rates
481 * and operational rates.
482 */
483
484 memset(adhs->SSID, 0, IW_ESSID_MAX_SIZE);
Dan Williamse76850d2007-05-25 17:09:41 -0400485 memcpy(adhs->SSID, assoc_req->ssid.ssid, assoc_req->ssid.ssidlength);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200486
Holger Schurig9012b282007-05-25 11:27:16 -0400487 lbs_deb_join("ADHOC_S_CMD: SSID = %s\n", adhs->SSID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200488
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200489 /* set the BSS type */
490 adhs->bsstype = cmd_bss_type_ibss;
Dan Williamse76850d2007-05-25 17:09:41 -0400491 adapter->mode = IW_MODE_ADHOC;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200492 adhs->beaconperiod = adapter->beaconperiod;
493
494 /* set Physical param set */
495#define DS_PARA_IE_ID 3
496#define DS_PARA_IE_LEN 1
497
498 adhs->phyparamset.dsparamset.elementid = DS_PARA_IE_ID;
499 adhs->phyparamset.dsparamset.len = DS_PARA_IE_LEN;
500
Dan Williamse76850d2007-05-25 17:09:41 -0400501 WARN_ON(!assoc_req->channel);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200502
Holger Schurig9012b282007-05-25 11:27:16 -0400503 lbs_deb_join("ADHOC_S_CMD: Creating ADHOC on channel %d\n",
Dan Williamse76850d2007-05-25 17:09:41 -0400504 assoc_req->channel);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200505
Dan Williamse76850d2007-05-25 17:09:41 -0400506 adhs->phyparamset.dsparamset.currentchan = assoc_req->channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200507
508 /* set IBSS param set */
509#define IBSS_PARA_IE_ID 6
510#define IBSS_PARA_IE_LEN 2
511
512 adhs->ssparamset.ibssparamset.elementid = IBSS_PARA_IE_ID;
513 adhs->ssparamset.ibssparamset.len = IBSS_PARA_IE_LEN;
514 adhs->ssparamset.ibssparamset.atimwindow = adapter->atimwindow;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200515
516 /* set capability info */
517 adhs->cap.ess = 0;
518 adhs->cap.ibss = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200519
520 /* probedelay */
521 adhs->probedelay = cpu_to_le16(cmd_scan_probe_delay_time);
522
523 /* set up privacy in adapter->scantable[i] */
Dan Williamse76850d2007-05-25 17:09:41 -0400524 if (assoc_req->secinfo.wep_enabled) {
Holger Schurig9012b282007-05-25 11:27:16 -0400525 lbs_deb_join("ADHOC_S_CMD: WEP enabled, setting privacy on\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200526 adhs->cap.privacy = AD_HOC_CAP_PRIVACY_ON;
527 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400528 lbs_deb_join("ADHOC_S_CMD: WEP disabled, setting privacy off\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200529 }
530
531 memset(adhs->datarate, 0, sizeof(adhs->datarate));
532
533 if (adapter->adhoc_grate_enabled) {
534 memcpy(adhs->datarate, libertas_adhoc_rates_g,
535 min(sizeof(adhs->datarate), sizeof(libertas_adhoc_rates_g)));
536 } else {
537 memcpy(adhs->datarate, libertas_adhoc_rates_b,
538 min(sizeof(adhs->datarate), sizeof(libertas_adhoc_rates_b)));
539 }
540
541 /* Find the last non zero */
542 for (i = 0; i < sizeof(adhs->datarate) && adhs->datarate[i]; i++) ;
543
544 adapter->curbssparams.numofrates = i;
545
546 /* Copy the ad-hoc creating rates into Current BSS state structure */
547 memcpy(&adapter->curbssparams.datarates,
548 &adhs->datarate, adapter->curbssparams.numofrates);
549
Holger Schurig9012b282007-05-25 11:27:16 -0400550 lbs_deb_join("ADHOC_S_CMD: rates=%02x %02x %02x %02x \n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200551 adhs->datarate[0], adhs->datarate[1],
552 adhs->datarate[2], adhs->datarate[3]);
553
Holger Schurig9012b282007-05-25 11:27:16 -0400554 lbs_deb_join("ADHOC_S_CMD: AD HOC Start command is ready\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200555
556 if (libertas_create_dnld_countryinfo_11d(priv)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400557 lbs_deb_join("ADHOC_S_CMD: dnld_countryinfo_11d failed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200558 ret = -1;
559 goto done;
560 }
561
562 cmd->size =
563 cpu_to_le16(sizeof(struct cmd_ds_802_11_ad_hoc_start)
564 + S_DS_GEN + cmdappendsize);
565
566 memcpy(&tmpcap, &adhs->cap, sizeof(u16));
567 tmpcap = cpu_to_le16(tmpcap);
568 memcpy(&adhs->cap, &tmpcap, sizeof(u16));
569
570 ret = 0;
571done:
Holger Schurig9012b282007-05-25 11:27:16 -0400572 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200573 return ret;
574}
575
576int libertas_cmd_80211_ad_hoc_stop(wlan_private * priv,
577 struct cmd_ds_command *cmd)
578{
579 cmd->command = cpu_to_le16(cmd_802_11_ad_hoc_stop);
580 cmd->size = cpu_to_le16(S_DS_GEN);
581
582 return 0;
583}
584
585int libertas_cmd_80211_ad_hoc_join(wlan_private * priv,
586 struct cmd_ds_command *cmd, void *pdata_buf)
587{
588 wlan_adapter *adapter = priv->adapter;
589 struct cmd_ds_802_11_ad_hoc_join *padhocjoin = &cmd->params.adj;
Dan Williamse76850d2007-05-25 17:09:41 -0400590 struct assoc_request * assoc_req = pdata_buf;
591 struct bss_descriptor *bss = &assoc_req->bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200592 int cmdappendsize = 0;
593 int ret = 0;
594 u8 *card_rates;
595 int card_rates_size;
596 u16 tmpcap;
597 int i;
598
Holger Schurig9012b282007-05-25 11:27:16 -0400599 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200600
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200601 cmd->command = cpu_to_le16(cmd_802_11_ad_hoc_join);
602
603 padhocjoin->bssdescriptor.bsstype = cmd_bss_type_ibss;
604
Dan Williamse76850d2007-05-25 17:09:41 -0400605 padhocjoin->bssdescriptor.beaconperiod = bss->beaconperiod;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200606
Dan Williamse76850d2007-05-25 17:09:41 -0400607 memcpy(&padhocjoin->bssdescriptor.BSSID, &bss->bssid, ETH_ALEN);
608 memcpy(&padhocjoin->bssdescriptor.SSID, &bss->ssid.ssid, bss->ssid.ssidlength);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200609
610 memcpy(&padhocjoin->bssdescriptor.phyparamset,
Dan Williamse76850d2007-05-25 17:09:41 -0400611 &bss->phyparamset, sizeof(union ieeetypes_phyparamset));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200612
613 memcpy(&padhocjoin->bssdescriptor.ssparamset,
Dan Williamse76850d2007-05-25 17:09:41 -0400614 &bss->ssparamset, sizeof(union IEEEtypes_ssparamset));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200615
Dan Williamse76850d2007-05-25 17:09:41 -0400616 memcpy(&tmpcap, &bss->cap, sizeof(struct ieeetypes_capinfo));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200617 tmpcap &= CAPINFO_MASK;
618
Holger Schurig9012b282007-05-25 11:27:16 -0400619 lbs_deb_join("ADHOC_J_CMD: tmpcap=%4X CAPINFO_MASK=%4X\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200620 tmpcap, CAPINFO_MASK);
621 memcpy(&padhocjoin->bssdescriptor.cap, &tmpcap,
622 sizeof(struct ieeetypes_capinfo));
623
624 /* information on BSSID descriptor passed to FW */
Dan Williamse76850d2007-05-25 17:09:41 -0400625 lbs_deb_join(
626 "ADHOC_J_CMD: BSSID = " MAC_FMT ", SSID = '%s'\n",
627 MAC_ARG(padhocjoin->bssdescriptor.BSSID),
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200628 padhocjoin->bssdescriptor.SSID);
629
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200630 /* failtimeout */
631 padhocjoin->failtimeout = cpu_to_le16(MRVDRV_ASSOCIATION_TIME_OUT);
632
633 /* probedelay */
634 padhocjoin->probedelay =
635 cpu_to_le16(cmd_scan_probe_delay_time);
636
637 /* Copy Data rates from the rates recorded in scan response */
638 memset(padhocjoin->bssdescriptor.datarates, 0,
639 sizeof(padhocjoin->bssdescriptor.datarates));
Dan Williamse76850d2007-05-25 17:09:41 -0400640 memcpy(padhocjoin->bssdescriptor.datarates, bss->datarates,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200641 min(sizeof(padhocjoin->bssdescriptor.datarates),
Dan Williamse76850d2007-05-25 17:09:41 -0400642 sizeof(bss->datarates)));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200643
644 card_rates = libertas_supported_rates;
645 card_rates_size = sizeof(libertas_supported_rates);
646
Dan Williamse76850d2007-05-25 17:09:41 -0400647 adapter->curbssparams.channel = bss->channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200648
649 if (get_common_rates(adapter, padhocjoin->bssdescriptor.datarates,
650 sizeof(padhocjoin->bssdescriptor.datarates),
651 card_rates, card_rates_size)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400652 lbs_deb_join("ADHOC_J_CMD: get_common_rates returns error.\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200653 ret = -1;
654 goto done;
655 }
656
657 /* Find the last non zero */
658 for (i = 0; i < sizeof(padhocjoin->bssdescriptor.datarates)
659 && padhocjoin->bssdescriptor.datarates[i]; i++) ;
660
661 adapter->curbssparams.numofrates = i;
662
663 /*
664 * Copy the adhoc joining rates to Current BSS State structure
665 */
666 memcpy(adapter->curbssparams.datarates,
667 padhocjoin->bssdescriptor.datarates,
668 adapter->curbssparams.numofrates);
669
670 padhocjoin->bssdescriptor.ssparamset.ibssparamset.atimwindow =
Dan Williamse76850d2007-05-25 17:09:41 -0400671 cpu_to_le16(bss->atimwindow);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200672
Dan Williamse76850d2007-05-25 17:09:41 -0400673 if (assoc_req->secinfo.wep_enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200674 padhocjoin->bssdescriptor.cap.privacy = AD_HOC_CAP_PRIVACY_ON;
675 }
676
677 if (adapter->psmode == wlan802_11powermodemax_psp) {
678 /* wake up first */
679 enum WLAN_802_11_POWER_MODE Localpsmode;
680
681 Localpsmode = wlan802_11powermodecam;
682 ret = libertas_prepare_and_send_command(priv,
683 cmd_802_11_ps_mode,
684 cmd_act_set,
685 0, 0, &Localpsmode);
686
687 if (ret) {
688 ret = -1;
689 goto done;
690 }
691 }
692
Dan Williamse76850d2007-05-25 17:09:41 -0400693 if (libertas_parse_dnld_countryinfo_11d(priv, bss)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200694 ret = -1;
695 goto done;
696 }
697
698 cmd->size =
699 cpu_to_le16(sizeof(struct cmd_ds_802_11_ad_hoc_join)
700 + S_DS_GEN + cmdappendsize);
701
702 memcpy(&tmpcap, &padhocjoin->bssdescriptor.cap,
703 sizeof(struct ieeetypes_capinfo));
704 tmpcap = cpu_to_le16(tmpcap);
705
706 memcpy(&padhocjoin->bssdescriptor.cap,
707 &tmpcap, sizeof(struct ieeetypes_capinfo));
708
Holger Schurig9012b282007-05-25 11:27:16 -0400709done:
710 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200711 return ret;
712}
713
714int libertas_ret_80211_associate(wlan_private * priv,
715 struct cmd_ds_command *resp)
716{
717 wlan_adapter *adapter = priv->adapter;
718 int ret = 0;
719 union iwreq_data wrqu;
720 struct ieeetypes_assocrsp *passocrsp;
Dan Williamse76850d2007-05-25 17:09:41 -0400721 struct bss_descriptor * bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200722
Holger Schurig9012b282007-05-25 11:27:16 -0400723 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200724
Dan Williamse76850d2007-05-25 17:09:41 -0400725 if (!adapter->in_progress_assoc_req) {
726 lbs_deb_join("ASSOC_RESP: no in-progress association request\n");
727 ret = -1;
728 goto done;
729 }
730 bss = &adapter->in_progress_assoc_req->bss;
731
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200732 passocrsp = (struct ieeetypes_assocrsp *) & resp->params;
733
734 if (passocrsp->statuscode) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200735 libertas_mac_event_disconnected(priv);
736
Dan Williamse76850d2007-05-25 17:09:41 -0400737 lbs_deb_join("ASSOC_RESP: Association failed, status code = %d\n",
Holger Schurig9012b282007-05-25 11:27:16 -0400738 passocrsp->statuscode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200739
740 ret = -1;
741 goto done;
742 }
743
744 lbs_dbg_hex("ASSOC_RESP:", (void *)&resp->params,
745 le16_to_cpu(resp->size) - S_DS_GEN);
746
747 /* Send a Media Connected event, according to the Spec */
748 adapter->connect_status = libertas_connected;
749
Dan Williamse76850d2007-05-25 17:09:41 -0400750 lbs_deb_join("ASSOC_RESP: %s\n", bss->ssid.ssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200751
Dan Williamse76850d2007-05-25 17:09:41 -0400752 /* Update current SSID and BSSID */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200753 memcpy(&adapter->curbssparams.ssid,
Dan Williamse76850d2007-05-25 17:09:41 -0400754 &bss->ssid, sizeof(struct WLAN_802_11_SSID));
755 memcpy(adapter->curbssparams.bssid, bss->bssid, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200756
Holger Schurig9012b282007-05-25 11:27:16 -0400757 lbs_deb_join("ASSOC_RESP: currentpacketfilter is %x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200758 adapter->currentpacketfilter);
759
760 adapter->SNR[TYPE_RXPD][TYPE_AVG] = 0;
761 adapter->NF[TYPE_RXPD][TYPE_AVG] = 0;
762
763 memset(adapter->rawSNR, 0x00, sizeof(adapter->rawSNR));
764 memset(adapter->rawNF, 0x00, sizeof(adapter->rawNF));
765 adapter->nextSNRNF = 0;
766 adapter->numSNRNF = 0;
767
Holger Schurig634b8f42007-05-25 13:05:16 -0400768 netif_carrier_on(priv->dev);
769 netif_wake_queue(priv->dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200770
Javier Cardona51d84f52007-05-25 12:06:56 -0400771 netif_carrier_on(priv->mesh_dev);
772 netif_wake_queue(priv->mesh_dev);
773
Holger Schurig9012b282007-05-25 11:27:16 -0400774 lbs_deb_join("ASSOC_RESP: Associated \n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200775
776 memcpy(wrqu.ap_addr.sa_data, adapter->curbssparams.bssid, ETH_ALEN);
777 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
Holger Schurig634b8f42007-05-25 13:05:16 -0400778 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200779
Holger Schurig9012b282007-05-25 11:27:16 -0400780done:
781 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200782 return ret;
783}
784
785int libertas_ret_80211_disassociate(wlan_private * priv,
786 struct cmd_ds_command *resp)
787{
Holger Schurig9012b282007-05-25 11:27:16 -0400788 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200789
790 libertas_mac_event_disconnected(priv);
791
Holger Schurig9012b282007-05-25 11:27:16 -0400792 lbs_deb_leave(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200793 return 0;
794}
795
796int libertas_ret_80211_ad_hoc_start(wlan_private * priv,
797 struct cmd_ds_command *resp)
798{
799 wlan_adapter *adapter = priv->adapter;
800 int ret = 0;
801 u16 command = le16_to_cpu(resp->command);
802 u16 result = le16_to_cpu(resp->result);
803 struct cmd_ds_802_11_ad_hoc_result *padhocresult;
804 union iwreq_data wrqu;
Dan Williamse76850d2007-05-25 17:09:41 -0400805 struct bss_descriptor *bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200806
Holger Schurig9012b282007-05-25 11:27:16 -0400807 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200808
809 padhocresult = &resp->params.result;
810
Dan Williamse76850d2007-05-25 17:09:41 -0400811 lbs_deb_join("ADHOC_RESP: size = %d\n", le16_to_cpu(resp->size));
812 lbs_deb_join("ADHOC_RESP: command = %x\n", command);
813 lbs_deb_join("ADHOC_RESP: result = %x\n", result);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200814
Dan Williamse76850d2007-05-25 17:09:41 -0400815 if (!adapter->in_progress_assoc_req) {
816 lbs_deb_join("ADHOC_RESP: no in-progress association request\n");
817 ret = -1;
818 goto done;
819 }
820 bss = &adapter->in_progress_assoc_req->bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200821
822 /*
823 * Join result code 0 --> SUCCESS
824 */
825 if (result) {
Dan Williamse76850d2007-05-25 17:09:41 -0400826 lbs_deb_join("ADHOC_RESP: failed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200827 if (adapter->connect_status == libertas_connected) {
828 libertas_mac_event_disconnected(priv);
829 }
Holger Schurig9012b282007-05-25 11:27:16 -0400830 ret = -1;
831 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200832 }
833
834 /*
835 * Now the join cmd should be successful
836 * If BSSID has changed use SSID to compare instead of BSSID
837 */
Dan Williamse76850d2007-05-25 17:09:41 -0400838 lbs_deb_join("ADHOC_RESP: %s\n", bss->ssid.ssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200839
840 /* Send a Media Connected event, according to the Spec */
841 adapter->connect_status = libertas_connected;
842
843 if (command == cmd_ret_802_11_ad_hoc_start) {
844 /* Update the created network descriptor with the new BSSID */
Dan Williamse76850d2007-05-25 17:09:41 -0400845 memcpy(bss->bssid, padhocresult->BSSID, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200846 }
847
848 /* Set the BSSID from the joined/started descriptor */
Dan Williamse76850d2007-05-25 17:09:41 -0400849 memcpy(&adapter->curbssparams.bssid, bss->bssid, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200850
851 /* Set the new SSID to current SSID */
Dan Williamse76850d2007-05-25 17:09:41 -0400852 memcpy(&adapter->curbssparams.ssid, &bss->ssid,
853 sizeof(struct WLAN_802_11_SSID));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200854
Holger Schurig634b8f42007-05-25 13:05:16 -0400855 netif_carrier_on(priv->dev);
856 netif_wake_queue(priv->dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200857
Javier Cardona51d84f52007-05-25 12:06:56 -0400858 netif_carrier_on(priv->mesh_dev);
859 netif_wake_queue(priv->mesh_dev);
860
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200861 memset(&wrqu, 0, sizeof(wrqu));
862 memcpy(wrqu.ap_addr.sa_data, adapter->curbssparams.bssid, ETH_ALEN);
863 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
Holger Schurig634b8f42007-05-25 13:05:16 -0400864 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200865
Holger Schurig9012b282007-05-25 11:27:16 -0400866 lbs_deb_join("ADHOC_RESP: - Joined/Started Ad Hoc\n");
Dan Williamsef9a2642007-05-25 16:46:33 -0400867 lbs_deb_join("ADHOC_RESP: channel = %d\n", adapter->curbssparams.channel);
Holger Schurig9012b282007-05-25 11:27:16 -0400868 lbs_deb_join("ADHOC_RESP: BSSID = %02x:%02x:%02x:%02x:%02x:%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200869 padhocresult->BSSID[0], padhocresult->BSSID[1],
870 padhocresult->BSSID[2], padhocresult->BSSID[3],
871 padhocresult->BSSID[4], padhocresult->BSSID[5]);
872
Holger Schurig9012b282007-05-25 11:27:16 -0400873done:
874 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200875 return ret;
876}
877
878int libertas_ret_80211_ad_hoc_stop(wlan_private * priv,
879 struct cmd_ds_command *resp)
880{
Holger Schurig9012b282007-05-25 11:27:16 -0400881 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200882
883 libertas_mac_event_disconnected(priv);
884
Holger Schurig9012b282007-05-25 11:27:16 -0400885 lbs_deb_leave(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200886 return 0;
887}