Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
[pandora-kernel.git] / drivers / net / wireless / rndis_wlan.c
1 /*
2  * Driver for RNDIS based wireless USB devices.
3  *
4  * Copyright (C) 2007 by Bjorge Dijkstra <bjd@jooz.net>
5  * Copyright (C) 2008 by Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  *  Portions of this file are based on NDISwrapper project,
22  *  Copyright (C) 2003-2005 Pontus Fuchs, Giridhar Pemmasani
23  *  http://ndiswrapper.sourceforge.net/
24  */
25
26 // #define      DEBUG                   // error path messages, extra info
27 // #define      VERBOSE                 // more; success messages
28
29 #include <linux/module.h>
30 #include <linux/init.h>
31 #include <linux/netdevice.h>
32 #include <linux/etherdevice.h>
33 #include <linux/ethtool.h>
34 #include <linux/workqueue.h>
35 #include <linux/mutex.h>
36 #include <linux/mii.h>
37 #include <linux/usb.h>
38 #include <linux/usb/cdc.h>
39 #include <linux/wireless.h>
40 #include <linux/if_arp.h>
41 #include <linux/ctype.h>
42 #include <linux/spinlock.h>
43 #include <net/iw_handler.h>
44 #include <net/ieee80211.h>
45 #include <linux/usb/usbnet.h>
46 #include <linux/usb/rndis_host.h>
47
48
49 /* NOTE: All these are settings for Broadcom chipset */
50 static char modparam_country[4] = "EU";
51 module_param_string(country, modparam_country, 4, 0444);
52 MODULE_PARM_DESC(country, "Country code (ISO 3166-1 alpha-2), default: EU");
53
54 static int modparam_frameburst = 1;
55 module_param_named(frameburst, modparam_frameburst, int, 0444);
56 MODULE_PARM_DESC(frameburst, "enable frame bursting (default: on)");
57
58 static int modparam_afterburner = 0;
59 module_param_named(afterburner, modparam_afterburner, int, 0444);
60 MODULE_PARM_DESC(afterburner,
61         "enable afterburner aka '125 High Speed Mode' (default: off)");
62
63 static int modparam_power_save = 0;
64 module_param_named(power_save, modparam_power_save, int, 0444);
65 MODULE_PARM_DESC(power_save,
66         "set power save mode: 0=off, 1=on, 2=fast (default: off)");
67
68 static int modparam_power_output = 3;
69 module_param_named(power_output, modparam_power_output, int, 0444);
70 MODULE_PARM_DESC(power_output,
71         "set power output: 0=25%, 1=50%, 2=75%, 3=100% (default: 100%)");
72
73 static int modparam_roamtrigger = -70;
74 module_param_named(roamtrigger, modparam_roamtrigger, int, 0444);
75 MODULE_PARM_DESC(roamtrigger,
76         "set roaming dBm trigger: -80=optimize for distance, "
77                                 "-60=bandwidth (default: -70)");
78
79 static int modparam_roamdelta = 1;
80 module_param_named(roamdelta, modparam_roamdelta, int, 0444);
81 MODULE_PARM_DESC(roamdelta,
82         "set roaming tendency: 0=aggressive, 1=moderate, "
83                                 "2=conservative (default: moderate)");
84
85 static int modparam_workaround_interval = 500;
86 module_param_named(workaround_interval, modparam_workaround_interval,
87                                                         int, 0444);
88 MODULE_PARM_DESC(workaround_interval,
89         "set stall workaround interval in msecs (default: 500)");
90
91
92 /* various RNDIS OID defs */
93 #define OID_GEN_LINK_SPEED                      ccpu2(0x00010107)
94 #define OID_GEN_RNDIS_CONFIG_PARAMETER          ccpu2(0x0001021b)
95
96 #define OID_GEN_XMIT_OK                         ccpu2(0x00020101)
97 #define OID_GEN_RCV_OK                          ccpu2(0x00020102)
98 #define OID_GEN_XMIT_ERROR                      ccpu2(0x00020103)
99 #define OID_GEN_RCV_ERROR                       ccpu2(0x00020104)
100 #define OID_GEN_RCV_NO_BUFFER                   ccpu2(0x00020105)
101
102 #define OID_802_3_PERMANENT_ADDRESS             ccpu2(0x01010101)
103 #define OID_802_3_CURRENT_ADDRESS               ccpu2(0x01010102)
104 #define OID_802_3_MULTICAST_LIST                ccpu2(0x01010103)
105 #define OID_802_3_MAXIMUM_LIST_SIZE             ccpu2(0x01010104)
106
107 #define OID_802_11_BSSID                        ccpu2(0x0d010101)
108 #define OID_802_11_SSID                         ccpu2(0x0d010102)
109 #define OID_802_11_INFRASTRUCTURE_MODE          ccpu2(0x0d010108)
110 #define OID_802_11_ADD_WEP                      ccpu2(0x0d010113)
111 #define OID_802_11_REMOVE_WEP                   ccpu2(0x0d010114)
112 #define OID_802_11_DISASSOCIATE                 ccpu2(0x0d010115)
113 #define OID_802_11_AUTHENTICATION_MODE          ccpu2(0x0d010118)
114 #define OID_802_11_PRIVACY_FILTER               ccpu2(0x0d010119)
115 #define OID_802_11_BSSID_LIST_SCAN              ccpu2(0x0d01011a)
116 #define OID_802_11_ENCRYPTION_STATUS            ccpu2(0x0d01011b)
117 #define OID_802_11_ADD_KEY                      ccpu2(0x0d01011d)
118 #define OID_802_11_REMOVE_KEY                   ccpu2(0x0d01011e)
119 #define OID_802_11_ASSOCIATION_INFORMATION      ccpu2(0x0d01011f)
120 #define OID_802_11_PMKID                        ccpu2(0x0d010123)
121 #define OID_802_11_NETWORK_TYPES_SUPPORTED      ccpu2(0x0d010203)
122 #define OID_802_11_NETWORK_TYPE_IN_USE          ccpu2(0x0d010204)
123 #define OID_802_11_TX_POWER_LEVEL               ccpu2(0x0d010205)
124 #define OID_802_11_RSSI                         ccpu2(0x0d010206)
125 #define OID_802_11_RSSI_TRIGGER                 ccpu2(0x0d010207)
126 #define OID_802_11_FRAGMENTATION_THRESHOLD      ccpu2(0x0d010209)
127 #define OID_802_11_RTS_THRESHOLD                ccpu2(0x0d01020a)
128 #define OID_802_11_SUPPORTED_RATES              ccpu2(0x0d01020e)
129 #define OID_802_11_CONFIGURATION                ccpu2(0x0d010211)
130 #define OID_802_11_BSSID_LIST                   ccpu2(0x0d010217)
131
132
133 /* Typical noise/maximum signal level values taken from ndiswrapper iw_ndis.h */
134 #define WL_NOISE        -96     /* typical noise level in dBm */
135 #define WL_SIGMAX       -32     /* typical maximum signal level in dBm */
136
137
138 /* Assume that Broadcom 4320 (only chipset at time of writing known to be
139  * based on wireless rndis) has default txpower of 13dBm.
140  * This value is from Linksys WUSB54GSC User Guide, Appendix F: Specifications.
141  *   13dBm == 19.9mW
142  */
143 #define BCM4320_DEFAULT_TXPOWER 20
144
145
146 /* codes for "status" field of completion messages */
147 #define RNDIS_STATUS_ADAPTER_NOT_READY          ccpu2(0xc0010011)
148 #define RNDIS_STATUS_ADAPTER_NOT_OPEN           ccpu2(0xc0010012)
149
150
151 /* NDIS data structures. Taken from wpa_supplicant driver_ndis.c
152  * slightly modified for datatype endianess, etc
153  */
154 #define NDIS_802_11_LENGTH_SSID 32
155 #define NDIS_802_11_LENGTH_RATES 8
156 #define NDIS_802_11_LENGTH_RATES_EX 16
157
158 enum ndis_80211_net_type {
159         ndis_80211_type_freq_hop,
160         ndis_80211_type_direct_seq,
161         ndis_80211_type_ofdm_a,
162         ndis_80211_type_ofdm_g
163 };
164
165 enum ndis_80211_net_infra {
166         ndis_80211_infra_adhoc,
167         ndis_80211_infra_infra,
168         ndis_80211_infra_auto_unknown
169 };
170
171 enum ndis_80211_auth_mode {
172         ndis_80211_auth_open,
173         ndis_80211_auth_shared,
174         ndis_80211_auth_auto_switch,
175         ndis_80211_auth_wpa,
176         ndis_80211_auth_wpa_psk,
177         ndis_80211_auth_wpa_none,
178         ndis_80211_auth_wpa2,
179         ndis_80211_auth_wpa2_psk
180 };
181
182 enum ndis_80211_encr_status {
183         ndis_80211_encr_wep_enabled,
184         ndis_80211_encr_disabled,
185         ndis_80211_encr_wep_key_absent,
186         ndis_80211_encr_not_supported,
187         ndis_80211_encr_tkip_enabled,
188         ndis_80211_encr_tkip_key_absent,
189         ndis_80211_encr_ccmp_enabled,
190         ndis_80211_encr_ccmp_key_absent
191 };
192
193 enum ndis_80211_priv_filter {
194         ndis_80211_priv_accept_all,
195         ndis_80211_priv_8021x_wep
196 };
197
198 struct ndis_80211_ssid {
199         __le32 length;
200         u8 essid[NDIS_802_11_LENGTH_SSID];
201 } __attribute__((packed));
202
203 struct ndis_80211_conf_freq_hop {
204         __le32 length;
205         __le32 hop_pattern;
206         __le32 hop_set;
207         __le32 dwell_time;
208 } __attribute__((packed));
209
210 struct ndis_80211_conf {
211         __le32 length;
212         __le32 beacon_period;
213         __le32 atim_window;
214         __le32 ds_config;
215         struct ndis_80211_conf_freq_hop fh_config;
216 } __attribute__((packed));
217
218 struct ndis_80211_bssid_ex {
219         __le32 length;
220         u8 mac[6];
221         u8 padding[2];
222         struct ndis_80211_ssid ssid;
223         __le32 privacy;
224         __le32 rssi;
225         __le32 net_type;
226         struct ndis_80211_conf config;
227         __le32 net_infra;
228         u8 rates[NDIS_802_11_LENGTH_RATES_EX];
229         __le32 ie_length;
230         u8 ies[0];
231 } __attribute__((packed));
232
233 struct ndis_80211_bssid_list_ex {
234         __le32 num_items;
235         struct ndis_80211_bssid_ex bssid[0];
236 } __attribute__((packed));
237
238 struct ndis_80211_fixed_ies {
239         u8 timestamp[8];
240         __le16 beacon_interval;
241         __le16 capabilities;
242 } __attribute__((packed));
243
244 struct ndis_80211_wep_key {
245         __le32 size;
246         __le32 index;
247         __le32 length;
248         u8 material[32];
249 } __attribute__((packed));
250
251 struct ndis_80211_key {
252         __le32 size;
253         __le32 index;
254         __le32 length;
255         u8 bssid[6];
256         u8 padding[6];
257         u8 rsc[8];
258         u8 material[32];
259 } __attribute__((packed));
260
261 struct ndis_80211_remove_key {
262         __le32 size;
263         __le32 index;
264         u8 bssid[6];
265 } __attribute__((packed));
266
267 struct ndis_config_param {
268         __le32 name_offs;
269         __le32 name_length;
270         __le32 type;
271         __le32 value_offs;
272         __le32 value_length;
273 } __attribute__((packed));
274
275 struct ndis_80211_assoc_info {
276         __le32 length;
277         __le16 req_ies;
278         struct req_ie {
279                 __le16 capa;
280                 __le16 listen_interval;
281                 u8 cur_ap_address[6];
282         } req_ie;
283         __le32 req_ie_length;
284         __le32 offset_req_ies;
285         __le16 resp_ies;
286         struct resp_ie {
287                 __le16 capa;
288                 __le16 status_code;
289                 __le16 assoc_id;
290         } resp_ie;
291         __le32 resp_ie_length;
292         __le32 offset_resp_ies;
293 } __attribute__((packed));
294
295 /* these have to match what is in wpa_supplicant */
296 enum wpa_alg { WPA_ALG_NONE, WPA_ALG_WEP, WPA_ALG_TKIP, WPA_ALG_CCMP };
297 enum wpa_cipher { CIPHER_NONE, CIPHER_WEP40, CIPHER_TKIP, CIPHER_CCMP,
298                   CIPHER_WEP104 };
299 enum wpa_key_mgmt { KEY_MGMT_802_1X, KEY_MGMT_PSK, KEY_MGMT_NONE,
300                     KEY_MGMT_802_1X_NO_WPA, KEY_MGMT_WPA_NONE };
301
302 /*
303  *  private data
304  */
305 #define NET_TYPE_11FB   0
306
307 #define CAP_MODE_80211A         1
308 #define CAP_MODE_80211B         2
309 #define CAP_MODE_80211G         4
310 #define CAP_MODE_MASK           7
311 #define CAP_SUPPORT_TXPOWER     8
312
313 #define WORK_LINK_UP            (1<<0)
314 #define WORK_LINK_DOWN          (1<<1)
315 #define WORK_SET_MULTICAST_LIST (1<<2)
316
317 #define COMMAND_BUFFER_SIZE     (CONTROL_BUFFER_SIZE + sizeof(struct rndis_set))
318
319 /* RNDIS device private data */
320 struct rndis_wext_private {
321         char name[32];
322
323         struct usbnet *usbdev;
324
325         struct workqueue_struct *workqueue;
326         struct delayed_work stats_work;
327         struct work_struct work;
328         struct mutex command_lock;
329         spinlock_t stats_lock;
330         unsigned long work_pending;
331
332         struct iw_statistics iwstats;
333         struct iw_statistics privstats;
334
335         int  nick_len;
336         char nick[32];
337
338         int caps;
339         int multicast_size;
340
341         /* module parameters */
342         char param_country[4];
343         int  param_frameburst;
344         int  param_afterburner;
345         int  param_power_save;
346         int  param_power_output;
347         int  param_roamtrigger;
348         int  param_roamdelta;
349         u32  param_workaround_interval;
350
351         /* hardware state */
352         int radio_on;
353         int infra_mode;
354         struct ndis_80211_ssid essid;
355
356         /* encryption stuff */
357         int  encr_tx_key_index;
358         char encr_keys[4][32];
359         int  encr_key_len[4];
360         int  wpa_version;
361         int  wpa_keymgmt;
362         int  wpa_authalg;
363         int  wpa_ie_len;
364         u8  *wpa_ie;
365         int  wpa_cipher_pair;
366         int  wpa_cipher_group;
367
368         u8 command_buffer[COMMAND_BUFFER_SIZE];
369 };
370
371
372 static const int freq_chan[] = { 2412, 2417, 2422, 2427, 2432, 2437, 2442,
373                                 2447, 2452, 2457, 2462, 2467, 2472, 2484 };
374
375 static const int rates_80211g[8] = { 6, 9, 12, 18, 24, 36, 48, 54 };
376
377 static const int bcm4320_power_output[4] = { 25, 50, 75, 100 };
378
379 static const unsigned char zero_bssid[ETH_ALEN] = {0,};
380 static const unsigned char ffff_bssid[ETH_ALEN] = { 0xff, 0xff, 0xff,
381                                                         0xff, 0xff, 0xff };
382
383
384 static struct rndis_wext_private *get_rndis_wext_priv(struct usbnet *dev)
385 {
386         return (struct rndis_wext_private *)dev->driver_priv;
387 }
388
389
390 static u32 get_bcm4320_power(struct rndis_wext_private *priv)
391 {
392         return BCM4320_DEFAULT_TXPOWER *
393                 bcm4320_power_output[priv->param_power_output] / 100;
394 }
395
396
397 /* translate error code */
398 static int rndis_error_status(__le32 rndis_status)
399 {
400         int ret = -EINVAL;
401         switch (rndis_status) {
402         case RNDIS_STATUS_SUCCESS:
403                 ret = 0;
404                 break;
405         case RNDIS_STATUS_FAILURE:
406         case RNDIS_STATUS_INVALID_DATA:
407                 ret = -EINVAL;
408                 break;
409         case RNDIS_STATUS_NOT_SUPPORTED:
410                 ret = -EOPNOTSUPP;
411                 break;
412         case RNDIS_STATUS_ADAPTER_NOT_READY:
413         case RNDIS_STATUS_ADAPTER_NOT_OPEN:
414                 ret = -EBUSY;
415                 break;
416         }
417         return ret;
418 }
419
420
421 static int rndis_query_oid(struct usbnet *dev, __le32 oid, void *data, int *len)
422 {
423         struct rndis_wext_private *priv = get_rndis_wext_priv(dev);
424         union {
425                 void                    *buf;
426                 struct rndis_msg_hdr    *header;
427                 struct rndis_query      *get;
428                 struct rndis_query_c    *get_c;
429         } u;
430         int ret, buflen;
431
432         buflen = *len + sizeof(*u.get);
433         if (buflen < CONTROL_BUFFER_SIZE)
434                 buflen = CONTROL_BUFFER_SIZE;
435
436         if (buflen > COMMAND_BUFFER_SIZE) {
437                 u.buf = kmalloc(buflen, GFP_KERNEL);
438                 if (!u.buf)
439                         return -ENOMEM;
440         } else {
441                 u.buf = priv->command_buffer;
442         }
443
444         mutex_lock(&priv->command_lock);
445
446         memset(u.get, 0, sizeof *u.get);
447         u.get->msg_type = RNDIS_MSG_QUERY;
448         u.get->msg_len = ccpu2(sizeof *u.get);
449         u.get->oid = oid;
450
451         ret = rndis_command(dev, u.header);
452         if (ret == 0) {
453                 ret = le32_to_cpu(u.get_c->len);
454                 *len = (*len > ret) ? ret : *len;
455                 memcpy(data, u.buf + le32_to_cpu(u.get_c->offset) + 8, *len);
456                 ret = rndis_error_status(u.get_c->status);
457         }
458
459         mutex_unlock(&priv->command_lock);
460
461         if (u.buf != priv->command_buffer)
462                 kfree(u.buf);
463         return ret;
464 }
465
466
467 static int rndis_set_oid(struct usbnet *dev, __le32 oid, void *data, int len)
468 {
469         struct rndis_wext_private *priv = get_rndis_wext_priv(dev);
470         union {
471                 void                    *buf;
472                 struct rndis_msg_hdr    *header;
473                 struct rndis_set        *set;
474                 struct rndis_set_c      *set_c;
475         } u;
476         int ret, buflen;
477
478         buflen = len + sizeof(*u.set);
479         if (buflen < CONTROL_BUFFER_SIZE)
480                 buflen = CONTROL_BUFFER_SIZE;
481
482         if (buflen > COMMAND_BUFFER_SIZE) {
483                 u.buf = kmalloc(buflen, GFP_KERNEL);
484                 if (!u.buf)
485                         return -ENOMEM;
486         } else {
487                 u.buf = priv->command_buffer;
488         }
489
490         mutex_lock(&priv->command_lock);
491
492         memset(u.set, 0, sizeof *u.set);
493         u.set->msg_type = RNDIS_MSG_SET;
494         u.set->msg_len = cpu_to_le32(sizeof(*u.set) + len);
495         u.set->oid = oid;
496         u.set->len = cpu_to_le32(len);
497         u.set->offset = ccpu2(sizeof(*u.set) - 8);
498         u.set->handle = ccpu2(0);
499         memcpy(u.buf + sizeof(*u.set), data, len);
500
501         ret = rndis_command(dev, u.header);
502         if (ret == 0)
503                 ret = rndis_error_status(u.set_c->status);
504
505         mutex_unlock(&priv->command_lock);
506
507         if (u.buf != priv->command_buffer)
508                 kfree(u.buf);
509         return ret;
510 }
511
512
513 /*
514  * Specs say that we can only set config parameters only soon after device
515  * initialization.
516  *   value_type: 0 = u32, 2 = unicode string
517  */
518 static int rndis_set_config_parameter(struct usbnet *dev, char *param,
519                                                 int value_type, void *value)
520 {
521         struct ndis_config_param *infobuf;
522         int value_len, info_len, param_len, ret, i;
523         __le16 *unibuf;
524         __le32 *dst_value;
525
526         if (value_type == 0)
527                 value_len = sizeof(__le32);
528         else if (value_type == 2)
529                 value_len = strlen(value) * sizeof(__le16);
530         else
531                 return -EINVAL;
532
533         param_len = strlen(param) * sizeof(__le16);
534         info_len = sizeof(*infobuf) + param_len + value_len;
535
536 #ifdef DEBUG
537         info_len += 12;
538 #endif
539         infobuf = kmalloc(info_len, GFP_KERNEL);
540         if (!infobuf)
541                 return -ENOMEM;
542
543 #ifdef DEBUG
544         info_len -= 12;
545         /* extra 12 bytes are for padding (debug output) */
546         memset(infobuf, 0xCC, info_len + 12);
547 #endif
548
549         if (value_type == 2)
550                 devdbg(dev, "setting config parameter: %s, value: %s",
551                                                 param, (u8 *)value);
552         else
553                 devdbg(dev, "setting config parameter: %s, value: %d",
554                                                 param, *(u32 *)value);
555
556         infobuf->name_offs = cpu_to_le32(sizeof(*infobuf));
557         infobuf->name_length = cpu_to_le32(param_len);
558         infobuf->type = cpu_to_le32(value_type);
559         infobuf->value_offs = cpu_to_le32(sizeof(*infobuf) + param_len);
560         infobuf->value_length = cpu_to_le32(value_len);
561
562         /* simple string to unicode string conversion */
563         unibuf = (void *)infobuf + sizeof(*infobuf);
564         for (i = 0; i < param_len / sizeof(__le16); i++)
565                 unibuf[i] = cpu_to_le16(param[i]);
566
567         if (value_type == 2) {
568                 unibuf = (void *)infobuf + sizeof(*infobuf) + param_len;
569                 for (i = 0; i < value_len / sizeof(__le16); i++)
570                         unibuf[i] = cpu_to_le16(((u8 *)value)[i]);
571         } else {
572                 dst_value = (void *)infobuf + sizeof(*infobuf) + param_len;
573                 *dst_value = cpu_to_le32(*(u32 *)value);
574         }
575
576 #ifdef DEBUG
577         devdbg(dev, "info buffer (len: %d):", info_len);
578         for (i = 0; i < info_len; i += 12) {
579                 u32 *tmp = (u32 *)((u8 *)infobuf + i);
580                 devdbg(dev, "%08X:%08X:%08X",
581                         cpu_to_be32(tmp[0]),
582                         cpu_to_be32(tmp[1]),
583                         cpu_to_be32(tmp[2]));
584         }
585 #endif
586
587         ret = rndis_set_oid(dev, OID_GEN_RNDIS_CONFIG_PARAMETER,
588                                                         infobuf, info_len);
589         if (ret != 0)
590                 devdbg(dev, "setting rndis config paramater failed, %d.", ret);
591
592         kfree(infobuf);
593         return ret;
594 }
595
596 static int rndis_set_config_parameter_str(struct usbnet *dev,
597                                                 char *param, char *value)
598 {
599         return(rndis_set_config_parameter(dev, param, 2, value));
600 }
601
602 /*static int rndis_set_config_parameter_u32(struct usbnet *dev,
603                                                 char *param, u32 value)
604 {
605         return(rndis_set_config_parameter(dev, param, 0, &value));
606 }*/
607
608
609 /*
610  * data conversion functions
611  */
612 static int level_to_qual(int level)
613 {
614         int qual = 100 * (level - WL_NOISE) / (WL_SIGMAX - WL_NOISE);
615         return qual >= 0 ? (qual <= 100 ? qual : 100) : 0;
616 }
617
618
619 static void dsconfig_to_freq(unsigned int dsconfig, struct iw_freq *freq)
620 {
621         freq->e = 0;
622         freq->i = 0;
623         freq->flags = 0;
624
625         /* see comment in wireless.h above the "struct iw_freq"
626          * definition for an explanation of this if
627          * NOTE: 1000000 is due to the kHz
628          */
629         if (dsconfig > 1000000) {
630                 freq->m = dsconfig / 10;
631                 freq->e = 1;
632         } else
633                 freq->m = dsconfig;
634
635         /* convert from kHz to Hz */
636         freq->e += 3;
637 }
638
639
640 static int freq_to_dsconfig(struct iw_freq *freq, unsigned int *dsconfig)
641 {
642         if (freq->m < 1000 && freq->e == 0) {
643                 if (freq->m >= 1 && freq->m <= ARRAY_SIZE(freq_chan))
644                         *dsconfig = freq_chan[freq->m - 1] * 1000;
645                 else
646                         return -1;
647         } else {
648                 int i;
649                 *dsconfig = freq->m;
650                 for (i = freq->e; i > 0; i--)
651                         *dsconfig *= 10;
652                 *dsconfig /= 1000;
653         }
654
655         return 0;
656 }
657
658
659 /*
660  * common functions
661  */
662 static int
663 add_wep_key(struct usbnet *usbdev, char *key, int key_len, int index);
664
665 static int get_essid(struct usbnet *usbdev, struct ndis_80211_ssid *ssid)
666 {
667         int ret, len;
668
669         len = sizeof(*ssid);
670         ret = rndis_query_oid(usbdev, OID_802_11_SSID, ssid, &len);
671
672         if (ret != 0)
673                 ssid->length = 0;
674
675 #ifdef DEBUG
676         {
677                 unsigned char tmp[NDIS_802_11_LENGTH_SSID + 1];
678
679                 memcpy(tmp, ssid->essid, le32_to_cpu(ssid->length));
680                 tmp[le32_to_cpu(ssid->length)] = 0;
681                 devdbg(usbdev, "get_essid: '%s', ret: %d", tmp, ret);
682         }
683 #endif
684         return ret;
685 }
686
687
688 static int set_essid(struct usbnet *usbdev, struct ndis_80211_ssid *ssid)
689 {
690         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
691         int ret;
692
693         ret = rndis_set_oid(usbdev, OID_802_11_SSID, ssid, sizeof(*ssid));
694         if (ret == 0) {
695                 memcpy(&priv->essid, ssid, sizeof(priv->essid));
696                 priv->radio_on = 1;
697                 devdbg(usbdev, "set_essid: radio_on = 1");
698         }
699
700         return ret;
701 }
702
703
704 static int get_bssid(struct usbnet *usbdev, u8 bssid[ETH_ALEN])
705 {
706         int ret, len;
707
708         len = ETH_ALEN;
709         ret = rndis_query_oid(usbdev, OID_802_11_BSSID, bssid, &len);
710
711         if (ret != 0)
712                 memset(bssid, 0, ETH_ALEN);
713
714         return ret;
715 }
716
717 static int get_association_info(struct usbnet *usbdev,
718                         struct ndis_80211_assoc_info *info, int len)
719 {
720         return rndis_query_oid(usbdev, OID_802_11_ASSOCIATION_INFORMATION,
721                                 info, &len);
722 }
723
724 static int is_associated(struct usbnet *usbdev)
725 {
726         u8 bssid[ETH_ALEN];
727         int ret;
728
729         ret = get_bssid(usbdev, bssid);
730
731         return(ret == 0 && memcmp(bssid, zero_bssid, ETH_ALEN) != 0);
732 }
733
734
735 static int disassociate(struct usbnet *usbdev, int reset_ssid)
736 {
737         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
738         struct ndis_80211_ssid ssid;
739         int i, ret = 0;
740
741         if (priv->radio_on) {
742                 ret = rndis_set_oid(usbdev, OID_802_11_DISASSOCIATE, NULL, 0);
743                 if (ret == 0) {
744                         priv->radio_on = 0;
745                         devdbg(usbdev, "disassociate: radio_on = 0");
746
747                         if (reset_ssid)
748                                 msleep(100);
749                 }
750         }
751
752         /* disassociate causes radio to be turned off; if reset_ssid
753          * is given, set random ssid to enable radio */
754         if (reset_ssid) {
755                 ssid.length = cpu_to_le32(sizeof(ssid.essid));
756                 get_random_bytes(&ssid.essid[2], sizeof(ssid.essid)-2);
757                 ssid.essid[0] = 0x1;
758                 ssid.essid[1] = 0xff;
759                 for (i = 2; i < sizeof(ssid.essid); i++)
760                         ssid.essid[i] = 0x1 + (ssid.essid[i] * 0xfe / 0xff);
761                 ret = set_essid(usbdev, &ssid);
762         }
763         return ret;
764 }
765
766
767 static int set_auth_mode(struct usbnet *usbdev, int wpa_version, int authalg)
768 {
769         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
770         __le32 tmp;
771         int auth_mode, ret;
772
773         devdbg(usbdev, "set_auth_mode: wpa_version=0x%x authalg=0x%x "
774                 "keymgmt=0x%x", wpa_version, authalg, priv->wpa_keymgmt);
775
776         if (wpa_version & IW_AUTH_WPA_VERSION_WPA2) {
777                 if (priv->wpa_keymgmt & IW_AUTH_KEY_MGMT_802_1X)
778                         auth_mode = ndis_80211_auth_wpa2;
779                 else
780                         auth_mode = ndis_80211_auth_wpa2_psk;
781         } else if (wpa_version & IW_AUTH_WPA_VERSION_WPA) {
782                 if (priv->wpa_keymgmt & IW_AUTH_KEY_MGMT_802_1X)
783                         auth_mode = ndis_80211_auth_wpa;
784                 else if (priv->wpa_keymgmt & IW_AUTH_KEY_MGMT_PSK)
785                         auth_mode = ndis_80211_auth_wpa_psk;
786                 else
787                         auth_mode = ndis_80211_auth_wpa_none;
788         } else if (authalg & IW_AUTH_ALG_SHARED_KEY) {
789                 if (authalg & IW_AUTH_ALG_OPEN_SYSTEM)
790                         auth_mode = ndis_80211_auth_auto_switch;
791                 else
792                         auth_mode = ndis_80211_auth_shared;
793         } else
794                 auth_mode = ndis_80211_auth_open;
795
796         tmp = cpu_to_le32(auth_mode);
797         ret = rndis_set_oid(usbdev, OID_802_11_AUTHENTICATION_MODE, &tmp,
798                                                                 sizeof(tmp));
799         if (ret != 0) {
800                 devwarn(usbdev, "setting auth mode failed (%08X)", ret);
801                 return ret;
802         }
803
804         priv->wpa_version = wpa_version;
805         priv->wpa_authalg = authalg;
806         return 0;
807 }
808
809
810 static int set_priv_filter(struct usbnet *usbdev)
811 {
812         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
813         __le32 tmp;
814
815         devdbg(usbdev, "set_priv_filter: wpa_version=0x%x", priv->wpa_version);
816
817         if (priv->wpa_version & IW_AUTH_WPA_VERSION_WPA2 ||
818             priv->wpa_version & IW_AUTH_WPA_VERSION_WPA)
819                 tmp = cpu_to_le32(ndis_80211_priv_8021x_wep);
820         else
821                 tmp = cpu_to_le32(ndis_80211_priv_accept_all);
822
823         return rndis_set_oid(usbdev, OID_802_11_PRIVACY_FILTER, &tmp,
824                                                                 sizeof(tmp));
825 }
826
827
828 static int set_encr_mode(struct usbnet *usbdev, int pairwise, int groupwise)
829 {
830         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
831         __le32 tmp;
832         int encr_mode, ret;
833
834         devdbg(usbdev, "set_encr_mode: cipher_pair=0x%x cipher_group=0x%x",
835                 pairwise,
836                 groupwise);
837
838         if (pairwise & IW_AUTH_CIPHER_CCMP)
839                 encr_mode = ndis_80211_encr_ccmp_enabled;
840         else if (pairwise & IW_AUTH_CIPHER_TKIP)
841                 encr_mode = ndis_80211_encr_tkip_enabled;
842         else if (pairwise &
843                  (IW_AUTH_CIPHER_WEP40 | IW_AUTH_CIPHER_WEP104))
844                 encr_mode = ndis_80211_encr_wep_enabled;
845         else if (groupwise & IW_AUTH_CIPHER_CCMP)
846                 encr_mode = ndis_80211_encr_ccmp_enabled;
847         else if (groupwise & IW_AUTH_CIPHER_TKIP)
848                 encr_mode = ndis_80211_encr_tkip_enabled;
849         else
850                 encr_mode = ndis_80211_encr_disabled;
851
852         tmp = cpu_to_le32(encr_mode);
853         ret = rndis_set_oid(usbdev, OID_802_11_ENCRYPTION_STATUS, &tmp,
854                                                                 sizeof(tmp));
855         if (ret != 0) {
856                 devwarn(usbdev, "setting encr mode failed (%08X)", ret);
857                 return ret;
858         }
859
860         priv->wpa_cipher_pair = pairwise;
861         priv->wpa_cipher_group = groupwise;
862         return 0;
863 }
864
865
866 static int set_assoc_params(struct usbnet *usbdev)
867 {
868         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
869
870         set_auth_mode(usbdev, priv->wpa_version, priv->wpa_authalg);
871         set_priv_filter(usbdev);
872         set_encr_mode(usbdev, priv->wpa_cipher_pair, priv->wpa_cipher_group);
873
874         return 0;
875 }
876
877
878 static int set_infra_mode(struct usbnet *usbdev, int mode)
879 {
880         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
881         __le32 tmp;
882         int ret, i;
883
884         devdbg(usbdev, "set_infra_mode: infra_mode=0x%x", priv->infra_mode);
885
886         tmp = cpu_to_le32(mode);
887         ret = rndis_set_oid(usbdev, OID_802_11_INFRASTRUCTURE_MODE, &tmp,
888                                                                 sizeof(tmp));
889         if (ret != 0) {
890                 devwarn(usbdev, "setting infra mode failed (%08X)", ret);
891                 return ret;
892         }
893
894         /* NDIS drivers clear keys when infrastructure mode is
895          * changed. But Linux tools assume otherwise. So set the
896          * keys */
897         if (priv->wpa_keymgmt == 0 ||
898                 priv->wpa_keymgmt == IW_AUTH_KEY_MGMT_802_1X) {
899                 for (i = 0; i < 4; i++) {
900                         if (priv->encr_key_len[i] > 0)
901                                 add_wep_key(usbdev, priv->encr_keys[i],
902                                                 priv->encr_key_len[i], i);
903                 }
904         }
905
906         priv->infra_mode = mode;
907         return 0;
908 }
909
910
911 static void set_default_iw_params(struct usbnet *usbdev)
912 {
913         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
914
915         priv->wpa_keymgmt = 0;
916         priv->wpa_version = 0;
917
918         set_infra_mode(usbdev, ndis_80211_infra_infra);
919         set_auth_mode(usbdev, IW_AUTH_WPA_VERSION_DISABLED,
920                                 IW_AUTH_ALG_OPEN_SYSTEM);
921         set_priv_filter(usbdev);
922         set_encr_mode(usbdev, IW_AUTH_CIPHER_NONE, IW_AUTH_CIPHER_NONE);
923 }
924
925
926 static int deauthenticate(struct usbnet *usbdev)
927 {
928         int ret;
929
930         ret = disassociate(usbdev, 1);
931         set_default_iw_params(usbdev);
932         return ret;
933 }
934
935
936 /* index must be 0 - N, as per NDIS  */
937 static int add_wep_key(struct usbnet *usbdev, char *key, int key_len, int index)
938 {
939         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
940         struct ndis_80211_wep_key ndis_key;
941         int ret;
942
943         if (key_len <= 0 || key_len > 32 || index < 0 || index >= 4)
944                 return -EINVAL;
945
946         memset(&ndis_key, 0, sizeof(ndis_key));
947
948         ndis_key.size = cpu_to_le32(sizeof(ndis_key));
949         ndis_key.length = cpu_to_le32(key_len);
950         ndis_key.index = cpu_to_le32(index);
951         memcpy(&ndis_key.material, key, key_len);
952
953         if (index == priv->encr_tx_key_index) {
954                 ndis_key.index |= cpu_to_le32(1 << 31);
955                 ret = set_encr_mode(usbdev, IW_AUTH_CIPHER_WEP104,
956                                                 IW_AUTH_CIPHER_NONE);
957                 if (ret)
958                         devwarn(usbdev, "encryption couldn't be enabled (%08X)",
959                                                                         ret);
960         }
961
962         ret = rndis_set_oid(usbdev, OID_802_11_ADD_WEP, &ndis_key,
963                                                         sizeof(ndis_key));
964         if (ret != 0) {
965                 devwarn(usbdev, "adding encryption key %d failed (%08X)",
966                                                         index+1, ret);
967                 return ret;
968         }
969
970         priv->encr_key_len[index] = key_len;
971         memcpy(&priv->encr_keys[index], key, key_len);
972
973         return 0;
974 }
975
976
977 /* remove_key is for both wep and wpa */
978 static int remove_key(struct usbnet *usbdev, int index, u8 bssid[ETH_ALEN])
979 {
980         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
981         struct ndis_80211_remove_key remove_key;
982         __le32 keyindex;
983         int ret;
984
985         if (priv->encr_key_len[index] == 0)
986                 return 0;
987
988         priv->encr_key_len[index] = 0;
989         memset(&priv->encr_keys[index], 0, sizeof(priv->encr_keys[index]));
990
991         if (priv->wpa_cipher_pair == IW_AUTH_CIPHER_TKIP ||
992             priv->wpa_cipher_pair == IW_AUTH_CIPHER_CCMP ||
993             priv->wpa_cipher_group == IW_AUTH_CIPHER_TKIP ||
994             priv->wpa_cipher_group == IW_AUTH_CIPHER_CCMP) {
995                 remove_key.size = cpu_to_le32(sizeof(remove_key));
996                 remove_key.index = cpu_to_le32(index);
997                 if (bssid) {
998                         /* pairwise key */
999                         if (memcmp(bssid, ffff_bssid, ETH_ALEN) != 0)
1000                                 remove_key.index |= cpu_to_le32(1 << 30);
1001                         memcpy(remove_key.bssid, bssid,
1002                                         sizeof(remove_key.bssid));
1003                 } else
1004                         memset(remove_key.bssid, 0xff,
1005                                                 sizeof(remove_key.bssid));
1006
1007                 ret = rndis_set_oid(usbdev, OID_802_11_REMOVE_KEY, &remove_key,
1008                                                         sizeof(remove_key));
1009                 if (ret != 0)
1010                         return ret;
1011         } else {
1012                 keyindex = cpu_to_le32(index);
1013                 ret = rndis_set_oid(usbdev, OID_802_11_REMOVE_WEP, &keyindex,
1014                                                         sizeof(keyindex));
1015                 if (ret != 0) {
1016                         devwarn(usbdev,
1017                                 "removing encryption key %d failed (%08X)",
1018                                 index, ret);
1019                         return ret;
1020                 }
1021         }
1022
1023         /* if it is transmit key, disable encryption */
1024         if (index == priv->encr_tx_key_index)
1025                 set_encr_mode(usbdev, IW_AUTH_CIPHER_NONE, IW_AUTH_CIPHER_NONE);
1026
1027         return 0;
1028 }
1029
1030
1031 static void set_multicast_list(struct usbnet *usbdev)
1032 {
1033         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
1034         struct dev_mc_list *mclist;
1035         __le32 filter;
1036         int ret, i, size;
1037         char *buf;
1038
1039         filter = RNDIS_PACKET_TYPE_DIRECTED | RNDIS_PACKET_TYPE_BROADCAST;
1040
1041         if (usbdev->net->flags & IFF_PROMISC) {
1042                 filter |= RNDIS_PACKET_TYPE_PROMISCUOUS |
1043                         RNDIS_PACKET_TYPE_ALL_LOCAL;
1044         } else if (usbdev->net->flags & IFF_ALLMULTI ||
1045                    usbdev->net->mc_count > priv->multicast_size) {
1046                 filter |= RNDIS_PACKET_TYPE_ALL_MULTICAST;
1047         } else if (usbdev->net->mc_count > 0) {
1048                 size = min(priv->multicast_size, usbdev->net->mc_count);
1049                 buf = kmalloc(size * ETH_ALEN, GFP_KERNEL);
1050                 if (!buf) {
1051                         devwarn(usbdev,
1052                                 "couldn't alloc %d bytes of memory",
1053                                 size * ETH_ALEN);
1054                         return;
1055                 }
1056
1057                 mclist = usbdev->net->mc_list;
1058                 for (i = 0; i < size && mclist; mclist = mclist->next) {
1059                         if (mclist->dmi_addrlen != ETH_ALEN)
1060                                 continue;
1061
1062                         memcpy(buf + i * ETH_ALEN, mclist->dmi_addr, ETH_ALEN);
1063                         i++;
1064                 }
1065
1066                 ret = rndis_set_oid(usbdev, OID_802_3_MULTICAST_LIST, buf,
1067                                                                 i * ETH_ALEN);
1068                 if (ret == 0 && i > 0)
1069                         filter |= RNDIS_PACKET_TYPE_MULTICAST;
1070                 else
1071                         filter |= RNDIS_PACKET_TYPE_ALL_MULTICAST;
1072
1073                 devdbg(usbdev, "OID_802_3_MULTICAST_LIST(%d, max: %d) -> %d",
1074                                                 i, priv->multicast_size, ret);
1075
1076                 kfree(buf);
1077         }
1078
1079         ret = rndis_set_oid(usbdev, OID_GEN_CURRENT_PACKET_FILTER, &filter,
1080                                                         sizeof(filter));
1081         if (ret < 0) {
1082                 devwarn(usbdev, "couldn't set packet filter: %08x",
1083                                                         le32_to_cpu(filter));
1084         }
1085
1086         devdbg(usbdev, "OID_GEN_CURRENT_PACKET_FILTER(%08x) -> %d",
1087                                                 le32_to_cpu(filter), ret);
1088 }
1089
1090
1091 /*
1092  * wireless extension handlers
1093  */
1094
1095 static int rndis_iw_commit(struct net_device *dev,
1096     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1097 {
1098         /* dummy op */
1099         return 0;
1100 }
1101
1102
1103 static int rndis_iw_get_range(struct net_device *dev,
1104     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1105 {
1106         struct iw_range *range = (struct iw_range *)extra;
1107         struct usbnet *usbdev = dev->priv;
1108         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
1109         int len, ret, i, j, num, has_80211g_rates;
1110         u8 rates[8];
1111         __le32 tx_power;
1112
1113         devdbg(usbdev, "SIOCGIWRANGE");
1114
1115         /* clear iw_range struct */
1116         memset(range, 0, sizeof(*range));
1117         wrqu->data.length = sizeof(*range);
1118
1119         range->txpower_capa = IW_TXPOW_MWATT;
1120         range->num_txpower = 1;
1121         if (priv->caps & CAP_SUPPORT_TXPOWER) {
1122                 len = sizeof(tx_power);
1123                 ret = rndis_query_oid(usbdev, OID_802_11_TX_POWER_LEVEL,
1124                                                 &tx_power, &len);
1125                 if (ret == 0 && le32_to_cpu(tx_power) != 0xFF)
1126                         range->txpower[0] = le32_to_cpu(tx_power);
1127                 else
1128                         range->txpower[0] = get_bcm4320_power(priv);
1129         } else
1130                 range->txpower[0] = get_bcm4320_power(priv);
1131
1132         len = sizeof(rates);
1133         ret = rndis_query_oid(usbdev, OID_802_11_SUPPORTED_RATES, &rates,
1134                                                                 &len);
1135         has_80211g_rates = 0;
1136         if (ret == 0) {
1137                 j = 0;
1138                 for (i = 0; i < len; i++) {
1139                         if (rates[i] == 0)
1140                                 break;
1141                         range->bitrate[j] = (rates[i] & 0x7f) * 500000;
1142                         /* check for non 802.11b rates */
1143                         if (range->bitrate[j] == 6000000 ||
1144                                 range->bitrate[j] == 9000000 ||
1145                                 (range->bitrate[j] >= 12000000 &&
1146                                 range->bitrate[j] != 22000000))
1147                                 has_80211g_rates = 1;
1148                         j++;
1149                 }
1150                 range->num_bitrates = j;
1151         } else
1152                 range->num_bitrates = 0;
1153
1154         /* fill in 802.11g rates */
1155         if (has_80211g_rates) {
1156                 num = range->num_bitrates;
1157                 for (i = 0; i < ARRAY_SIZE(rates_80211g); i++) {
1158                         for (j = 0; j < num; j++) {
1159                                 if (range->bitrate[j] ==
1160                                         rates_80211g[i] * 1000000)
1161                                         break;
1162                         }
1163                         if (j == num)
1164                                 range->bitrate[range->num_bitrates++] =
1165                                         rates_80211g[i] * 1000000;
1166                         if (range->num_bitrates == IW_MAX_BITRATES)
1167                                 break;
1168                 }
1169
1170                 /* estimated max real througput in bps */
1171                 range->throughput = 54 * 1000 * 1000 / 2;
1172
1173                 /* ~35% more with afterburner */
1174                 if (priv->param_afterburner)
1175                         range->throughput = range->throughput / 100 * 135;
1176         } else {
1177                 /* estimated max real througput in bps */
1178                 range->throughput = 11 * 1000 * 1000 / 2;
1179         }
1180
1181         range->num_channels = ARRAY_SIZE(freq_chan);
1182
1183         for (i = 0; i < ARRAY_SIZE(freq_chan) && i < IW_MAX_FREQUENCIES; i++) {
1184                 range->freq[i].i = i + 1;
1185                 range->freq[i].m = freq_chan[i] * 100000;
1186                 range->freq[i].e = 1;
1187         }
1188         range->num_frequency = i;
1189
1190         range->min_rts = 0;
1191         range->max_rts = 2347;
1192         range->min_frag = 256;
1193         range->max_frag = 2346;
1194
1195         range->max_qual.qual = 100;
1196         range->max_qual.level = 154;
1197         range->max_qual.updated = IW_QUAL_QUAL_UPDATED
1198                                 | IW_QUAL_LEVEL_UPDATED
1199                                 | IW_QUAL_NOISE_INVALID;
1200
1201         range->we_version_compiled = WIRELESS_EXT;
1202         range->we_version_source = WIRELESS_EXT;
1203
1204         range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
1205                         IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
1206         return 0;
1207 }
1208
1209
1210 static int rndis_iw_get_name(struct net_device *dev,
1211     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1212 {
1213         struct usbnet *usbdev = dev->priv;
1214         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
1215
1216         strcpy(wrqu->name, priv->name);
1217         return 0;
1218 }
1219
1220
1221 static int rndis_iw_set_essid(struct net_device *dev,
1222     struct iw_request_info *info, union iwreq_data *wrqu, char *essid)
1223 {
1224         struct ndis_80211_ssid ssid;
1225         int length = wrqu->essid.length;
1226         struct usbnet *usbdev = dev->priv;
1227
1228         devdbg(usbdev, "SIOCSIWESSID: [flags:%d,len:%d] '%.32s'",
1229                 wrqu->essid.flags, wrqu->essid.length, essid);
1230
1231         if (length > NDIS_802_11_LENGTH_SSID)
1232                 length = NDIS_802_11_LENGTH_SSID;
1233
1234         ssid.length = cpu_to_le32(length);
1235         if (length > 0)
1236                 memcpy(ssid.essid, essid, length);
1237         else
1238                 memset(ssid.essid, 0, NDIS_802_11_LENGTH_SSID);
1239
1240         set_assoc_params(usbdev);
1241
1242         if (!wrqu->essid.flags || length == 0)
1243                 return disassociate(usbdev, 1);
1244         else
1245                 return set_essid(usbdev, &ssid);
1246 }
1247
1248
1249 static int rndis_iw_get_essid(struct net_device *dev,
1250     struct iw_request_info *info, union iwreq_data *wrqu, char *essid)
1251 {
1252         struct ndis_80211_ssid ssid;
1253         struct usbnet *usbdev = dev->priv;
1254         int ret;
1255
1256         ret = get_essid(usbdev, &ssid);
1257
1258         if (ret == 0 && le32_to_cpu(ssid.length) > 0) {
1259                 wrqu->essid.flags = 1;
1260                 wrqu->essid.length = le32_to_cpu(ssid.length);
1261                 memcpy(essid, ssid.essid, wrqu->essid.length);
1262                 essid[wrqu->essid.length] = 0;
1263         } else {
1264                 memset(essid, 0, sizeof(NDIS_802_11_LENGTH_SSID));
1265                 wrqu->essid.flags = 0;
1266                 wrqu->essid.length = 0;
1267         }
1268         devdbg(usbdev, "SIOCGIWESSID: %s", essid);
1269         return ret;
1270 }
1271
1272
1273 static int rndis_iw_get_bssid(struct net_device *dev,
1274     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1275 {
1276         struct usbnet *usbdev = dev->priv;
1277         unsigned char bssid[ETH_ALEN];
1278         int ret;
1279         DECLARE_MAC_BUF(mac);
1280
1281         ret = get_bssid(usbdev, bssid);
1282
1283         if (ret == 0)
1284                 devdbg(usbdev, "SIOCGIWAP: %s", print_mac(mac, bssid));
1285         else
1286                 devdbg(usbdev, "SIOCGIWAP: <not associated>");
1287
1288         wrqu->ap_addr.sa_family = ARPHRD_ETHER;
1289         memcpy(wrqu->ap_addr.sa_data, bssid, ETH_ALEN);
1290
1291         return ret;
1292 }
1293
1294
1295 static int rndis_iw_set_bssid(struct net_device *dev,
1296     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1297 {
1298         struct usbnet *usbdev = dev->priv;
1299         u8 *bssid = (u8 *)wrqu->ap_addr.sa_data;
1300         DECLARE_MAC_BUF(mac);
1301         int ret;
1302
1303         devdbg(usbdev, "SIOCSIWAP: %s", print_mac(mac, bssid));
1304
1305         ret = rndis_set_oid(usbdev, OID_802_11_BSSID, bssid, ETH_ALEN);
1306
1307         /* user apps may set ap's mac address, which is not required;
1308          * they may fail to work if this function fails, so return
1309          * success */
1310         if (ret)
1311                 devwarn(usbdev, "setting AP mac address failed (%08X)", ret);
1312
1313         return 0;
1314 }
1315
1316
1317 static int rndis_iw_set_auth(struct net_device *dev,
1318     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1319 {
1320         struct iw_param *p = &wrqu->param;
1321         struct usbnet *usbdev = dev->priv;
1322         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
1323         int ret = -ENOTSUPP;
1324
1325         switch (p->flags & IW_AUTH_INDEX) {
1326         case IW_AUTH_WPA_VERSION:
1327                 devdbg(usbdev, "SIOCSIWAUTH: WPA_VERSION, %08x", p->value);
1328                 priv->wpa_version = p->value;
1329                 ret = 0;
1330                 break;
1331
1332         case IW_AUTH_CIPHER_PAIRWISE:
1333                 devdbg(usbdev, "SIOCSIWAUTH: CIPHER_PAIRWISE, %08x", p->value);
1334                 priv->wpa_cipher_pair = p->value;
1335                 ret = 0;
1336                 break;
1337
1338         case IW_AUTH_CIPHER_GROUP:
1339                 devdbg(usbdev, "SIOCSIWAUTH: CIPHER_GROUP, %08x", p->value);
1340                 priv->wpa_cipher_group = p->value;
1341                 ret = 0;
1342                 break;
1343
1344         case IW_AUTH_KEY_MGMT:
1345                 devdbg(usbdev, "SIOCSIWAUTH: KEY_MGMT, %08x", p->value);
1346                 priv->wpa_keymgmt = p->value;
1347                 ret = 0;
1348                 break;
1349
1350         case IW_AUTH_TKIP_COUNTERMEASURES:
1351                 devdbg(usbdev, "SIOCSIWAUTH: TKIP_COUNTERMEASURES, %08x",
1352                                                                 p->value);
1353                 ret = 0;
1354                 break;
1355
1356         case IW_AUTH_DROP_UNENCRYPTED:
1357                 devdbg(usbdev, "SIOCSIWAUTH: DROP_UNENCRYPTED, %08x", p->value);
1358                 ret = 0;
1359                 break;
1360
1361         case IW_AUTH_80211_AUTH_ALG:
1362                 devdbg(usbdev, "SIOCSIWAUTH: 80211_AUTH_ALG, %08x", p->value);
1363                 priv->wpa_authalg = p->value;
1364                 ret = 0;
1365                 break;
1366
1367         case IW_AUTH_WPA_ENABLED:
1368                 devdbg(usbdev, "SIOCSIWAUTH: WPA_ENABLED, %08x", p->value);
1369                 if (wrqu->param.value)
1370                         deauthenticate(usbdev);
1371                 ret = 0;
1372                 break;
1373
1374         case IW_AUTH_RX_UNENCRYPTED_EAPOL:
1375                 devdbg(usbdev, "SIOCSIWAUTH: RX_UNENCRYPTED_EAPOL, %08x",
1376                                                                 p->value);
1377                 ret = 0;
1378                 break;
1379
1380         case IW_AUTH_ROAMING_CONTROL:
1381                 devdbg(usbdev, "SIOCSIWAUTH: ROAMING_CONTROL, %08x", p->value);
1382                 ret = 0;
1383                 break;
1384
1385         case IW_AUTH_PRIVACY_INVOKED:
1386                 devdbg(usbdev, "SIOCSIWAUTH: invalid cmd %d",
1387                                 wrqu->param.flags & IW_AUTH_INDEX);
1388                 return -EOPNOTSUPP;
1389
1390         default:
1391                 devdbg(usbdev, "SIOCSIWAUTH: UNKNOWN  %08x, %08x",
1392                         p->flags & IW_AUTH_INDEX, p->value);
1393         }
1394         return ret;
1395 }
1396
1397
1398 static int rndis_iw_get_auth(struct net_device *dev,
1399     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1400 {
1401         struct iw_param *p = &wrqu->param;
1402         struct usbnet *usbdev = dev->priv;
1403         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
1404
1405         switch (p->flags & IW_AUTH_INDEX) {
1406         case IW_AUTH_WPA_VERSION:
1407                 p->value = priv->wpa_version;
1408                 break;
1409         case IW_AUTH_CIPHER_PAIRWISE:
1410                 p->value = priv->wpa_cipher_pair;
1411                 break;
1412         case IW_AUTH_CIPHER_GROUP:
1413                 p->value = priv->wpa_cipher_group;
1414                 break;
1415         case IW_AUTH_KEY_MGMT:
1416                 p->value = priv->wpa_keymgmt;
1417                 break;
1418         case IW_AUTH_80211_AUTH_ALG:
1419                 p->value = priv->wpa_authalg;
1420                 break;
1421         default:
1422                 devdbg(usbdev, "SIOCGIWAUTH: invalid cmd %d",
1423                                 wrqu->param.flags & IW_AUTH_INDEX);
1424                 return -EOPNOTSUPP;
1425         }
1426         return 0;
1427 }
1428
1429
1430 static int rndis_iw_get_mode(struct net_device *dev,
1431                                 struct iw_request_info *info,
1432                                 union iwreq_data *wrqu, char *extra)
1433 {
1434         struct usbnet *usbdev = dev->priv;
1435         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
1436
1437         switch (priv->infra_mode) {
1438         case ndis_80211_infra_adhoc:
1439                 wrqu->mode = IW_MODE_ADHOC;
1440                 break;
1441         case ndis_80211_infra_infra:
1442                 wrqu->mode = IW_MODE_INFRA;
1443                 break;
1444         /*case ndis_80211_infra_auto_unknown:*/
1445         default:
1446                 wrqu->mode = IW_MODE_AUTO;
1447                 break;
1448         }
1449         devdbg(usbdev, "SIOCGIWMODE: %08x", wrqu->mode);
1450         return 0;
1451 }
1452
1453
1454 static int rndis_iw_set_mode(struct net_device *dev,
1455     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1456 {
1457         struct usbnet *usbdev = dev->priv;
1458         int mode;
1459
1460         devdbg(usbdev, "SIOCSIWMODE: %08x", wrqu->mode);
1461
1462         switch (wrqu->mode) {
1463         case IW_MODE_ADHOC:
1464                 mode = ndis_80211_infra_adhoc;
1465                 break;
1466         case IW_MODE_INFRA:
1467                 mode = ndis_80211_infra_infra;
1468                 break;
1469         /*case IW_MODE_AUTO:*/
1470         default:
1471                 mode = ndis_80211_infra_auto_unknown;
1472                 break;
1473         }
1474
1475         return set_infra_mode(usbdev, mode);
1476 }
1477
1478
1479 static int rndis_iw_set_encode(struct net_device *dev,
1480     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1481 {
1482         struct usbnet *usbdev = dev->priv;
1483         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
1484         int ret, index, key_len;
1485         u8 *key;
1486
1487         index = (wrqu->encoding.flags & IW_ENCODE_INDEX);
1488
1489         /* iwconfig gives index as 1 - N */
1490         if (index > 0)
1491                 index--;
1492         else
1493                 index = priv->encr_tx_key_index;
1494
1495         if (index < 0 || index >= 4) {
1496                 devwarn(usbdev, "encryption index out of range (%u)", index);
1497                 return -EINVAL;
1498         }
1499
1500         /* remove key if disabled */
1501         if (wrqu->data.flags & IW_ENCODE_DISABLED) {
1502                 if (remove_key(usbdev, index, NULL))
1503                         return -EINVAL;
1504                 else
1505                         return 0;
1506         }
1507
1508         /* global encryption state (for all keys) */
1509         if (wrqu->data.flags & IW_ENCODE_OPEN)
1510                 ret = set_auth_mode(usbdev, IW_AUTH_WPA_VERSION_DISABLED,
1511                                                 IW_AUTH_ALG_OPEN_SYSTEM);
1512         else /*if (wrqu->data.flags & IW_ENCODE_RESTRICTED)*/
1513                 ret = set_auth_mode(usbdev, IW_AUTH_WPA_VERSION_DISABLED,
1514                                                 IW_AUTH_ALG_SHARED_KEY);
1515         if (ret != 0)
1516                 return ret;
1517
1518         if (wrqu->data.length > 0) {
1519                 key_len = wrqu->data.length;
1520                 key = extra;
1521         } else {
1522                 /* must be set as tx key */
1523                 if (priv->encr_key_len[index] == 0)
1524                         return -EINVAL;
1525                 key_len = priv->encr_key_len[index];
1526                 key = priv->encr_keys[index];
1527                 priv->encr_tx_key_index = index;
1528         }
1529
1530         if (add_wep_key(usbdev, key, key_len, index) != 0)
1531                 return -EINVAL;
1532
1533         if (index == priv->encr_tx_key_index)
1534                 /* ndis drivers want essid to be set after setting encr */
1535                 set_essid(usbdev, &priv->essid);
1536
1537         return 0;
1538 }
1539
1540
1541 static int rndis_iw_set_encode_ext(struct net_device *dev,
1542     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1543 {
1544         struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
1545         struct usbnet *usbdev = dev->priv;
1546         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
1547         struct ndis_80211_key ndis_key;
1548         int keyidx, ret;
1549         u8 *addr;
1550
1551         keyidx = wrqu->encoding.flags & IW_ENCODE_INDEX;
1552
1553         /* iwconfig gives index as 1 - N */
1554         if (keyidx)
1555                 keyidx--;
1556         else
1557                 keyidx = priv->encr_tx_key_index;
1558
1559         if (keyidx < 0 || keyidx >= 4)
1560                 return -EINVAL;
1561
1562         if (ext->alg == WPA_ALG_WEP) {
1563                 if (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY)
1564                         priv->encr_tx_key_index = keyidx;
1565                 return add_wep_key(usbdev, ext->key, ext->key_len, keyidx);
1566         }
1567
1568         if ((wrqu->encoding.flags & IW_ENCODE_DISABLED) ||
1569             ext->alg == IW_ENCODE_ALG_NONE || ext->key_len == 0)
1570                 return remove_key(usbdev, keyidx, NULL);
1571
1572         if (ext->key_len > sizeof(ndis_key.material))
1573                 return -1;
1574
1575         memset(&ndis_key, 0, sizeof(ndis_key));
1576
1577         ndis_key.size = cpu_to_le32(sizeof(ndis_key) -
1578                                 sizeof(ndis_key.material) + ext->key_len);
1579         ndis_key.length = cpu_to_le32(ext->key_len);
1580         ndis_key.index = cpu_to_le32(keyidx);
1581
1582         if (ext->ext_flags & IW_ENCODE_EXT_RX_SEQ_VALID) {
1583                 memcpy(ndis_key.rsc, ext->rx_seq, 6);
1584                 ndis_key.index |= cpu_to_le32(1 << 29);
1585         }
1586
1587         addr = ext->addr.sa_data;
1588         if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY) {
1589                 /* group key */
1590                 if (priv->infra_mode == ndis_80211_infra_adhoc)
1591                         memset(ndis_key.bssid, 0xff, ETH_ALEN);
1592                 else
1593                         get_bssid(usbdev, ndis_key.bssid);
1594         } else {
1595                 /* pairwise key */
1596                 ndis_key.index |= cpu_to_le32(1 << 30);
1597                 memcpy(ndis_key.bssid, addr, ETH_ALEN);
1598         }
1599
1600         if (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY)
1601                 ndis_key.index |= cpu_to_le32(1 << 31);
1602
1603         if (ext->alg == IW_ENCODE_ALG_TKIP && ext->key_len == 32) {
1604                 /* wpa_supplicant gives us the Michael MIC RX/TX keys in
1605                  * different order than NDIS spec, so swap the order here. */
1606                 memcpy(ndis_key.material, ext->key, 16);
1607                 memcpy(ndis_key.material + 16, ext->key + 24, 8);
1608                 memcpy(ndis_key.material + 24, ext->key + 16, 8);
1609         } else
1610                 memcpy(ndis_key.material, ext->key, ext->key_len);
1611
1612         ret = rndis_set_oid(usbdev, OID_802_11_ADD_KEY, &ndis_key,
1613                                         le32_to_cpu(ndis_key.size));
1614         devdbg(usbdev, "SIOCSIWENCODEEXT: OID_802_11_ADD_KEY -> %08X", ret);
1615         if (ret != 0)
1616                 return ret;
1617
1618         priv->encr_key_len[keyidx] = ext->key_len;
1619         memcpy(&priv->encr_keys[keyidx], ndis_key.material, ext->key_len);
1620         if (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY)
1621                 priv->encr_tx_key_index = keyidx;
1622
1623         return 0;
1624 }
1625
1626
1627 static int rndis_iw_set_scan(struct net_device *dev,
1628     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1629 {
1630         struct iw_param *param = &wrqu->param;
1631         struct usbnet *usbdev = dev->priv;
1632         union iwreq_data evt;
1633         int ret = -EINVAL;
1634         __le32 tmp;
1635
1636         devdbg(usbdev, "SIOCSIWSCAN");
1637
1638         if (param->flags == 0) {
1639                 tmp = ccpu2(1);
1640                 ret = rndis_set_oid(usbdev, OID_802_11_BSSID_LIST_SCAN, &tmp,
1641                                                                 sizeof(tmp));
1642                 evt.data.flags = 0;
1643                 evt.data.length = 0;
1644                 wireless_send_event(dev, SIOCGIWSCAN, &evt, NULL);
1645         }
1646         return ret;
1647 }
1648
1649
1650 static char *rndis_translate_scan(struct net_device *dev,
1651     char *cev, char *end_buf, struct ndis_80211_bssid_ex *bssid)
1652 {
1653 #ifdef DEBUG
1654         struct usbnet *usbdev = dev->priv;
1655 #endif
1656         struct ieee80211_info_element *ie;
1657         char *current_val;
1658         int bssid_len, ie_len, i;
1659         u32 beacon, atim;
1660         struct iw_event iwe;
1661         unsigned char sbuf[32];
1662         DECLARE_MAC_BUF(mac);
1663
1664         bssid_len = le32_to_cpu(bssid->length);
1665
1666         devdbg(usbdev, "BSSID %s", print_mac(mac, bssid->mac));
1667         iwe.cmd = SIOCGIWAP;
1668         iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
1669         memcpy(iwe.u.ap_addr.sa_data, bssid->mac, ETH_ALEN);
1670         cev = iwe_stream_add_event(cev, end_buf, &iwe, IW_EV_ADDR_LEN);
1671
1672         devdbg(usbdev, "SSID(%d) %s", le32_to_cpu(bssid->ssid.length),
1673                                                 bssid->ssid.essid);
1674         iwe.cmd = SIOCGIWESSID;
1675         iwe.u.essid.length = le32_to_cpu(bssid->ssid.length);
1676         iwe.u.essid.flags = 1;
1677         cev = iwe_stream_add_point(cev, end_buf, &iwe, bssid->ssid.essid);
1678
1679         devdbg(usbdev, "MODE %d", le32_to_cpu(bssid->net_infra));
1680         iwe.cmd = SIOCGIWMODE;
1681         switch (le32_to_cpu(bssid->net_infra)) {
1682         case ndis_80211_infra_adhoc:
1683                 iwe.u.mode = IW_MODE_ADHOC;
1684                 break;
1685         case ndis_80211_infra_infra:
1686                 iwe.u.mode = IW_MODE_INFRA;
1687                 break;
1688         /*case ndis_80211_infra_auto_unknown:*/
1689         default:
1690                 iwe.u.mode = IW_MODE_AUTO;
1691                 break;
1692         }
1693         cev = iwe_stream_add_event(cev, end_buf, &iwe, IW_EV_UINT_LEN);
1694
1695         devdbg(usbdev, "FREQ %d kHz", le32_to_cpu(bssid->config.ds_config));
1696         iwe.cmd = SIOCGIWFREQ;
1697         dsconfig_to_freq(le32_to_cpu(bssid->config.ds_config), &iwe.u.freq);
1698         cev = iwe_stream_add_event(cev, end_buf, &iwe, IW_EV_FREQ_LEN);
1699
1700         devdbg(usbdev, "QUAL %d", le32_to_cpu(bssid->rssi));
1701         iwe.cmd = IWEVQUAL;
1702         iwe.u.qual.qual  = level_to_qual(le32_to_cpu(bssid->rssi));
1703         iwe.u.qual.level = le32_to_cpu(bssid->rssi);
1704         iwe.u.qual.updated = IW_QUAL_QUAL_UPDATED
1705                         | IW_QUAL_LEVEL_UPDATED
1706                         | IW_QUAL_NOISE_INVALID;
1707         cev = iwe_stream_add_event(cev, end_buf, &iwe, IW_EV_QUAL_LEN);
1708
1709         devdbg(usbdev, "ENCODE %d", le32_to_cpu(bssid->privacy));
1710         iwe.cmd = SIOCGIWENCODE;
1711         iwe.u.data.length = 0;
1712         if (le32_to_cpu(bssid->privacy) == ndis_80211_priv_accept_all)
1713                 iwe.u.data.flags = IW_ENCODE_DISABLED;
1714         else
1715                 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
1716
1717         cev = iwe_stream_add_point(cev, end_buf, &iwe, NULL);
1718
1719         devdbg(usbdev, "RATES:");
1720         current_val = cev + IW_EV_LCP_LEN;
1721         iwe.cmd = SIOCGIWRATE;
1722         for (i = 0; i < sizeof(bssid->rates); i++) {
1723                 if (bssid->rates[i] & 0x7f) {
1724                         iwe.u.bitrate.value =
1725                                 ((bssid->rates[i] & 0x7f) *
1726                                 500000);
1727                         devdbg(usbdev, " %d", iwe.u.bitrate.value);
1728                         current_val = iwe_stream_add_value(cev,
1729                                 current_val, end_buf, &iwe,
1730                                 IW_EV_PARAM_LEN);
1731                 }
1732         }
1733
1734         if ((current_val - cev) > IW_EV_LCP_LEN)
1735                 cev = current_val;
1736
1737         beacon = le32_to_cpu(bssid->config.beacon_period);
1738         devdbg(usbdev, "BCN_INT %d", beacon);
1739         iwe.cmd = IWEVCUSTOM;
1740         snprintf(sbuf, sizeof(sbuf), "bcn_int=%d", beacon);
1741         iwe.u.data.length = strlen(sbuf);
1742         cev = iwe_stream_add_point(cev, end_buf, &iwe, sbuf);
1743
1744         atim = le32_to_cpu(bssid->config.atim_window);
1745         devdbg(usbdev, "ATIM %d", atim);
1746         iwe.cmd = IWEVCUSTOM;
1747         snprintf(sbuf, sizeof(sbuf), "atim=%u", atim);
1748         iwe.u.data.length = strlen(sbuf);
1749         cev = iwe_stream_add_point(cev, end_buf, &iwe, sbuf);
1750
1751         ie = (void *)(bssid->ies + sizeof(struct ndis_80211_fixed_ies));
1752         ie_len = min(bssid_len - (int)sizeof(*bssid),
1753                                         (int)le32_to_cpu(bssid->ie_length));
1754         ie_len -= sizeof(struct ndis_80211_fixed_ies);
1755         while (ie_len >= sizeof(*ie) && sizeof(*ie) + ie->len <= ie_len) {
1756                 if ((ie->id == MFIE_TYPE_GENERIC && ie->len >= 4 &&
1757                                 memcmp(ie->data, "\x00\x50\xf2\x01", 4) == 0) ||
1758                                 ie->id == MFIE_TYPE_RSN) {
1759                         devdbg(usbdev, "IE: WPA%d",
1760                                         (ie->id == MFIE_TYPE_RSN) ? 2 : 1);
1761                         iwe.cmd = IWEVGENIE;
1762                         iwe.u.data.length = min(ie->len + 2, MAX_WPA_IE_LEN);
1763                         cev = iwe_stream_add_point(cev, end_buf, &iwe,
1764                                                                 (u8 *)ie);
1765                 }
1766
1767                 ie_len -= sizeof(*ie) + ie->len;
1768                 ie = (struct ieee80211_info_element *)&ie->data[ie->len];
1769         }
1770
1771         return cev;
1772 }
1773
1774
1775 static int rndis_iw_get_scan(struct net_device *dev,
1776     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1777 {
1778         struct usbnet *usbdev = dev->priv;
1779         void *buf = NULL;
1780         char *cev = extra;
1781         struct ndis_80211_bssid_list_ex *bssid_list;
1782         struct ndis_80211_bssid_ex *bssid;
1783         int ret = -EINVAL, len, count, bssid_len;
1784
1785         devdbg(usbdev, "SIOCGIWSCAN");
1786
1787         len = CONTROL_BUFFER_SIZE;
1788         buf = kmalloc(len, GFP_KERNEL);
1789         if (!buf) {
1790                 ret = -ENOMEM;
1791                 goto out;
1792         }
1793
1794         ret = rndis_query_oid(usbdev, OID_802_11_BSSID_LIST, buf, &len);
1795
1796         if (ret != 0)
1797                 goto out;
1798
1799         bssid_list = buf;
1800         bssid = bssid_list->bssid;
1801         bssid_len = le32_to_cpu(bssid->length);
1802         count = le32_to_cpu(bssid_list->num_items);
1803         devdbg(usbdev, "SIOCGIWSCAN: %d BSSIDs found", count);
1804
1805         while (count && ((void *)bssid + bssid_len) <= (buf + len)) {
1806                 cev = rndis_translate_scan(dev, cev, extra + IW_SCAN_MAX_DATA,
1807                                                                         bssid);
1808                 bssid = (void *)bssid + bssid_len;
1809                 bssid_len = le32_to_cpu(bssid->length);
1810                 count--;
1811         }
1812
1813 out:
1814         wrqu->data.length = cev - extra;
1815         wrqu->data.flags = 0;
1816         kfree(buf);
1817         return ret;
1818 }
1819
1820
1821 static int rndis_iw_set_genie(struct net_device *dev,
1822     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1823 {
1824         struct usbnet *usbdev = dev->priv;
1825         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
1826         int ret = 0;
1827
1828 #ifdef DEBUG
1829         int j;
1830         u8 *gie = extra;
1831         for (j = 0; j < wrqu->data.length; j += 8)
1832                 devdbg(usbdev,
1833                         "SIOCSIWGENIE %04x - "
1834                         "%02x %02x %02x %02x %02x %02x %02x %02x", j,
1835                         gie[j + 0], gie[j + 1], gie[j + 2], gie[j + 3],
1836                         gie[j + 4], gie[j + 5], gie[j + 6], gie[j + 7]);
1837 #endif
1838         /* clear existing IEs */
1839         if (priv->wpa_ie_len) {
1840                 kfree(priv->wpa_ie);
1841                 priv->wpa_ie_len = 0;
1842         }
1843
1844         /* set new IEs */
1845         priv->wpa_ie = kmalloc(wrqu->data.length, GFP_KERNEL);
1846         if (priv->wpa_ie) {
1847                 priv->wpa_ie_len = wrqu->data.length;
1848                 memcpy(priv->wpa_ie, extra, priv->wpa_ie_len);
1849         } else
1850                 ret = -ENOMEM;
1851         return ret;
1852 }
1853
1854
1855 static int rndis_iw_get_genie(struct net_device *dev,
1856     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1857 {
1858         struct usbnet *usbdev = dev->priv;
1859         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
1860
1861         devdbg(usbdev, "SIOCGIWGENIE");
1862
1863         if (priv->wpa_ie_len == 0 || priv->wpa_ie == NULL) {
1864                 wrqu->data.length = 0;
1865                 return 0;
1866         }
1867
1868         if (wrqu->data.length < priv->wpa_ie_len)
1869                 return -E2BIG;
1870
1871         wrqu->data.length = priv->wpa_ie_len;
1872         memcpy(extra, priv->wpa_ie, priv->wpa_ie_len);
1873
1874         return 0;
1875 }
1876
1877
1878 static int rndis_iw_set_rts(struct net_device *dev,
1879     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1880 {
1881         struct usbnet *usbdev = dev->priv;
1882         __le32 tmp;
1883         devdbg(usbdev, "SIOCSIWRTS");
1884
1885         tmp = cpu_to_le32(wrqu->rts.value);
1886         return rndis_set_oid(usbdev, OID_802_11_RTS_THRESHOLD, &tmp,
1887                                                                 sizeof(tmp));
1888 }
1889
1890
1891 static int rndis_iw_get_rts(struct net_device *dev,
1892     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1893 {
1894         struct usbnet *usbdev = dev->priv;
1895         __le32 tmp;
1896         int len, ret;
1897
1898         len = sizeof(tmp);
1899         ret = rndis_query_oid(usbdev, OID_802_11_RTS_THRESHOLD, &tmp, &len);
1900         if (ret == 0) {
1901                 wrqu->rts.value = le32_to_cpu(tmp);
1902                 wrqu->rts.flags = 1;
1903                 wrqu->rts.disabled = 0;
1904         }
1905
1906         devdbg(usbdev, "SIOCGIWRTS: %d", wrqu->rts.value);
1907
1908         return ret;
1909 }
1910
1911
1912 static int rndis_iw_set_frag(struct net_device *dev,
1913     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1914 {
1915         struct usbnet *usbdev = dev->priv;
1916         __le32 tmp;
1917
1918         devdbg(usbdev, "SIOCSIWFRAG");
1919
1920         tmp = cpu_to_le32(wrqu->frag.value);
1921         return rndis_set_oid(usbdev, OID_802_11_FRAGMENTATION_THRESHOLD, &tmp,
1922                                                                 sizeof(tmp));
1923 }
1924
1925
1926 static int rndis_iw_get_frag(struct net_device *dev,
1927     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1928 {
1929         struct usbnet *usbdev = dev->priv;
1930         __le32 tmp;
1931         int len, ret;
1932
1933         len = sizeof(tmp);
1934         ret = rndis_query_oid(usbdev, OID_802_11_FRAGMENTATION_THRESHOLD, &tmp,
1935                                                                         &len);
1936         if (ret == 0) {
1937                 wrqu->frag.value = le32_to_cpu(tmp);
1938                 wrqu->frag.flags = 1;
1939                 wrqu->frag.disabled = 0;
1940         }
1941         devdbg(usbdev, "SIOCGIWFRAG: %d", wrqu->frag.value);
1942         return ret;
1943 }
1944
1945
1946 static int rndis_iw_set_nick(struct net_device *dev,
1947     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1948 {
1949         struct usbnet *usbdev = dev->priv;
1950         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
1951
1952         devdbg(usbdev, "SIOCSIWNICK");
1953
1954         priv->nick_len = wrqu->data.length;
1955         if (priv->nick_len > 32)
1956                 priv->nick_len = 32;
1957
1958         memcpy(priv->nick, extra, priv->nick_len);
1959         return 0;
1960 }
1961
1962
1963 static int rndis_iw_get_nick(struct net_device *dev,
1964     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1965 {
1966         struct usbnet *usbdev = dev->priv;
1967         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
1968
1969         wrqu->data.flags = 1;
1970         wrqu->data.length = priv->nick_len;
1971         memcpy(extra, priv->nick, priv->nick_len);
1972
1973         devdbg(usbdev, "SIOCGIWNICK: '%s'", priv->nick);
1974
1975         return 0;
1976 }
1977
1978
1979 static int rndis_iw_set_freq(struct net_device *dev,
1980     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
1981 {
1982         struct usbnet *usbdev = dev->priv;
1983         struct ndis_80211_conf config;
1984         unsigned int dsconfig;
1985         int len, ret;
1986
1987         /* this OID is valid only when not associated */
1988         if (is_associated(usbdev))
1989                 return 0;
1990
1991         dsconfig = 0;
1992         if (freq_to_dsconfig(&wrqu->freq, &dsconfig))
1993                 return -EINVAL;
1994
1995         len = sizeof(config);
1996         ret = rndis_query_oid(usbdev, OID_802_11_CONFIGURATION, &config, &len);
1997         if (ret != 0) {
1998                 devdbg(usbdev, "SIOCSIWFREQ: querying configuration failed");
1999                 return 0;
2000         }
2001
2002         config.ds_config = cpu_to_le32(dsconfig);
2003
2004         devdbg(usbdev, "SIOCSIWFREQ: %d * 10^%d", wrqu->freq.m, wrqu->freq.e);
2005         return rndis_set_oid(usbdev, OID_802_11_CONFIGURATION, &config,
2006                                                                 sizeof(config));
2007 }
2008
2009
2010 static int rndis_iw_get_freq(struct net_device *dev,
2011     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
2012 {
2013         struct usbnet *usbdev = dev->priv;
2014         struct ndis_80211_conf config;
2015         int len, ret;
2016
2017         len = sizeof(config);
2018         ret = rndis_query_oid(usbdev, OID_802_11_CONFIGURATION, &config, &len);
2019         if (ret == 0)
2020                 dsconfig_to_freq(le32_to_cpu(config.ds_config), &wrqu->freq);
2021
2022         devdbg(usbdev, "SIOCGIWFREQ: %d", wrqu->freq.m);
2023         return ret;
2024 }
2025
2026
2027 static int rndis_iw_get_txpower(struct net_device *dev,
2028     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
2029 {
2030         struct usbnet *usbdev = dev->priv;
2031         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
2032         __le32 tx_power;
2033         int ret = 0, len;
2034
2035         if (priv->radio_on) {
2036                 if (priv->caps & CAP_SUPPORT_TXPOWER) {
2037                         len = sizeof(tx_power);
2038                         ret = rndis_query_oid(usbdev, OID_802_11_TX_POWER_LEVEL,
2039                                                         &tx_power, &len);
2040                         if (ret != 0)
2041                                 return ret;
2042                 } else
2043                         /* fake incase not supported */
2044                         tx_power = cpu_to_le32(get_bcm4320_power(priv));
2045
2046                 wrqu->txpower.flags = IW_TXPOW_MWATT;
2047                 wrqu->txpower.value = le32_to_cpu(tx_power);
2048                 wrqu->txpower.disabled = 0;
2049         } else {
2050                 wrqu->txpower.flags = IW_TXPOW_MWATT;
2051                 wrqu->txpower.value = 0;
2052                 wrqu->txpower.disabled = 1;
2053         }
2054
2055         devdbg(usbdev, "SIOCGIWTXPOW: %d", wrqu->txpower.value);
2056
2057         return ret;
2058 }
2059
2060
2061 static int rndis_iw_set_txpower(struct net_device *dev,
2062     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
2063 {
2064         struct usbnet *usbdev = dev->priv;
2065         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
2066         __le32 tx_power = 0;
2067         int ret = 0;
2068
2069         if (!wrqu->txpower.disabled) {
2070                 if (wrqu->txpower.flags == IW_TXPOW_MWATT)
2071                         tx_power = cpu_to_le32(wrqu->txpower.value);
2072                 else { /* wrqu->txpower.flags == IW_TXPOW_DBM */
2073                         if (wrqu->txpower.value > 20)
2074                                 tx_power = cpu_to_le32(128);
2075                         else if (wrqu->txpower.value < -43)
2076                                 tx_power = cpu_to_le32(127);
2077                         else {
2078                                 signed char tmp;
2079                                 tmp = wrqu->txpower.value;
2080                                 tmp = -12 - tmp;
2081                                 tmp <<= 2;
2082                                 tx_power = cpu_to_le32((unsigned char)tmp);
2083                         }
2084                 }
2085         }
2086
2087         devdbg(usbdev, "SIOCSIWTXPOW: %d", le32_to_cpu(tx_power));
2088
2089         if (le32_to_cpu(tx_power) != 0) {
2090                 if (priv->caps & CAP_SUPPORT_TXPOWER) {
2091                         /* turn radio on first */
2092                         if (!priv->radio_on)
2093                                 disassociate(usbdev, 1);
2094
2095                         ret = rndis_set_oid(usbdev, OID_802_11_TX_POWER_LEVEL,
2096                                                 &tx_power, sizeof(tx_power));
2097                         if (ret != 0)
2098                                 ret = -EOPNOTSUPP;
2099                         return ret;
2100                 } else {
2101                         /* txpower unsupported, just turn radio on */
2102                         if (!priv->radio_on)
2103                                 return disassociate(usbdev, 1);
2104                         return 0; /* all ready on */
2105                 }
2106         }
2107
2108         /* tx_power == 0, turn off radio */
2109         return disassociate(usbdev, 0);
2110 }
2111
2112
2113 static int rndis_iw_get_rate(struct net_device *dev,
2114     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
2115 {
2116         struct usbnet *usbdev = dev->priv;
2117         __le32 tmp;
2118         int ret, len;
2119
2120         len = sizeof(tmp);
2121         ret = rndis_query_oid(usbdev, OID_GEN_LINK_SPEED, &tmp, &len);
2122         if (ret == 0) {
2123                 wrqu->bitrate.value = le32_to_cpu(tmp) * 100;
2124                 wrqu->bitrate.disabled = 0;
2125                 wrqu->bitrate.flags = 1;
2126         }
2127         return ret;
2128 }
2129
2130
2131 static int rndis_iw_set_mlme(struct net_device *dev,
2132     struct iw_request_info *info, union iwreq_data *wrqu, char *extra)
2133 {
2134         struct usbnet *usbdev = dev->priv;
2135         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
2136         struct iw_mlme *mlme = (struct iw_mlme *)extra;
2137         unsigned char bssid[ETH_ALEN];
2138
2139         get_bssid(usbdev, bssid);
2140
2141         if (memcmp(bssid, mlme->addr.sa_data, ETH_ALEN))
2142                 return -EINVAL;
2143
2144         switch (mlme->cmd) {
2145         case IW_MLME_DEAUTH:
2146                 return deauthenticate(usbdev);
2147         case IW_MLME_DISASSOC:
2148                 return disassociate(usbdev, priv->radio_on);
2149         default:
2150                 return -EOPNOTSUPP;
2151         }
2152
2153         return 0;
2154 }
2155
2156
2157 static struct iw_statistics *rndis_get_wireless_stats(struct net_device *dev)
2158 {
2159         struct usbnet *usbdev = dev->priv;
2160         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
2161         unsigned long flags;
2162
2163         spin_lock_irqsave(&priv->stats_lock, flags);
2164         memcpy(&priv->iwstats, &priv->privstats, sizeof(priv->iwstats));
2165         spin_unlock_irqrestore(&priv->stats_lock, flags);
2166
2167         return &priv->iwstats;
2168 }
2169
2170
2171 #define IW_IOCTL(x) [(x) - SIOCSIWCOMMIT]
2172 static const iw_handler rndis_iw_handler[] =
2173 {
2174         IW_IOCTL(SIOCSIWCOMMIT)    = rndis_iw_commit,
2175         IW_IOCTL(SIOCGIWNAME)      = rndis_iw_get_name,
2176         IW_IOCTL(SIOCSIWFREQ)      = rndis_iw_set_freq,
2177         IW_IOCTL(SIOCGIWFREQ)      = rndis_iw_get_freq,
2178         IW_IOCTL(SIOCSIWMODE)      = rndis_iw_set_mode,
2179         IW_IOCTL(SIOCGIWMODE)      = rndis_iw_get_mode,
2180         IW_IOCTL(SIOCGIWRANGE)     = rndis_iw_get_range,
2181         IW_IOCTL(SIOCSIWAP)        = rndis_iw_set_bssid,
2182         IW_IOCTL(SIOCGIWAP)        = rndis_iw_get_bssid,
2183         IW_IOCTL(SIOCSIWSCAN)      = rndis_iw_set_scan,
2184         IW_IOCTL(SIOCGIWSCAN)      = rndis_iw_get_scan,
2185         IW_IOCTL(SIOCSIWESSID)     = rndis_iw_set_essid,
2186         IW_IOCTL(SIOCGIWESSID)     = rndis_iw_get_essid,
2187         IW_IOCTL(SIOCSIWNICKN)     = rndis_iw_set_nick,
2188         IW_IOCTL(SIOCGIWNICKN)     = rndis_iw_get_nick,
2189         IW_IOCTL(SIOCGIWRATE)      = rndis_iw_get_rate,
2190         IW_IOCTL(SIOCSIWRTS)       = rndis_iw_set_rts,
2191         IW_IOCTL(SIOCGIWRTS)       = rndis_iw_get_rts,
2192         IW_IOCTL(SIOCSIWFRAG)      = rndis_iw_set_frag,
2193         IW_IOCTL(SIOCGIWFRAG)      = rndis_iw_get_frag,
2194         IW_IOCTL(SIOCSIWTXPOW)     = rndis_iw_set_txpower,
2195         IW_IOCTL(SIOCGIWTXPOW)     = rndis_iw_get_txpower,
2196         IW_IOCTL(SIOCSIWENCODE)    = rndis_iw_set_encode,
2197         IW_IOCTL(SIOCSIWENCODEEXT) = rndis_iw_set_encode_ext,
2198         IW_IOCTL(SIOCSIWAUTH)      = rndis_iw_set_auth,
2199         IW_IOCTL(SIOCGIWAUTH)      = rndis_iw_get_auth,
2200         IW_IOCTL(SIOCSIWGENIE)     = rndis_iw_set_genie,
2201         IW_IOCTL(SIOCGIWGENIE)     = rndis_iw_get_genie,
2202         IW_IOCTL(SIOCSIWMLME)      = rndis_iw_set_mlme,
2203 };
2204
2205 static const iw_handler rndis_wext_private_handler[] = {
2206 };
2207
2208 static const struct iw_priv_args rndis_wext_private_args[] = {
2209 };
2210
2211
2212 static const struct iw_handler_def rndis_iw_handlers = {
2213         .num_standard = ARRAY_SIZE(rndis_iw_handler),
2214         .num_private  = ARRAY_SIZE(rndis_wext_private_handler),
2215         .num_private_args = ARRAY_SIZE(rndis_wext_private_args),
2216         .standard = (iw_handler *)rndis_iw_handler,
2217         .private  = (iw_handler *)rndis_wext_private_handler,
2218         .private_args = (struct iw_priv_args *)rndis_wext_private_args,
2219         .get_wireless_stats = rndis_get_wireless_stats,
2220 };
2221
2222
2223 static void rndis_wext_worker(struct work_struct *work)
2224 {
2225         struct rndis_wext_private *priv =
2226                 container_of(work, struct rndis_wext_private, work);
2227         struct usbnet *usbdev = priv->usbdev;
2228         union iwreq_data evt;
2229         unsigned char bssid[ETH_ALEN];
2230         struct ndis_80211_assoc_info *info;
2231         int assoc_size = sizeof(*info) + IW_CUSTOM_MAX + 32;
2232         int ret, offset;
2233
2234         if (test_and_clear_bit(WORK_LINK_UP, &priv->work_pending)) {
2235                 netif_carrier_on(usbdev->net);
2236
2237                 info = kzalloc(assoc_size, GFP_KERNEL);
2238                 if (!info)
2239                         goto get_bssid;
2240
2241                 /* Get association info IEs from device and send them back to
2242                  * userspace. */
2243                 ret = get_association_info(usbdev, info, assoc_size);
2244                 if (!ret) {
2245                         evt.data.length = le32_to_cpu(info->req_ie_length);
2246                         if (evt.data.length > 0) {
2247                                 offset = le32_to_cpu(info->offset_req_ies);
2248                                 wireless_send_event(usbdev->net,
2249                                         IWEVASSOCREQIE, &evt,
2250                                         (char *)info + offset);
2251                         }
2252
2253                         evt.data.length = le32_to_cpu(info->resp_ie_length);
2254                         if (evt.data.length > 0) {
2255                                 offset = le32_to_cpu(info->offset_resp_ies);
2256                                 wireless_send_event(usbdev->net,
2257                                         IWEVASSOCRESPIE, &evt,
2258                                         (char *)info + offset);
2259                         }
2260                 }
2261
2262                 kfree(info);
2263
2264 get_bssid:
2265                 ret = get_bssid(usbdev, bssid);
2266                 if (!ret) {
2267                         evt.data.flags = 0;
2268                         evt.data.length = 0;
2269                         memcpy(evt.ap_addr.sa_data, bssid, ETH_ALEN);
2270                         wireless_send_event(usbdev->net, SIOCGIWAP, &evt, NULL);
2271                 }
2272         }
2273
2274         if (test_and_clear_bit(WORK_LINK_DOWN, &priv->work_pending)) {
2275                 netif_carrier_off(usbdev->net);
2276
2277                 evt.data.flags = 0;
2278                 evt.data.length = 0;
2279                 memset(evt.ap_addr.sa_data, 0, ETH_ALEN);
2280                 wireless_send_event(usbdev->net, SIOCGIWAP, &evt, NULL);
2281         }
2282
2283         if (test_and_clear_bit(WORK_SET_MULTICAST_LIST, &priv->work_pending))
2284                 set_multicast_list(usbdev);
2285 }
2286
2287 static void rndis_wext_set_multicast_list(struct net_device *dev)
2288 {
2289         struct usbnet *usbdev = dev->priv;
2290         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
2291
2292         if (test_bit(WORK_SET_MULTICAST_LIST, &priv->work_pending))
2293                 return;
2294
2295         set_bit(WORK_SET_MULTICAST_LIST, &priv->work_pending);
2296         queue_work(priv->workqueue, &priv->work);
2297 }
2298
2299 static void rndis_wext_link_change(struct usbnet *usbdev, int state)
2300 {
2301         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
2302
2303         /* queue work to avoid recursive calls into rndis_command */
2304         set_bit(state ? WORK_LINK_UP : WORK_LINK_DOWN, &priv->work_pending);
2305         queue_work(priv->workqueue, &priv->work);
2306 }
2307
2308
2309 static int rndis_wext_get_caps(struct usbnet *usbdev)
2310 {
2311         struct {
2312                 __le32  num_items;
2313                 __le32  items[8];
2314         } networks_supported;
2315         int len, retval, i, n;
2316         __le32 tx_power;
2317         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
2318
2319         /* determine if supports setting txpower */
2320         len = sizeof(tx_power);
2321         retval = rndis_query_oid(usbdev, OID_802_11_TX_POWER_LEVEL, &tx_power,
2322                                                                         &len);
2323         if (retval == 0 && le32_to_cpu(tx_power) != 0xFF)
2324                 priv->caps |= CAP_SUPPORT_TXPOWER;
2325
2326         /* determine supported modes */
2327         len = sizeof(networks_supported);
2328         retval = rndis_query_oid(usbdev, OID_802_11_NETWORK_TYPES_SUPPORTED,
2329                                                 &networks_supported, &len);
2330         if (retval >= 0) {
2331                 n = le32_to_cpu(networks_supported.num_items);
2332                 if (n > 8)
2333                         n = 8;
2334                 for (i = 0; i < n; i++) {
2335                         switch (le32_to_cpu(networks_supported.items[i])) {
2336                         case ndis_80211_type_freq_hop:
2337                         case ndis_80211_type_direct_seq:
2338                                 priv->caps |= CAP_MODE_80211B;
2339                                 break;
2340                         case ndis_80211_type_ofdm_a:
2341                                 priv->caps |= CAP_MODE_80211A;
2342                                 break;
2343                         case ndis_80211_type_ofdm_g:
2344                                 priv->caps |= CAP_MODE_80211G;
2345                                 break;
2346                         }
2347                 }
2348                 if (priv->caps & CAP_MODE_80211A)
2349                         strcat(priv->name, "a");
2350                 if (priv->caps & CAP_MODE_80211B)
2351                         strcat(priv->name, "b");
2352                 if (priv->caps & CAP_MODE_80211G)
2353                         strcat(priv->name, "g");
2354         }
2355
2356         return retval;
2357 }
2358
2359
2360 #define STATS_UPDATE_JIFFIES (HZ)
2361 static void rndis_update_wireless_stats(struct work_struct *work)
2362 {
2363         struct rndis_wext_private *priv =
2364                 container_of(work, struct rndis_wext_private, stats_work.work);
2365         struct usbnet *usbdev = priv->usbdev;
2366         struct iw_statistics iwstats;
2367         __le32 rssi, tmp;
2368         int len, ret, j;
2369         unsigned long flags;
2370         int update_jiffies = STATS_UPDATE_JIFFIES;
2371         void *buf;
2372
2373         spin_lock_irqsave(&priv->stats_lock, flags);
2374         memcpy(&iwstats, &priv->privstats, sizeof(iwstats));
2375         spin_unlock_irqrestore(&priv->stats_lock, flags);
2376
2377         /* only update stats when connected */
2378         if (!is_associated(usbdev)) {
2379                 iwstats.qual.qual = 0;
2380                 iwstats.qual.level = 0;
2381                 iwstats.qual.updated = IW_QUAL_QUAL_UPDATED
2382                                 | IW_QUAL_LEVEL_UPDATED
2383                                 | IW_QUAL_NOISE_INVALID
2384                                 | IW_QUAL_QUAL_INVALID
2385                                 | IW_QUAL_LEVEL_INVALID;
2386                 goto end;
2387         }
2388
2389         len = sizeof(rssi);
2390         ret = rndis_query_oid(usbdev, OID_802_11_RSSI, &rssi, &len);
2391
2392         devdbg(usbdev, "stats: OID_802_11_RSSI -> %d, rssi:%d", ret,
2393                                                         le32_to_cpu(rssi));
2394         if (ret == 0) {
2395                 memset(&iwstats.qual, 0, sizeof(iwstats.qual));
2396                 iwstats.qual.qual  = level_to_qual(le32_to_cpu(rssi));
2397                 iwstats.qual.level = le32_to_cpu(rssi);
2398                 iwstats.qual.updated = IW_QUAL_QUAL_UPDATED
2399                                 | IW_QUAL_LEVEL_UPDATED
2400                                 | IW_QUAL_NOISE_INVALID;
2401         }
2402
2403         memset(&iwstats.discard, 0, sizeof(iwstats.discard));
2404
2405         len = sizeof(tmp);
2406         ret = rndis_query_oid(usbdev, OID_GEN_XMIT_ERROR, &tmp, &len);
2407         if (ret == 0)
2408                 iwstats.discard.misc += le32_to_cpu(tmp);
2409
2410         len = sizeof(tmp);
2411         ret = rndis_query_oid(usbdev, OID_GEN_RCV_ERROR, &tmp, &len);
2412         if (ret == 0)
2413                 iwstats.discard.misc += le32_to_cpu(tmp);
2414
2415         len = sizeof(tmp);
2416         ret = rndis_query_oid(usbdev, OID_GEN_RCV_NO_BUFFER, &tmp, &len);
2417         if (ret == 0)
2418                 iwstats.discard.misc += le32_to_cpu(tmp);
2419
2420         /* Workaround transfer stalls on poor quality links.
2421          * TODO: find right way to fix these stalls (as stalls do not happen
2422          * with ndiswrapper/windows driver). */
2423         if (iwstats.qual.qual <= 25) {
2424                 /* Decrease stats worker interval to catch stalls.
2425                  * faster. Faster than 400-500ms causes packet loss,
2426                  * Slower doesn't catch stalls fast enough.
2427                  */
2428                 j = msecs_to_jiffies(priv->param_workaround_interval);
2429                 if (j > STATS_UPDATE_JIFFIES)
2430                         j = STATS_UPDATE_JIFFIES;
2431                 else if (j <= 0)
2432                         j = 1;
2433                 update_jiffies = j;
2434
2435                 /* Send scan OID. Use of both OIDs is required to get device
2436                  * working.
2437                  */
2438                 tmp = ccpu2(1);
2439                 rndis_set_oid(usbdev, OID_802_11_BSSID_LIST_SCAN, &tmp,
2440                                                                 sizeof(tmp));
2441
2442                 len = CONTROL_BUFFER_SIZE;
2443                 buf = kmalloc(len, GFP_KERNEL);
2444                 if (!buf)
2445                         goto end;
2446
2447                 rndis_query_oid(usbdev, OID_802_11_BSSID_LIST, buf, &len);
2448                 kfree(buf);
2449         }
2450 end:
2451         spin_lock_irqsave(&priv->stats_lock, flags);
2452         memcpy(&priv->privstats, &iwstats, sizeof(iwstats));
2453         spin_unlock_irqrestore(&priv->stats_lock, flags);
2454
2455         if (update_jiffies >= HZ)
2456                 update_jiffies = round_jiffies_relative(update_jiffies);
2457         else {
2458                 j = round_jiffies_relative(update_jiffies);
2459                 if (abs(j - update_jiffies) <= 10)
2460                         update_jiffies = j;
2461         }
2462
2463         queue_delayed_work(priv->workqueue, &priv->stats_work, update_jiffies);
2464 }
2465
2466
2467 static int bcm4320_early_init(struct usbnet *usbdev)
2468 {
2469         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
2470         char buf[8];
2471
2472         /* Early initialization settings, setting these won't have effect
2473          * if called after generic_rndis_bind().
2474          */
2475
2476         priv->param_country[0] = modparam_country[0];
2477         priv->param_country[1] = modparam_country[1];
2478         priv->param_country[2] = 0;
2479         priv->param_frameburst   = modparam_frameburst;
2480         priv->param_afterburner  = modparam_afterburner;
2481         priv->param_power_save   = modparam_power_save;
2482         priv->param_power_output = modparam_power_output;
2483         priv->param_roamtrigger  = modparam_roamtrigger;
2484         priv->param_roamdelta    = modparam_roamdelta;
2485
2486         priv->param_country[0] = toupper(priv->param_country[0]);
2487         priv->param_country[1] = toupper(priv->param_country[1]);
2488         /* doesn't support EU as country code, use FI instead */
2489         if (!strcmp(priv->param_country, "EU"))
2490                 strcpy(priv->param_country, "FI");
2491
2492         if (priv->param_power_save < 0)
2493                 priv->param_power_save = 0;
2494         else if (priv->param_power_save > 2)
2495                 priv->param_power_save = 2;
2496
2497         if (priv->param_power_output < 0)
2498                 priv->param_power_output = 0;
2499         else if (priv->param_power_output > 3)
2500                 priv->param_power_output = 3;
2501
2502         if (priv->param_roamtrigger < -80)
2503                 priv->param_roamtrigger = -80;
2504         else if (priv->param_roamtrigger > -60)
2505                 priv->param_roamtrigger = -60;
2506
2507         if (priv->param_roamdelta < 0)
2508                 priv->param_roamdelta = 0;
2509         else if (priv->param_roamdelta > 2)
2510                 priv->param_roamdelta = 2;
2511
2512         if (modparam_workaround_interval < 0)
2513                 priv->param_workaround_interval = 500;
2514         else
2515                 priv->param_workaround_interval = modparam_workaround_interval;
2516
2517         rndis_set_config_parameter_str(usbdev, "Country", priv->param_country);
2518         rndis_set_config_parameter_str(usbdev, "FrameBursting",
2519                                         priv->param_frameburst ? "1" : "0");
2520         rndis_set_config_parameter_str(usbdev, "Afterburner",
2521                                         priv->param_afterburner ? "1" : "0");
2522         sprintf(buf, "%d", priv->param_power_save);
2523         rndis_set_config_parameter_str(usbdev, "PowerSaveMode", buf);
2524         sprintf(buf, "%d", priv->param_power_output);
2525         rndis_set_config_parameter_str(usbdev, "PwrOut", buf);
2526         sprintf(buf, "%d", priv->param_roamtrigger);
2527         rndis_set_config_parameter_str(usbdev, "RoamTrigger", buf);
2528         sprintf(buf, "%d", priv->param_roamdelta);
2529         rndis_set_config_parameter_str(usbdev, "RoamDelta", buf);
2530
2531         return 0;
2532 }
2533
2534
2535 static int rndis_wext_bind(struct usbnet *usbdev, struct usb_interface *intf)
2536 {
2537         struct rndis_wext_private *priv;
2538         int retval, len;
2539         __le32 tmp;
2540
2541         /* allocate rndis private data */
2542         priv = kzalloc(sizeof(struct rndis_wext_private), GFP_KERNEL);
2543         if (!priv)
2544                 return -ENOMEM;
2545
2546         /* These have to be initialized before calling generic_rndis_bind().
2547          * Otherwise we'll be in big trouble in rndis_wext_early_init().
2548          */
2549         usbdev->driver_priv = priv;
2550         strcpy(priv->name, "IEEE802.11");
2551         usbdev->net->wireless_handlers = &rndis_iw_handlers;
2552         priv->usbdev = usbdev;
2553
2554         mutex_init(&priv->command_lock);
2555         spin_lock_init(&priv->stats_lock);
2556
2557         /* try bind rndis_host */
2558         retval = generic_rndis_bind(usbdev, intf, FLAG_RNDIS_PHYM_WIRELESS);
2559         if (retval < 0)
2560                 goto fail;
2561
2562         /* generic_rndis_bind set packet filter to multicast_all+
2563          * promisc mode which doesn't work well for our devices (device
2564          * picks up rssi to closest station instead of to access point).
2565          *
2566          * rndis_host wants to avoid all OID as much as possible
2567          * so do promisc/multicast handling in rndis_wext.
2568          */
2569         usbdev->net->set_multicast_list = rndis_wext_set_multicast_list;
2570         tmp = RNDIS_PACKET_TYPE_DIRECTED | RNDIS_PACKET_TYPE_BROADCAST;
2571         retval = rndis_set_oid(usbdev, OID_GEN_CURRENT_PACKET_FILTER, &tmp,
2572                                                                 sizeof(tmp));
2573
2574         len = sizeof(tmp);
2575         retval = rndis_query_oid(usbdev, OID_802_3_MAXIMUM_LIST_SIZE, &tmp,
2576                                                                 &len);
2577         priv->multicast_size = le32_to_cpu(tmp);
2578         if (retval < 0 || priv->multicast_size < 0)
2579                 priv->multicast_size = 0;
2580         if (priv->multicast_size > 0)
2581                 usbdev->net->flags |= IFF_MULTICAST;
2582         else
2583                 usbdev->net->flags &= ~IFF_MULTICAST;
2584
2585         priv->iwstats.qual.qual = 0;
2586         priv->iwstats.qual.level = 0;
2587         priv->iwstats.qual.updated = IW_QUAL_QUAL_UPDATED
2588                                         | IW_QUAL_LEVEL_UPDATED
2589                                         | IW_QUAL_NOISE_INVALID
2590                                         | IW_QUAL_QUAL_INVALID
2591                                         | IW_QUAL_LEVEL_INVALID;
2592
2593         rndis_wext_get_caps(usbdev);
2594         set_default_iw_params(usbdev);
2595
2596         /* turn radio on */
2597         priv->radio_on = 1;
2598         disassociate(usbdev, 1);
2599         netif_carrier_off(usbdev->net);
2600
2601         /* because rndis_command() sleeps we need to use workqueue */
2602         priv->workqueue = create_singlethread_workqueue("rndis_wlan");
2603         INIT_DELAYED_WORK(&priv->stats_work, rndis_update_wireless_stats);
2604         queue_delayed_work(priv->workqueue, &priv->stats_work,
2605                 round_jiffies_relative(STATS_UPDATE_JIFFIES));
2606         INIT_WORK(&priv->work, rndis_wext_worker);
2607
2608         return 0;
2609
2610 fail:
2611         kfree(priv);
2612         return retval;
2613 }
2614
2615
2616 static void rndis_wext_unbind(struct usbnet *usbdev, struct usb_interface *intf)
2617 {
2618         struct rndis_wext_private *priv = get_rndis_wext_priv(usbdev);
2619
2620         /* turn radio off */
2621         disassociate(usbdev, 0);
2622
2623         cancel_delayed_work_sync(&priv->stats_work);
2624         cancel_work_sync(&priv->work);
2625         flush_workqueue(priv->workqueue);
2626         destroy_workqueue(priv->workqueue);
2627
2628         if (priv && priv->wpa_ie_len)
2629                 kfree(priv->wpa_ie);
2630         kfree(priv);
2631
2632         rndis_unbind(usbdev, intf);
2633 }
2634
2635
2636 static int rndis_wext_reset(struct usbnet *usbdev)
2637 {
2638         return deauthenticate(usbdev);
2639 }
2640
2641
2642 static const struct driver_info bcm4320b_info = {
2643         .description =  "Wireless RNDIS device, BCM4320b based",
2644         .flags =        FLAG_WLAN | FLAG_FRAMING_RN | FLAG_NO_SETINT,
2645         .bind =         rndis_wext_bind,
2646         .unbind =       rndis_wext_unbind,
2647         .status =       rndis_status,
2648         .rx_fixup =     rndis_rx_fixup,
2649         .tx_fixup =     rndis_tx_fixup,
2650         .reset =        rndis_wext_reset,
2651         .early_init =   bcm4320_early_init,
2652         .link_change =  rndis_wext_link_change,
2653 };
2654
2655 static const struct driver_info bcm4320a_info = {
2656         .description =  "Wireless RNDIS device, BCM4320a based",
2657         .flags =        FLAG_WLAN | FLAG_FRAMING_RN | FLAG_NO_SETINT,
2658         .bind =         rndis_wext_bind,
2659         .unbind =       rndis_wext_unbind,
2660         .status =       rndis_status,
2661         .rx_fixup =     rndis_rx_fixup,
2662         .tx_fixup =     rndis_tx_fixup,
2663         .reset =        rndis_wext_reset,
2664         .early_init =   bcm4320_early_init,
2665         .link_change =  rndis_wext_link_change,
2666 };
2667
2668 static const struct driver_info rndis_wext_info = {
2669         .description =  "Wireless RNDIS device",
2670         .flags =        FLAG_WLAN | FLAG_FRAMING_RN | FLAG_NO_SETINT,
2671         .bind =         rndis_wext_bind,
2672         .unbind =       rndis_wext_unbind,
2673         .status =       rndis_status,
2674         .rx_fixup =     rndis_rx_fixup,
2675         .tx_fixup =     rndis_tx_fixup,
2676         .reset =        rndis_wext_reset,
2677         .early_init =   bcm4320_early_init,
2678         .link_change =  rndis_wext_link_change,
2679 };
2680
2681 /*-------------------------------------------------------------------------*/
2682
2683 static const struct usb_device_id products [] = {
2684 #define RNDIS_MASTER_INTERFACE \
2685         .bInterfaceClass        = USB_CLASS_COMM, \
2686         .bInterfaceSubClass     = 2 /* ACM */, \
2687         .bInterfaceProtocol     = 0x0ff
2688
2689 /* INF driver for these devices have DriverVer >= 4.xx.xx.xx and many custom
2690  * parameters available. Chipset marked as 'BCM4320SKFBG' in NDISwrapper-wiki.
2691  */
2692 {
2693         .match_flags    =   USB_DEVICE_ID_MATCH_INT_INFO
2694                           | USB_DEVICE_ID_MATCH_DEVICE,
2695         .idVendor               = 0x0411,
2696         .idProduct              = 0x00bc,       /* Buffalo WLI-U2-KG125S */
2697         RNDIS_MASTER_INTERFACE,
2698         .driver_info            = (unsigned long) &bcm4320b_info,
2699 }, {
2700         .match_flags    =   USB_DEVICE_ID_MATCH_INT_INFO
2701                           | USB_DEVICE_ID_MATCH_DEVICE,
2702         .idVendor               = 0x0baf,
2703         .idProduct              = 0x011b,       /* U.S. Robotics USR5421 */
2704         RNDIS_MASTER_INTERFACE,
2705         .driver_info            = (unsigned long) &bcm4320b_info,
2706 }, {
2707         .match_flags    =   USB_DEVICE_ID_MATCH_INT_INFO
2708                           | USB_DEVICE_ID_MATCH_DEVICE,
2709         .idVendor               = 0x050d,
2710         .idProduct              = 0x011b,       /* Belkin F5D7051 */
2711         RNDIS_MASTER_INTERFACE,
2712         .driver_info            = (unsigned long) &bcm4320b_info,
2713 }, {
2714         .match_flags    =   USB_DEVICE_ID_MATCH_INT_INFO
2715                           | USB_DEVICE_ID_MATCH_DEVICE,
2716         .idVendor               = 0x1799,       /* Belkin has two vendor ids */
2717         .idProduct              = 0x011b,       /* Belkin F5D7051 */
2718         RNDIS_MASTER_INTERFACE,
2719         .driver_info            = (unsigned long) &bcm4320b_info,
2720 }, {
2721         .match_flags    =   USB_DEVICE_ID_MATCH_INT_INFO
2722                           | USB_DEVICE_ID_MATCH_DEVICE,
2723         .idVendor               = 0x13b1,
2724         .idProduct              = 0x0014,       /* Linksys WUSB54GSv2 */
2725         RNDIS_MASTER_INTERFACE,
2726         .driver_info            = (unsigned long) &bcm4320b_info,
2727 }, {
2728         .match_flags    =   USB_DEVICE_ID_MATCH_INT_INFO
2729                           | USB_DEVICE_ID_MATCH_DEVICE,
2730         .idVendor               = 0x13b1,
2731         .idProduct              = 0x0026,       /* Linksys WUSB54GSC */
2732         RNDIS_MASTER_INTERFACE,
2733         .driver_info            = (unsigned long) &bcm4320b_info,
2734 }, {
2735         .match_flags    =   USB_DEVICE_ID_MATCH_INT_INFO
2736                           | USB_DEVICE_ID_MATCH_DEVICE,
2737         .idVendor               = 0x0b05,
2738         .idProduct              = 0x1717,       /* Asus WL169gE */
2739         RNDIS_MASTER_INTERFACE,
2740         .driver_info            = (unsigned long) &bcm4320b_info,
2741 }, {
2742         .match_flags    =   USB_DEVICE_ID_MATCH_INT_INFO
2743                           | USB_DEVICE_ID_MATCH_DEVICE,
2744         .idVendor               = 0x0a5c,
2745         .idProduct              = 0xd11b,       /* Eminent EM4045 */
2746         RNDIS_MASTER_INTERFACE,
2747         .driver_info            = (unsigned long) &bcm4320b_info,
2748 }, {
2749         .match_flags    =   USB_DEVICE_ID_MATCH_INT_INFO
2750                           | USB_DEVICE_ID_MATCH_DEVICE,
2751         .idVendor               = 0x1690,
2752         .idProduct              = 0x0715,       /* BT Voyager 1055 */
2753         RNDIS_MASTER_INTERFACE,
2754         .driver_info            = (unsigned long) &bcm4320b_info,
2755 },
2756 /* These devices have DriverVer < 4.xx.xx.xx and do not have any custom
2757  * parameters available, hardware probably contain older firmware version with
2758  * no way of updating. Chipset marked as 'BCM4320????' in NDISwrapper-wiki.
2759  */
2760 {
2761         .match_flags    =   USB_DEVICE_ID_MATCH_INT_INFO
2762                           | USB_DEVICE_ID_MATCH_DEVICE,
2763         .idVendor               = 0x13b1,
2764         .idProduct              = 0x000e,       /* Linksys WUSB54GSv1 */
2765         RNDIS_MASTER_INTERFACE,
2766         .driver_info            = (unsigned long) &bcm4320a_info,
2767 }, {
2768         .match_flags    =   USB_DEVICE_ID_MATCH_INT_INFO
2769                           | USB_DEVICE_ID_MATCH_DEVICE,
2770         .idVendor               = 0x0baf,
2771         .idProduct              = 0x0111,       /* U.S. Robotics USR5420 */
2772         RNDIS_MASTER_INTERFACE,
2773         .driver_info            = (unsigned long) &bcm4320a_info,
2774 }, {
2775         .match_flags    =   USB_DEVICE_ID_MATCH_INT_INFO
2776                           | USB_DEVICE_ID_MATCH_DEVICE,
2777         .idVendor               = 0x0411,
2778         .idProduct              = 0x004b,       /* BUFFALO WLI-USB-G54 */
2779         RNDIS_MASTER_INTERFACE,
2780         .driver_info            = (unsigned long) &bcm4320a_info,
2781 },
2782 /* Generic Wireless RNDIS devices that we don't have exact
2783  * idVendor/idProduct/chip yet.
2784  */
2785 {
2786         /* RNDIS is MSFT's un-official variant of CDC ACM */
2787         USB_INTERFACE_INFO(USB_CLASS_COMM, 2 /* ACM */, 0x0ff),
2788         .driver_info = (unsigned long) &rndis_wext_info,
2789 }, {
2790         /* "ActiveSync" is an undocumented variant of RNDIS, used in WM5 */
2791         USB_INTERFACE_INFO(USB_CLASS_MISC, 1, 1),
2792         .driver_info = (unsigned long) &rndis_wext_info,
2793 },
2794         { },            // END
2795 };
2796 MODULE_DEVICE_TABLE(usb, products);
2797
2798 static struct usb_driver rndis_wlan_driver = {
2799         .name =         "rndis_wlan",
2800         .id_table =     products,
2801         .probe =        usbnet_probe,
2802         .disconnect =   usbnet_disconnect,
2803         .suspend =      usbnet_suspend,
2804         .resume =       usbnet_resume,
2805 };
2806
2807 static int __init rndis_wlan_init(void)
2808 {
2809         return usb_register(&rndis_wlan_driver);
2810 }
2811 module_init(rndis_wlan_init);
2812
2813 static void __exit rndis_wlan_exit(void)
2814 {
2815         usb_deregister(&rndis_wlan_driver);
2816 }
2817 module_exit(rndis_wlan_exit);
2818
2819 MODULE_AUTHOR("Bjorge Dijkstra");
2820 MODULE_AUTHOR("Jussi Kivilinna");
2821 MODULE_DESCRIPTION("Driver for RNDIS based USB Wireless adapters");
2822 MODULE_LICENSE("GPL");
2823