blob: b1e24723f2f9f9b83fbed281d04ec82f75d8a099 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * This file contains ioctl functions
3 */
4#include <linux/ctype.h>
5#include <linux/delay.h>
6#include <linux/if.h>
7#include <linux/if_arp.h>
8#include <linux/wireless.h>
9#include <linux/bitops.h>
10
11#include <net/ieee80211.h>
12#include <net/iw_handler.h>
13
14#include "host.h"
15#include "radiotap.h"
16#include "decl.h"
17#include "defs.h"
18#include "dev.h"
19#include "join.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020020#include "wext.h"
21#include "assoc.h"
Dan Williams8e3c91b2007-12-11 15:50:59 -050022#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020023
24
Holger Schurig69f90322007-11-23 15:43:44 +010025static inline void lbs_postpone_association_work(struct lbs_private *priv)
Holger Schurig9f9dac22007-10-26 10:12:14 +020026{
David Woodhouseaa21c002007-12-08 20:04:36 +000027 if (priv->surpriseremoved)
Holger Schurig9f9dac22007-10-26 10:12:14 +020028 return;
29 cancel_delayed_work(&priv->assoc_work);
30 queue_delayed_work(priv->work_thread, &priv->assoc_work, HZ / 2);
31}
32
Holger Schurig69f90322007-11-23 15:43:44 +010033static inline void lbs_cancel_association_work(struct lbs_private *priv)
Holger Schurig9f9dac22007-10-26 10:12:14 +020034{
35 cancel_delayed_work(&priv->assoc_work);
David Woodhouseaa21c002007-12-08 20:04:36 +000036 kfree(priv->pending_assoc_req);
37 priv->pending_assoc_req = NULL;
Holger Schurig9f9dac22007-10-26 10:12:14 +020038}
39
40
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020041/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020042 * @brief Find the channel frequency power info with specific channel
43 *
David Woodhouseaa21c002007-12-08 20:04:36 +000044 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020045 * @param band it can be BAND_A, BAND_G or BAND_B
46 * @param channel the channel for looking
47 * @return A pointer to struct chan_freq_power structure or NULL if not find.
48 */
Holger Schurig69f90322007-11-23 15:43:44 +010049struct chan_freq_power *lbs_find_cfp_by_band_and_channel(
David Woodhouseaa21c002007-12-08 20:04:36 +000050 struct lbs_private *priv,
Holger Schurig69f90322007-11-23 15:43:44 +010051 u8 band,
52 u16 channel)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020053{
54 struct chan_freq_power *cfp = NULL;
55 struct region_channel *rc;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020056 int i, j;
57
David Woodhouseaa21c002007-12-08 20:04:36 +000058 for (j = 0; !cfp && (j < ARRAY_SIZE(priv->region_channel)); j++) {
59 rc = &priv->region_channel[j];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020060
David Woodhouseaa21c002007-12-08 20:04:36 +000061 if (priv->enable11d)
62 rc = &priv->universal_channel[j];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020063 if (!rc->valid || !rc->CFP)
64 continue;
65 if (rc->band != band)
66 continue;
67 for (i = 0; i < rc->nrcfp; i++) {
68 if (rc->CFP[i].channel == channel) {
69 cfp = &rc->CFP[i];
70 break;
71 }
72 }
73 }
74
75 if (!cfp && channel)
Holger Schurig10078322007-11-15 18:05:47 -050076 lbs_deb_wext("lbs_find_cfp_by_band_and_channel: can't find "
Holger Schurig9012b282007-05-25 11:27:16 -040077 "cfp by band %d / channel %d\n", band, channel);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020078
79 return cfp;
80}
81
82/**
83 * @brief Find the channel frequency power info with specific frequency
84 *
David Woodhouseaa21c002007-12-08 20:04:36 +000085 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020086 * @param band it can be BAND_A, BAND_G or BAND_B
87 * @param freq the frequency for looking
88 * @return A pointer to struct chan_freq_power structure or NULL if not find.
89 */
Holger Schurig69f90322007-11-23 15:43:44 +010090static struct chan_freq_power *find_cfp_by_band_and_freq(
David Woodhouseaa21c002007-12-08 20:04:36 +000091 struct lbs_private *priv,
Holger Schurig69f90322007-11-23 15:43:44 +010092 u8 band,
93 u32 freq)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020094{
95 struct chan_freq_power *cfp = NULL;
96 struct region_channel *rc;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020097 int i, j;
98
David Woodhouseaa21c002007-12-08 20:04:36 +000099 for (j = 0; !cfp && (j < ARRAY_SIZE(priv->region_channel)); j++) {
100 rc = &priv->region_channel[j];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200101
David Woodhouseaa21c002007-12-08 20:04:36 +0000102 if (priv->enable11d)
103 rc = &priv->universal_channel[j];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200104 if (!rc->valid || !rc->CFP)
105 continue;
106 if (rc->band != band)
107 continue;
108 for (i = 0; i < rc->nrcfp; i++) {
109 if (rc->CFP[i].freq == freq) {
110 cfp = &rc->CFP[i];
111 break;
112 }
113 }
114 }
115
116 if (!cfp && freq)
Holger Schurig9012b282007-05-25 11:27:16 -0400117 lbs_deb_wext("find_cfp_by_band_and_freql: can't find cfp by "
118 "band %d / freq %d\n", band, freq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200119
120 return cfp;
121}
122
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200123
124/**
125 * @brief Set Radio On/OFF
126 *
Holger Schurig69f90322007-11-23 15:43:44 +0100127 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200128 * @option Radio Option
129 * @return 0 --success, otherwise fail
130 */
Holger Schurig69f90322007-11-23 15:43:44 +0100131static int lbs_radio_ioctl(struct lbs_private *priv, u8 option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200132{
133 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200134
Holger Schurig9012b282007-05-25 11:27:16 -0400135 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200136
David Woodhouseaa21c002007-12-08 20:04:36 +0000137 if (priv->radioon != option) {
Holger Schurig9012b282007-05-25 11:27:16 -0400138 lbs_deb_wext("switching radio %s\n", option ? "on" : "off");
David Woodhouseaa21c002007-12-08 20:04:36 +0000139 priv->radioon = option;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200140
Holger Schurig10078322007-11-15 18:05:47 -0500141 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -0400142 CMD_802_11_RADIO_CONTROL,
143 CMD_ACT_SET,
144 CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200145 }
146
Holger Schurig9012b282007-05-25 11:27:16 -0400147 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200148 return ret;
149}
150
151/**
Dan Williams8c512762007-08-02 11:40:45 -0400152 * @brief Copy active data rates based on adapter mode and status
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200153 *
David Woodhouseaa21c002007-12-08 20:04:36 +0000154 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200155 * @param rate The buf to return the active rates
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200156 */
David Woodhouseaa21c002007-12-08 20:04:36 +0000157static void copy_active_data_rates(struct lbs_private *priv, u8 *rates)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200158{
Holger Schurig9012b282007-05-25 11:27:16 -0400159 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200160
David Woodhouseaa21c002007-12-08 20:04:36 +0000161 if ((priv->connect_status != LBS_CONNECTED) &&
162 (priv->mesh_connect_status != LBS_CONNECTED))
Holger Schurig10078322007-11-15 18:05:47 -0500163 memcpy(rates, lbs_bg_rates, MAX_RATES);
Dan Williams8c512762007-08-02 11:40:45 -0400164 else
David Woodhouseaa21c002007-12-08 20:04:36 +0000165 memcpy(rates, priv->curbssparams.rates, MAX_RATES);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200166
Dan Williams8c512762007-08-02 11:40:45 -0400167 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200168}
169
Holger Schurig10078322007-11-15 18:05:47 -0500170static int lbs_get_name(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200171 char *cwrq, char *extra)
172{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200173
Holger Schurig9012b282007-05-25 11:27:16 -0400174 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200175
Jean Tourrilhes9483f032007-08-02 13:16:30 -0400176 /* We could add support for 802.11n here as needed. Jean II */
177 snprintf(cwrq, IFNAMSIZ, "IEEE 802.11b/g");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200178
Holger Schurig9012b282007-05-25 11:27:16 -0400179 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200180 return 0;
181}
182
Holger Schurig10078322007-11-15 18:05:47 -0500183static int lbs_get_freq(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200184 struct iw_freq *fwrq, char *extra)
185{
Holger Schurig69f90322007-11-23 15:43:44 +0100186 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200187 struct chan_freq_power *cfp;
188
Holger Schurig9012b282007-05-25 11:27:16 -0400189 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200190
David Woodhouseaa21c002007-12-08 20:04:36 +0000191 cfp = lbs_find_cfp_by_band_and_channel(priv, 0,
192 priv->curbssparams.channel);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200193
194 if (!cfp) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000195 if (priv->curbssparams.channel)
Holger Schurig9012b282007-05-25 11:27:16 -0400196 lbs_deb_wext("invalid channel %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +0000197 priv->curbssparams.channel);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200198 return -EINVAL;
199 }
200
201 fwrq->m = (long)cfp->freq * 100000;
202 fwrq->e = 1;
203
Holger Schurig9012b282007-05-25 11:27:16 -0400204 lbs_deb_wext("freq %u\n", fwrq->m);
205 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200206 return 0;
207}
208
Holger Schurig10078322007-11-15 18:05:47 -0500209static int lbs_get_wap(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200210 struct sockaddr *awrq, char *extra)
211{
Holger Schurig69f90322007-11-23 15:43:44 +0100212 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200213
Holger Schurig9012b282007-05-25 11:27:16 -0400214 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200215
David Woodhouseaa21c002007-12-08 20:04:36 +0000216 if (priv->connect_status == LBS_CONNECTED) {
217 memcpy(awrq->sa_data, priv->curbssparams.bssid, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200218 } else {
219 memset(awrq->sa_data, 0, ETH_ALEN);
220 }
221 awrq->sa_family = ARPHRD_ETHER;
222
Holger Schurig9012b282007-05-25 11:27:16 -0400223 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200224 return 0;
225}
226
Holger Schurig10078322007-11-15 18:05:47 -0500227static int lbs_set_nick(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200228 struct iw_point *dwrq, char *extra)
229{
Holger Schurig69f90322007-11-23 15:43:44 +0100230 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200231
Holger Schurig9012b282007-05-25 11:27:16 -0400232 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200233
234 /*
235 * Check the size of the string
236 */
237
238 if (dwrq->length > 16) {
239 return -E2BIG;
240 }
241
David Woodhouseaa21c002007-12-08 20:04:36 +0000242 mutex_lock(&priv->lock);
243 memset(priv->nodename, 0, sizeof(priv->nodename));
244 memcpy(priv->nodename, extra, dwrq->length);
245 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200246
Holger Schurig9012b282007-05-25 11:27:16 -0400247 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200248 return 0;
249}
250
Holger Schurig10078322007-11-15 18:05:47 -0500251static int lbs_get_nick(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200252 struct iw_point *dwrq, char *extra)
253{
Holger Schurig69f90322007-11-23 15:43:44 +0100254 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200255
Holger Schurig9012b282007-05-25 11:27:16 -0400256 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200257
David Woodhouseaa21c002007-12-08 20:04:36 +0000258 dwrq->length = strlen(priv->nodename);
259 memcpy(extra, priv->nodename, dwrq->length);
Holger Schurig04799fa2007-10-09 15:04:14 +0200260 extra[dwrq->length] = '\0';
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200261
Holger Schurig04799fa2007-10-09 15:04:14 +0200262 dwrq->flags = 1; /* active */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200263
Holger Schurig9012b282007-05-25 11:27:16 -0400264 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200265 return 0;
266}
267
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -0400268static int mesh_get_nick(struct net_device *dev, struct iw_request_info *info,
269 struct iw_point *dwrq, char *extra)
270{
Holger Schurig69f90322007-11-23 15:43:44 +0100271 struct lbs_private *priv = dev->priv;
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -0400272
273 lbs_deb_enter(LBS_DEB_WEXT);
274
275 /* Use nickname to indicate that mesh is on */
276
David Woodhouseaa21c002007-12-08 20:04:36 +0000277 if (priv->mesh_connect_status == LBS_CONNECTED) {
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -0400278 strncpy(extra, "Mesh", 12);
279 extra[12] = '\0';
Jean Tourrilhes9483f032007-08-02 13:16:30 -0400280 dwrq->length = strlen(extra);
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -0400281 }
282
283 else {
284 extra[0] = '\0';
Jean Tourrilhes9483f032007-08-02 13:16:30 -0400285 dwrq->length = 0;
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -0400286 }
287
288 lbs_deb_leave(LBS_DEB_WEXT);
289 return 0;
290}
Holger Schurig04799fa2007-10-09 15:04:14 +0200291
Holger Schurig10078322007-11-15 18:05:47 -0500292static int lbs_set_rts(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200293 struct iw_param *vwrq, char *extra)
294{
295 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +0100296 struct lbs_private *priv = dev->priv;
David Woodhouse981f1872007-05-25 23:36:54 -0400297 u32 rthr = vwrq->value;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200298
Holger Schurig9012b282007-05-25 11:27:16 -0400299 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200300
301 if (vwrq->disabled) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000302 priv->rtsthsd = rthr = MRVDRV_RTS_MAX_VALUE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200303 } else {
304 if (rthr < MRVDRV_RTS_MIN_VALUE || rthr > MRVDRV_RTS_MAX_VALUE)
305 return -EINVAL;
David Woodhouseaa21c002007-12-08 20:04:36 +0000306 priv->rtsthsd = rthr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200307 }
308
Holger Schurig10078322007-11-15 18:05:47 -0500309 ret = lbs_prepare_and_send_command(priv, CMD_802_11_SNMP_MIB,
Dan Williams0aef64d2007-08-02 11:31:18 -0400310 CMD_ACT_SET, CMD_OPTION_WAITFORRSP,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200311 OID_802_11_RTS_THRESHOLD, &rthr);
312
Holger Schurig9012b282007-05-25 11:27:16 -0400313 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200314 return ret;
315}
316
Holger Schurig10078322007-11-15 18:05:47 -0500317static int lbs_get_rts(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200318 struct iw_param *vwrq, char *extra)
319{
320 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +0100321 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200322
Holger Schurig9012b282007-05-25 11:27:16 -0400323 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200324
David Woodhouseaa21c002007-12-08 20:04:36 +0000325 priv->rtsthsd = 0;
Holger Schurig10078322007-11-15 18:05:47 -0500326 ret = lbs_prepare_and_send_command(priv, CMD_802_11_SNMP_MIB,
Dan Williams0aef64d2007-08-02 11:31:18 -0400327 CMD_ACT_GET, CMD_OPTION_WAITFORRSP,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200328 OID_802_11_RTS_THRESHOLD, NULL);
Holger Schurig9012b282007-05-25 11:27:16 -0400329 if (ret)
330 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200331
David Woodhouseaa21c002007-12-08 20:04:36 +0000332 vwrq->value = priv->rtsthsd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200333 vwrq->disabled = ((vwrq->value < MRVDRV_RTS_MIN_VALUE)
334 || (vwrq->value > MRVDRV_RTS_MAX_VALUE));
335 vwrq->fixed = 1;
336
Holger Schurig9012b282007-05-25 11:27:16 -0400337out:
338 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
339 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200340}
341
Holger Schurig10078322007-11-15 18:05:47 -0500342static int lbs_set_frag(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200343 struct iw_param *vwrq, char *extra)
344{
345 int ret = 0;
David Woodhouse981f1872007-05-25 23:36:54 -0400346 u32 fthr = vwrq->value;
Holger Schurig69f90322007-11-23 15:43:44 +0100347 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200348
Holger Schurig9012b282007-05-25 11:27:16 -0400349 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200350
351 if (vwrq->disabled) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000352 priv->fragthsd = fthr = MRVDRV_FRAG_MAX_VALUE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200353 } else {
354 if (fthr < MRVDRV_FRAG_MIN_VALUE
355 || fthr > MRVDRV_FRAG_MAX_VALUE)
356 return -EINVAL;
David Woodhouseaa21c002007-12-08 20:04:36 +0000357 priv->fragthsd = fthr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200358 }
359
Holger Schurig10078322007-11-15 18:05:47 -0500360 ret = lbs_prepare_and_send_command(priv, CMD_802_11_SNMP_MIB,
Dan Williams0aef64d2007-08-02 11:31:18 -0400361 CMD_ACT_SET, CMD_OPTION_WAITFORRSP,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200362 OID_802_11_FRAGMENTATION_THRESHOLD, &fthr);
Holger Schurig9012b282007-05-25 11:27:16 -0400363
364 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200365 return ret;
366}
367
Holger Schurig10078322007-11-15 18:05:47 -0500368static int lbs_get_frag(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200369 struct iw_param *vwrq, char *extra)
370{
371 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +0100372 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200373
Holger Schurig9012b282007-05-25 11:27:16 -0400374 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200375
David Woodhouseaa21c002007-12-08 20:04:36 +0000376 priv->fragthsd = 0;
Holger Schurig10078322007-11-15 18:05:47 -0500377 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -0400378 CMD_802_11_SNMP_MIB,
379 CMD_ACT_GET, CMD_OPTION_WAITFORRSP,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200380 OID_802_11_FRAGMENTATION_THRESHOLD, NULL);
Holger Schurig9012b282007-05-25 11:27:16 -0400381 if (ret)
382 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200383
David Woodhouseaa21c002007-12-08 20:04:36 +0000384 vwrq->value = priv->fragthsd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200385 vwrq->disabled = ((vwrq->value < MRVDRV_FRAG_MIN_VALUE)
386 || (vwrq->value > MRVDRV_FRAG_MAX_VALUE));
387 vwrq->fixed = 1;
388
Holger Schurig9012b282007-05-25 11:27:16 -0400389out:
390 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200391 return ret;
392}
393
Holger Schurig10078322007-11-15 18:05:47 -0500394static int lbs_get_mode(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200395 struct iw_request_info *info, u32 * uwrq, char *extra)
396{
Holger Schurig69f90322007-11-23 15:43:44 +0100397 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200398
Holger Schurig9012b282007-05-25 11:27:16 -0400399 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200400
David Woodhouseaa21c002007-12-08 20:04:36 +0000401 *uwrq = priv->mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200402
Holger Schurig9012b282007-05-25 11:27:16 -0400403 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200404 return 0;
405}
406
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -0400407static int mesh_wlan_get_mode(struct net_device *dev,
408 struct iw_request_info *info, u32 * uwrq,
409 char *extra)
410{
411 lbs_deb_enter(LBS_DEB_WEXT);
412
413 *uwrq = IW_MODE_REPEAT ;
414
415 lbs_deb_leave(LBS_DEB_WEXT);
416 return 0;
417}
418
Holger Schurig10078322007-11-15 18:05:47 -0500419static int lbs_get_txpow(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200420 struct iw_request_info *info,
421 struct iw_param *vwrq, char *extra)
422{
423 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +0100424 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200425
Holger Schurig9012b282007-05-25 11:27:16 -0400426 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200427
Holger Schurig10078322007-11-15 18:05:47 -0500428 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -0400429 CMD_802_11_RF_TX_POWER,
430 CMD_ACT_TX_POWER_OPT_GET,
431 CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200432
Holger Schurig9012b282007-05-25 11:27:16 -0400433 if (ret)
434 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200435
David Woodhouseaa21c002007-12-08 20:04:36 +0000436 lbs_deb_wext("tx power level %d dbm\n", priv->txpowerlevel);
437 vwrq->value = priv->txpowerlevel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200438 vwrq->fixed = 1;
David Woodhouseaa21c002007-12-08 20:04:36 +0000439 if (priv->radioon) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200440 vwrq->disabled = 0;
441 vwrq->flags = IW_TXPOW_DBM;
442 } else {
443 vwrq->disabled = 1;
444 }
445
Holger Schurig9012b282007-05-25 11:27:16 -0400446out:
447 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
448 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200449}
450
Holger Schurig10078322007-11-15 18:05:47 -0500451static int lbs_set_retry(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200452 struct iw_param *vwrq, char *extra)
453{
454 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +0100455 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200456
Holger Schurig9012b282007-05-25 11:27:16 -0400457 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200458
459 if (vwrq->flags == IW_RETRY_LIMIT) {
460 /* The MAC has a 4-bit Total_Tx_Count register
461 Total_Tx_Count = 1 + Tx_Retry_Count */
462#define TX_RETRY_MIN 0
463#define TX_RETRY_MAX 14
464 if (vwrq->value < TX_RETRY_MIN || vwrq->value > TX_RETRY_MAX)
465 return -EINVAL;
466
467 /* Adding 1 to convert retry count to try count */
David Woodhouseaa21c002007-12-08 20:04:36 +0000468 priv->txretrycount = vwrq->value + 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200469
Holger Schurig10078322007-11-15 18:05:47 -0500470 ret = lbs_prepare_and_send_command(priv, CMD_802_11_SNMP_MIB,
Dan Williams0aef64d2007-08-02 11:31:18 -0400471 CMD_ACT_SET,
472 CMD_OPTION_WAITFORRSP,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200473 OID_802_11_TX_RETRYCOUNT, NULL);
474
Holger Schurig9012b282007-05-25 11:27:16 -0400475 if (ret)
476 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200477 } else {
478 return -EOPNOTSUPP;
479 }
480
Holger Schurig9012b282007-05-25 11:27:16 -0400481out:
482 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
483 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200484}
485
Holger Schurig10078322007-11-15 18:05:47 -0500486static int lbs_get_retry(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200487 struct iw_param *vwrq, char *extra)
488{
Holger Schurig69f90322007-11-23 15:43:44 +0100489 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200490 int ret = 0;
491
Holger Schurig9012b282007-05-25 11:27:16 -0400492 lbs_deb_enter(LBS_DEB_WEXT);
493
David Woodhouseaa21c002007-12-08 20:04:36 +0000494 priv->txretrycount = 0;
Holger Schurig10078322007-11-15 18:05:47 -0500495 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -0400496 CMD_802_11_SNMP_MIB,
497 CMD_ACT_GET, CMD_OPTION_WAITFORRSP,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200498 OID_802_11_TX_RETRYCOUNT, NULL);
Holger Schurig9012b282007-05-25 11:27:16 -0400499 if (ret)
500 goto out;
501
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200502 vwrq->disabled = 0;
503 if (!vwrq->flags) {
504 vwrq->flags = IW_RETRY_LIMIT;
505 /* Subtract 1 to convert try count to retry count */
David Woodhouseaa21c002007-12-08 20:04:36 +0000506 vwrq->value = priv->txretrycount - 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200507 }
508
Holger Schurig9012b282007-05-25 11:27:16 -0400509out:
510 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
511 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200512}
513
514static inline void sort_channels(struct iw_freq *freq, int num)
515{
516 int i, j;
517 struct iw_freq temp;
518
519 for (i = 0; i < num; i++)
520 for (j = i + 1; j < num; j++)
521 if (freq[i].i > freq[j].i) {
522 temp.i = freq[i].i;
523 temp.m = freq[i].m;
524
525 freq[i].i = freq[j].i;
526 freq[i].m = freq[j].m;
527
528 freq[j].i = temp.i;
529 freq[j].m = temp.m;
530 }
531}
532
533/* data rate listing
534 MULTI_BANDS:
535 abg a b b/g
536 Infra G(12) A(8) B(4) G(12)
537 Adhoc A+B(12) A(8) B(4) B(4)
538
539 non-MULTI_BANDS:
540 b b/g
541 Infra B(4) G(12)
542 Adhoc B(4) B(4)
543 */
544/**
545 * @brief Get Range Info
546 *
547 * @param dev A pointer to net_device structure
548 * @param info A pointer to iw_request_info structure
549 * @param vwrq A pointer to iw_param structure
550 * @param extra A pointer to extra data buf
551 * @return 0 --success, otherwise fail
552 */
Holger Schurig10078322007-11-15 18:05:47 -0500553static int lbs_get_range(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200554 struct iw_point *dwrq, char *extra)
555{
556 int i, j;
Holger Schurig69f90322007-11-23 15:43:44 +0100557 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200558 struct iw_range *range = (struct iw_range *)extra;
559 struct chan_freq_power *cfp;
Dan Williams8c512762007-08-02 11:40:45 -0400560 u8 rates[MAX_RATES + 1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200561
562 u8 flag = 0;
563
Holger Schurig9012b282007-05-25 11:27:16 -0400564 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200565
566 dwrq->length = sizeof(struct iw_range);
567 memset(range, 0, sizeof(struct iw_range));
568
569 range->min_nwid = 0;
570 range->max_nwid = 0;
571
572 memset(rates, 0, sizeof(rates));
David Woodhouseaa21c002007-12-08 20:04:36 +0000573 copy_active_data_rates(priv, rates);
Dan Williams8c512762007-08-02 11:40:45 -0400574 range->num_bitrates = strnlen(rates, IW_MAX_BITRATES);
575 for (i = 0; i < range->num_bitrates; i++)
576 range->bitrate[i] = rates[i] * 500000;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200577 range->num_bitrates = i;
Holger Schurig9012b282007-05-25 11:27:16 -0400578 lbs_deb_wext("IW_MAX_BITRATES %d, num_bitrates %d\n", IW_MAX_BITRATES,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200579 range->num_bitrates);
580
581 range->num_frequency = 0;
David Woodhouseaa21c002007-12-08 20:04:36 +0000582 if (priv->enable11d &&
583 (priv->connect_status == LBS_CONNECTED ||
584 priv->mesh_connect_status == LBS_CONNECTED)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200585 u8 chan_no;
586 u8 band;
587
588 struct parsed_region_chan_11d *parsed_region_chan =
David Woodhouseaa21c002007-12-08 20:04:36 +0000589 &priv->parsed_region_chan;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200590
591 if (parsed_region_chan == NULL) {
Holger Schurig9012b282007-05-25 11:27:16 -0400592 lbs_deb_wext("11d: parsed_region_chan is NULL\n");
593 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200594 }
595 band = parsed_region_chan->band;
Holger Schurig9012b282007-05-25 11:27:16 -0400596 lbs_deb_wext("band %d, nr_char %d\n", band,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200597 parsed_region_chan->nr_chan);
598
599 for (i = 0; (range->num_frequency < IW_MAX_FREQUENCIES)
600 && (i < parsed_region_chan->nr_chan); i++) {
601 chan_no = parsed_region_chan->chanpwr[i].chan;
Holger Schurig9012b282007-05-25 11:27:16 -0400602 lbs_deb_wext("chan_no %d\n", chan_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200603 range->freq[range->num_frequency].i = (long)chan_no;
604 range->freq[range->num_frequency].m =
Holger Schurig10078322007-11-15 18:05:47 -0500605 (long)lbs_chan_2_freq(chan_no, band) * 100000;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200606 range->freq[range->num_frequency].e = 1;
607 range->num_frequency++;
608 }
609 flag = 1;
610 }
611 if (!flag) {
612 for (j = 0; (range->num_frequency < IW_MAX_FREQUENCIES)
David Woodhouseaa21c002007-12-08 20:04:36 +0000613 && (j < ARRAY_SIZE(priv->region_channel)); j++) {
614 cfp = priv->region_channel[j].CFP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200615 for (i = 0; (range->num_frequency < IW_MAX_FREQUENCIES)
David Woodhouseaa21c002007-12-08 20:04:36 +0000616 && priv->region_channel[j].valid
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200617 && cfp
David Woodhouseaa21c002007-12-08 20:04:36 +0000618 && (i < priv->region_channel[j].nrcfp); i++) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200619 range->freq[range->num_frequency].i =
620 (long)cfp->channel;
621 range->freq[range->num_frequency].m =
622 (long)cfp->freq * 100000;
623 range->freq[range->num_frequency].e = 1;
624 cfp++;
625 range->num_frequency++;
626 }
627 }
628 }
629
Holger Schurig9012b282007-05-25 11:27:16 -0400630 lbs_deb_wext("IW_MAX_FREQUENCIES %d, num_frequency %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200631 IW_MAX_FREQUENCIES, range->num_frequency);
632
633 range->num_channels = range->num_frequency;
634
635 sort_channels(&range->freq[0], range->num_frequency);
636
637 /*
638 * Set an indication of the max TCP throughput in bit/s that we can
639 * expect using this interface
640 */
641 if (i > 2)
642 range->throughput = 5000 * 1000;
643 else
644 range->throughput = 1500 * 1000;
645
646 range->min_rts = MRVDRV_RTS_MIN_VALUE;
647 range->max_rts = MRVDRV_RTS_MAX_VALUE;
648 range->min_frag = MRVDRV_FRAG_MIN_VALUE;
649 range->max_frag = MRVDRV_FRAG_MAX_VALUE;
650
651 range->encoding_size[0] = 5;
652 range->encoding_size[1] = 13;
653 range->num_encoding_sizes = 2;
654 range->max_encoding_tokens = 4;
655
656 range->min_pmp = 1000000;
657 range->max_pmp = 120000000;
658 range->min_pmt = 1000;
659 range->max_pmt = 1000000;
660 range->pmp_flags = IW_POWER_PERIOD;
661 range->pmt_flags = IW_POWER_TIMEOUT;
662 range->pm_capa = IW_POWER_PERIOD | IW_POWER_TIMEOUT | IW_POWER_ALL_R;
663
664 /*
665 * Minimum version we recommend
666 */
667 range->we_version_source = 15;
668
669 /*
670 * Version we are compiled with
671 */
672 range->we_version_compiled = WIRELESS_EXT;
673
674 range->retry_capa = IW_RETRY_LIMIT;
675 range->retry_flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
676
677 range->min_retry = TX_RETRY_MIN;
678 range->max_retry = TX_RETRY_MAX;
679
680 /*
681 * Set the qual, level and noise range values
682 */
683 range->max_qual.qual = 100;
684 range->max_qual.level = 0;
685 range->max_qual.noise = 0;
686 range->max_qual.updated = IW_QUAL_ALL_UPDATED | IW_QUAL_DBM;
687
688 range->avg_qual.qual = 70;
689 /* TODO: Find real 'good' to 'bad' threshold value for RSSI */
690 range->avg_qual.level = 0;
691 range->avg_qual.noise = 0;
692 range->avg_qual.updated = IW_QUAL_ALL_UPDATED | IW_QUAL_DBM;
693
694 range->sensitivity = 0;
695
696 /*
697 * Setup the supported power level ranges
698 */
699 memset(range->txpower, 0, sizeof(range->txpower));
700 range->txpower[0] = 5;
701 range->txpower[1] = 7;
702 range->txpower[2] = 9;
703 range->txpower[3] = 11;
704 range->txpower[4] = 13;
705 range->txpower[5] = 15;
706 range->txpower[6] = 17;
707 range->txpower[7] = 19;
708
709 range->num_txpower = 8;
710 range->txpower_capa = IW_TXPOW_DBM;
711 range->txpower_capa |= IW_TXPOW_RANGE;
712
713 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
714 IW_EVENT_CAPA_MASK(SIOCGIWAP) |
715 IW_EVENT_CAPA_MASK(SIOCGIWSCAN));
716 range->event_capa[1] = IW_EVENT_CAPA_K_1;
717
David Woodhouseaa21c002007-12-08 20:04:36 +0000718 if (priv->fwcapinfo & FW_CAPINFO_WPA) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200719 range->enc_capa = IW_ENC_CAPA_WPA
720 | IW_ENC_CAPA_WPA2
721 | IW_ENC_CAPA_CIPHER_TKIP
722 | IW_ENC_CAPA_CIPHER_CCMP;
723 }
724
Holger Schurig9012b282007-05-25 11:27:16 -0400725out:
726 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200727 return 0;
728}
729
Holger Schurig10078322007-11-15 18:05:47 -0500730static int lbs_set_power(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200731 struct iw_param *vwrq, char *extra)
732{
Holger Schurig69f90322007-11-23 15:43:44 +0100733 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200734
Holger Schurig9012b282007-05-25 11:27:16 -0400735 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200736
737 /* PS is currently supported only in Infrastructure mode
738 * Remove this check if it is to be supported in IBSS mode also
739 */
740
741 if (vwrq->disabled) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000742 priv->psmode = LBS802_11POWERMODECAM;
743 if (priv->psstate != PS_STATE_FULL_POWER) {
Holger Schurig10078322007-11-15 18:05:47 -0500744 lbs_ps_wakeup(priv, CMD_OPTION_WAITFORRSP);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200745 }
746
747 return 0;
748 }
749
750 if ((vwrq->flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) {
Holger Schurig9012b282007-05-25 11:27:16 -0400751 lbs_deb_wext(
752 "setting power timeout is not supported\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200753 return -EINVAL;
754 } else if ((vwrq->flags & IW_POWER_TYPE) == IW_POWER_PERIOD) {
Holger Schurig9012b282007-05-25 11:27:16 -0400755 lbs_deb_wext("setting power period not supported\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200756 return -EINVAL;
757 }
758
David Woodhouseaa21c002007-12-08 20:04:36 +0000759 if (priv->psmode != LBS802_11POWERMODECAM) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200760 return 0;
761 }
762
David Woodhouseaa21c002007-12-08 20:04:36 +0000763 priv->psmode = LBS802_11POWERMODEMAX_PSP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200764
David Woodhouseaa21c002007-12-08 20:04:36 +0000765 if (priv->connect_status == LBS_CONNECTED) {
Holger Schurig10078322007-11-15 18:05:47 -0500766 lbs_ps_sleep(priv, CMD_OPTION_WAITFORRSP);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200767 }
768
Holger Schurig9012b282007-05-25 11:27:16 -0400769 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200770 return 0;
771}
772
Holger Schurig10078322007-11-15 18:05:47 -0500773static int lbs_get_power(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200774 struct iw_param *vwrq, char *extra)
775{
Holger Schurig69f90322007-11-23 15:43:44 +0100776 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200777 int mode;
778
Holger Schurig9012b282007-05-25 11:27:16 -0400779 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200780
David Woodhouseaa21c002007-12-08 20:04:36 +0000781 mode = priv->psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200782
Holger Schurig10078322007-11-15 18:05:47 -0500783 if ((vwrq->disabled = (mode == LBS802_11POWERMODECAM))
David Woodhouseaa21c002007-12-08 20:04:36 +0000784 || priv->connect_status == LBS_DISCONNECTED)
Holger Schurig9012b282007-05-25 11:27:16 -0400785 {
786 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200787 }
788
789 vwrq->value = 0;
790
Holger Schurig9012b282007-05-25 11:27:16 -0400791out:
792 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200793 return 0;
794}
795
Holger Schurig10078322007-11-15 18:05:47 -0500796static struct iw_statistics *lbs_get_wireless_stats(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200797{
798 enum {
799 POOR = 30,
800 FAIR = 60,
801 GOOD = 80,
802 VERY_GOOD = 90,
803 EXCELLENT = 95,
804 PERFECT = 100
805 };
Holger Schurig69f90322007-11-23 15:43:44 +0100806 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200807 u32 rssi_qual;
808 u32 tx_qual;
809 u32 quality = 0;
810 int stats_valid = 0;
811 u8 rssi;
812 u32 tx_retries;
813
Holger Schurig9012b282007-05-25 11:27:16 -0400814 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200815
David Woodhouseaa21c002007-12-08 20:04:36 +0000816 priv->wstats.status = priv->mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200817
818 /* If we're not associated, all quality values are meaningless */
David Woodhouseaa21c002007-12-08 20:04:36 +0000819 if ((priv->connect_status != LBS_CONNECTED) &&
820 (priv->mesh_connect_status != LBS_CONNECTED))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200821 goto out;
822
823 /* Quality by RSSI */
824 priv->wstats.qual.level =
David Woodhouseaa21c002007-12-08 20:04:36 +0000825 CAL_RSSI(priv->SNR[TYPE_BEACON][TYPE_NOAVG],
826 priv->NF[TYPE_BEACON][TYPE_NOAVG]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200827
David Woodhouseaa21c002007-12-08 20:04:36 +0000828 if (priv->NF[TYPE_BEACON][TYPE_NOAVG] == 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200829 priv->wstats.qual.noise = MRVDRV_NF_DEFAULT_SCAN_VALUE;
830 } else {
831 priv->wstats.qual.noise =
David Woodhouseaa21c002007-12-08 20:04:36 +0000832 CAL_NF(priv->NF[TYPE_BEACON][TYPE_NOAVG]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200833 }
834
Holger Schurig9012b282007-05-25 11:27:16 -0400835 lbs_deb_wext("signal level %#x\n", priv->wstats.qual.level);
836 lbs_deb_wext("noise %#x\n", priv->wstats.qual.noise);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200837
838 rssi = priv->wstats.qual.level - priv->wstats.qual.noise;
839 if (rssi < 15)
840 rssi_qual = rssi * POOR / 10;
841 else if (rssi < 20)
842 rssi_qual = (rssi - 15) * (FAIR - POOR) / 5 + POOR;
843 else if (rssi < 30)
844 rssi_qual = (rssi - 20) * (GOOD - FAIR) / 5 + FAIR;
845 else if (rssi < 40)
846 rssi_qual = (rssi - 30) * (VERY_GOOD - GOOD) /
847 10 + GOOD;
848 else
849 rssi_qual = (rssi - 40) * (PERFECT - VERY_GOOD) /
850 10 + VERY_GOOD;
851 quality = rssi_qual;
852
853 /* Quality by TX errors */
854 priv->wstats.discard.retries = priv->stats.tx_errors;
855
David Woodhouseaa21c002007-12-08 20:04:36 +0000856 tx_retries = le32_to_cpu(priv->logmsg.retry);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200857
858 if (tx_retries > 75)
859 tx_qual = (90 - tx_retries) * POOR / 15;
860 else if (tx_retries > 70)
861 tx_qual = (75 - tx_retries) * (FAIR - POOR) / 5 + POOR;
862 else if (tx_retries > 65)
863 tx_qual = (70 - tx_retries) * (GOOD - FAIR) / 5 + FAIR;
864 else if (tx_retries > 50)
865 tx_qual = (65 - tx_retries) * (VERY_GOOD - GOOD) /
866 15 + GOOD;
867 else
868 tx_qual = (50 - tx_retries) *
869 (PERFECT - VERY_GOOD) / 50 + VERY_GOOD;
870 quality = min(quality, tx_qual);
871
David Woodhouseaa21c002007-12-08 20:04:36 +0000872 priv->wstats.discard.code = le32_to_cpu(priv->logmsg.wepundecryptable);
873 priv->wstats.discard.fragment = le32_to_cpu(priv->logmsg.rxfrag);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200874 priv->wstats.discard.retries = tx_retries;
David Woodhouseaa21c002007-12-08 20:04:36 +0000875 priv->wstats.discard.misc = le32_to_cpu(priv->logmsg.ackfailure);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200876
877 /* Calculate quality */
Holger Schurigcad9d9b2007-08-02 13:07:15 -0400878 priv->wstats.qual.qual = min_t(u8, quality, 100);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200879 priv->wstats.qual.updated = IW_QUAL_ALL_UPDATED | IW_QUAL_DBM;
880 stats_valid = 1;
881
882 /* update stats asynchronously for future calls */
Holger Schurig10078322007-11-15 18:05:47 -0500883 lbs_prepare_and_send_command(priv, CMD_802_11_RSSI, 0,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200884 0, 0, NULL);
Holger Schurig10078322007-11-15 18:05:47 -0500885 lbs_prepare_and_send_command(priv, CMD_802_11_GET_LOG, 0,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200886 0, 0, NULL);
887out:
888 if (!stats_valid) {
889 priv->wstats.miss.beacon = 0;
890 priv->wstats.discard.retries = 0;
891 priv->wstats.qual.qual = 0;
892 priv->wstats.qual.level = 0;
893 priv->wstats.qual.noise = 0;
894 priv->wstats.qual.updated = IW_QUAL_ALL_UPDATED;
895 priv->wstats.qual.updated |= IW_QUAL_NOISE_INVALID |
896 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
897 }
898
Holger Schurig9012b282007-05-25 11:27:16 -0400899 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200900 return &priv->wstats;
901
902
903}
904
Holger Schurig10078322007-11-15 18:05:47 -0500905static int lbs_set_freq(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200906 struct iw_freq *fwrq, char *extra)
907{
Dan Williamsef9a2642007-05-25 16:46:33 -0400908 int ret = -EINVAL;
Holger Schurig69f90322007-11-23 15:43:44 +0100909 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200910 struct chan_freq_power *cfp;
Dan Williamsef9a2642007-05-25 16:46:33 -0400911 struct assoc_request * assoc_req;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200912
Holger Schurig9012b282007-05-25 11:27:16 -0400913 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200914
David Woodhouseaa21c002007-12-08 20:04:36 +0000915 mutex_lock(&priv->lock);
916 assoc_req = lbs_get_association_request(priv);
Dan Williamsef9a2642007-05-25 16:46:33 -0400917 if (!assoc_req) {
918 ret = -ENOMEM;
919 goto out;
920 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200921
Dan Williamsef9a2642007-05-25 16:46:33 -0400922 /* If setting by frequency, convert to a channel */
923 if (fwrq->e == 1) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200924 long f = fwrq->m / 100000;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200925
David Woodhouseaa21c002007-12-08 20:04:36 +0000926 cfp = find_cfp_by_band_and_freq(priv, 0, f);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200927 if (!cfp) {
Holger Schurig9012b282007-05-25 11:27:16 -0400928 lbs_deb_wext("invalid freq %ld\n", f);
Dan Williamsef9a2642007-05-25 16:46:33 -0400929 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200930 }
931
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200932 fwrq->e = 0;
Dan Williamsef9a2642007-05-25 16:46:33 -0400933 fwrq->m = (int) cfp->channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200934 }
935
Dan Williamsef9a2642007-05-25 16:46:33 -0400936 /* Setting by channel number */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200937 if (fwrq->m > 1000 || fwrq->e > 0) {
Dan Williamsef9a2642007-05-25 16:46:33 -0400938 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200939 }
940
David Woodhouseaa21c002007-12-08 20:04:36 +0000941 cfp = lbs_find_cfp_by_band_and_channel(priv, 0, fwrq->m);
Dan Williamsef9a2642007-05-25 16:46:33 -0400942 if (!cfp) {
943 goto out;
944 }
945
946 assoc_req->channel = fwrq->m;
947 ret = 0;
948
Holger Schurig9012b282007-05-25 11:27:16 -0400949out:
Dan Williamsef9a2642007-05-25 16:46:33 -0400950 if (ret == 0) {
951 set_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags);
Holger Schurig10078322007-11-15 18:05:47 -0500952 lbs_postpone_association_work(priv);
Dan Williamsef9a2642007-05-25 16:46:33 -0400953 } else {
Holger Schurig10078322007-11-15 18:05:47 -0500954 lbs_cancel_association_work(priv);
Dan Williamsef9a2642007-05-25 16:46:33 -0400955 }
David Woodhouseaa21c002007-12-08 20:04:36 +0000956 mutex_unlock(&priv->lock);
Dan Williamsef9a2642007-05-25 16:46:33 -0400957
958 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
959 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200960}
961
David Woodhouse823eaa22007-12-11 19:56:28 -0500962static int lbs_mesh_set_freq(struct net_device *dev,
963 struct iw_request_info *info,
964 struct iw_freq *fwrq, char *extra)
965{
966 struct lbs_private *priv = dev->priv;
967 struct chan_freq_power *cfp;
968 int ret = -EINVAL;
969
970 lbs_deb_enter(LBS_DEB_WEXT);
971
972 /* If setting by frequency, convert to a channel */
973 if (fwrq->e == 1) {
974 long f = fwrq->m / 100000;
975
976 cfp = find_cfp_by_band_and_freq(priv, 0, f);
977 if (!cfp) {
978 lbs_deb_wext("invalid freq %ld\n", f);
979 goto out;
980 }
981
982 fwrq->e = 0;
983 fwrq->m = (int) cfp->channel;
984 }
985
986 /* Setting by channel number */
987 if (fwrq->m > 1000 || fwrq->e > 0) {
988 goto out;
989 }
990
991 cfp = lbs_find_cfp_by_band_and_channel(priv, 0, fwrq->m);
992 if (!cfp) {
993 goto out;
994 }
995
996 if (fwrq->m != priv->curbssparams.channel) {
997 lbs_deb_wext("mesh channel change forces eth disconnect\n");
998 if (priv->mode == IW_MODE_INFRA)
999 lbs_send_deauthentication(priv);
1000 else if (priv->mode == IW_MODE_ADHOC)
1001 lbs_stop_adhoc_network(priv);
1002 }
David Woodhouse86062132007-12-13 00:32:36 -05001003 lbs_mesh_config(priv, 1, fwrq->m);
1004 lbs_update_channel(priv);
David Woodhouse823eaa22007-12-11 19:56:28 -05001005 ret = 0;
1006
1007out:
1008 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
1009 return ret;
1010}
1011
Holger Schurig10078322007-11-15 18:05:47 -05001012static int lbs_set_rate(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001013 struct iw_param *vwrq, char *extra)
1014{
Holger Schurig69f90322007-11-23 15:43:44 +01001015 struct lbs_private *priv = dev->priv;
Dan Williams8e3c91b2007-12-11 15:50:59 -05001016 u8 new_rate = 0;
Dan Williams8c512762007-08-02 11:40:45 -04001017 int ret = -EINVAL;
1018 u8 rates[MAX_RATES + 1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001019
Holger Schurig9012b282007-05-25 11:27:16 -04001020 lbs_deb_enter(LBS_DEB_WEXT);
Holger Schurig9012b282007-05-25 11:27:16 -04001021 lbs_deb_wext("vwrq->value %d\n", vwrq->value);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001022
Dan Williams8c512762007-08-02 11:40:45 -04001023 /* Auto rate? */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001024 if (vwrq->value == -1) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001025 priv->auto_rate = 1;
1026 priv->cur_rate = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001027 } else {
Dan Williams8c512762007-08-02 11:40:45 -04001028 if (vwrq->value % 100000)
1029 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001030
1031 memset(rates, 0, sizeof(rates));
David Woodhouseaa21c002007-12-08 20:04:36 +00001032 copy_active_data_rates(priv, rates);
Dan Williams8c512762007-08-02 11:40:45 -04001033 new_rate = vwrq->value / 500000;
1034 if (!memchr(rates, new_rate, sizeof(rates))) {
1035 lbs_pr_alert("fixed data rate 0x%X out of range\n",
1036 new_rate);
1037 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001038 }
1039
David Woodhouseaa21c002007-12-08 20:04:36 +00001040 priv->cur_rate = new_rate;
David Woodhouseaa21c002007-12-08 20:04:36 +00001041 priv->auto_rate = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001042 }
1043
Dan Williams8e3c91b2007-12-11 15:50:59 -05001044 ret = lbs_set_data_rate(priv, new_rate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001045
Dan Williams8c512762007-08-02 11:40:45 -04001046out:
Holger Schurig9012b282007-05-25 11:27:16 -04001047 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001048 return ret;
1049}
1050
Holger Schurig10078322007-11-15 18:05:47 -05001051static int lbs_get_rate(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001052 struct iw_param *vwrq, char *extra)
1053{
Holger Schurig69f90322007-11-23 15:43:44 +01001054 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001055
Holger Schurig9012b282007-05-25 11:27:16 -04001056 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001057
David Woodhouseaa21c002007-12-08 20:04:36 +00001058 if (priv->connect_status == LBS_CONNECTED) {
1059 vwrq->value = priv->cur_rate * 500000;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001060
David Woodhouseaa21c002007-12-08 20:04:36 +00001061 if (priv->auto_rate)
Dan Williams8c512762007-08-02 11:40:45 -04001062 vwrq->fixed = 0;
1063 else
1064 vwrq->fixed = 1;
1065
1066 } else {
1067 vwrq->fixed = 0;
1068 vwrq->value = 0;
1069 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001070
Holger Schurig9012b282007-05-25 11:27:16 -04001071 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001072 return 0;
1073}
1074
Holger Schurig10078322007-11-15 18:05:47 -05001075static int lbs_set_mode(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001076 struct iw_request_info *info, u32 * uwrq, char *extra)
1077{
1078 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +01001079 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001080 struct assoc_request * assoc_req;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001081
Holger Schurig9012b282007-05-25 11:27:16 -04001082 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001083
Dan Williams0dc5a292007-05-10 22:58:02 -04001084 if ( (*uwrq != IW_MODE_ADHOC)
1085 && (*uwrq != IW_MODE_INFRA)
1086 && (*uwrq != IW_MODE_AUTO)) {
Holger Schurig9012b282007-05-25 11:27:16 -04001087 lbs_deb_wext("Invalid mode: 0x%x\n", *uwrq);
Dan Williams0dc5a292007-05-10 22:58:02 -04001088 ret = -EINVAL;
1089 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001090 }
1091
David Woodhouseaa21c002007-12-08 20:04:36 +00001092 mutex_lock(&priv->lock);
1093 assoc_req = lbs_get_association_request(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001094 if (!assoc_req) {
1095 ret = -ENOMEM;
Holger Schurig10078322007-11-15 18:05:47 -05001096 lbs_cancel_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001097 } else {
Dan Williams0dc5a292007-05-10 22:58:02 -04001098 assoc_req->mode = *uwrq;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001099 set_bit(ASSOC_FLAG_MODE, &assoc_req->flags);
Holger Schurig10078322007-11-15 18:05:47 -05001100 lbs_postpone_association_work(priv);
Holger Schurig9012b282007-05-25 11:27:16 -04001101 lbs_deb_wext("Switching to mode: 0x%x\n", *uwrq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001102 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001103 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001104
Dan Williams0dc5a292007-05-10 22:58:02 -04001105out:
Holger Schurig9012b282007-05-25 11:27:16 -04001106 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001107 return ret;
1108}
1109
1110
1111/**
1112 * @brief Get Encryption key
1113 *
1114 * @param dev A pointer to net_device structure
1115 * @param info A pointer to iw_request_info structure
1116 * @param vwrq A pointer to iw_param structure
1117 * @param extra A pointer to extra data buf
1118 * @return 0 --success, otherwise fail
1119 */
Holger Schurig10078322007-11-15 18:05:47 -05001120static int lbs_get_encode(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001121 struct iw_request_info *info,
1122 struct iw_point *dwrq, u8 * extra)
1123{
Holger Schurig69f90322007-11-23 15:43:44 +01001124 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001125 int index = (dwrq->flags & IW_ENCODE_INDEX) - 1;
1126
Holger Schurig9012b282007-05-25 11:27:16 -04001127 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001128
Holger Schurig9012b282007-05-25 11:27:16 -04001129 lbs_deb_wext("flags 0x%x, index %d, length %d, wep_tx_keyidx %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001130 dwrq->flags, index, dwrq->length, priv->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001131
1132 dwrq->flags = 0;
1133
1134 /* Authentication method */
David Woodhouseaa21c002007-12-08 20:04:36 +00001135 switch (priv->secinfo.auth_mode) {
Dan Williams6affe782007-05-10 22:56:42 -04001136 case IW_AUTH_ALG_OPEN_SYSTEM:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001137 dwrq->flags = IW_ENCODE_OPEN;
1138 break;
1139
Dan Williams6affe782007-05-10 22:56:42 -04001140 case IW_AUTH_ALG_SHARED_KEY:
1141 case IW_AUTH_ALG_LEAP:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001142 dwrq->flags = IW_ENCODE_RESTRICTED;
1143 break;
1144 default:
1145 dwrq->flags = IW_ENCODE_DISABLED | IW_ENCODE_OPEN;
1146 break;
1147 }
1148
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001149 memset(extra, 0, 16);
1150
David Woodhouseaa21c002007-12-08 20:04:36 +00001151 mutex_lock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001152
1153 /* Default to returning current transmit key */
1154 if (index < 0)
David Woodhouseaa21c002007-12-08 20:04:36 +00001155 index = priv->wep_tx_keyidx;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001156
David Woodhouseaa21c002007-12-08 20:04:36 +00001157 if ((priv->wep_keys[index].len) && priv->secinfo.wep_enabled) {
1158 memcpy(extra, priv->wep_keys[index].key,
1159 priv->wep_keys[index].len);
1160 dwrq->length = priv->wep_keys[index].len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001161
1162 dwrq->flags |= (index + 1);
1163 /* Return WEP enabled */
1164 dwrq->flags &= ~IW_ENCODE_DISABLED;
David Woodhouseaa21c002007-12-08 20:04:36 +00001165 } else if ((priv->secinfo.WPAenabled)
1166 || (priv->secinfo.WPA2enabled)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001167 /* return WPA enabled */
1168 dwrq->flags &= ~IW_ENCODE_DISABLED;
David Woodhousec12bdc42007-12-07 19:32:12 +00001169 dwrq->flags |= IW_ENCODE_NOKEY;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001170 } else {
1171 dwrq->flags |= IW_ENCODE_DISABLED;
1172 }
1173
David Woodhouseaa21c002007-12-08 20:04:36 +00001174 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001175
Joe Perches0795af52007-10-03 17:59:30 -07001176 lbs_deb_wext("key: %02x:%02x:%02x:%02x:%02x:%02x, keylen %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001177 extra[0], extra[1], extra[2],
1178 extra[3], extra[4], extra[5], dwrq->length);
1179
Holger Schurig9012b282007-05-25 11:27:16 -04001180 lbs_deb_wext("return flags 0x%x\n", dwrq->flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001181
Holger Schurig9012b282007-05-25 11:27:16 -04001182 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001183 return 0;
1184}
1185
1186/**
1187 * @brief Set Encryption key (internal)
1188 *
1189 * @param priv A pointer to private card structure
1190 * @param key_material A pointer to key material
1191 * @param key_length length of key material
1192 * @param index key index to set
1193 * @param set_tx_key Force set TX key (1 = yes, 0 = no)
1194 * @return 0 --success, otherwise fail
1195 */
Holger Schurig10078322007-11-15 18:05:47 -05001196static int lbs_set_wep_key(struct assoc_request *assoc_req,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001197 const char *key_material,
1198 u16 key_length,
1199 u16 index,
1200 int set_tx_key)
1201{
Holger Schurig9012b282007-05-25 11:27:16 -04001202 int ret = 0;
Dan Williams1443b652007-08-02 10:45:55 -04001203 struct enc_key *pkey;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001204
Holger Schurig9012b282007-05-25 11:27:16 -04001205 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001206
1207 /* Paranoid validation of key index */
1208 if (index > 3) {
Holger Schurig9012b282007-05-25 11:27:16 -04001209 ret = -EINVAL;
1210 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001211 }
1212
1213 /* validate max key length */
1214 if (key_length > KEY_LEN_WEP_104) {
Holger Schurig9012b282007-05-25 11:27:16 -04001215 ret = -EINVAL;
1216 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001217 }
1218
1219 pkey = &assoc_req->wep_keys[index];
1220
1221 if (key_length > 0) {
Dan Williams1443b652007-08-02 10:45:55 -04001222 memset(pkey, 0, sizeof(struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001223 pkey->type = KEY_TYPE_ID_WEP;
1224
1225 /* Standardize the key length */
1226 pkey->len = (key_length > KEY_LEN_WEP_40) ?
1227 KEY_LEN_WEP_104 : KEY_LEN_WEP_40;
1228 memcpy(pkey->key, key_material, key_length);
1229 }
1230
1231 if (set_tx_key) {
1232 /* Ensure the chosen key is valid */
1233 if (!pkey->len) {
Holger Schurig9012b282007-05-25 11:27:16 -04001234 lbs_deb_wext("key not set, so cannot enable it\n");
1235 ret = -EINVAL;
1236 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001237 }
1238 assoc_req->wep_tx_keyidx = index;
1239 }
1240
Dan Williams889c05b2007-05-10 22:57:23 -04001241 assoc_req->secinfo.wep_enabled = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001242
Holger Schurig9012b282007-05-25 11:27:16 -04001243out:
1244 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
1245 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001246}
1247
1248static int validate_key_index(u16 def_index, u16 raw_index,
1249 u16 *out_index, u16 *is_default)
1250{
1251 if (!out_index || !is_default)
1252 return -EINVAL;
1253
1254 /* Verify index if present, otherwise use default TX key index */
1255 if (raw_index > 0) {
1256 if (raw_index > 4)
1257 return -EINVAL;
1258 *out_index = raw_index - 1;
1259 } else {
1260 *out_index = def_index;
1261 *is_default = 1;
1262 }
1263 return 0;
1264}
1265
1266static void disable_wep(struct assoc_request *assoc_req)
1267{
1268 int i;
1269
Dan Williams90a42212007-05-25 23:01:24 -04001270 lbs_deb_enter(LBS_DEB_WEXT);
1271
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001272 /* Set Open System auth mode */
Dan Williams6affe782007-05-10 22:56:42 -04001273 assoc_req->secinfo.auth_mode = IW_AUTH_ALG_OPEN_SYSTEM;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001274
1275 /* Clear WEP keys and mark WEP as disabled */
Dan Williams889c05b2007-05-10 22:57:23 -04001276 assoc_req->secinfo.wep_enabled = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001277 for (i = 0; i < 4; i++)
1278 assoc_req->wep_keys[i].len = 0;
1279
1280 set_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags);
1281 set_bit(ASSOC_FLAG_WEP_KEYS, &assoc_req->flags);
Dan Williams90a42212007-05-25 23:01:24 -04001282
1283 lbs_deb_leave(LBS_DEB_WEXT);
1284}
1285
1286static void disable_wpa(struct assoc_request *assoc_req)
1287{
1288 lbs_deb_enter(LBS_DEB_WEXT);
1289
Dan Williams1443b652007-08-02 10:45:55 -04001290 memset(&assoc_req->wpa_mcast_key, 0, sizeof (struct enc_key));
Dan Williams90a42212007-05-25 23:01:24 -04001291 assoc_req->wpa_mcast_key.flags = KEY_INFO_WPA_MCAST;
1292 set_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags);
1293
Dan Williams1443b652007-08-02 10:45:55 -04001294 memset(&assoc_req->wpa_unicast_key, 0, sizeof (struct enc_key));
Dan Williams90a42212007-05-25 23:01:24 -04001295 assoc_req->wpa_unicast_key.flags = KEY_INFO_WPA_UNICAST;
1296 set_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags);
1297
1298 assoc_req->secinfo.WPAenabled = 0;
1299 assoc_req->secinfo.WPA2enabled = 0;
1300 set_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags);
1301
1302 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001303}
1304
1305/**
1306 * @brief Set Encryption key
1307 *
1308 * @param dev A pointer to net_device structure
1309 * @param info A pointer to iw_request_info structure
1310 * @param vwrq A pointer to iw_param structure
1311 * @param extra A pointer to extra data buf
1312 * @return 0 --success, otherwise fail
1313 */
Holger Schurig10078322007-11-15 18:05:47 -05001314static int lbs_set_encode(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001315 struct iw_request_info *info,
1316 struct iw_point *dwrq, char *extra)
1317{
1318 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +01001319 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001320 struct assoc_request * assoc_req;
1321 u16 is_default = 0, index = 0, set_tx_key = 0;
1322
Holger Schurig9012b282007-05-25 11:27:16 -04001323 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001324
David Woodhouseaa21c002007-12-08 20:04:36 +00001325 mutex_lock(&priv->lock);
1326 assoc_req = lbs_get_association_request(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001327 if (!assoc_req) {
1328 ret = -ENOMEM;
1329 goto out;
1330 }
1331
1332 if (dwrq->flags & IW_ENCODE_DISABLED) {
1333 disable_wep (assoc_req);
Dan Williams90a42212007-05-25 23:01:24 -04001334 disable_wpa (assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001335 goto out;
1336 }
1337
1338 ret = validate_key_index(assoc_req->wep_tx_keyidx,
1339 (dwrq->flags & IW_ENCODE_INDEX),
1340 &index, &is_default);
1341 if (ret) {
1342 ret = -EINVAL;
1343 goto out;
1344 }
1345
1346 /* If WEP isn't enabled, or if there is no key data but a valid
1347 * index, set the TX key.
1348 */
Dan Williams889c05b2007-05-10 22:57:23 -04001349 if (!assoc_req->secinfo.wep_enabled || (dwrq->length == 0 && !is_default))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001350 set_tx_key = 1;
1351
Holger Schurig10078322007-11-15 18:05:47 -05001352 ret = lbs_set_wep_key(assoc_req, extra, dwrq->length, index, set_tx_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001353 if (ret)
1354 goto out;
1355
1356 if (dwrq->length)
1357 set_bit(ASSOC_FLAG_WEP_KEYS, &assoc_req->flags);
1358 if (set_tx_key)
1359 set_bit(ASSOC_FLAG_WEP_TX_KEYIDX, &assoc_req->flags);
1360
1361 if (dwrq->flags & IW_ENCODE_RESTRICTED) {
Dan Williams6affe782007-05-10 22:56:42 -04001362 assoc_req->secinfo.auth_mode = IW_AUTH_ALG_SHARED_KEY;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001363 } else if (dwrq->flags & IW_ENCODE_OPEN) {
Dan Williams6affe782007-05-10 22:56:42 -04001364 assoc_req->secinfo.auth_mode = IW_AUTH_ALG_OPEN_SYSTEM;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001365 }
1366
1367out:
1368 if (ret == 0) {
1369 set_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags);
Holger Schurig10078322007-11-15 18:05:47 -05001370 lbs_postpone_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001371 } else {
Holger Schurig10078322007-11-15 18:05:47 -05001372 lbs_cancel_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001373 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001374 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001375
Holger Schurig9012b282007-05-25 11:27:16 -04001376 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001377 return ret;
1378}
1379
1380/**
1381 * @brief Get Extended Encryption key (WPA/802.1x and WEP)
1382 *
1383 * @param dev A pointer to net_device structure
1384 * @param info A pointer to iw_request_info structure
1385 * @param vwrq A pointer to iw_param structure
1386 * @param extra A pointer to extra data buf
1387 * @return 0 on success, otherwise failure
1388 */
Holger Schurig10078322007-11-15 18:05:47 -05001389static int lbs_get_encodeext(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001390 struct iw_request_info *info,
1391 struct iw_point *dwrq,
1392 char *extra)
1393{
1394 int ret = -EINVAL;
Holger Schurig69f90322007-11-23 15:43:44 +01001395 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001396 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
1397 int index, max_key_len;
1398
Holger Schurig9012b282007-05-25 11:27:16 -04001399 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001400
1401 max_key_len = dwrq->length - sizeof(*ext);
1402 if (max_key_len < 0)
1403 goto out;
1404
1405 index = dwrq->flags & IW_ENCODE_INDEX;
1406 if (index) {
1407 if (index < 1 || index > 4)
1408 goto out;
1409 index--;
1410 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001411 index = priv->wep_tx_keyidx;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001412 }
1413
Roel Kluinf59d9782007-10-26 21:51:26 +02001414 if (!(ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY) &&
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001415 ext->alg != IW_ENCODE_ALG_WEP) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001416 if (index != 0 || priv->mode != IW_MODE_INFRA)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001417 goto out;
1418 }
1419
1420 dwrq->flags = index + 1;
1421 memset(ext, 0, sizeof(*ext));
1422
David Woodhouseaa21c002007-12-08 20:04:36 +00001423 if ( !priv->secinfo.wep_enabled
1424 && !priv->secinfo.WPAenabled
1425 && !priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001426 ext->alg = IW_ENCODE_ALG_NONE;
1427 ext->key_len = 0;
1428 dwrq->flags |= IW_ENCODE_DISABLED;
1429 } else {
1430 u8 *key = NULL;
1431
David Woodhouseaa21c002007-12-08 20:04:36 +00001432 if ( priv->secinfo.wep_enabled
1433 && !priv->secinfo.WPAenabled
1434 && !priv->secinfo.WPA2enabled) {
Dan Williams90a42212007-05-25 23:01:24 -04001435 /* WEP */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001436 ext->alg = IW_ENCODE_ALG_WEP;
David Woodhouseaa21c002007-12-08 20:04:36 +00001437 ext->key_len = priv->wep_keys[index].len;
1438 key = &priv->wep_keys[index].key[0];
1439 } else if ( !priv->secinfo.wep_enabled
1440 && (priv->secinfo.WPAenabled ||
1441 priv->secinfo.WPA2enabled)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001442 /* WPA */
Dan Williams1443b652007-08-02 10:45:55 -04001443 struct enc_key * pkey = NULL;
Dan Williams90a42212007-05-25 23:01:24 -04001444
David Woodhouseaa21c002007-12-08 20:04:36 +00001445 if ( priv->wpa_mcast_key.len
1446 && (priv->wpa_mcast_key.flags & KEY_INFO_WPA_ENABLED))
1447 pkey = &priv->wpa_mcast_key;
1448 else if ( priv->wpa_unicast_key.len
1449 && (priv->wpa_unicast_key.flags & KEY_INFO_WPA_ENABLED))
1450 pkey = &priv->wpa_unicast_key;
Dan Williams90a42212007-05-25 23:01:24 -04001451
1452 if (pkey) {
1453 if (pkey->type == KEY_TYPE_ID_AES) {
1454 ext->alg = IW_ENCODE_ALG_CCMP;
1455 } else {
1456 ext->alg = IW_ENCODE_ALG_TKIP;
1457 }
1458 ext->key_len = pkey->len;
1459 key = &pkey->key[0];
1460 } else {
1461 ext->alg = IW_ENCODE_ALG_TKIP;
1462 ext->key_len = 0;
1463 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001464 } else {
1465 goto out;
1466 }
1467
1468 if (ext->key_len > max_key_len) {
1469 ret = -E2BIG;
1470 goto out;
1471 }
1472
1473 if (ext->key_len)
1474 memcpy(ext->key, key, ext->key_len);
1475 else
1476 dwrq->flags |= IW_ENCODE_NOKEY;
1477 dwrq->flags |= IW_ENCODE_ENABLED;
1478 }
1479 ret = 0;
1480
1481out:
Holger Schurig9012b282007-05-25 11:27:16 -04001482 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001483 return ret;
1484}
1485
1486/**
1487 * @brief Set Encryption key Extended (WPA/802.1x and WEP)
1488 *
1489 * @param dev A pointer to net_device structure
1490 * @param info A pointer to iw_request_info structure
1491 * @param vwrq A pointer to iw_param structure
1492 * @param extra A pointer to extra data buf
1493 * @return 0 --success, otherwise fail
1494 */
Holger Schurig10078322007-11-15 18:05:47 -05001495static int lbs_set_encodeext(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001496 struct iw_request_info *info,
1497 struct iw_point *dwrq,
1498 char *extra)
1499{
1500 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +01001501 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001502 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
1503 int alg = ext->alg;
1504 struct assoc_request * assoc_req;
1505
Holger Schurig9012b282007-05-25 11:27:16 -04001506 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001507
David Woodhouseaa21c002007-12-08 20:04:36 +00001508 mutex_lock(&priv->lock);
1509 assoc_req = lbs_get_association_request(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001510 if (!assoc_req) {
1511 ret = -ENOMEM;
1512 goto out;
1513 }
1514
1515 if ((alg == IW_ENCODE_ALG_NONE) || (dwrq->flags & IW_ENCODE_DISABLED)) {
1516 disable_wep (assoc_req);
Dan Williams90a42212007-05-25 23:01:24 -04001517 disable_wpa (assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001518 } else if (alg == IW_ENCODE_ALG_WEP) {
1519 u16 is_default = 0, index, set_tx_key = 0;
1520
1521 ret = validate_key_index(assoc_req->wep_tx_keyidx,
1522 (dwrq->flags & IW_ENCODE_INDEX),
1523 &index, &is_default);
1524 if (ret)
1525 goto out;
1526
1527 /* If WEP isn't enabled, or if there is no key data but a valid
1528 * index, or if the set-TX-key flag was passed, set the TX key.
1529 */
Dan Williams889c05b2007-05-10 22:57:23 -04001530 if ( !assoc_req->secinfo.wep_enabled
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001531 || (dwrq->length == 0 && !is_default)
1532 || (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY))
1533 set_tx_key = 1;
1534
1535 /* Copy key to driver */
Holger Schurig10078322007-11-15 18:05:47 -05001536 ret = lbs_set_wep_key(assoc_req, ext->key, ext->key_len, index,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001537 set_tx_key);
1538 if (ret)
1539 goto out;
1540
1541 if (dwrq->flags & IW_ENCODE_RESTRICTED) {
Dan Williams6affe782007-05-10 22:56:42 -04001542 assoc_req->secinfo.auth_mode = IW_AUTH_ALG_SHARED_KEY;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001543 } else if (dwrq->flags & IW_ENCODE_OPEN) {
Dan Williams6affe782007-05-10 22:56:42 -04001544 assoc_req->secinfo.auth_mode = IW_AUTH_ALG_OPEN_SYSTEM;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001545 }
1546
1547 /* Mark the various WEP bits as modified */
1548 set_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags);
1549 if (dwrq->length)
1550 set_bit(ASSOC_FLAG_WEP_KEYS, &assoc_req->flags);
1551 if (set_tx_key)
1552 set_bit(ASSOC_FLAG_WEP_TX_KEYIDX, &assoc_req->flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001553 } else if ((alg == IW_ENCODE_ALG_TKIP) || (alg == IW_ENCODE_ALG_CCMP)) {
Dan Williams1443b652007-08-02 10:45:55 -04001554 struct enc_key * pkey;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001555
1556 /* validate key length */
1557 if (((alg == IW_ENCODE_ALG_TKIP)
1558 && (ext->key_len != KEY_LEN_WPA_TKIP))
1559 || ((alg == IW_ENCODE_ALG_CCMP)
1560 && (ext->key_len != KEY_LEN_WPA_AES))) {
Joe Perches8376e7a2007-11-19 17:48:27 -08001561 lbs_deb_wext("invalid size %d for key of alg "
Holger Schurig9012b282007-05-25 11:27:16 -04001562 "type %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001563 ext->key_len,
1564 alg);
1565 ret = -EINVAL;
1566 goto out;
1567 }
1568
Dan Williams90a42212007-05-25 23:01:24 -04001569 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001570 pkey = &assoc_req->wpa_mcast_key;
Dan Williams90a42212007-05-25 23:01:24 -04001571 set_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags);
1572 } else {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001573 pkey = &assoc_req->wpa_unicast_key;
Dan Williams90a42212007-05-25 23:01:24 -04001574 set_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags);
1575 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001576
Dan Williams1443b652007-08-02 10:45:55 -04001577 memset(pkey, 0, sizeof (struct enc_key));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001578 memcpy(pkey->key, ext->key, ext->key_len);
1579 pkey->len = ext->key_len;
Dan Williams90a42212007-05-25 23:01:24 -04001580 if (pkey->len)
1581 pkey->flags |= KEY_INFO_WPA_ENABLED;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001582
Dan Williams90a42212007-05-25 23:01:24 -04001583 /* Do this after zeroing key structure */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001584 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY) {
1585 pkey->flags |= KEY_INFO_WPA_MCAST;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001586 } else {
1587 pkey->flags |= KEY_INFO_WPA_UNICAST;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001588 }
1589
Dan Williams90a42212007-05-25 23:01:24 -04001590 if (alg == IW_ENCODE_ALG_TKIP) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001591 pkey->type = KEY_TYPE_ID_TKIP;
Dan Williams90a42212007-05-25 23:01:24 -04001592 } else if (alg == IW_ENCODE_ALG_CCMP) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001593 pkey->type = KEY_TYPE_ID_AES;
Dan Williams90a42212007-05-25 23:01:24 -04001594 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001595
1596 /* If WPA isn't enabled yet, do that now */
1597 if ( assoc_req->secinfo.WPAenabled == 0
1598 && assoc_req->secinfo.WPA2enabled == 0) {
1599 assoc_req->secinfo.WPAenabled = 1;
1600 assoc_req->secinfo.WPA2enabled = 1;
1601 set_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags);
1602 }
1603
1604 disable_wep (assoc_req);
1605 }
1606
1607out:
1608 if (ret == 0) {
Holger Schurig10078322007-11-15 18:05:47 -05001609 lbs_postpone_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001610 } else {
Holger Schurig10078322007-11-15 18:05:47 -05001611 lbs_cancel_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001612 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001613 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001614
Holger Schurig9012b282007-05-25 11:27:16 -04001615 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001616 return ret;
1617}
1618
1619
Holger Schurig10078322007-11-15 18:05:47 -05001620static int lbs_set_genie(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001621 struct iw_request_info *info,
1622 struct iw_point *dwrq,
1623 char *extra)
1624{
Holger Schurig69f90322007-11-23 15:43:44 +01001625 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001626 int ret = 0;
1627 struct assoc_request * assoc_req;
1628
Holger Schurig9012b282007-05-25 11:27:16 -04001629 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001630
David Woodhouseaa21c002007-12-08 20:04:36 +00001631 mutex_lock(&priv->lock);
1632 assoc_req = lbs_get_association_request(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001633 if (!assoc_req) {
1634 ret = -ENOMEM;
1635 goto out;
1636 }
1637
1638 if (dwrq->length > MAX_WPA_IE_LEN ||
1639 (dwrq->length && extra == NULL)) {
1640 ret = -EINVAL;
1641 goto out;
1642 }
1643
1644 if (dwrq->length) {
1645 memcpy(&assoc_req->wpa_ie[0], extra, dwrq->length);
1646 assoc_req->wpa_ie_len = dwrq->length;
1647 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001648 memset(&assoc_req->wpa_ie[0], 0, sizeof(priv->wpa_ie));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001649 assoc_req->wpa_ie_len = 0;
1650 }
1651
1652out:
1653 if (ret == 0) {
1654 set_bit(ASSOC_FLAG_WPA_IE, &assoc_req->flags);
Holger Schurig10078322007-11-15 18:05:47 -05001655 lbs_postpone_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001656 } else {
Holger Schurig10078322007-11-15 18:05:47 -05001657 lbs_cancel_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001658 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001659 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001660
Holger Schurig9012b282007-05-25 11:27:16 -04001661 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001662 return ret;
1663}
1664
Holger Schurig10078322007-11-15 18:05:47 -05001665static int lbs_get_genie(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001666 struct iw_request_info *info,
1667 struct iw_point *dwrq,
1668 char *extra)
1669{
Holger Schurig9012b282007-05-25 11:27:16 -04001670 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +01001671 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001672
Holger Schurig9012b282007-05-25 11:27:16 -04001673 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001674
David Woodhouseaa21c002007-12-08 20:04:36 +00001675 if (priv->wpa_ie_len == 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001676 dwrq->length = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001677 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001678 }
1679
David Woodhouseaa21c002007-12-08 20:04:36 +00001680 if (dwrq->length < priv->wpa_ie_len) {
Holger Schurig9012b282007-05-25 11:27:16 -04001681 ret = -E2BIG;
1682 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001683 }
1684
David Woodhouseaa21c002007-12-08 20:04:36 +00001685 dwrq->length = priv->wpa_ie_len;
1686 memcpy(extra, &priv->wpa_ie[0], priv->wpa_ie_len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001687
Holger Schurig9012b282007-05-25 11:27:16 -04001688out:
1689 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
1690 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001691}
1692
1693
Holger Schurig10078322007-11-15 18:05:47 -05001694static int lbs_set_auth(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001695 struct iw_request_info *info,
1696 struct iw_param *dwrq,
1697 char *extra)
1698{
Holger Schurig69f90322007-11-23 15:43:44 +01001699 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001700 struct assoc_request * assoc_req;
1701 int ret = 0;
1702 int updated = 0;
1703
Holger Schurig9012b282007-05-25 11:27:16 -04001704 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001705
David Woodhouseaa21c002007-12-08 20:04:36 +00001706 mutex_lock(&priv->lock);
1707 assoc_req = lbs_get_association_request(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001708 if (!assoc_req) {
1709 ret = -ENOMEM;
1710 goto out;
1711 }
1712
1713 switch (dwrq->flags & IW_AUTH_INDEX) {
1714 case IW_AUTH_TKIP_COUNTERMEASURES:
1715 case IW_AUTH_CIPHER_PAIRWISE:
1716 case IW_AUTH_CIPHER_GROUP:
1717 case IW_AUTH_KEY_MGMT:
Dan Williams90a42212007-05-25 23:01:24 -04001718 case IW_AUTH_DROP_UNENCRYPTED:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001719 /*
1720 * libertas does not use these parameters
1721 */
1722 break;
1723
1724 case IW_AUTH_WPA_VERSION:
1725 if (dwrq->value & IW_AUTH_WPA_VERSION_DISABLED) {
1726 assoc_req->secinfo.WPAenabled = 0;
1727 assoc_req->secinfo.WPA2enabled = 0;
Dan Williams90a42212007-05-25 23:01:24 -04001728 disable_wpa (assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001729 }
1730 if (dwrq->value & IW_AUTH_WPA_VERSION_WPA) {
1731 assoc_req->secinfo.WPAenabled = 1;
Dan Williams889c05b2007-05-10 22:57:23 -04001732 assoc_req->secinfo.wep_enabled = 0;
Dan Williams6affe782007-05-10 22:56:42 -04001733 assoc_req->secinfo.auth_mode = IW_AUTH_ALG_OPEN_SYSTEM;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001734 }
1735 if (dwrq->value & IW_AUTH_WPA_VERSION_WPA2) {
1736 assoc_req->secinfo.WPA2enabled = 1;
Dan Williams889c05b2007-05-10 22:57:23 -04001737 assoc_req->secinfo.wep_enabled = 0;
Dan Williams6affe782007-05-10 22:56:42 -04001738 assoc_req->secinfo.auth_mode = IW_AUTH_ALG_OPEN_SYSTEM;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001739 }
1740 updated = 1;
1741 break;
1742
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001743 case IW_AUTH_80211_AUTH_ALG:
1744 if (dwrq->value & IW_AUTH_ALG_SHARED_KEY) {
Dan Williams6affe782007-05-10 22:56:42 -04001745 assoc_req->secinfo.auth_mode = IW_AUTH_ALG_SHARED_KEY;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001746 } else if (dwrq->value & IW_AUTH_ALG_OPEN_SYSTEM) {
Dan Williams6affe782007-05-10 22:56:42 -04001747 assoc_req->secinfo.auth_mode = IW_AUTH_ALG_OPEN_SYSTEM;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001748 } else if (dwrq->value & IW_AUTH_ALG_LEAP) {
Dan Williams6affe782007-05-10 22:56:42 -04001749 assoc_req->secinfo.auth_mode = IW_AUTH_ALG_LEAP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001750 } else {
1751 ret = -EINVAL;
1752 }
1753 updated = 1;
1754 break;
1755
1756 case IW_AUTH_WPA_ENABLED:
1757 if (dwrq->value) {
1758 if (!assoc_req->secinfo.WPAenabled &&
1759 !assoc_req->secinfo.WPA2enabled) {
1760 assoc_req->secinfo.WPAenabled = 1;
1761 assoc_req->secinfo.WPA2enabled = 1;
Dan Williams889c05b2007-05-10 22:57:23 -04001762 assoc_req->secinfo.wep_enabled = 0;
Dan Williams6affe782007-05-10 22:56:42 -04001763 assoc_req->secinfo.auth_mode = IW_AUTH_ALG_OPEN_SYSTEM;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001764 }
1765 } else {
1766 assoc_req->secinfo.WPAenabled = 0;
1767 assoc_req->secinfo.WPA2enabled = 0;
Dan Williams90a42212007-05-25 23:01:24 -04001768 disable_wpa (assoc_req);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001769 }
1770 updated = 1;
1771 break;
1772
1773 default:
1774 ret = -EOPNOTSUPP;
1775 break;
1776 }
1777
1778out:
1779 if (ret == 0) {
1780 if (updated)
1781 set_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags);
Holger Schurig10078322007-11-15 18:05:47 -05001782 lbs_postpone_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001783 } else if (ret != -EOPNOTSUPP) {
Holger Schurig10078322007-11-15 18:05:47 -05001784 lbs_cancel_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001785 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001786 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001787
Holger Schurig9012b282007-05-25 11:27:16 -04001788 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001789 return ret;
1790}
1791
Holger Schurig10078322007-11-15 18:05:47 -05001792static int lbs_get_auth(struct net_device *dev,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001793 struct iw_request_info *info,
1794 struct iw_param *dwrq,
1795 char *extra)
1796{
Holger Schurig9012b282007-05-25 11:27:16 -04001797 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +01001798 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001799
Holger Schurig9012b282007-05-25 11:27:16 -04001800 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001801
1802 switch (dwrq->flags & IW_AUTH_INDEX) {
1803 case IW_AUTH_WPA_VERSION:
1804 dwrq->value = 0;
David Woodhouseaa21c002007-12-08 20:04:36 +00001805 if (priv->secinfo.WPAenabled)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001806 dwrq->value |= IW_AUTH_WPA_VERSION_WPA;
David Woodhouseaa21c002007-12-08 20:04:36 +00001807 if (priv->secinfo.WPA2enabled)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001808 dwrq->value |= IW_AUTH_WPA_VERSION_WPA2;
1809 if (!dwrq->value)
1810 dwrq->value |= IW_AUTH_WPA_VERSION_DISABLED;
1811 break;
1812
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001813 case IW_AUTH_80211_AUTH_ALG:
David Woodhouseaa21c002007-12-08 20:04:36 +00001814 dwrq->value = priv->secinfo.auth_mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001815 break;
1816
1817 case IW_AUTH_WPA_ENABLED:
David Woodhouseaa21c002007-12-08 20:04:36 +00001818 if (priv->secinfo.WPAenabled && priv->secinfo.WPA2enabled)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001819 dwrq->value = 1;
1820 break;
1821
1822 default:
Holger Schurig9012b282007-05-25 11:27:16 -04001823 ret = -EOPNOTSUPP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001824 }
1825
Holger Schurig9012b282007-05-25 11:27:16 -04001826 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
1827 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001828}
1829
1830
Holger Schurig10078322007-11-15 18:05:47 -05001831static int lbs_set_txpow(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001832 struct iw_param *vwrq, char *extra)
1833{
1834 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +01001835 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001836
1837 u16 dbm;
1838
Holger Schurig9012b282007-05-25 11:27:16 -04001839 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001840
1841 if (vwrq->disabled) {
Holger Schurig10078322007-11-15 18:05:47 -05001842 lbs_radio_ioctl(priv, RADIO_OFF);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001843 return 0;
1844 }
1845
David Woodhouseaa21c002007-12-08 20:04:36 +00001846 priv->preamble = CMD_TYPE_AUTO_PREAMBLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001847
Holger Schurig10078322007-11-15 18:05:47 -05001848 lbs_radio_ioctl(priv, RADIO_ON);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001849
Jean Tourrilhes9483f032007-08-02 13:16:30 -04001850 /* Userspace check in iwrange if it should use dBm or mW,
1851 * therefore this should never happen... Jean II */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001852 if ((vwrq->flags & IW_TXPOW_TYPE) == IW_TXPOW_MWATT) {
Jean Tourrilhes9483f032007-08-02 13:16:30 -04001853 return -EOPNOTSUPP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001854 } else
1855 dbm = (u16) vwrq->value;
1856
1857 /* auto tx power control */
1858
1859 if (vwrq->fixed == 0)
1860 dbm = 0xffff;
1861
Holger Schurig9012b282007-05-25 11:27:16 -04001862 lbs_deb_wext("txpower set %d dbm\n", dbm);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001863
Holger Schurig10078322007-11-15 18:05:47 -05001864 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001865 CMD_802_11_RF_TX_POWER,
1866 CMD_ACT_TX_POWER_OPT_SET_LOW,
1867 CMD_OPTION_WAITFORRSP, 0, (void *)&dbm);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001868
Holger Schurig9012b282007-05-25 11:27:16 -04001869 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001870 return ret;
1871}
1872
Holger Schurig10078322007-11-15 18:05:47 -05001873static int lbs_get_essid(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001874 struct iw_point *dwrq, char *extra)
1875{
Holger Schurig69f90322007-11-23 15:43:44 +01001876 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001877
Holger Schurig9012b282007-05-25 11:27:16 -04001878 lbs_deb_enter(LBS_DEB_WEXT);
1879
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001880 /*
1881 * Note : if dwrq->flags != 0, we should get the relevant SSID from
1882 * the SSID list...
1883 */
1884
1885 /*
1886 * Get the current SSID
1887 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001888 if (priv->connect_status == LBS_CONNECTED) {
1889 memcpy(extra, priv->curbssparams.ssid,
1890 priv->curbssparams.ssid_len);
1891 extra[priv->curbssparams.ssid_len] = '\0';
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001892 } else {
1893 memset(extra, 0, 32);
David Woodhouseaa21c002007-12-08 20:04:36 +00001894 extra[priv->curbssparams.ssid_len] = '\0';
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001895 }
1896 /*
1897 * If none, we may want to get the one that was set
1898 */
1899
David Woodhouseaa21c002007-12-08 20:04:36 +00001900 dwrq->length = priv->curbssparams.ssid_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001901
1902 dwrq->flags = 1; /* active */
1903
Holger Schurig9012b282007-05-25 11:27:16 -04001904 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001905 return 0;
1906}
1907
Holger Schurig10078322007-11-15 18:05:47 -05001908static int lbs_set_essid(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001909 struct iw_point *dwrq, char *extra)
1910{
Holger Schurig69f90322007-11-23 15:43:44 +01001911 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001912 int ret = 0;
Dan Williamsd8efea22007-05-28 23:54:55 -04001913 u8 ssid[IW_ESSID_MAX_SIZE];
1914 u8 ssid_len = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001915 struct assoc_request * assoc_req;
Dan Williamsd8efea22007-05-28 23:54:55 -04001916 int in_ssid_len = dwrq->length;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001917
Holger Schurig9012b282007-05-25 11:27:16 -04001918 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001919
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001920 /* Check the size of the string */
Dan Williamsd8efea22007-05-28 23:54:55 -04001921 if (in_ssid_len > IW_ESSID_MAX_SIZE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001922 ret = -E2BIG;
1923 goto out;
1924 }
1925
Dan Williamsd8efea22007-05-28 23:54:55 -04001926 memset(&ssid, 0, sizeof(ssid));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001927
Dan Williamsd8efea22007-05-28 23:54:55 -04001928 if (!dwrq->flags || !in_ssid_len) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001929 /* "any" SSID requested; leave SSID blank */
1930 } else {
1931 /* Specific SSID requested */
Dan Williamsd8efea22007-05-28 23:54:55 -04001932 memcpy(&ssid, extra, in_ssid_len);
1933 ssid_len = in_ssid_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001934 }
1935
Dan Williamsd8efea22007-05-28 23:54:55 -04001936 if (!ssid_len) {
1937 lbs_deb_wext("requested any SSID\n");
1938 } else {
1939 lbs_deb_wext("requested SSID '%s'\n",
1940 escape_essid(ssid, ssid_len));
1941 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001942
1943out:
David Woodhouseaa21c002007-12-08 20:04:36 +00001944 mutex_lock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001945 if (ret == 0) {
1946 /* Get or create the current association request */
David Woodhouseaa21c002007-12-08 20:04:36 +00001947 assoc_req = lbs_get_association_request(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001948 if (!assoc_req) {
1949 ret = -ENOMEM;
1950 } else {
1951 /* Copy the SSID to the association request */
Dan Williamsd8efea22007-05-28 23:54:55 -04001952 memcpy(&assoc_req->ssid, &ssid, IW_ESSID_MAX_SIZE);
1953 assoc_req->ssid_len = ssid_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001954 set_bit(ASSOC_FLAG_SSID, &assoc_req->flags);
Holger Schurig10078322007-11-15 18:05:47 -05001955 lbs_postpone_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001956 }
1957 }
1958
1959 /* Cancel the association request if there was an error */
1960 if (ret != 0) {
Holger Schurig10078322007-11-15 18:05:47 -05001961 lbs_cancel_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001962 }
1963
David Woodhouseaa21c002007-12-08 20:04:36 +00001964 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001965
Holger Schurig9012b282007-05-25 11:27:16 -04001966 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001967 return ret;
1968}
1969
David Woodhousef5956bf2007-12-11 19:30:57 -05001970static int lbs_mesh_get_essid(struct net_device *dev,
1971 struct iw_request_info *info,
1972 struct iw_point *dwrq, char *extra)
1973{
1974 struct lbs_private *priv = dev->priv;
1975
1976 lbs_deb_enter(LBS_DEB_WEXT);
1977
1978 memcpy(extra, priv->mesh_ssid, priv->mesh_ssid_len);
1979
1980 dwrq->length = priv->mesh_ssid_len;
1981
1982 dwrq->flags = 1; /* active */
1983
1984 lbs_deb_leave(LBS_DEB_WEXT);
1985 return 0;
1986}
1987
1988static int lbs_mesh_set_essid(struct net_device *dev,
1989 struct iw_request_info *info,
1990 struct iw_point *dwrq, char *extra)
1991{
1992 struct lbs_private *priv = dev->priv;
1993 int ret = 0;
1994
1995 lbs_deb_enter(LBS_DEB_WEXT);
1996
1997 /* Check the size of the string */
1998 if (dwrq->length > IW_ESSID_MAX_SIZE) {
1999 ret = -E2BIG;
2000 goto out;
2001 }
2002
2003 if (!dwrq->flags || !dwrq->length) {
2004 ret = -EINVAL;
2005 goto out;
2006 } else {
2007 /* Specific SSID requested */
2008 memcpy(priv->mesh_ssid, extra, dwrq->length);
2009 priv->mesh_ssid_len = dwrq->length;
2010 }
2011
David Woodhouse86062132007-12-13 00:32:36 -05002012 lbs_mesh_config(priv, 1, priv->curbssparams.channel);
David Woodhousef5956bf2007-12-11 19:30:57 -05002013 out:
2014 lbs_deb_leave_args(LBS_DEB_WEXT, "ret %d", ret);
2015 return ret;
2016}
2017
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002018/**
2019 * @brief Connect to the AP or Ad-hoc Network with specific bssid
2020 *
2021 * @param dev A pointer to net_device structure
2022 * @param info A pointer to iw_request_info structure
2023 * @param awrq A pointer to iw_param structure
2024 * @param extra A pointer to extra data buf
2025 * @return 0 --success, otherwise fail
2026 */
Holger Schurig10078322007-11-15 18:05:47 -05002027static int lbs_set_wap(struct net_device *dev, struct iw_request_info *info,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002028 struct sockaddr *awrq, char *extra)
2029{
Holger Schurig69f90322007-11-23 15:43:44 +01002030 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002031 struct assoc_request * assoc_req;
2032 int ret = 0;
Joe Perches0795af52007-10-03 17:59:30 -07002033 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002034
Holger Schurig9012b282007-05-25 11:27:16 -04002035 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002036
2037 if (awrq->sa_family != ARPHRD_ETHER)
2038 return -EINVAL;
2039
Joe Perches0795af52007-10-03 17:59:30 -07002040 lbs_deb_wext("ASSOC: WAP: sa_data %s\n", print_mac(mac, awrq->sa_data));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002041
David Woodhouseaa21c002007-12-08 20:04:36 +00002042 mutex_lock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002043
2044 /* Get or create the current association request */
David Woodhouseaa21c002007-12-08 20:04:36 +00002045 assoc_req = lbs_get_association_request(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002046 if (!assoc_req) {
Holger Schurig10078322007-11-15 18:05:47 -05002047 lbs_cancel_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002048 ret = -ENOMEM;
2049 } else {
2050 /* Copy the BSSID to the association request */
2051 memcpy(&assoc_req->bssid, awrq->sa_data, ETH_ALEN);
2052 set_bit(ASSOC_FLAG_BSSID, &assoc_req->flags);
Holger Schurig10078322007-11-15 18:05:47 -05002053 lbs_postpone_association_work(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002054 }
2055
David Woodhouseaa21c002007-12-08 20:04:36 +00002056 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002057
2058 return ret;
2059}
2060
David Woodhouseaa21c002007-12-08 20:04:36 +00002061void lbs_get_fwversion(struct lbs_private *priv, char *fwversion, int maxlen)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002062{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002063 char fwver[32];
2064
David Woodhouseaa21c002007-12-08 20:04:36 +00002065 mutex_lock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002066
David Woodhouseaa21c002007-12-08 20:04:36 +00002067 if (priv->fwreleasenumber[3] == 0)
David Woodhousee5b3d472007-05-25 23:40:21 -04002068 sprintf(fwver, "%u.%u.%u",
David Woodhouseaa21c002007-12-08 20:04:36 +00002069 priv->fwreleasenumber[2],
2070 priv->fwreleasenumber[1],
2071 priv->fwreleasenumber[0]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002072 else
2073 sprintf(fwver, "%u.%u.%u.p%u",
David Woodhouseaa21c002007-12-08 20:04:36 +00002074 priv->fwreleasenumber[2],
2075 priv->fwreleasenumber[1],
2076 priv->fwreleasenumber[0],
2077 priv->fwreleasenumber[3]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002078
David Woodhouseaa21c002007-12-08 20:04:36 +00002079 mutex_unlock(&priv->lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002080 snprintf(fwversion, maxlen, fwver);
2081}
2082
2083
2084/*
2085 * iwconfig settable callbacks
2086 */
Holger Schurig10078322007-11-15 18:05:47 -05002087static const iw_handler lbs_handler[] = {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002088 (iw_handler) NULL, /* SIOCSIWCOMMIT */
Holger Schurig10078322007-11-15 18:05:47 -05002089 (iw_handler) lbs_get_name, /* SIOCGIWNAME */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002090 (iw_handler) NULL, /* SIOCSIWNWID */
2091 (iw_handler) NULL, /* SIOCGIWNWID */
Holger Schurig10078322007-11-15 18:05:47 -05002092 (iw_handler) lbs_set_freq, /* SIOCSIWFREQ */
2093 (iw_handler) lbs_get_freq, /* SIOCGIWFREQ */
2094 (iw_handler) lbs_set_mode, /* SIOCSIWMODE */
2095 (iw_handler) lbs_get_mode, /* SIOCGIWMODE */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002096 (iw_handler) NULL, /* SIOCSIWSENS */
2097 (iw_handler) NULL, /* SIOCGIWSENS */
2098 (iw_handler) NULL, /* SIOCSIWRANGE */
Holger Schurig10078322007-11-15 18:05:47 -05002099 (iw_handler) lbs_get_range, /* SIOCGIWRANGE */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002100 (iw_handler) NULL, /* SIOCSIWPRIV */
2101 (iw_handler) NULL, /* SIOCGIWPRIV */
2102 (iw_handler) NULL, /* SIOCSIWSTATS */
2103 (iw_handler) NULL, /* SIOCGIWSTATS */
2104 iw_handler_set_spy, /* SIOCSIWSPY */
2105 iw_handler_get_spy, /* SIOCGIWSPY */
2106 iw_handler_set_thrspy, /* SIOCSIWTHRSPY */
2107 iw_handler_get_thrspy, /* SIOCGIWTHRSPY */
Holger Schurig10078322007-11-15 18:05:47 -05002108 (iw_handler) lbs_set_wap, /* SIOCSIWAP */
2109 (iw_handler) lbs_get_wap, /* SIOCGIWAP */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002110 (iw_handler) NULL, /* SIOCSIWMLME */
2111 (iw_handler) NULL, /* SIOCGIWAPLIST - deprecated */
Holger Schurig10078322007-11-15 18:05:47 -05002112 (iw_handler) lbs_set_scan, /* SIOCSIWSCAN */
2113 (iw_handler) lbs_get_scan, /* SIOCGIWSCAN */
2114 (iw_handler) lbs_set_essid, /* SIOCSIWESSID */
2115 (iw_handler) lbs_get_essid, /* SIOCGIWESSID */
2116 (iw_handler) lbs_set_nick, /* SIOCSIWNICKN */
2117 (iw_handler) lbs_get_nick, /* SIOCGIWNICKN */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002118 (iw_handler) NULL, /* -- hole -- */
2119 (iw_handler) NULL, /* -- hole -- */
Holger Schurig10078322007-11-15 18:05:47 -05002120 (iw_handler) lbs_set_rate, /* SIOCSIWRATE */
2121 (iw_handler) lbs_get_rate, /* SIOCGIWRATE */
2122 (iw_handler) lbs_set_rts, /* SIOCSIWRTS */
2123 (iw_handler) lbs_get_rts, /* SIOCGIWRTS */
2124 (iw_handler) lbs_set_frag, /* SIOCSIWFRAG */
2125 (iw_handler) lbs_get_frag, /* SIOCGIWFRAG */
2126 (iw_handler) lbs_set_txpow, /* SIOCSIWTXPOW */
2127 (iw_handler) lbs_get_txpow, /* SIOCGIWTXPOW */
2128 (iw_handler) lbs_set_retry, /* SIOCSIWRETRY */
2129 (iw_handler) lbs_get_retry, /* SIOCGIWRETRY */
2130 (iw_handler) lbs_set_encode, /* SIOCSIWENCODE */
2131 (iw_handler) lbs_get_encode, /* SIOCGIWENCODE */
2132 (iw_handler) lbs_set_power, /* SIOCSIWPOWER */
2133 (iw_handler) lbs_get_power, /* SIOCGIWPOWER */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002134 (iw_handler) NULL, /* -- hole -- */
2135 (iw_handler) NULL, /* -- hole -- */
Holger Schurig10078322007-11-15 18:05:47 -05002136 (iw_handler) lbs_set_genie, /* SIOCSIWGENIE */
2137 (iw_handler) lbs_get_genie, /* SIOCGIWGENIE */
2138 (iw_handler) lbs_set_auth, /* SIOCSIWAUTH */
2139 (iw_handler) lbs_get_auth, /* SIOCGIWAUTH */
2140 (iw_handler) lbs_set_encodeext,/* SIOCSIWENCODEEXT */
2141 (iw_handler) lbs_get_encodeext,/* SIOCGIWENCODEEXT */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002142 (iw_handler) NULL, /* SIOCSIWPMKSA */
2143};
2144
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -04002145static const iw_handler mesh_wlan_handler[] = {
2146 (iw_handler) NULL, /* SIOCSIWCOMMIT */
Holger Schurig10078322007-11-15 18:05:47 -05002147 (iw_handler) lbs_get_name, /* SIOCGIWNAME */
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -04002148 (iw_handler) NULL, /* SIOCSIWNWID */
2149 (iw_handler) NULL, /* SIOCGIWNWID */
David Woodhouse823eaa22007-12-11 19:56:28 -05002150 (iw_handler) lbs_mesh_set_freq, /* SIOCSIWFREQ */
Holger Schurig10078322007-11-15 18:05:47 -05002151 (iw_handler) lbs_get_freq, /* SIOCGIWFREQ */
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -04002152 (iw_handler) NULL, /* SIOCSIWMODE */
2153 (iw_handler) mesh_wlan_get_mode, /* SIOCGIWMODE */
2154 (iw_handler) NULL, /* SIOCSIWSENS */
2155 (iw_handler) NULL, /* SIOCGIWSENS */
2156 (iw_handler) NULL, /* SIOCSIWRANGE */
Holger Schurig10078322007-11-15 18:05:47 -05002157 (iw_handler) lbs_get_range, /* SIOCGIWRANGE */
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -04002158 (iw_handler) NULL, /* SIOCSIWPRIV */
2159 (iw_handler) NULL, /* SIOCGIWPRIV */
2160 (iw_handler) NULL, /* SIOCSIWSTATS */
2161 (iw_handler) NULL, /* SIOCGIWSTATS */
2162 iw_handler_set_spy, /* SIOCSIWSPY */
2163 iw_handler_get_spy, /* SIOCGIWSPY */
2164 iw_handler_set_thrspy, /* SIOCSIWTHRSPY */
2165 iw_handler_get_thrspy, /* SIOCGIWTHRSPY */
2166 (iw_handler) NULL, /* SIOCSIWAP */
2167 (iw_handler) NULL, /* SIOCGIWAP */
2168 (iw_handler) NULL, /* SIOCSIWMLME */
2169 (iw_handler) NULL, /* SIOCGIWAPLIST - deprecated */
Holger Schurig10078322007-11-15 18:05:47 -05002170 (iw_handler) lbs_set_scan, /* SIOCSIWSCAN */
2171 (iw_handler) lbs_get_scan, /* SIOCGIWSCAN */
David Woodhousef5956bf2007-12-11 19:30:57 -05002172 (iw_handler) lbs_mesh_set_essid,/* SIOCSIWESSID */
2173 (iw_handler) lbs_mesh_get_essid,/* SIOCGIWESSID */
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -04002174 (iw_handler) NULL, /* SIOCSIWNICKN */
2175 (iw_handler) mesh_get_nick, /* SIOCGIWNICKN */
2176 (iw_handler) NULL, /* -- hole -- */
2177 (iw_handler) NULL, /* -- hole -- */
Holger Schurig10078322007-11-15 18:05:47 -05002178 (iw_handler) lbs_set_rate, /* SIOCSIWRATE */
2179 (iw_handler) lbs_get_rate, /* SIOCGIWRATE */
2180 (iw_handler) lbs_set_rts, /* SIOCSIWRTS */
2181 (iw_handler) lbs_get_rts, /* SIOCGIWRTS */
2182 (iw_handler) lbs_set_frag, /* SIOCSIWFRAG */
2183 (iw_handler) lbs_get_frag, /* SIOCGIWFRAG */
2184 (iw_handler) lbs_set_txpow, /* SIOCSIWTXPOW */
2185 (iw_handler) lbs_get_txpow, /* SIOCGIWTXPOW */
2186 (iw_handler) lbs_set_retry, /* SIOCSIWRETRY */
2187 (iw_handler) lbs_get_retry, /* SIOCGIWRETRY */
2188 (iw_handler) lbs_set_encode, /* SIOCSIWENCODE */
2189 (iw_handler) lbs_get_encode, /* SIOCGIWENCODE */
2190 (iw_handler) lbs_set_power, /* SIOCSIWPOWER */
2191 (iw_handler) lbs_get_power, /* SIOCGIWPOWER */
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -04002192 (iw_handler) NULL, /* -- hole -- */
2193 (iw_handler) NULL, /* -- hole -- */
Holger Schurig10078322007-11-15 18:05:47 -05002194 (iw_handler) lbs_set_genie, /* SIOCSIWGENIE */
2195 (iw_handler) lbs_get_genie, /* SIOCGIWGENIE */
2196 (iw_handler) lbs_set_auth, /* SIOCSIWAUTH */
2197 (iw_handler) lbs_get_auth, /* SIOCGIWAUTH */
2198 (iw_handler) lbs_set_encodeext,/* SIOCSIWENCODEEXT */
2199 (iw_handler) lbs_get_encodeext,/* SIOCGIWENCODEEXT */
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -04002200 (iw_handler) NULL, /* SIOCSIWPMKSA */
2201};
Holger Schurig10078322007-11-15 18:05:47 -05002202struct iw_handler_def lbs_handler_def = {
2203 .num_standard = ARRAY_SIZE(lbs_handler),
2204 .standard = (iw_handler *) lbs_handler,
2205 .get_wireless_stats = lbs_get_wireless_stats,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002206};
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -04002207
2208struct iw_handler_def mesh_handler_def = {
Denis Chengff8ac602007-09-02 18:30:18 +08002209 .num_standard = ARRAY_SIZE(mesh_wlan_handler),
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -04002210 .standard = (iw_handler *) mesh_wlan_handler,
Holger Schurig10078322007-11-15 18:05:47 -05002211 .get_wireless_stats = lbs_get_wireless_stats,
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -04002212};