blob: ca67524ee8dda0bbc855ffd4bcd248d5fe9868c8 [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 *
Holger Schurig10078322007-11-15 18:05:47 -050033 * @param adapter A pointer to lbs_adapter structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020034 * @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 */
Holger Schurig10078322007-11-15 18:05:47 -050039static int get_common_rates(lbs_adapter *adapter, u8 *rates, u16 *rates_size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020040{
Holger Schurig10078322007-11-15 18:05:47 -050041 u8 *card_rates = lbs_bg_rates;
42 size_t num_card_rates = sizeof(lbs_bg_rates);
Dan Williams8c512762007-08-02 11:40:45 -040043 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 */
Holger Schurig10078322007-11-15 18:05:47 -050088static void lbs_set_basic_rate_flags(u8 *rates, size_t len)
Dan Williams8c512762007-08-02 11:40:45 -040089{
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 */
Holger Schurig10078322007-11-15 18:05:47 -0500107void lbs_unset_basic_rate_flags(u8 *rates, size_t len)
Dan Williams8c512762007-08-02 11:40:45 -0400108{
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 *
Holger Schurig10078322007-11-15 18:05:47 -0500119 * @param priv A pointer to lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200120 * @param pbssdesc Pointer to the BSS descriptor to associate with.
121 *
122 * @return 0-success, otherwise fail
123 */
Holger Schurig10078322007-11-15 18:05:47 -0500124int lbs_associate(lbs_private *priv, struct assoc_request *assoc_req)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200125{
Holger Schurig10078322007-11-15 18:05:47 -0500126 lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200127 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
Holger Schurig10078322007-11-15 18:05:47 -0500131 ret = lbs_prepare_and_send_command(priv, CMD_802_11_AUTHENTICATE,
Dan Williams0aef64d2007-08-02 11:31:18 -0400132 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
Holger Schurig10078322007-11-15 18:05:47 -0500145 lbs_set_radio_control(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200146
Holger Schurig10078322007-11-15 18:05:47 -0500147 ret = lbs_prepare_and_send_command(priv, CMD_802_11_ASSOCIATE,
Dan Williams0aef64d2007-08-02 11:31:18 -0400148 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 *
Holger Schurig10078322007-11-15 18:05:47 -0500158 * @param priv A pointer to lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200159 * @param adhocssid The ssid of the Adhoc Network
160 * @return 0--success, -1--fail
161 */
Holger Schurig10078322007-11-15 18:05:47 -0500162int lbs_start_adhoc_network(lbs_private *priv, struct assoc_request *assoc_req)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200163{
Holger Schurig10078322007-11-15 18:05:47 -0500164 lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200165 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
Holger Schurig10078322007-11-15 18:05:47 -0500177 lbs_set_radio_control(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200178
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
Holger Schurig10078322007-11-15 18:05:47 -0500182 ret = lbs_prepare_and_send_command(priv, CMD_802_11_AD_HOC_START,
Dan Williams0aef64d2007-08-02 11:31:18 -0400183 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 *
Holger Schurig10078322007-11-15 18:05:47 -0500191 * @param priv A pointer to lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200192 * @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 */
Holger Schurig10078322007-11-15 18:05:47 -0500197int lbs_join_adhoc_network(lbs_private *priv, struct assoc_request *assoc_req)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200198{
Holger Schurig10078322007-11-15 18:05:47 -0500199 lbs_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
Holger Schurig10078322007-11-15 18:05:47 -0500214 && !lbs_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)
Holger Schurig10078322007-11-15 18:05:47 -0500218 && (adapter->connect_status == LBS_CONNECTED)) {
Dan Williams0edef212007-08-02 13:14:29 -0400219 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
Holger Schurig10078322007-11-15 18:05:47 -0500246 lbs_set_radio_control(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200247
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
Holger Schurig10078322007-11-15 18:05:47 -0500253 ret = lbs_prepare_and_send_command(priv, CMD_802_11_AD_HOC_JOIN,
Dan Williams0aef64d2007-08-02 11:31:18 -0400254 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
Holger Schurig10078322007-11-15 18:05:47 -0500261int lbs_stop_adhoc_network(lbs_private * priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200262{
Holger Schurig10078322007-11-15 18:05:47 -0500263 return lbs_prepare_and_send_command(priv, CMD_802_11_AD_HOC_STOP,
Dan Williams0aef64d2007-08-02 11:31:18 -0400264 0, CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200265}
266
267/**
268 * @brief Send Deauthentication Request
269 *
Holger Schurig10078322007-11-15 18:05:47 -0500270 * @param priv A pointer to lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200271 * @return 0--success, -1--fail
272 */
Holger Schurig10078322007-11-15 18:05:47 -0500273int lbs_send_deauthentication(lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200274{
Holger Schurig10078322007-11-15 18:05:47 -0500275 return lbs_prepare_and_send_command(priv, CMD_802_11_DEAUTHENTICATE,
Dan Williams0aef64d2007-08-02 11:31:18 -0400276 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 *
Holger Schurig10078322007-11-15 18:05:47 -0500282 * @param priv A pointer to lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200283 * @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 */
Holger Schurig10078322007-11-15 18:05:47 -0500288int lbs_cmd_80211_authenticate(lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200289 struct cmd_ds_command *cmd,
290 void *pdata_buf)
291{
Holger Schurig10078322007-11-15 18:05:47 -0500292 lbs_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
Holger Schurig10078322007-11-15 18:05:47 -0500332int lbs_cmd_80211_deauthenticate(lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200333 struct cmd_ds_command *cmd)
334{
Holger Schurig10078322007-11-15 18:05:47 -0500335 lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200336 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
Holger Schurig10078322007-11-15 18:05:47 -0500355int lbs_cmd_80211_associate(lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200356 struct cmd_ds_command *cmd, void *pdata_buf)
357{
Holger Schurig10078322007-11-15 18:05:47 -0500358 lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200359 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 */
Holger Schurig10078322007-11-15 18:05:47 -0500434 lbs_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
Holger Schurig10078322007-11-15 18:05:47 -0500451 if (lbs_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
Holger Schurig10078322007-11-15 18:05:47 -0500471int lbs_cmd_80211_ad_hoc_start(lbs_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{
Holger Schurig10078322007-11-15 18:05:47 -0500474 lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200475 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;
Brajesh Dave96287ac2007-11-20 17:44:28 -0500513 if (adapter->beacon_period == 0)
514 adapter->beacon_period = MRVDRV_BEACON_INTERVAL;
515 adhs->beaconperiod = cpu_to_le16(adapter->beacon_period);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200516
517 /* set Physical param set */
518#define DS_PARA_IE_ID 3
519#define DS_PARA_IE_LEN 1
520
521 adhs->phyparamset.dsparamset.elementid = DS_PARA_IE_ID;
522 adhs->phyparamset.dsparamset.len = DS_PARA_IE_LEN;
523
Dan Williamse76850d2007-05-25 17:09:41 -0400524 WARN_ON(!assoc_req->channel);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200525
Holger Schurig9012b282007-05-25 11:27:16 -0400526 lbs_deb_join("ADHOC_S_CMD: Creating ADHOC on channel %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400527 assoc_req->channel);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200528
Dan Williamse76850d2007-05-25 17:09:41 -0400529 adhs->phyparamset.dsparamset.currentchan = assoc_req->channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200530
531 /* set IBSS param set */
532#define IBSS_PARA_IE_ID 6
533#define IBSS_PARA_IE_LEN 2
534
535 adhs->ssparamset.ibssparamset.elementid = IBSS_PARA_IE_ID;
536 adhs->ssparamset.ibssparamset.len = IBSS_PARA_IE_LEN;
Holger Schurigae596ce2007-08-02 13:10:05 -0400537 adhs->ssparamset.ibssparamset.atimwindow = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200538
539 /* set capability info */
Dan Williams0c9ca692007-08-02 10:43:44 -0400540 tmpcap = WLAN_CAPABILITY_IBSS;
Dan Williamse76850d2007-05-25 17:09:41 -0400541 if (assoc_req->secinfo.wep_enabled) {
Holger Schurig9012b282007-05-25 11:27:16 -0400542 lbs_deb_join("ADHOC_S_CMD: WEP enabled, setting privacy on\n");
Dan Williams0c9ca692007-08-02 10:43:44 -0400543 tmpcap |= WLAN_CAPABILITY_PRIVACY;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200544 } else {
Holger Schurig9012b282007-05-25 11:27:16 -0400545 lbs_deb_join("ADHOC_S_CMD: WEP disabled, setting privacy off\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200546 }
Dan Williams0c9ca692007-08-02 10:43:44 -0400547 adhs->capability = cpu_to_le16(tmpcap);
548
549 /* probedelay */
Dan Williams0aef64d2007-08-02 11:31:18 -0400550 adhs->probedelay = cpu_to_le16(CMD_SCAN_PROBE_DELAY_TIME);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200551
Dan Williams8c512762007-08-02 11:40:45 -0400552 memset(adhs->rates, 0, sizeof(adhs->rates));
Holger Schurig10078322007-11-15 18:05:47 -0500553 ratesize = min(sizeof(adhs->rates), sizeof(lbs_bg_rates));
554 memcpy(adhs->rates, lbs_bg_rates, ratesize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200555
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200556 /* Copy the ad-hoc creating rates into Current BSS state structure */
Dan Williams8c512762007-08-02 11:40:45 -0400557 memset(&adapter->curbssparams.rates, 0, sizeof(adapter->curbssparams.rates));
558 memcpy(&adapter->curbssparams.rates, &adhs->rates, ratesize);
559
560 /* Set MSB on basic rates as the firmware requires, but _after_
561 * copying to current bss rates.
562 */
Holger Schurig10078322007-11-15 18:05:47 -0500563 lbs_set_basic_rate_flags(adhs->rates, ratesize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200564
Holger Schurig9012b282007-05-25 11:27:16 -0400565 lbs_deb_join("ADHOC_S_CMD: rates=%02x %02x %02x %02x \n",
Dan Williams8c512762007-08-02 11:40:45 -0400566 adhs->rates[0], adhs->rates[1], adhs->rates[2], adhs->rates[3]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200567
Holger Schurig9012b282007-05-25 11:27:16 -0400568 lbs_deb_join("ADHOC_S_CMD: AD HOC Start command is ready\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200569
Holger Schurig10078322007-11-15 18:05:47 -0500570 if (lbs_create_dnld_countryinfo_11d(priv)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400571 lbs_deb_join("ADHOC_S_CMD: dnld_countryinfo_11d failed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200572 ret = -1;
573 goto done;
574 }
575
David Woodhouse981f1872007-05-25 23:36:54 -0400576 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ad_hoc_start) +
577 S_DS_GEN + cmdappendsize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200578
579 ret = 0;
580done:
Holger Schurig9012b282007-05-25 11:27:16 -0400581 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200582 return ret;
583}
584
Holger Schurig10078322007-11-15 18:05:47 -0500585int lbs_cmd_80211_ad_hoc_stop(lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200586 struct cmd_ds_command *cmd)
587{
Dan Williams0aef64d2007-08-02 11:31:18 -0400588 cmd->command = cpu_to_le16(CMD_802_11_AD_HOC_STOP);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200589 cmd->size = cpu_to_le16(S_DS_GEN);
590
591 return 0;
592}
593
Holger Schurig10078322007-11-15 18:05:47 -0500594int lbs_cmd_80211_ad_hoc_join(lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200595 struct cmd_ds_command *cmd, void *pdata_buf)
596{
Holger Schurig10078322007-11-15 18:05:47 -0500597 lbs_adapter *adapter = priv->adapter;
Dan Williams0c9ca692007-08-02 10:43:44 -0400598 struct cmd_ds_802_11_ad_hoc_join *join_cmd = &cmd->params.adj;
Dan Williamse76850d2007-05-25 17:09:41 -0400599 struct assoc_request * assoc_req = pdata_buf;
600 struct bss_descriptor *bss = &assoc_req->bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200601 int cmdappendsize = 0;
602 int ret = 0;
Dan Williams8c512762007-08-02 11:40:45 -0400603 u16 ratesize = 0;
Joe Perches0795af52007-10-03 17:59:30 -0700604 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200605
Holger Schurig9012b282007-05-25 11:27:16 -0400606 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200607
Dan Williams0aef64d2007-08-02 11:31:18 -0400608 cmd->command = cpu_to_le16(CMD_802_11_AD_HOC_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200609
Dan Williams0aef64d2007-08-02 11:31:18 -0400610 join_cmd->bss.type = CMD_BSS_TYPE_IBSS;
Dan Williams0c9ca692007-08-02 10:43:44 -0400611 join_cmd->bss.beaconperiod = cpu_to_le16(bss->beaconperiod);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200612
Dan Williams0c9ca692007-08-02 10:43:44 -0400613 memcpy(&join_cmd->bss.bssid, &bss->bssid, ETH_ALEN);
614 memcpy(&join_cmd->bss.ssid, &bss->ssid, bss->ssid_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200615
Dan Williams0c9ca692007-08-02 10:43:44 -0400616 memcpy(&join_cmd->bss.phyparamset, &bss->phyparamset,
617 sizeof(union ieeetypes_phyparamset));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200618
Dan Williams0c9ca692007-08-02 10:43:44 -0400619 memcpy(&join_cmd->bss.ssparamset, &bss->ssparamset,
620 sizeof(union IEEEtypes_ssparamset));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200621
Dan Williams0c9ca692007-08-02 10:43:44 -0400622 join_cmd->bss.capability = cpu_to_le16(bss->capability & CAPINFO_MASK);
Holger Schurig9012b282007-05-25 11:27:16 -0400623 lbs_deb_join("ADHOC_J_CMD: tmpcap=%4X CAPINFO_MASK=%4X\n",
Dan Williams0c9ca692007-08-02 10:43:44 -0400624 bss->capability, CAPINFO_MASK);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200625
626 /* information on BSSID descriptor passed to FW */
Dan Williamse76850d2007-05-25 17:09:41 -0400627 lbs_deb_join(
Joe Perches0795af52007-10-03 17:59:30 -0700628 "ADHOC_J_CMD: BSSID = %s, SSID = '%s'\n",
629 print_mac(mac, join_cmd->bss.bssid),
630 join_cmd->bss.ssid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200631
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200632 /* failtimeout */
Dan Williams0c9ca692007-08-02 10:43:44 -0400633 join_cmd->failtimeout = cpu_to_le16(MRVDRV_ASSOCIATION_TIME_OUT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200634
635 /* probedelay */
Dan Williams0aef64d2007-08-02 11:31:18 -0400636 join_cmd->probedelay = cpu_to_le16(CMD_SCAN_PROBE_DELAY_TIME);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200637
Dan Williamse76850d2007-05-25 17:09:41 -0400638 adapter->curbssparams.channel = bss->channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200639
Dan Williams8c512762007-08-02 11:40:45 -0400640 /* Copy Data rates from the rates recorded in scan response */
641 memset(join_cmd->bss.rates, 0, sizeof(join_cmd->bss.rates));
642 ratesize = min_t(u16, sizeof(join_cmd->bss.rates), MAX_RATES);
643 memcpy(join_cmd->bss.rates, bss->rates, ratesize);
644 if (get_common_rates(adapter, join_cmd->bss.rates, &ratesize)) {
Holger Schurig9012b282007-05-25 11:27:16 -0400645 lbs_deb_join("ADHOC_J_CMD: get_common_rates returns error.\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200646 ret = -1;
647 goto done;
648 }
649
Dan Williams8c512762007-08-02 11:40:45 -0400650 /* Copy the ad-hoc creating rates into Current BSS state structure */
651 memset(&adapter->curbssparams.rates, 0, sizeof(adapter->curbssparams.rates));
652 memcpy(&adapter->curbssparams.rates, join_cmd->bss.rates, ratesize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200653
Dan Williams8c512762007-08-02 11:40:45 -0400654 /* Set MSB on basic rates as the firmware requires, but _after_
655 * copying to current bss rates.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200656 */
Holger Schurig10078322007-11-15 18:05:47 -0500657 lbs_set_basic_rate_flags(join_cmd->bss.rates, ratesize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200658
Dan Williams0c9ca692007-08-02 10:43:44 -0400659 join_cmd->bss.ssparamset.ibssparamset.atimwindow =
Dan Williamse76850d2007-05-25 17:09:41 -0400660 cpu_to_le16(bss->atimwindow);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200661
Dan Williamse76850d2007-05-25 17:09:41 -0400662 if (assoc_req->secinfo.wep_enabled) {
Dan Williams0c9ca692007-08-02 10:43:44 -0400663 u16 tmp = le16_to_cpu(join_cmd->bss.capability);
664 tmp |= WLAN_CAPABILITY_PRIVACY;
665 join_cmd->bss.capability = cpu_to_le16(tmp);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200666 }
667
Holger Schurig10078322007-11-15 18:05:47 -0500668 if (adapter->psmode == LBS802_11POWERMODEMAX_PSP) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200669 /* wake up first */
David Woodhouse981f1872007-05-25 23:36:54 -0400670 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200671
Holger Schurig10078322007-11-15 18:05:47 -0500672 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
673 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -0400674 CMD_802_11_PS_MODE,
675 CMD_ACT_SET,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200676 0, 0, &Localpsmode);
677
678 if (ret) {
679 ret = -1;
680 goto done;
681 }
682 }
683
Holger Schurig10078322007-11-15 18:05:47 -0500684 if (lbs_parse_dnld_countryinfo_11d(priv, bss)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200685 ret = -1;
686 goto done;
687 }
688
David Woodhouse981f1872007-05-25 23:36:54 -0400689 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ad_hoc_join) +
690 S_DS_GEN + cmdappendsize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200691
Holger Schurig9012b282007-05-25 11:27:16 -0400692done:
693 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200694 return ret;
695}
696
Holger Schurig10078322007-11-15 18:05:47 -0500697int lbs_ret_80211_associate(lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200698 struct cmd_ds_command *resp)
699{
Holger Schurig10078322007-11-15 18:05:47 -0500700 lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200701 int ret = 0;
702 union iwreq_data wrqu;
703 struct ieeetypes_assocrsp *passocrsp;
Dan Williamse76850d2007-05-25 17:09:41 -0400704 struct bss_descriptor * bss;
Dan Williamsc7fdf262007-08-02 13:20:29 -0400705 u16 status_code;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200706
Holger Schurig9012b282007-05-25 11:27:16 -0400707 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200708
Dan Williamse76850d2007-05-25 17:09:41 -0400709 if (!adapter->in_progress_assoc_req) {
710 lbs_deb_join("ASSOC_RESP: no in-progress association request\n");
711 ret = -1;
712 goto done;
713 }
714 bss = &adapter->in_progress_assoc_req->bss;
715
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200716 passocrsp = (struct ieeetypes_assocrsp *) & resp->params;
717
Dan Williamsc7fdf262007-08-02 13:20:29 -0400718 /*
719 * Older FW versions map the IEEE 802.11 Status Code in the association
720 * response to the following values returned in passocrsp->statuscode:
721 *
722 * IEEE Status Code Marvell Status Code
723 * 0 -> 0x0000 ASSOC_RESULT_SUCCESS
724 * 13 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
725 * 14 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
726 * 15 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
727 * 16 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
728 * others -> 0x0003 ASSOC_RESULT_REFUSED
729 *
730 * Other response codes:
731 * 0x0001 -> ASSOC_RESULT_INVALID_PARAMETERS (unused)
732 * 0x0002 -> ASSOC_RESULT_TIMEOUT (internal timer expired waiting for
733 * association response from the AP)
734 */
735
736 status_code = le16_to_cpu(passocrsp->statuscode);
737 switch (status_code) {
738 case 0x00:
739 lbs_deb_join("ASSOC_RESP: Association succeeded\n");
740 break;
741 case 0x01:
742 lbs_deb_join("ASSOC_RESP: Association failed; invalid "
743 "parameters (status code %d)\n", status_code);
744 break;
745 case 0x02:
746 lbs_deb_join("ASSOC_RESP: Association failed; internal timer "
747 "expired while waiting for the AP (status code %d)"
748 "\n", status_code);
749 break;
750 case 0x03:
751 lbs_deb_join("ASSOC_RESP: Association failed; association "
752 "was refused by the AP (status code %d)\n",
753 status_code);
754 break;
755 case 0x04:
756 lbs_deb_join("ASSOC_RESP: Association failed; authentication "
757 "was refused by the AP (status code %d)\n",
758 status_code);
759 break;
760 default:
761 lbs_deb_join("ASSOC_RESP: Association failed; reason unknown "
762 "(status code %d)\n", status_code);
763 break;
764 }
765
766 if (status_code) {
Holger Schurig10078322007-11-15 18:05:47 -0500767 lbs_mac_event_disconnected(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200768 ret = -1;
769 goto done;
770 }
771
Holger Schurigece56192007-08-02 11:53:06 -0400772 lbs_deb_hex(LBS_DEB_JOIN, "ASSOC_RESP", (void *)&resp->params,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200773 le16_to_cpu(resp->size) - S_DS_GEN);
774
775 /* Send a Media Connected event, according to the Spec */
Holger Schurig10078322007-11-15 18:05:47 -0500776 adapter->connect_status = LBS_CONNECTED;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200777
Dan Williamsd8efea22007-05-28 23:54:55 -0400778 lbs_deb_join("ASSOC_RESP: assocated to '%s'\n",
779 escape_essid(bss->ssid, bss->ssid_len));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200780
Dan Williamse76850d2007-05-25 17:09:41 -0400781 /* Update current SSID and BSSID */
Dan Williamsd8efea22007-05-28 23:54:55 -0400782 memcpy(&adapter->curbssparams.ssid, &bss->ssid, IW_ESSID_MAX_SIZE);
783 adapter->curbssparams.ssid_len = bss->ssid_len;
Dan Williamse76850d2007-05-25 17:09:41 -0400784 memcpy(adapter->curbssparams.bssid, bss->bssid, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200785
Holger Schurig9012b282007-05-25 11:27:16 -0400786 lbs_deb_join("ASSOC_RESP: currentpacketfilter is %x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200787 adapter->currentpacketfilter);
788
789 adapter->SNR[TYPE_RXPD][TYPE_AVG] = 0;
790 adapter->NF[TYPE_RXPD][TYPE_AVG] = 0;
791
792 memset(adapter->rawSNR, 0x00, sizeof(adapter->rawSNR));
793 memset(adapter->rawNF, 0x00, sizeof(adapter->rawNF));
794 adapter->nextSNRNF = 0;
795 adapter->numSNRNF = 0;
796
Holger Schurig634b8f42007-05-25 13:05:16 -0400797 netif_carrier_on(priv->dev);
798 netif_wake_queue(priv->dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200799
Javier Cardona51d84f52007-05-25 12:06:56 -0400800
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200801 memcpy(wrqu.ap_addr.sa_data, adapter->curbssparams.bssid, ETH_ALEN);
802 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
Holger Schurig634b8f42007-05-25 13:05:16 -0400803 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200804
Holger Schurig9012b282007-05-25 11:27:16 -0400805done:
806 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200807 return ret;
808}
809
Holger Schurig10078322007-11-15 18:05:47 -0500810int lbs_ret_80211_disassociate(lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200811 struct cmd_ds_command *resp)
812{
Holger Schurig9012b282007-05-25 11:27:16 -0400813 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200814
Holger Schurig10078322007-11-15 18:05:47 -0500815 lbs_mac_event_disconnected(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200816
Holger Schurig9012b282007-05-25 11:27:16 -0400817 lbs_deb_leave(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200818 return 0;
819}
820
Holger Schurig10078322007-11-15 18:05:47 -0500821int lbs_ret_80211_ad_hoc_start(lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200822 struct cmd_ds_command *resp)
823{
Holger Schurig10078322007-11-15 18:05:47 -0500824 lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200825 int ret = 0;
826 u16 command = le16_to_cpu(resp->command);
827 u16 result = le16_to_cpu(resp->result);
828 struct cmd_ds_802_11_ad_hoc_result *padhocresult;
829 union iwreq_data wrqu;
Dan Williamse76850d2007-05-25 17:09:41 -0400830 struct bss_descriptor *bss;
Joe Perches0795af52007-10-03 17:59:30 -0700831 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200832
Holger Schurig9012b282007-05-25 11:27:16 -0400833 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200834
835 padhocresult = &resp->params.result;
836
Dan Williamse76850d2007-05-25 17:09:41 -0400837 lbs_deb_join("ADHOC_RESP: size = %d\n", le16_to_cpu(resp->size));
838 lbs_deb_join("ADHOC_RESP: command = %x\n", command);
839 lbs_deb_join("ADHOC_RESP: result = %x\n", result);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200840
Dan Williamse76850d2007-05-25 17:09:41 -0400841 if (!adapter->in_progress_assoc_req) {
842 lbs_deb_join("ADHOC_RESP: no in-progress association request\n");
843 ret = -1;
844 goto done;
845 }
846 bss = &adapter->in_progress_assoc_req->bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200847
848 /*
849 * Join result code 0 --> SUCCESS
850 */
851 if (result) {
Dan Williamse76850d2007-05-25 17:09:41 -0400852 lbs_deb_join("ADHOC_RESP: failed\n");
Holger Schurig10078322007-11-15 18:05:47 -0500853 if (adapter->connect_status == LBS_CONNECTED) {
854 lbs_mac_event_disconnected(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200855 }
Holger Schurig9012b282007-05-25 11:27:16 -0400856 ret = -1;
857 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200858 }
859
860 /*
861 * Now the join cmd should be successful
862 * If BSSID has changed use SSID to compare instead of BSSID
863 */
Dan Williamsd8efea22007-05-28 23:54:55 -0400864 lbs_deb_join("ADHOC_RESP: associated to '%s'\n",
865 escape_essid(bss->ssid, bss->ssid_len));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200866
867 /* Send a Media Connected event, according to the Spec */
Holger Schurig10078322007-11-15 18:05:47 -0500868 adapter->connect_status = LBS_CONNECTED;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200869
Holger Schurig6b63cd02007-08-02 11:53:36 -0400870 if (command == CMD_RET(CMD_802_11_AD_HOC_START)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200871 /* Update the created network descriptor with the new BSSID */
Dan Williamsea8da922007-08-02 11:18:23 -0400872 memcpy(bss->bssid, padhocresult->bssid, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200873 }
874
875 /* Set the BSSID from the joined/started descriptor */
Dan Williamse76850d2007-05-25 17:09:41 -0400876 memcpy(&adapter->curbssparams.bssid, bss->bssid, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200877
878 /* Set the new SSID to current SSID */
Dan Williamsd8efea22007-05-28 23:54:55 -0400879 memcpy(&adapter->curbssparams.ssid, &bss->ssid, IW_ESSID_MAX_SIZE);
880 adapter->curbssparams.ssid_len = bss->ssid_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200881
Holger Schurig634b8f42007-05-25 13:05:16 -0400882 netif_carrier_on(priv->dev);
883 netif_wake_queue(priv->dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200884
885 memset(&wrqu, 0, sizeof(wrqu));
886 memcpy(wrqu.ap_addr.sa_data, adapter->curbssparams.bssid, ETH_ALEN);
887 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
Holger Schurig634b8f42007-05-25 13:05:16 -0400888 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200889
Holger Schurig9012b282007-05-25 11:27:16 -0400890 lbs_deb_join("ADHOC_RESP: - Joined/Started Ad Hoc\n");
Dan Williamsef9a2642007-05-25 16:46:33 -0400891 lbs_deb_join("ADHOC_RESP: channel = %d\n", adapter->curbssparams.channel);
Joe Perches0795af52007-10-03 17:59:30 -0700892 lbs_deb_join("ADHOC_RESP: BSSID = %s\n",
893 print_mac(mac, padhocresult->bssid));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200894
Holger Schurig9012b282007-05-25 11:27:16 -0400895done:
896 lbs_deb_leave_args(LBS_DEB_JOIN, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200897 return ret;
898}
899
Holger Schurig10078322007-11-15 18:05:47 -0500900int lbs_ret_80211_ad_hoc_stop(lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200901 struct cmd_ds_command *resp)
902{
Holger Schurig9012b282007-05-25 11:27:16 -0400903 lbs_deb_enter(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200904
Holger Schurig10078322007-11-15 18:05:47 -0500905 lbs_mac_event_disconnected(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200906
Holger Schurig9012b282007-05-25 11:27:16 -0400907 lbs_deb_leave(LBS_DEB_JOIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200908 return 0;
909}