blob: 8dcff00574f30a44dea32e5eb1a99127e0c021b2 [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
Luis Carlos Cobob37e5842007-08-02 13:15:40 -040020/* The firmware needs certain bits masked out of the beacon-derviced capability
21 * field when associating/joining to BSSs.
22 */
23#define CAPINFO_MASK (~(0xda00))
Dan Williams8c512762007-08-02 11:40:45 -040024
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020025/**
Dan Williams8c512762007-08-02 11:40:45 -040026 * @brief This function finds common rates between rate1 and card rates.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020027 *
28 * It will fill common rates in rate1 as output if found.
29 *
30 * NOTE: Setting the MSB of the basic rates need to be taken
31 * care, either before or after calling this function
32 *
33 * @param adapter A pointer to wlan_adapter structure
34 * @param rate1 the buffer which keeps input and output
Dan Williams8c512762007-08-02 11:40:45 -040035 * @param rate1_size the size of rate1 buffer; new size of buffer on return
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020036 *
37 * @return 0 or -1
38 */
Dan Williams8c512762007-08-02 11:40:45 -040039static int get_common_rates(wlan_adapter * adapter, u8 * rates, u16 *rates_size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020040{
Dan Williams8c512762007-08-02 11:40:45 -040041 u8 *card_rates = libertas_bg_rates;
42 size_t num_card_rates = sizeof(libertas_bg_rates);
43 int ret = 0, i, j;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020044 u8 tmp[30];
Dan Williams8c512762007-08-02 11:40:45 -040045 size_t tmp_size = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020046
Dan Williams8c512762007-08-02 11:40:45 -040047 /* For each rate in card_rates that exists in rate1, copy to tmp */
48 for (i = 0; card_rates[i] && (i < num_card_rates); i++) {
49 for (j = 0; rates[j] && (j < *rates_size); j++) {
50 if (rates[j] == card_rates[i])
51 tmp[tmp_size++] = card_rates[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020052 }
53 }
54
Holger Schurigece56192007-08-02 11:53:06 -040055 lbs_deb_hex(LBS_DEB_JOIN, "AP rates ", rates, *rates_size);
56 lbs_deb_hex(LBS_DEB_JOIN, "card rates ", card_rates, num_card_rates);
57 lbs_deb_hex(LBS_DEB_JOIN, "common rates", tmp, tmp_size);
Dan Williams8c512762007-08-02 11:40:45 -040058 lbs_deb_join("Tx datarate is currently 0x%X\n", adapter->cur_rate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020059
Dan Williams8c512762007-08-02 11:40:45 -040060 if (!adapter->auto_rate) {
61 for (i = 0; i < tmp_size; i++) {
62 if (tmp[i] == adapter->cur_rate)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020063 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020064 }
Dan Williams8c512762007-08-02 11:40:45 -040065 lbs_pr_alert("Previously set fixed data rate %#x isn't "
66 "compatible with the network.\n", adapter->cur_rate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020067 ret = -1;
68 goto done;
69 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020070 ret = 0;
Dan Williams8c512762007-08-02 11:40:45 -040071
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020072done:
Dan Williams8c512762007-08-02 11:40:45 -040073 memset(rates, 0, *rates_size);
74 *rates_size = min_t(int, tmp_size, *rates_size);
75 memcpy(rates, tmp, *rates_size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020076 return ret;
77}
78
Dan Williams8c512762007-08-02 11:40:45 -040079
80/**
81 * @brief Sets the MSB on basic rates as the firmware requires
82 *
83 * Scan through an array and set the MSB for basic data rates.
84 *
85 * @param rates buffer of data rates
86 * @param len size of buffer
87 */
88static void libertas_set_basic_rate_flags(u8 * rates, size_t len)
89{
90 int i;
91
92 for (i = 0; i < len; i++) {
93 if (rates[i] == 0x02 || rates[i] == 0x04 ||
94 rates[i] == 0x0b || rates[i] == 0x16)
95 rates[i] |= 0x80;
96 }
97}
98
99/**
100 * @brief Unsets the MSB on basic rates
101 *
102 * Scan through an array and unset the MSB for basic data rates.
103 *
104 * @param rates buffer of data rates
105 * @param len size of buffer
106 */
107void libertas_unset_basic_rate_flags(u8 * rates, size_t len)
108{
109 int i;
110
111 for (i = 0; i < len; i++)
112 rates[i] &= 0x7f;
113}
114
115
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200116/**
117 * @brief Associate to a specific BSS discovered in a scan
118 *
119 * @param priv A pointer to wlan_private structure
120 * @param pbssdesc Pointer to the BSS descriptor to associate with.
121 *
122 * @return 0-success, otherwise fail
123 */
Dan Williamse76850d2007-05-25 17:09:41 -0400124int wlan_associate(wlan_private * priv, struct assoc_request * assoc_req)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200125{
126 wlan_adapter *adapter = priv->adapter;
127 int ret;
128
Holger Schurig9012b282007-05-25 11:27:16 -0400129 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200130
Dan Williams0aef64d2007-08-02 11:31:18 -0400131 ret = libertas_prepare_and_send_command(priv, CMD_802_11_AUTHENTICATE,
132 0, CMD_OPTION_WAITFORRSP,
Dan Williamse76850d2007-05-25 17:09:41 -0400133 0, assoc_req->bss.bssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200134
Holger Schurig9012b282007-05-25 11:27:16 -0400135 if (ret)
136 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200137
138 /* set preamble to firmware */
Dan Williams0c9ca692007-08-02 10:43:44 -0400139 if ( (adapter->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
140 && (assoc_req->bss.capability & WLAN_CAPABILITY_SHORT_PREAMBLE))
Dan Williams0aef64d2007-08-02 11:31:18 -0400141 adapter->preamble = CMD_TYPE_SHORT_PREAMBLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200142 else
Dan Williams0aef64d2007-08-02 11:31:18 -0400143 adapter->preamble = CMD_TYPE_LONG_PREAMBLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200144
145 libertas_set_radio_control(priv);
146
Dan Williams0aef64d2007-08-02 11:31:18 -0400147 ret = libertas_prepare_and_send_command(priv, CMD_802_11_ASSOCIATE,
148 0, CMD_OPTION_WAITFORRSP, 0, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200149
Holger Schurig9012b282007-05-25 11:27:16 -0400150done:
151 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200152 return ret;
153}
154
155/**
156 * @brief Start an Adhoc Network
157 *
158 * @param priv A pointer to wlan_private structure
159 * @param adhocssid The ssid of the Adhoc Network
160 * @return 0--success, -1--fail
161 */
Dan Williamse76850d2007-05-25 17:09:41 -0400162int libertas_start_adhoc_network(wlan_private * priv, struct assoc_request * assoc_req)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200163{
164 wlan_adapter *adapter = priv->adapter;
165 int ret = 0;
166
167 adapter->adhoccreate = 1;
168
Dan Williams0c9ca692007-08-02 10:43:44 -0400169 if (adapter->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) {
Holger Schurig9012b282007-05-25 11:27:16 -0400170 lbs_deb_join("AdhocStart: Short preamble\n");
Dan Williams0aef64d2007-08-02 11:31:18 -0400171 adapter->preamble = CMD_TYPE_SHORT_PREAMBLE;
Dan Williams0c9ca692007-08-02 10:43:44 -0400172 } else {
173 lbs_deb_join("AdhocStart: Long preamble\n");
Dan Williams0aef64d2007-08-02 11:31:18 -0400174 adapter->preamble = CMD_TYPE_LONG_PREAMBLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200175 }
176
177 libertas_set_radio_control(priv);
178
Dan Williamse76850d2007-05-25 17:09:41 -0400179 lbs_deb_join("AdhocStart: channel = %d\n", assoc_req->channel);
180 lbs_deb_join("AdhocStart: band = %d\n", assoc_req->band);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200181
Dan Williams0aef64d2007-08-02 11:31:18 -0400182 ret = libertas_prepare_and_send_command(priv, CMD_802_11_AD_HOC_START,
183 0, CMD_OPTION_WAITFORRSP, 0, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200184
185 return ret;
186}
187
188/**
189 * @brief Join an adhoc network found in a previous scan
190 *
191 * @param priv A pointer to wlan_private structure
192 * @param pbssdesc Pointer to a BSS descriptor found in a previous scan
193 * to attempt to join
194 *
195 * @return 0--success, -1--fail
196 */
Dan Williamse76850d2007-05-25 17:09:41 -0400197int libertas_join_adhoc_network(wlan_private * priv, struct assoc_request * assoc_req)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200198{
199 wlan_adapter *adapter = priv->adapter;
Dan Williamse76850d2007-05-25 17:09:41 -0400200 struct bss_descriptor * bss = &assoc_req->bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200201 int ret = 0;
202
Dan Williamsd8efea22007-05-28 23:54:55 -0400203 lbs_deb_join("%s: Current SSID '%s', ssid length %u\n",
204 __func__,
205 escape_essid(adapter->curbssparams.ssid,
206 adapter->curbssparams.ssid_len),
207 adapter->curbssparams.ssid_len);
208 lbs_deb_join("%s: requested ssid '%s', ssid length %u\n",
209 __func__, escape_essid(bss->ssid, bss->ssid_len),
210 bss->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200211
212 /* check if the requested SSID is already joined */
Dan Williams0edef212007-08-02 13:14:29 -0400213 if ( adapter->curbssparams.ssid_len
Dan Williams717c9332007-05-29 00:03:31 -0400214 && !libertas_ssid_cmp(adapter->curbssparams.ssid,
Dan Williamsd8efea22007-05-28 23:54:55 -0400215 adapter->curbssparams.ssid_len,
216 bss->ssid, bss->ssid_len)
Dan Williams0edef212007-08-02 13:14:29 -0400217 && (adapter->mode == IW_MODE_ADHOC)
218 && (adapter->connect_status == LIBERTAS_CONNECTED)) {
219 union iwreq_data wrqu;
220
221 lbs_deb_join("ADHOC_J_CMD: New ad-hoc SSID is the same as "
222 "current, not attempting to re-join");
223
224 /* Send the re-association event though, because the association
225 * request really was successful, even if just a null-op.
226 */
227 memset(&wrqu, 0, sizeof(wrqu));
228 memcpy(wrqu.ap_addr.sa_data, adapter->curbssparams.bssid,
229 ETH_ALEN);
230 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
231 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
232 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200233 }
234
Dan Williams0c9ca692007-08-02 10:43:44 -0400235 /* Use shortpreamble only when both creator and card supports
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200236 short preamble */
Dan Williams0c9ca692007-08-02 10:43:44 -0400237 if ( !(bss->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
238 || !(adapter->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400239 lbs_deb_join("AdhocJoin: Long preamble\n");
Dan Williams0aef64d2007-08-02 11:31:18 -0400240 adapter->preamble = CMD_TYPE_LONG_PREAMBLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200241 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400242 lbs_deb_join("AdhocJoin: Short preamble\n");
Dan Williams0aef64d2007-08-02 11:31:18 -0400243 adapter->preamble = CMD_TYPE_SHORT_PREAMBLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200244 }
245
246 libertas_set_radio_control(priv);
247
Dan Williamse76850d2007-05-25 17:09:41 -0400248 lbs_deb_join("AdhocJoin: channel = %d\n", assoc_req->channel);
249 lbs_deb_join("AdhocJoin: band = %c\n", assoc_req->band);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200250
251 adapter->adhoccreate = 0;
252
Dan Williams0aef64d2007-08-02 11:31:18 -0400253 ret = libertas_prepare_and_send_command(priv, CMD_802_11_AD_HOC_JOIN,
254 0, CMD_OPTION_WAITFORRSP,
Dan Williamse76850d2007-05-25 17:09:41 -0400255 OID_802_11_SSID, assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200256
Dan Williams0edef212007-08-02 13:14:29 -0400257out:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200258 return ret;
259}
260
261int libertas_stop_adhoc_network(wlan_private * priv)
262{
Dan Williams0aef64d2007-08-02 11:31:18 -0400263 return libertas_prepare_and_send_command(priv, CMD_802_11_AD_HOC_STOP,
264 0, CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200265}
266
267/**
268 * @brief Send Deauthentication Request
269 *
270 * @param priv A pointer to wlan_private structure
271 * @return 0--success, -1--fail
272 */
273int libertas_send_deauthentication(wlan_private * priv)
274{
Dan Williams0aef64d2007-08-02 11:31:18 -0400275 return libertas_prepare_and_send_command(priv, CMD_802_11_DEAUTHENTICATE,
276 0, CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200277}
278
279/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200280 * @brief This function prepares command of authenticate.
281 *
282 * @param priv A pointer to wlan_private structure
283 * @param cmd A pointer to cmd_ds_command structure
284 * @param pdata_buf Void cast of pointer to a BSSID to authenticate with
285 *
286 * @return 0 or -1
287 */
288int libertas_cmd_80211_authenticate(wlan_private * priv,
289 struct cmd_ds_command *cmd,
290 void *pdata_buf)
291{
292 wlan_adapter *adapter = priv->adapter;
Dan Williams6affe782007-05-10 22:56:42 -0400293 struct cmd_ds_802_11_authenticate *pauthenticate = &cmd->params.auth;
294 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200295 u8 *bssid = pdata_buf;
Joe Perches0795af52007-10-03 17:59:30 -0700296 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200297
Dan Williams45f43de2007-05-25 22:58:55 -0400298 lbs_deb_enter(LBS_DEB_JOIN);
299
Dan Williams0aef64d2007-08-02 11:31:18 -0400300 cmd->command = cpu_to_le16(CMD_802_11_AUTHENTICATE);
Dan Williams6affe782007-05-10 22:56:42 -0400301 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_authenticate)
302 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200303
Dan Williams6affe782007-05-10 22:56:42 -0400304 /* translate auth mode to 802.11 defined wire value */
305 switch (adapter->secinfo.auth_mode) {
306 case IW_AUTH_ALG_OPEN_SYSTEM:
307 pauthenticate->authtype = 0x00;
308 break;
309 case IW_AUTH_ALG_SHARED_KEY:
310 pauthenticate->authtype = 0x01;
311 break;
312 case IW_AUTH_ALG_LEAP:
313 pauthenticate->authtype = 0x80;
314 break;
315 default:
Holger Schurig9012b282007-05-25 11:27:16 -0400316 lbs_deb_join("AUTH_CMD: invalid auth alg 0x%X\n",
Dan Williams6affe782007-05-10 22:56:42 -0400317 adapter->secinfo.auth_mode);
318 goto out;
319 }
320
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200321 memcpy(pauthenticate->macaddr, bssid, ETH_ALEN);
322
Joe Perches0795af52007-10-03 17:59:30 -0700323 lbs_deb_join("AUTH_CMD: BSSID is : %s auth=0x%X\n",
324 print_mac(mac, bssid), pauthenticate->authtype);
Dan Williams6affe782007-05-10 22:56:42 -0400325 ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200326
Dan Williams6affe782007-05-10 22:56:42 -0400327out:
Dan Williams45f43de2007-05-25 22:58:55 -0400328 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Dan Williams6affe782007-05-10 22:56:42 -0400329 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200330}
331
332int libertas_cmd_80211_deauthenticate(wlan_private * priv,
333 struct cmd_ds_command *cmd)
334{
335 wlan_adapter *adapter = priv->adapter;
336 struct cmd_ds_802_11_deauthenticate *dauth = &cmd->params.deauth;
337
Holger Schurig9012b282007-05-25 11:27:16 -0400338 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200339
Dan Williams0aef64d2007-08-02 11:31:18 -0400340 cmd->command = cpu_to_le16(CMD_802_11_DEAUTHENTICATE);
David Woodhouse981f1872007-05-25 23:36:54 -0400341 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_deauthenticate) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200342 S_DS_GEN);
343
344 /* set AP MAC address */
David Woodhouse981f1872007-05-25 23:36:54 -0400345 memmove(dauth->macaddr, adapter->curbssparams.bssid, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200346
347 /* Reason code 3 = Station is leaving */
348#define REASON_CODE_STA_LEAVING 3
349 dauth->reasoncode = cpu_to_le16(REASON_CODE_STA_LEAVING);
350
Holger Schurig9012b282007-05-25 11:27:16 -0400351 lbs_deb_leave(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200352 return 0;
353}
354
355int libertas_cmd_80211_associate(wlan_private * priv,
356 struct cmd_ds_command *cmd, void *pdata_buf)
357{
358 wlan_adapter *adapter = priv->adapter;
359 struct cmd_ds_802_11_associate *passo = &cmd->params.associate;
360 int ret = 0;
Dan Williamse76850d2007-05-25 17:09:41 -0400361 struct assoc_request * assoc_req = pdata_buf;
362 struct bss_descriptor * bss = &assoc_req->bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200363 u8 *pos;
David Woodhouse981f1872007-05-25 23:36:54 -0400364 u16 tmpcap, tmplen;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200365 struct mrvlietypes_ssidparamset *ssid;
366 struct mrvlietypes_phyparamset *phy;
367 struct mrvlietypes_ssparamset *ss;
368 struct mrvlietypes_ratesparamset *rates;
369 struct mrvlietypes_rsnparamset *rsn;
370
Holger Schurig9012b282007-05-25 11:27:16 -0400371 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200372
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200373 pos = (u8 *) passo;
374
375 if (!adapter) {
376 ret = -1;
377 goto done;
378 }
379
Dan Williams0aef64d2007-08-02 11:31:18 -0400380 cmd->command = cpu_to_le16(CMD_802_11_ASSOCIATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200381
Dan Williamse76850d2007-05-25 17:09:41 -0400382 memcpy(passo->peerstaaddr, bss->bssid, sizeof(passo->peerstaaddr));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200383 pos += sizeof(passo->peerstaaddr);
384
385 /* set the listen interval */
Holger Schurig0aabc0a52007-08-02 13:10:59 -0400386 passo->listeninterval = cpu_to_le16(MRVDRV_DEFAULT_LISTEN_INTERVAL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200387
Dan Williams0c9ca692007-08-02 10:43:44 -0400388 pos += sizeof(passo->capability);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200389 pos += sizeof(passo->listeninterval);
390 pos += sizeof(passo->bcnperiod);
391 pos += sizeof(passo->dtimperiod);
392
393 ssid = (struct mrvlietypes_ssidparamset *) pos;
394 ssid->header.type = cpu_to_le16(TLV_TYPE_SSID);
Dan Williamsd8efea22007-05-28 23:54:55 -0400395 tmplen = bss->ssid_len;
David Woodhouse707985b2007-05-25 23:41:16 -0400396 ssid->header.len = cpu_to_le16(tmplen);
Dan Williamsd8efea22007-05-28 23:54:55 -0400397 memcpy(ssid->ssid, bss->ssid, tmplen);
David Woodhouse707985b2007-05-25 23:41:16 -0400398 pos += sizeof(ssid->header) + tmplen;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200399
400 phy = (struct mrvlietypes_phyparamset *) pos;
401 phy->header.type = cpu_to_le16(TLV_TYPE_PHY_DS);
David Woodhouse707985b2007-05-25 23:41:16 -0400402 tmplen = sizeof(phy->fh_ds.dsparamset);
403 phy->header.len = cpu_to_le16(tmplen);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200404 memcpy(&phy->fh_ds.dsparamset,
Dan Williamse76850d2007-05-25 17:09:41 -0400405 &bss->phyparamset.dsparamset.currentchan,
David Woodhouse707985b2007-05-25 23:41:16 -0400406 tmplen);
407 pos += sizeof(phy->header) + tmplen;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200408
409 ss = (struct mrvlietypes_ssparamset *) pos;
410 ss->header.type = cpu_to_le16(TLV_TYPE_CF);
David Woodhouse707985b2007-05-25 23:41:16 -0400411 tmplen = sizeof(ss->cf_ibss.cfparamset);
412 ss->header.len = cpu_to_le16(tmplen);
413 pos += sizeof(ss->header) + tmplen;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200414
415 rates = (struct mrvlietypes_ratesparamset *) pos;
416 rates->header.type = cpu_to_le16(TLV_TYPE_RATES);
Dan Williams8c512762007-08-02 11:40:45 -0400417 memcpy(&rates->rates, &bss->rates, MAX_RATES);
418 tmplen = MAX_RATES;
419 if (get_common_rates(adapter, rates->rates, &tmplen)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200420 ret = -1;
421 goto done;
422 }
David Woodhouse981f1872007-05-25 23:36:54 -0400423 pos += sizeof(rates->header) + tmplen;
424 rates->header.len = cpu_to_le16(tmplen);
Dan Williams8c512762007-08-02 11:40:45 -0400425 lbs_deb_join("ASSOC_CMD: num rates = %u\n", tmplen);
426
427 /* Copy the infra. association rates into Current BSS state structure */
428 memset(&adapter->curbssparams.rates, 0, sizeof(adapter->curbssparams.rates));
429 memcpy(&adapter->curbssparams.rates, &rates->rates, tmplen);
430
431 /* Set MSB on basic rates as the firmware requires, but _after_
432 * copying to current bss rates.
433 */
434 libertas_set_basic_rate_flags(rates->rates, tmplen);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200435
Dan Williamse76850d2007-05-25 17:09:41 -0400436 if (assoc_req->secinfo.WPAenabled || assoc_req->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200437 rsn = (struct mrvlietypes_rsnparamset *) pos;
David Woodhouse981f1872007-05-25 23:36:54 -0400438 /* WPA_IE or WPA2_IE */
439 rsn->header.type = cpu_to_le16((u16) assoc_req->wpa_ie[0]);
440 tmplen = (u16) assoc_req->wpa_ie[1];
441 rsn->header.len = cpu_to_le16(tmplen);
442 memcpy(rsn->rsnie, &assoc_req->wpa_ie[2], tmplen);
Holger Schurigece56192007-08-02 11:53:06 -0400443 lbs_deb_hex(LBS_DEB_JOIN, "ASSOC_CMD: RSN IE", (u8 *) rsn,
David Woodhouse981f1872007-05-25 23:36:54 -0400444 sizeof(rsn->header) + tmplen);
445 pos += sizeof(rsn->header) + tmplen;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200446 }
447
448 /* update curbssparams */
David Woodhouse981f1872007-05-25 23:36:54 -0400449 adapter->curbssparams.channel = bss->phyparamset.dsparamset.currentchan;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200450
Dan Williamse76850d2007-05-25 17:09:41 -0400451 if (libertas_parse_dnld_countryinfo_11d(priv, bss)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200452 ret = -1;
453 goto done;
454 }
455
456 cmd->size = cpu_to_le16((u16) (pos - (u8 *) passo) + S_DS_GEN);
457
Dan Williams0c9ca692007-08-02 10:43:44 -0400458 /* set the capability info */
459 tmpcap = (bss->capability & CAPINFO_MASK);
460 if (bss->mode == IW_MODE_INFRA)
461 tmpcap |= WLAN_CAPABILITY_ESS;
462 passo->capability = cpu_to_le16(tmpcap);
463 lbs_deb_join("ASSOC_CMD: capability=%4X CAPINFO_MASK=%4X\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400464 tmpcap, CAPINFO_MASK);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200465
Holger Schurig9012b282007-05-25 11:27:16 -0400466done:
467 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200468 return ret;
469}
470
471int libertas_cmd_80211_ad_hoc_start(wlan_private * priv,
Dan Williamse76850d2007-05-25 17:09:41 -0400472 struct cmd_ds_command *cmd, void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200473{
474 wlan_adapter *adapter = priv->adapter;
475 struct cmd_ds_802_11_ad_hoc_start *adhs = &cmd->params.ads;
476 int ret = 0;
477 int cmdappendsize = 0;
Dan Williamse76850d2007-05-25 17:09:41 -0400478 struct assoc_request * assoc_req = pdata_buf;
Dan Williams0c9ca692007-08-02 10:43:44 -0400479 u16 tmpcap = 0;
Dan Williams8c512762007-08-02 11:40:45 -0400480 size_t ratesize = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200481
Holger Schurig9012b282007-05-25 11:27:16 -0400482 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200483
484 if (!adapter) {
485 ret = -1;
486 goto done;
487 }
488
Dan Williams0aef64d2007-08-02 11:31:18 -0400489 cmd->command = cpu_to_le16(CMD_802_11_AD_HOC_START);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200490
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200491 /*
492 * Fill in the parameters for 2 data structures:
493 * 1. cmd_ds_802_11_ad_hoc_start command
494 * 2. adapter->scantable[i]
495 *
496 * Driver will fill up SSID, bsstype,IBSS param, Physical Param,
497 * probe delay, and cap info.
498 *
499 * Firmware will fill up beacon period, DTIM, Basic rates
500 * and operational rates.
501 */
502
Dan Williamsb44898e2007-08-02 11:18:40 -0400503 memset(adhs->ssid, 0, IW_ESSID_MAX_SIZE);
504 memcpy(adhs->ssid, assoc_req->ssid, assoc_req->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200505
Dan Williamsd8efea22007-05-28 23:54:55 -0400506 lbs_deb_join("ADHOC_S_CMD: SSID '%s', ssid length %u\n",
507 escape_essid(assoc_req->ssid, assoc_req->ssid_len),
508 assoc_req->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200509
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200510 /* set the BSS type */
Dan Williams0aef64d2007-08-02 11:31:18 -0400511 adhs->bsstype = CMD_BSS_TYPE_IBSS;
Dan Williamse76850d2007-05-25 17:09:41 -0400512 adapter->mode = IW_MODE_ADHOC;
Holger Schurig2c851032007-08-02 13:11:38 -0400513 adhs->beaconperiod = cpu_to_le16(MRVDRV_BEACON_INTERVAL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200514
515 /* set Physical param set */
516#define DS_PARA_IE_ID 3
517#define DS_PARA_IE_LEN 1
518
519 adhs->phyparamset.dsparamset.elementid = DS_PARA_IE_ID;
520 adhs->phyparamset.dsparamset.len = DS_PARA_IE_LEN;
521
Dan Williamse76850d2007-05-25 17:09:41 -0400522 WARN_ON(!assoc_req->channel);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200523
Holger Schurig9012b282007-05-25 11:27:16 -0400524 lbs_deb_join("ADHOC_S_CMD: Creating ADHOC on channel %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400525 assoc_req->channel);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200526
Dan Williamse76850d2007-05-25 17:09:41 -0400527 adhs->phyparamset.dsparamset.currentchan = assoc_req->channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200528
529 /* set IBSS param set */
530#define IBSS_PARA_IE_ID 6
531#define IBSS_PARA_IE_LEN 2
532
533 adhs->ssparamset.ibssparamset.elementid = IBSS_PARA_IE_ID;
534 adhs->ssparamset.ibssparamset.len = IBSS_PARA_IE_LEN;
Holger Schurigae596ce2007-08-02 13:10:05 -0400535 adhs->ssparamset.ibssparamset.atimwindow = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200536
537 /* set capability info */
Dan Williams0c9ca692007-08-02 10:43:44 -0400538 tmpcap = WLAN_CAPABILITY_IBSS;
Dan Williamse76850d2007-05-25 17:09:41 -0400539 if (assoc_req->secinfo.wep_enabled) {
Holger Schurig9012b282007-05-25 11:27:16 -0400540 lbs_deb_join("ADHOC_S_CMD: WEP enabled, setting privacy on\n");
Dan Williams0c9ca692007-08-02 10:43:44 -0400541 tmpcap |= WLAN_CAPABILITY_PRIVACY;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200542 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400543 lbs_deb_join("ADHOC_S_CMD: WEP disabled, setting privacy off\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200544 }
Dan Williams0c9ca692007-08-02 10:43:44 -0400545 adhs->capability = cpu_to_le16(tmpcap);
546
547 /* probedelay */
Dan Williams0aef64d2007-08-02 11:31:18 -0400548 adhs->probedelay = cpu_to_le16(CMD_SCAN_PROBE_DELAY_TIME);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200549
Dan Williams8c512762007-08-02 11:40:45 -0400550 memset(adhs->rates, 0, sizeof(adhs->rates));
Brajesh Dave4b04f192007-08-20 13:09:13 -0400551 ratesize = min(sizeof(adhs->rates), sizeof(libertas_bg_rates));
552 memcpy(adhs->rates, libertas_bg_rates, ratesize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200553
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200554 /* Copy the ad-hoc creating rates into Current BSS state structure */
Dan Williams8c512762007-08-02 11:40:45 -0400555 memset(&adapter->curbssparams.rates, 0, sizeof(adapter->curbssparams.rates));
556 memcpy(&adapter->curbssparams.rates, &adhs->rates, ratesize);
557
558 /* Set MSB on basic rates as the firmware requires, but _after_
559 * copying to current bss rates.
560 */
561 libertas_set_basic_rate_flags(adhs->rates, ratesize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200562
Holger Schurig9012b282007-05-25 11:27:16 -0400563 lbs_deb_join("ADHOC_S_CMD: rates=%02x %02x %02x %02x \n",
Dan Williams8c512762007-08-02 11:40:45 -0400564 adhs->rates[0], adhs->rates[1], adhs->rates[2], adhs->rates[3]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200565
Holger Schurig9012b282007-05-25 11:27:16 -0400566 lbs_deb_join("ADHOC_S_CMD: AD HOC Start command is ready\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200567
568 if (libertas_create_dnld_countryinfo_11d(priv)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400569 lbs_deb_join("ADHOC_S_CMD: dnld_countryinfo_11d failed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200570 ret = -1;
571 goto done;
572 }
573
David Woodhouse981f1872007-05-25 23:36:54 -0400574 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ad_hoc_start) +
575 S_DS_GEN + cmdappendsize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200576
577 ret = 0;
578done:
Holger Schurig9012b282007-05-25 11:27:16 -0400579 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200580 return ret;
581}
582
583int libertas_cmd_80211_ad_hoc_stop(wlan_private * priv,
584 struct cmd_ds_command *cmd)
585{
Dan Williams0aef64d2007-08-02 11:31:18 -0400586 cmd->command = cpu_to_le16(CMD_802_11_AD_HOC_STOP);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200587 cmd->size = cpu_to_le16(S_DS_GEN);
588
589 return 0;
590}
591
592int libertas_cmd_80211_ad_hoc_join(wlan_private * priv,
593 struct cmd_ds_command *cmd, void *pdata_buf)
594{
595 wlan_adapter *adapter = priv->adapter;
Dan Williams0c9ca692007-08-02 10:43:44 -0400596 struct cmd_ds_802_11_ad_hoc_join *join_cmd = &cmd->params.adj;
Dan Williamse76850d2007-05-25 17:09:41 -0400597 struct assoc_request * assoc_req = pdata_buf;
598 struct bss_descriptor *bss = &assoc_req->bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200599 int cmdappendsize = 0;
600 int ret = 0;
Dan Williams8c512762007-08-02 11:40:45 -0400601 u16 ratesize = 0;
Joe Perches0795af52007-10-03 17:59:30 -0700602 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200603
Holger Schurig9012b282007-05-25 11:27:16 -0400604 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200605
Dan Williams0aef64d2007-08-02 11:31:18 -0400606 cmd->command = cpu_to_le16(CMD_802_11_AD_HOC_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200607
Dan Williams0aef64d2007-08-02 11:31:18 -0400608 join_cmd->bss.type = CMD_BSS_TYPE_IBSS;
Dan Williams0c9ca692007-08-02 10:43:44 -0400609 join_cmd->bss.beaconperiod = cpu_to_le16(bss->beaconperiod);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200610
Dan Williams0c9ca692007-08-02 10:43:44 -0400611 memcpy(&join_cmd->bss.bssid, &bss->bssid, ETH_ALEN);
612 memcpy(&join_cmd->bss.ssid, &bss->ssid, bss->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200613
Dan Williams0c9ca692007-08-02 10:43:44 -0400614 memcpy(&join_cmd->bss.phyparamset, &bss->phyparamset,
615 sizeof(union ieeetypes_phyparamset));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200616
Dan Williams0c9ca692007-08-02 10:43:44 -0400617 memcpy(&join_cmd->bss.ssparamset, &bss->ssparamset,
618 sizeof(union IEEEtypes_ssparamset));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200619
Dan Williams0c9ca692007-08-02 10:43:44 -0400620 join_cmd->bss.capability = cpu_to_le16(bss->capability & CAPINFO_MASK);
Holger Schurig9012b282007-05-25 11:27:16 -0400621 lbs_deb_join("ADHOC_J_CMD: tmpcap=%4X CAPINFO_MASK=%4X\n",
Dan Williams0c9ca692007-08-02 10:43:44 -0400622 bss->capability, CAPINFO_MASK);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200623
624 /* information on BSSID descriptor passed to FW */
Dan Williamse76850d2007-05-25 17:09:41 -0400625 lbs_deb_join(
Joe Perches0795af52007-10-03 17:59:30 -0700626 "ADHOC_J_CMD: BSSID = %s, SSID = '%s'\n",
627 print_mac(mac, join_cmd->bss.bssid),
628 join_cmd->bss.ssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200629
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200630 /* failtimeout */
Dan Williams0c9ca692007-08-02 10:43:44 -0400631 join_cmd->failtimeout = cpu_to_le16(MRVDRV_ASSOCIATION_TIME_OUT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200632
633 /* probedelay */
Dan Williams0aef64d2007-08-02 11:31:18 -0400634 join_cmd->probedelay = cpu_to_le16(CMD_SCAN_PROBE_DELAY_TIME);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200635
Dan Williamse76850d2007-05-25 17:09:41 -0400636 adapter->curbssparams.channel = bss->channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200637
Dan Williams8c512762007-08-02 11:40:45 -0400638 /* Copy Data rates from the rates recorded in scan response */
639 memset(join_cmd->bss.rates, 0, sizeof(join_cmd->bss.rates));
640 ratesize = min_t(u16, sizeof(join_cmd->bss.rates), MAX_RATES);
641 memcpy(join_cmd->bss.rates, bss->rates, ratesize);
642 if (get_common_rates(adapter, join_cmd->bss.rates, &ratesize)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400643 lbs_deb_join("ADHOC_J_CMD: get_common_rates returns error.\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200644 ret = -1;
645 goto done;
646 }
647
Dan Williams8c512762007-08-02 11:40:45 -0400648 /* Copy the ad-hoc creating rates into Current BSS state structure */
649 memset(&adapter->curbssparams.rates, 0, sizeof(adapter->curbssparams.rates));
650 memcpy(&adapter->curbssparams.rates, join_cmd->bss.rates, ratesize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200651
Dan Williams8c512762007-08-02 11:40:45 -0400652 /* Set MSB on basic rates as the firmware requires, but _after_
653 * copying to current bss rates.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200654 */
Dan Williams8c512762007-08-02 11:40:45 -0400655 libertas_set_basic_rate_flags(join_cmd->bss.rates, ratesize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200656
Dan Williams0c9ca692007-08-02 10:43:44 -0400657 join_cmd->bss.ssparamset.ibssparamset.atimwindow =
Dan Williamse76850d2007-05-25 17:09:41 -0400658 cpu_to_le16(bss->atimwindow);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200659
Dan Williamse76850d2007-05-25 17:09:41 -0400660 if (assoc_req->secinfo.wep_enabled) {
Dan Williams0c9ca692007-08-02 10:43:44 -0400661 u16 tmp = le16_to_cpu(join_cmd->bss.capability);
662 tmp |= WLAN_CAPABILITY_PRIVACY;
663 join_cmd->bss.capability = cpu_to_le16(tmp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200664 }
665
Dan Williams0aef64d2007-08-02 11:31:18 -0400666 if (adapter->psmode == WLAN802_11POWERMODEMAX_PSP) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200667 /* wake up first */
David Woodhouse981f1872007-05-25 23:36:54 -0400668 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200669
Dan Williams0aef64d2007-08-02 11:31:18 -0400670 Localpsmode = cpu_to_le32(WLAN802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200671 ret = libertas_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -0400672 CMD_802_11_PS_MODE,
673 CMD_ACT_SET,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200674 0, 0, &Localpsmode);
675
676 if (ret) {
677 ret = -1;
678 goto done;
679 }
680 }
681
Dan Williamse76850d2007-05-25 17:09:41 -0400682 if (libertas_parse_dnld_countryinfo_11d(priv, bss)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200683 ret = -1;
684 goto done;
685 }
686
David Woodhouse981f1872007-05-25 23:36:54 -0400687 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ad_hoc_join) +
688 S_DS_GEN + cmdappendsize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200689
Holger Schurig9012b282007-05-25 11:27:16 -0400690done:
691 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200692 return ret;
693}
694
695int libertas_ret_80211_associate(wlan_private * priv,
696 struct cmd_ds_command *resp)
697{
698 wlan_adapter *adapter = priv->adapter;
699 int ret = 0;
700 union iwreq_data wrqu;
701 struct ieeetypes_assocrsp *passocrsp;
Dan Williamse76850d2007-05-25 17:09:41 -0400702 struct bss_descriptor * bss;
Dan Williamsc7fdf262007-08-02 13:20:29 -0400703 u16 status_code;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200704
Holger Schurig9012b282007-05-25 11:27:16 -0400705 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200706
Dan Williamse76850d2007-05-25 17:09:41 -0400707 if (!adapter->in_progress_assoc_req) {
708 lbs_deb_join("ASSOC_RESP: no in-progress association request\n");
709 ret = -1;
710 goto done;
711 }
712 bss = &adapter->in_progress_assoc_req->bss;
713
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200714 passocrsp = (struct ieeetypes_assocrsp *) & resp->params;
715
Dan Williamsc7fdf262007-08-02 13:20:29 -0400716 /*
717 * Older FW versions map the IEEE 802.11 Status Code in the association
718 * response to the following values returned in passocrsp->statuscode:
719 *
720 * IEEE Status Code Marvell Status Code
721 * 0 -> 0x0000 ASSOC_RESULT_SUCCESS
722 * 13 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
723 * 14 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
724 * 15 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
725 * 16 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
726 * others -> 0x0003 ASSOC_RESULT_REFUSED
727 *
728 * Other response codes:
729 * 0x0001 -> ASSOC_RESULT_INVALID_PARAMETERS (unused)
730 * 0x0002 -> ASSOC_RESULT_TIMEOUT (internal timer expired waiting for
731 * association response from the AP)
732 */
733
734 status_code = le16_to_cpu(passocrsp->statuscode);
735 switch (status_code) {
736 case 0x00:
737 lbs_deb_join("ASSOC_RESP: Association succeeded\n");
738 break;
739 case 0x01:
740 lbs_deb_join("ASSOC_RESP: Association failed; invalid "
741 "parameters (status code %d)\n", status_code);
742 break;
743 case 0x02:
744 lbs_deb_join("ASSOC_RESP: Association failed; internal timer "
745 "expired while waiting for the AP (status code %d)"
746 "\n", status_code);
747 break;
748 case 0x03:
749 lbs_deb_join("ASSOC_RESP: Association failed; association "
750 "was refused by the AP (status code %d)\n",
751 status_code);
752 break;
753 case 0x04:
754 lbs_deb_join("ASSOC_RESP: Association failed; authentication "
755 "was refused by the AP (status code %d)\n",
756 status_code);
757 break;
758 default:
759 lbs_deb_join("ASSOC_RESP: Association failed; reason unknown "
760 "(status code %d)\n", status_code);
761 break;
762 }
763
764 if (status_code) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200765 libertas_mac_event_disconnected(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200766 ret = -1;
767 goto done;
768 }
769
Holger Schurigece56192007-08-02 11:53:06 -0400770 lbs_deb_hex(LBS_DEB_JOIN, "ASSOC_RESP", (void *)&resp->params,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200771 le16_to_cpu(resp->size) - S_DS_GEN);
772
773 /* Send a Media Connected event, according to the Spec */
Dan Williams0aef64d2007-08-02 11:31:18 -0400774 adapter->connect_status = LIBERTAS_CONNECTED;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200775
Dan Williamsd8efea22007-05-28 23:54:55 -0400776 lbs_deb_join("ASSOC_RESP: assocated to '%s'\n",
777 escape_essid(bss->ssid, bss->ssid_len));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200778
Dan Williamse76850d2007-05-25 17:09:41 -0400779 /* Update current SSID and BSSID */
Dan Williamsd8efea22007-05-28 23:54:55 -0400780 memcpy(&adapter->curbssparams.ssid, &bss->ssid, IW_ESSID_MAX_SIZE);
781 adapter->curbssparams.ssid_len = bss->ssid_len;
Dan Williamse76850d2007-05-25 17:09:41 -0400782 memcpy(adapter->curbssparams.bssid, bss->bssid, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200783
Holger Schurig9012b282007-05-25 11:27:16 -0400784 lbs_deb_join("ASSOC_RESP: currentpacketfilter is %x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200785 adapter->currentpacketfilter);
786
787 adapter->SNR[TYPE_RXPD][TYPE_AVG] = 0;
788 adapter->NF[TYPE_RXPD][TYPE_AVG] = 0;
789
790 memset(adapter->rawSNR, 0x00, sizeof(adapter->rawSNR));
791 memset(adapter->rawNF, 0x00, sizeof(adapter->rawNF));
792 adapter->nextSNRNF = 0;
793 adapter->numSNRNF = 0;
794
Holger Schurig634b8f42007-05-25 13:05:16 -0400795 netif_carrier_on(priv->dev);
796 netif_wake_queue(priv->dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200797
Holger Schurig3cf84092007-08-02 11:50:12 -0400798 if (priv->mesh_dev) {
799 netif_carrier_on(priv->mesh_dev);
800 netif_wake_queue(priv->mesh_dev);
801 }
Javier Cardona51d84f52007-05-25 12:06:56 -0400802
Holger Schurig9012b282007-05-25 11:27:16 -0400803 lbs_deb_join("ASSOC_RESP: Associated \n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200804
805 memcpy(wrqu.ap_addr.sa_data, adapter->curbssparams.bssid, ETH_ALEN);
806 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
Holger Schurig634b8f42007-05-25 13:05:16 -0400807 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200808
Holger Schurig9012b282007-05-25 11:27:16 -0400809done:
810 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200811 return ret;
812}
813
814int libertas_ret_80211_disassociate(wlan_private * priv,
815 struct cmd_ds_command *resp)
816{
Holger Schurig9012b282007-05-25 11:27:16 -0400817 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200818
819 libertas_mac_event_disconnected(priv);
820
Holger Schurig9012b282007-05-25 11:27:16 -0400821 lbs_deb_leave(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200822 return 0;
823}
824
825int libertas_ret_80211_ad_hoc_start(wlan_private * priv,
826 struct cmd_ds_command *resp)
827{
828 wlan_adapter *adapter = priv->adapter;
829 int ret = 0;
830 u16 command = le16_to_cpu(resp->command);
831 u16 result = le16_to_cpu(resp->result);
832 struct cmd_ds_802_11_ad_hoc_result *padhocresult;
833 union iwreq_data wrqu;
Dan Williamse76850d2007-05-25 17:09:41 -0400834 struct bss_descriptor *bss;
Joe Perches0795af52007-10-03 17:59:30 -0700835 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200836
Holger Schurig9012b282007-05-25 11:27:16 -0400837 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200838
839 padhocresult = &resp->params.result;
840
Dan Williamse76850d2007-05-25 17:09:41 -0400841 lbs_deb_join("ADHOC_RESP: size = %d\n", le16_to_cpu(resp->size));
842 lbs_deb_join("ADHOC_RESP: command = %x\n", command);
843 lbs_deb_join("ADHOC_RESP: result = %x\n", result);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200844
Dan Williamse76850d2007-05-25 17:09:41 -0400845 if (!adapter->in_progress_assoc_req) {
846 lbs_deb_join("ADHOC_RESP: no in-progress association request\n");
847 ret = -1;
848 goto done;
849 }
850 bss = &adapter->in_progress_assoc_req->bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200851
852 /*
853 * Join result code 0 --> SUCCESS
854 */
855 if (result) {
Dan Williamse76850d2007-05-25 17:09:41 -0400856 lbs_deb_join("ADHOC_RESP: failed\n");
Dan Williams0aef64d2007-08-02 11:31:18 -0400857 if (adapter->connect_status == LIBERTAS_CONNECTED) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200858 libertas_mac_event_disconnected(priv);
859 }
Holger Schurig9012b282007-05-25 11:27:16 -0400860 ret = -1;
861 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200862 }
863
864 /*
865 * Now the join cmd should be successful
866 * If BSSID has changed use SSID to compare instead of BSSID
867 */
Dan Williamsd8efea22007-05-28 23:54:55 -0400868 lbs_deb_join("ADHOC_RESP: associated to '%s'\n",
869 escape_essid(bss->ssid, bss->ssid_len));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200870
871 /* Send a Media Connected event, according to the Spec */
Dan Williams0aef64d2007-08-02 11:31:18 -0400872 adapter->connect_status = LIBERTAS_CONNECTED;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200873
Holger Schurig6b63cd02007-08-02 11:53:36 -0400874 if (command == CMD_RET(CMD_802_11_AD_HOC_START)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200875 /* Update the created network descriptor with the new BSSID */
Dan Williamsea8da922007-08-02 11:18:23 -0400876 memcpy(bss->bssid, padhocresult->bssid, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200877 }
878
879 /* Set the BSSID from the joined/started descriptor */
Dan Williamse76850d2007-05-25 17:09:41 -0400880 memcpy(&adapter->curbssparams.bssid, bss->bssid, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200881
882 /* Set the new SSID to current SSID */
Dan Williamsd8efea22007-05-28 23:54:55 -0400883 memcpy(&adapter->curbssparams.ssid, &bss->ssid, IW_ESSID_MAX_SIZE);
884 adapter->curbssparams.ssid_len = bss->ssid_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200885
Holger Schurig634b8f42007-05-25 13:05:16 -0400886 netif_carrier_on(priv->dev);
887 netif_wake_queue(priv->dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200888
Holger Schurig3cf84092007-08-02 11:50:12 -0400889 if (priv->mesh_dev) {
890 netif_carrier_on(priv->mesh_dev);
891 netif_wake_queue(priv->mesh_dev);
892 }
Javier Cardona51d84f52007-05-25 12:06:56 -0400893
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200894 memset(&wrqu, 0, sizeof(wrqu));
895 memcpy(wrqu.ap_addr.sa_data, adapter->curbssparams.bssid, ETH_ALEN);
896 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
Holger Schurig634b8f42007-05-25 13:05:16 -0400897 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200898
Holger Schurig9012b282007-05-25 11:27:16 -0400899 lbs_deb_join("ADHOC_RESP: - Joined/Started Ad Hoc\n");
Dan Williamsef9a2642007-05-25 16:46:33 -0400900 lbs_deb_join("ADHOC_RESP: channel = %d\n", adapter->curbssparams.channel);
Joe Perches0795af52007-10-03 17:59:30 -0700901 lbs_deb_join("ADHOC_RESP: BSSID = %s\n",
902 print_mac(mac, padhocresult->bssid));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200903
Holger Schurig9012b282007-05-25 11:27:16 -0400904done:
905 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200906 return ret;
907}
908
909int libertas_ret_80211_ad_hoc_stop(wlan_private * priv,
910 struct cmd_ds_command *resp)
911{
Holger Schurig9012b282007-05-25 11:27:16 -0400912 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200913
914 libertas_mac_event_disconnected(priv);
915
Holger Schurig9012b282007-05-25 11:27:16 -0400916 lbs_deb_leave(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200917 return 0;
918}