2 * Driver for RNDIS based wireless USB devices.
4 * Copyright (C) 2007 by Bjorge Dijkstra <bjd@jooz.net>
5 * Copyright (C) 2008-2009 by Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
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.
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.
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
21 * Portions of this file are based on NDISwrapper project,
22 * Copyright (C) 2003-2005 Pontus Fuchs, Giridhar Pemmasani
23 * http://ndiswrapper.sourceforge.net/
26 // #define DEBUG // error path messages, extra info
27 // #define VERBOSE // more; success messages
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/ieee80211.h>
40 #include <linux/if_arp.h>
41 #include <linux/ctype.h>
42 #include <linux/spinlock.h>
43 #include <linux/slab.h>
44 #include <net/cfg80211.h>
45 #include <linux/usb/usbnet.h>
46 #include <linux/usb/rndis_host.h>
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");
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)");
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)");
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)");
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%)");
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)");
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)");
85 static int modparam_workaround_interval
;
86 module_param_named(workaround_interval
, modparam_workaround_interval
,
88 MODULE_PARM_DESC(workaround_interval
,
89 "set stall workaround interval in msecs (0=disabled) (default: 0)");
92 /* various RNDIS OID defs */
93 #define OID_GEN_LINK_SPEED cpu_to_le32(0x00010107)
94 #define OID_GEN_RNDIS_CONFIG_PARAMETER cpu_to_le32(0x0001021b)
96 #define OID_GEN_XMIT_OK cpu_to_le32(0x00020101)
97 #define OID_GEN_RCV_OK cpu_to_le32(0x00020102)
98 #define OID_GEN_XMIT_ERROR cpu_to_le32(0x00020103)
99 #define OID_GEN_RCV_ERROR cpu_to_le32(0x00020104)
100 #define OID_GEN_RCV_NO_BUFFER cpu_to_le32(0x00020105)
102 #define OID_802_3_CURRENT_ADDRESS cpu_to_le32(0x01010102)
103 #define OID_802_3_MULTICAST_LIST cpu_to_le32(0x01010103)
104 #define OID_802_3_MAXIMUM_LIST_SIZE cpu_to_le32(0x01010104)
106 #define OID_802_11_BSSID cpu_to_le32(0x0d010101)
107 #define OID_802_11_SSID cpu_to_le32(0x0d010102)
108 #define OID_802_11_INFRASTRUCTURE_MODE cpu_to_le32(0x0d010108)
109 #define OID_802_11_ADD_WEP cpu_to_le32(0x0d010113)
110 #define OID_802_11_REMOVE_WEP cpu_to_le32(0x0d010114)
111 #define OID_802_11_DISASSOCIATE cpu_to_le32(0x0d010115)
112 #define OID_802_11_AUTHENTICATION_MODE cpu_to_le32(0x0d010118)
113 #define OID_802_11_PRIVACY_FILTER cpu_to_le32(0x0d010119)
114 #define OID_802_11_BSSID_LIST_SCAN cpu_to_le32(0x0d01011a)
115 #define OID_802_11_ENCRYPTION_STATUS cpu_to_le32(0x0d01011b)
116 #define OID_802_11_ADD_KEY cpu_to_le32(0x0d01011d)
117 #define OID_802_11_REMOVE_KEY cpu_to_le32(0x0d01011e)
118 #define OID_802_11_ASSOCIATION_INFORMATION cpu_to_le32(0x0d01011f)
119 #define OID_802_11_CAPABILITY cpu_to_le32(0x0d010122)
120 #define OID_802_11_PMKID cpu_to_le32(0x0d010123)
121 #define OID_802_11_NETWORK_TYPES_SUPPORTED cpu_to_le32(0x0d010203)
122 #define OID_802_11_NETWORK_TYPE_IN_USE cpu_to_le32(0x0d010204)
123 #define OID_802_11_TX_POWER_LEVEL cpu_to_le32(0x0d010205)
124 #define OID_802_11_RSSI cpu_to_le32(0x0d010206)
125 #define OID_802_11_RSSI_TRIGGER cpu_to_le32(0x0d010207)
126 #define OID_802_11_FRAGMENTATION_THRESHOLD cpu_to_le32(0x0d010209)
127 #define OID_802_11_RTS_THRESHOLD cpu_to_le32(0x0d01020a)
128 #define OID_802_11_SUPPORTED_RATES cpu_to_le32(0x0d01020e)
129 #define OID_802_11_CONFIGURATION cpu_to_le32(0x0d010211)
130 #define OID_802_11_POWER_MODE cpu_to_le32(0x0d010216)
131 #define OID_802_11_BSSID_LIST cpu_to_le32(0x0d010217)
134 /* Typical noise/maximum signal level values taken from ndiswrapper iw_ndis.h */
135 #define WL_NOISE -96 /* typical noise level in dBm */
136 #define WL_SIGMAX -32 /* typical maximum signal level in dBm */
139 /* Assume that Broadcom 4320 (only chipset at time of writing known to be
140 * based on wireless rndis) has default txpower of 13dBm.
141 * This value is from Linksys WUSB54GSC User Guide, Appendix F: Specifications.
142 * 100% : 20 mW ~ 13dBm
143 * 75% : 15 mW ~ 12dBm
144 * 50% : 10 mW ~ 10dBm
147 #define BCM4320_DEFAULT_TXPOWER_DBM_100 13
148 #define BCM4320_DEFAULT_TXPOWER_DBM_75 12
149 #define BCM4320_DEFAULT_TXPOWER_DBM_50 10
150 #define BCM4320_DEFAULT_TXPOWER_DBM_25 7
153 /* codes for "status" field of completion messages */
154 #define RNDIS_STATUS_ADAPTER_NOT_READY cpu_to_le32(0xc0010011)
155 #define RNDIS_STATUS_ADAPTER_NOT_OPEN cpu_to_le32(0xc0010012)
158 /* Known device types */
159 #define RNDIS_UNKNOWN 0
160 #define RNDIS_BCM4320A 1
161 #define RNDIS_BCM4320B 2
164 /* NDIS data structures. Taken from wpa_supplicant driver_ndis.c
165 * slightly modified for datatype endianess, etc
167 #define NDIS_802_11_LENGTH_SSID 32
168 #define NDIS_802_11_LENGTH_RATES 8
169 #define NDIS_802_11_LENGTH_RATES_EX 16
171 enum ndis_80211_net_type
{
172 NDIS_80211_TYPE_FREQ_HOP
,
173 NDIS_80211_TYPE_DIRECT_SEQ
,
174 NDIS_80211_TYPE_OFDM_A
,
175 NDIS_80211_TYPE_OFDM_G
178 enum ndis_80211_net_infra
{
179 NDIS_80211_INFRA_ADHOC
,
180 NDIS_80211_INFRA_INFRA
,
181 NDIS_80211_INFRA_AUTO_UNKNOWN
184 enum ndis_80211_auth_mode
{
185 NDIS_80211_AUTH_OPEN
,
186 NDIS_80211_AUTH_SHARED
,
187 NDIS_80211_AUTH_AUTO_SWITCH
,
189 NDIS_80211_AUTH_WPA_PSK
,
190 NDIS_80211_AUTH_WPA_NONE
,
191 NDIS_80211_AUTH_WPA2
,
192 NDIS_80211_AUTH_WPA2_PSK
195 enum ndis_80211_encr_status
{
196 NDIS_80211_ENCR_WEP_ENABLED
,
197 NDIS_80211_ENCR_DISABLED
,
198 NDIS_80211_ENCR_WEP_KEY_ABSENT
,
199 NDIS_80211_ENCR_NOT_SUPPORTED
,
200 NDIS_80211_ENCR_TKIP_ENABLED
,
201 NDIS_80211_ENCR_TKIP_KEY_ABSENT
,
202 NDIS_80211_ENCR_CCMP_ENABLED
,
203 NDIS_80211_ENCR_CCMP_KEY_ABSENT
206 enum ndis_80211_priv_filter
{
207 NDIS_80211_PRIV_ACCEPT_ALL
,
208 NDIS_80211_PRIV_8021X_WEP
211 enum ndis_80211_status_type
{
212 NDIS_80211_STATUSTYPE_AUTHENTICATION
,
213 NDIS_80211_STATUSTYPE_MEDIASTREAMMODE
,
214 NDIS_80211_STATUSTYPE_PMKID_CANDIDATELIST
,
215 NDIS_80211_STATUSTYPE_RADIOSTATE
,
218 enum ndis_80211_media_stream_mode
{
219 NDIS_80211_MEDIA_STREAM_OFF
,
220 NDIS_80211_MEDIA_STREAM_ON
223 enum ndis_80211_radio_status
{
224 NDIS_80211_RADIO_STATUS_ON
,
225 NDIS_80211_RADIO_STATUS_HARDWARE_OFF
,
226 NDIS_80211_RADIO_STATUS_SOFTWARE_OFF
,
229 enum ndis_80211_addkey_bits
{
230 NDIS_80211_ADDKEY_8021X_AUTH
= cpu_to_le32(1 << 28),
231 NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
= cpu_to_le32(1 << 29),
232 NDIS_80211_ADDKEY_PAIRWISE_KEY
= cpu_to_le32(1 << 30),
233 NDIS_80211_ADDKEY_TRANSMIT_KEY
= cpu_to_le32(1 << 31)
236 enum ndis_80211_addwep_bits
{
237 NDIS_80211_ADDWEP_PERCLIENT_KEY
= cpu_to_le32(1 << 30),
238 NDIS_80211_ADDWEP_TRANSMIT_KEY
= cpu_to_le32(1 << 31)
241 enum ndis_80211_power_mode
{
242 NDIS_80211_POWER_MODE_CAM
,
243 NDIS_80211_POWER_MODE_MAX_PSP
,
244 NDIS_80211_POWER_MODE_FAST_PSP
,
247 enum ndis_80211_pmkid_cand_list_flag_bits
{
248 NDIS_80211_PMKID_CAND_PREAUTH
= cpu_to_le32(1 << 0)
251 struct ndis_80211_auth_request
{
258 struct ndis_80211_pmkid_candidate
{
264 struct ndis_80211_pmkid_cand_list
{
266 __le32 num_candidates
;
267 struct ndis_80211_pmkid_candidate candidate_list
[0];
270 struct ndis_80211_status_indication
{
273 __le32 media_stream_mode
;
275 struct ndis_80211_auth_request auth_request
[0];
276 struct ndis_80211_pmkid_cand_list cand_list
;
280 struct ndis_80211_ssid
{
282 u8 essid
[NDIS_802_11_LENGTH_SSID
];
285 struct ndis_80211_conf_freq_hop
{
292 struct ndis_80211_conf
{
294 __le32 beacon_period
;
297 struct ndis_80211_conf_freq_hop fh_config
;
300 struct ndis_80211_bssid_ex
{
304 struct ndis_80211_ssid ssid
;
308 struct ndis_80211_conf config
;
310 u8 rates
[NDIS_802_11_LENGTH_RATES_EX
];
315 struct ndis_80211_bssid_list_ex
{
317 struct ndis_80211_bssid_ex bssid
[0];
320 struct ndis_80211_fixed_ies
{
322 __le16 beacon_interval
;
326 struct ndis_80211_wep_key
{
333 struct ndis_80211_key
{
343 struct ndis_80211_remove_key
{
350 struct ndis_config_param
{
358 struct ndis_80211_assoc_info
{
363 __le16 listen_interval
;
364 u8 cur_ap_address
[6];
366 __le32 req_ie_length
;
367 __le32 offset_req_ies
;
374 __le32 resp_ie_length
;
375 __le32 offset_resp_ies
;
378 struct ndis_80211_auth_encr_pair
{
383 struct ndis_80211_capability
{
387 __le32 num_auth_encr_pair
;
388 struct ndis_80211_auth_encr_pair auth_encr_pair
[0];
391 struct ndis_80211_bssid_info
{
396 struct ndis_80211_pmkid
{
398 __le32 bssid_info_count
;
399 struct ndis_80211_bssid_info bssid_info
[0];
405 #define CAP_MODE_80211A 1
406 #define CAP_MODE_80211B 2
407 #define CAP_MODE_80211G 4
408 #define CAP_MODE_MASK 7
410 #define WORK_LINK_UP (1<<0)
411 #define WORK_LINK_DOWN (1<<1)
412 #define WORK_SET_MULTICAST_LIST (1<<2)
414 #define RNDIS_WLAN_ALG_NONE 0
415 #define RNDIS_WLAN_ALG_WEP (1<<0)
416 #define RNDIS_WLAN_ALG_TKIP (1<<1)
417 #define RNDIS_WLAN_ALG_CCMP (1<<2)
419 #define RNDIS_WLAN_NUM_KEYS 4
420 #define RNDIS_WLAN_KEY_MGMT_NONE 0
421 #define RNDIS_WLAN_KEY_MGMT_802_1X (1<<0)
422 #define RNDIS_WLAN_KEY_MGMT_PSK (1<<1)
424 #define COMMAND_BUFFER_SIZE (CONTROL_BUFFER_SIZE + sizeof(struct rndis_set))
426 static const struct ieee80211_channel rndis_channels
[] = {
427 { .center_freq
= 2412 },
428 { .center_freq
= 2417 },
429 { .center_freq
= 2422 },
430 { .center_freq
= 2427 },
431 { .center_freq
= 2432 },
432 { .center_freq
= 2437 },
433 { .center_freq
= 2442 },
434 { .center_freq
= 2447 },
435 { .center_freq
= 2452 },
436 { .center_freq
= 2457 },
437 { .center_freq
= 2462 },
438 { .center_freq
= 2467 },
439 { .center_freq
= 2472 },
440 { .center_freq
= 2484 },
443 static const struct ieee80211_rate rndis_rates
[] = {
445 { .bitrate
= 20, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
446 { .bitrate
= 55, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
447 { .bitrate
= 110, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
458 static const u32 rndis_cipher_suites
[] = {
459 WLAN_CIPHER_SUITE_WEP40
,
460 WLAN_CIPHER_SUITE_WEP104
,
461 WLAN_CIPHER_SUITE_TKIP
,
462 WLAN_CIPHER_SUITE_CCMP
,
465 struct rndis_wlan_encr_key
{
474 /* RNDIS device private data */
475 struct rndis_wlan_private
{
476 struct usbnet
*usbdev
;
478 struct wireless_dev wdev
;
480 struct cfg80211_scan_request
*scan_request
;
482 struct workqueue_struct
*workqueue
;
483 struct delayed_work dev_poller_work
;
484 struct delayed_work scan_work
;
485 struct work_struct work
;
486 struct mutex command_lock
;
487 unsigned long work_pending
;
491 int last_cqm_event_rssi
;
493 struct ieee80211_supported_band band
;
494 struct ieee80211_channel channels
[ARRAY_SIZE(rndis_channels
)];
495 struct ieee80211_rate rates
[ARRAY_SIZE(rndis_rates
)];
496 u32 cipher_suites
[ARRAY_SIZE(rndis_cipher_suites
)];
502 /* module parameters */
503 char param_country
[4];
504 int param_frameburst
;
505 int param_afterburner
;
506 int param_power_save
;
507 int param_power_output
;
508 int param_roamtrigger
;
510 u32 param_workaround_interval
;
518 __le32 current_command_oid
;
520 /* encryption stuff */
521 int encr_tx_key_index
;
522 struct rndis_wlan_encr_key encr_keys
[RNDIS_WLAN_NUM_KEYS
];
525 u8 command_buffer
[COMMAND_BUFFER_SIZE
];
531 static int rndis_change_virtual_intf(struct wiphy
*wiphy
,
532 struct net_device
*dev
,
533 enum nl80211_iftype type
, u32
*flags
,
534 struct vif_params
*params
);
536 static int rndis_scan(struct wiphy
*wiphy
, struct net_device
*dev
,
537 struct cfg80211_scan_request
*request
);
539 static int rndis_set_wiphy_params(struct wiphy
*wiphy
, u32 changed
);
541 static int rndis_set_tx_power(struct wiphy
*wiphy
,
542 enum nl80211_tx_power_setting type
,
544 static int rndis_get_tx_power(struct wiphy
*wiphy
, int *dbm
);
546 static int rndis_connect(struct wiphy
*wiphy
, struct net_device
*dev
,
547 struct cfg80211_connect_params
*sme
);
549 static int rndis_disconnect(struct wiphy
*wiphy
, struct net_device
*dev
,
552 static int rndis_join_ibss(struct wiphy
*wiphy
, struct net_device
*dev
,
553 struct cfg80211_ibss_params
*params
);
555 static int rndis_leave_ibss(struct wiphy
*wiphy
, struct net_device
*dev
);
557 static int rndis_set_channel(struct wiphy
*wiphy
, struct net_device
*dev
,
558 struct ieee80211_channel
*chan
, enum nl80211_channel_type channel_type
);
560 static int rndis_add_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
561 u8 key_index
, bool pairwise
, const u8
*mac_addr
,
562 struct key_params
*params
);
564 static int rndis_del_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
565 u8 key_index
, bool pairwise
, const u8
*mac_addr
);
567 static int rndis_set_default_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
568 u8 key_index
, bool unicast
, bool multicast
);
570 static int rndis_get_station(struct wiphy
*wiphy
, struct net_device
*dev
,
571 u8
*mac
, struct station_info
*sinfo
);
573 static int rndis_dump_station(struct wiphy
*wiphy
, struct net_device
*dev
,
574 int idx
, u8
*mac
, struct station_info
*sinfo
);
576 static int rndis_set_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
,
577 struct cfg80211_pmksa
*pmksa
);
579 static int rndis_del_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
,
580 struct cfg80211_pmksa
*pmksa
);
582 static int rndis_flush_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
);
584 static int rndis_set_power_mgmt(struct wiphy
*wiphy
, struct net_device
*dev
,
585 bool enabled
, int timeout
);
587 static int rndis_set_cqm_rssi_config(struct wiphy
*wiphy
,
588 struct net_device
*dev
,
589 s32 rssi_thold
, u32 rssi_hyst
);
591 static const struct cfg80211_ops rndis_config_ops
= {
592 .change_virtual_intf
= rndis_change_virtual_intf
,
594 .set_wiphy_params
= rndis_set_wiphy_params
,
595 .set_tx_power
= rndis_set_tx_power
,
596 .get_tx_power
= rndis_get_tx_power
,
597 .connect
= rndis_connect
,
598 .disconnect
= rndis_disconnect
,
599 .join_ibss
= rndis_join_ibss
,
600 .leave_ibss
= rndis_leave_ibss
,
601 .set_channel
= rndis_set_channel
,
602 .add_key
= rndis_add_key
,
603 .del_key
= rndis_del_key
,
604 .set_default_key
= rndis_set_default_key
,
605 .get_station
= rndis_get_station
,
606 .dump_station
= rndis_dump_station
,
607 .set_pmksa
= rndis_set_pmksa
,
608 .del_pmksa
= rndis_del_pmksa
,
609 .flush_pmksa
= rndis_flush_pmksa
,
610 .set_power_mgmt
= rndis_set_power_mgmt
,
611 .set_cqm_rssi_config
= rndis_set_cqm_rssi_config
,
614 static void *rndis_wiphy_privid
= &rndis_wiphy_privid
;
617 static struct rndis_wlan_private
*get_rndis_wlan_priv(struct usbnet
*dev
)
619 return (struct rndis_wlan_private
*)dev
->driver_priv
;
622 static u32
get_bcm4320_power_dbm(struct rndis_wlan_private
*priv
)
624 switch (priv
->param_power_output
) {
627 return BCM4320_DEFAULT_TXPOWER_DBM_100
;
629 return BCM4320_DEFAULT_TXPOWER_DBM_75
;
631 return BCM4320_DEFAULT_TXPOWER_DBM_50
;
633 return BCM4320_DEFAULT_TXPOWER_DBM_25
;
637 static bool is_wpa_key(struct rndis_wlan_private
*priv
, int idx
)
639 int cipher
= priv
->encr_keys
[idx
].cipher
;
641 return (cipher
== WLAN_CIPHER_SUITE_CCMP
||
642 cipher
== WLAN_CIPHER_SUITE_TKIP
);
645 static int rndis_cipher_to_alg(u32 cipher
)
649 return RNDIS_WLAN_ALG_NONE
;
650 case WLAN_CIPHER_SUITE_WEP40
:
651 case WLAN_CIPHER_SUITE_WEP104
:
652 return RNDIS_WLAN_ALG_WEP
;
653 case WLAN_CIPHER_SUITE_TKIP
:
654 return RNDIS_WLAN_ALG_TKIP
;
655 case WLAN_CIPHER_SUITE_CCMP
:
656 return RNDIS_WLAN_ALG_CCMP
;
660 static int rndis_akm_suite_to_key_mgmt(u32 akm_suite
)
664 return RNDIS_WLAN_KEY_MGMT_NONE
;
665 case WLAN_AKM_SUITE_8021X
:
666 return RNDIS_WLAN_KEY_MGMT_802_1X
;
667 case WLAN_AKM_SUITE_PSK
:
668 return RNDIS_WLAN_KEY_MGMT_PSK
;
673 static const char *oid_to_string(__le32 oid
)
676 #define OID_STR(oid) case oid: return(#oid)
677 /* from rndis_host.h */
678 OID_STR(OID_802_3_PERMANENT_ADDRESS
);
679 OID_STR(OID_GEN_MAXIMUM_FRAME_SIZE
);
680 OID_STR(OID_GEN_CURRENT_PACKET_FILTER
);
681 OID_STR(OID_GEN_PHYSICAL_MEDIUM
);
683 /* from rndis_wlan.c */
684 OID_STR(OID_GEN_LINK_SPEED
);
685 OID_STR(OID_GEN_RNDIS_CONFIG_PARAMETER
);
687 OID_STR(OID_GEN_XMIT_OK
);
688 OID_STR(OID_GEN_RCV_OK
);
689 OID_STR(OID_GEN_XMIT_ERROR
);
690 OID_STR(OID_GEN_RCV_ERROR
);
691 OID_STR(OID_GEN_RCV_NO_BUFFER
);
693 OID_STR(OID_802_3_CURRENT_ADDRESS
);
694 OID_STR(OID_802_3_MULTICAST_LIST
);
695 OID_STR(OID_802_3_MAXIMUM_LIST_SIZE
);
697 OID_STR(OID_802_11_BSSID
);
698 OID_STR(OID_802_11_SSID
);
699 OID_STR(OID_802_11_INFRASTRUCTURE_MODE
);
700 OID_STR(OID_802_11_ADD_WEP
);
701 OID_STR(OID_802_11_REMOVE_WEP
);
702 OID_STR(OID_802_11_DISASSOCIATE
);
703 OID_STR(OID_802_11_AUTHENTICATION_MODE
);
704 OID_STR(OID_802_11_PRIVACY_FILTER
);
705 OID_STR(OID_802_11_BSSID_LIST_SCAN
);
706 OID_STR(OID_802_11_ENCRYPTION_STATUS
);
707 OID_STR(OID_802_11_ADD_KEY
);
708 OID_STR(OID_802_11_REMOVE_KEY
);
709 OID_STR(OID_802_11_ASSOCIATION_INFORMATION
);
710 OID_STR(OID_802_11_CAPABILITY
);
711 OID_STR(OID_802_11_PMKID
);
712 OID_STR(OID_802_11_NETWORK_TYPES_SUPPORTED
);
713 OID_STR(OID_802_11_NETWORK_TYPE_IN_USE
);
714 OID_STR(OID_802_11_TX_POWER_LEVEL
);
715 OID_STR(OID_802_11_RSSI
);
716 OID_STR(OID_802_11_RSSI_TRIGGER
);
717 OID_STR(OID_802_11_FRAGMENTATION_THRESHOLD
);
718 OID_STR(OID_802_11_RTS_THRESHOLD
);
719 OID_STR(OID_802_11_SUPPORTED_RATES
);
720 OID_STR(OID_802_11_CONFIGURATION
);
721 OID_STR(OID_802_11_POWER_MODE
);
722 OID_STR(OID_802_11_BSSID_LIST
);
729 static const char *oid_to_string(__le32 oid
)
735 /* translate error code */
736 static int rndis_error_status(__le32 rndis_status
)
739 switch (rndis_status
) {
740 case RNDIS_STATUS_SUCCESS
:
743 case RNDIS_STATUS_FAILURE
:
744 case RNDIS_STATUS_INVALID_DATA
:
747 case RNDIS_STATUS_NOT_SUPPORTED
:
750 case RNDIS_STATUS_ADAPTER_NOT_READY
:
751 case RNDIS_STATUS_ADAPTER_NOT_OPEN
:
758 static int rndis_query_oid(struct usbnet
*dev
, __le32 oid
, void *data
, int *len
)
760 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(dev
);
763 struct rndis_msg_hdr
*header
;
764 struct rndis_query
*get
;
765 struct rndis_query_c
*get_c
;
768 int resplen
, respoffs
, copylen
;
770 buflen
= *len
+ sizeof(*u
.get
);
771 if (buflen
< CONTROL_BUFFER_SIZE
)
772 buflen
= CONTROL_BUFFER_SIZE
;
774 if (buflen
> COMMAND_BUFFER_SIZE
) {
775 u
.buf
= kmalloc(buflen
, GFP_KERNEL
);
779 u
.buf
= priv
->command_buffer
;
782 mutex_lock(&priv
->command_lock
);
784 memset(u
.get
, 0, sizeof *u
.get
);
785 u
.get
->msg_type
= RNDIS_MSG_QUERY
;
786 u
.get
->msg_len
= cpu_to_le32(sizeof *u
.get
);
789 priv
->current_command_oid
= oid
;
790 ret
= rndis_command(dev
, u
.header
, buflen
);
791 priv
->current_command_oid
= 0;
793 netdev_dbg(dev
->net
, "%s(%s): rndis_command() failed, %d (%08x)\n",
794 __func__
, oid_to_string(oid
), ret
,
795 le32_to_cpu(u
.get_c
->status
));
798 resplen
= le32_to_cpu(u
.get_c
->len
);
799 respoffs
= le32_to_cpu(u
.get_c
->offset
) + 8;
801 if (respoffs
> buflen
) {
802 /* Device returned data offset outside buffer, error. */
803 netdev_dbg(dev
->net
, "%s(%s): received invalid "
804 "data offset: %d > %d\n", __func__
,
805 oid_to_string(oid
), respoffs
, buflen
);
811 if ((resplen
+ respoffs
) > buflen
) {
812 /* Device would have returned more data if buffer would
813 * have been big enough. Copy just the bits that we got.
815 copylen
= buflen
- respoffs
;
823 memcpy(data
, u
.buf
+ respoffs
, copylen
);
827 ret
= rndis_error_status(u
.get_c
->status
);
829 netdev_dbg(dev
->net
, "%s(%s): device returned error, 0x%08x (%d)\n",
830 __func__
, oid_to_string(oid
),
831 le32_to_cpu(u
.get_c
->status
), ret
);
835 mutex_unlock(&priv
->command_lock
);
837 if (u
.buf
!= priv
->command_buffer
)
842 static int rndis_set_oid(struct usbnet
*dev
, __le32 oid
, const void *data
,
845 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(dev
);
848 struct rndis_msg_hdr
*header
;
849 struct rndis_set
*set
;
850 struct rndis_set_c
*set_c
;
854 buflen
= len
+ sizeof(*u
.set
);
855 if (buflen
< CONTROL_BUFFER_SIZE
)
856 buflen
= CONTROL_BUFFER_SIZE
;
858 if (buflen
> COMMAND_BUFFER_SIZE
) {
859 u
.buf
= kmalloc(buflen
, GFP_KERNEL
);
863 u
.buf
= priv
->command_buffer
;
866 mutex_lock(&priv
->command_lock
);
868 memset(u
.set
, 0, sizeof *u
.set
);
869 u
.set
->msg_type
= RNDIS_MSG_SET
;
870 u
.set
->msg_len
= cpu_to_le32(sizeof(*u
.set
) + len
);
872 u
.set
->len
= cpu_to_le32(len
);
873 u
.set
->offset
= cpu_to_le32(sizeof(*u
.set
) - 8);
874 u
.set
->handle
= cpu_to_le32(0);
875 memcpy(u
.buf
+ sizeof(*u
.set
), data
, len
);
877 priv
->current_command_oid
= oid
;
878 ret
= rndis_command(dev
, u
.header
, buflen
);
879 priv
->current_command_oid
= 0;
881 netdev_dbg(dev
->net
, "%s(%s): rndis_command() failed, %d (%08x)\n",
882 __func__
, oid_to_string(oid
), ret
,
883 le32_to_cpu(u
.set_c
->status
));
886 ret
= rndis_error_status(u
.set_c
->status
);
889 netdev_dbg(dev
->net
, "%s(%s): device returned error, 0x%08x (%d)\n",
890 __func__
, oid_to_string(oid
),
891 le32_to_cpu(u
.set_c
->status
), ret
);
894 mutex_unlock(&priv
->command_lock
);
896 if (u
.buf
!= priv
->command_buffer
)
901 static int rndis_reset(struct usbnet
*usbdev
)
903 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
904 struct rndis_reset
*reset
;
907 mutex_lock(&priv
->command_lock
);
909 reset
= (void *)priv
->command_buffer
;
910 memset(reset
, 0, sizeof(*reset
));
911 reset
->msg_type
= RNDIS_MSG_RESET
;
912 reset
->msg_len
= cpu_to_le32(sizeof(*reset
));
913 priv
->current_command_oid
= 0;
914 ret
= rndis_command(usbdev
, (void *)reset
, CONTROL_BUFFER_SIZE
);
916 mutex_unlock(&priv
->command_lock
);
924 * Specs say that we can only set config parameters only soon after device
926 * value_type: 0 = u32, 2 = unicode string
928 static int rndis_set_config_parameter(struct usbnet
*dev
, char *param
,
929 int value_type
, void *value
)
931 struct ndis_config_param
*infobuf
;
932 int value_len
, info_len
, param_len
, ret
, i
;
937 value_len
= sizeof(__le32
);
938 else if (value_type
== 2)
939 value_len
= strlen(value
) * sizeof(__le16
);
943 param_len
= strlen(param
) * sizeof(__le16
);
944 info_len
= sizeof(*infobuf
) + param_len
+ value_len
;
949 infobuf
= kmalloc(info_len
, GFP_KERNEL
);
955 /* extra 12 bytes are for padding (debug output) */
956 memset(infobuf
, 0xCC, info_len
+ 12);
960 netdev_dbg(dev
->net
, "setting config parameter: %s, value: %s\n",
963 netdev_dbg(dev
->net
, "setting config parameter: %s, value: %d\n",
964 param
, *(u32
*)value
);
966 infobuf
->name_offs
= cpu_to_le32(sizeof(*infobuf
));
967 infobuf
->name_length
= cpu_to_le32(param_len
);
968 infobuf
->type
= cpu_to_le32(value_type
);
969 infobuf
->value_offs
= cpu_to_le32(sizeof(*infobuf
) + param_len
);
970 infobuf
->value_length
= cpu_to_le32(value_len
);
972 /* simple string to unicode string conversion */
973 unibuf
= (void *)infobuf
+ sizeof(*infobuf
);
974 for (i
= 0; i
< param_len
/ sizeof(__le16
); i
++)
975 unibuf
[i
] = cpu_to_le16(param
[i
]);
977 if (value_type
== 2) {
978 unibuf
= (void *)infobuf
+ sizeof(*infobuf
) + param_len
;
979 for (i
= 0; i
< value_len
/ sizeof(__le16
); i
++)
980 unibuf
[i
] = cpu_to_le16(((u8
*)value
)[i
]);
982 dst_value
= (void *)infobuf
+ sizeof(*infobuf
) + param_len
;
983 *dst_value
= cpu_to_le32(*(u32
*)value
);
987 netdev_dbg(dev
->net
, "info buffer (len: %d)\n", info_len
);
988 for (i
= 0; i
< info_len
; i
+= 12) {
989 u32
*tmp
= (u32
*)((u8
*)infobuf
+ i
);
990 netdev_dbg(dev
->net
, "%08X:%08X:%08X\n",
993 cpu_to_be32(tmp
[2]));
997 ret
= rndis_set_oid(dev
, OID_GEN_RNDIS_CONFIG_PARAMETER
,
1000 netdev_dbg(dev
->net
, "setting rndis config parameter failed, %d\n",
1007 static int rndis_set_config_parameter_str(struct usbnet
*dev
,
1008 char *param
, char *value
)
1010 return rndis_set_config_parameter(dev
, param
, 2, value
);
1014 * data conversion functions
1016 static int level_to_qual(int level
)
1018 int qual
= 100 * (level
- WL_NOISE
) / (WL_SIGMAX
- WL_NOISE
);
1019 return qual
>= 0 ? (qual
<= 100 ? qual
: 100) : 0;
1025 static int set_infra_mode(struct usbnet
*usbdev
, int mode
);
1026 static void restore_keys(struct usbnet
*usbdev
);
1027 static int rndis_check_bssid_list(struct usbnet
*usbdev
, u8
*match_bssid
,
1030 static int rndis_start_bssid_list_scan(struct usbnet
*usbdev
)
1034 /* Note: OID_802_11_BSSID_LIST_SCAN clears internal BSS list. */
1035 tmp
= cpu_to_le32(1);
1036 return rndis_set_oid(usbdev
, OID_802_11_BSSID_LIST_SCAN
, &tmp
,
1040 static int set_essid(struct usbnet
*usbdev
, struct ndis_80211_ssid
*ssid
)
1042 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1045 ret
= rndis_set_oid(usbdev
, OID_802_11_SSID
, ssid
, sizeof(*ssid
));
1047 netdev_warn(usbdev
->net
, "setting SSID failed (%08X)\n", ret
);
1051 priv
->radio_on
= true;
1052 netdev_dbg(usbdev
->net
, "%s(): radio_on = true\n", __func__
);
1058 static int set_bssid(struct usbnet
*usbdev
, const u8
*bssid
)
1062 ret
= rndis_set_oid(usbdev
, OID_802_11_BSSID
, bssid
, ETH_ALEN
);
1064 netdev_warn(usbdev
->net
, "setting BSSID[%pM] failed (%08X)\n",
1072 static int clear_bssid(struct usbnet
*usbdev
)
1074 static const u8 broadcast_mac
[ETH_ALEN
] = {
1075 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
1078 return set_bssid(usbdev
, broadcast_mac
);
1081 static int get_bssid(struct usbnet
*usbdev
, u8 bssid
[ETH_ALEN
])
1086 ret
= rndis_query_oid(usbdev
, OID_802_11_BSSID
, bssid
, &len
);
1089 memset(bssid
, 0, ETH_ALEN
);
1094 static int get_association_info(struct usbnet
*usbdev
,
1095 struct ndis_80211_assoc_info
*info
, int len
)
1097 return rndis_query_oid(usbdev
, OID_802_11_ASSOCIATION_INFORMATION
,
1101 static bool is_associated(struct usbnet
*usbdev
)
1103 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1107 if (!priv
->radio_on
)
1110 ret
= get_bssid(usbdev
, bssid
);
1112 return (ret
== 0 && !is_zero_ether_addr(bssid
));
1115 static int disassociate(struct usbnet
*usbdev
, bool reset_ssid
)
1117 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1118 struct ndis_80211_ssid ssid
;
1121 if (priv
->radio_on
) {
1122 ret
= rndis_set_oid(usbdev
, OID_802_11_DISASSOCIATE
, NULL
, 0);
1124 priv
->radio_on
= false;
1125 netdev_dbg(usbdev
->net
, "%s(): radio_on = false\n",
1133 /* disassociate causes radio to be turned off; if reset_ssid
1134 * is given, set random ssid to enable radio */
1136 /* Set device to infrastructure mode so we don't get ad-hoc
1137 * 'media connect' indications with the random ssid.
1139 set_infra_mode(usbdev
, NDIS_80211_INFRA_INFRA
);
1141 ssid
.length
= cpu_to_le32(sizeof(ssid
.essid
));
1142 get_random_bytes(&ssid
.essid
[2], sizeof(ssid
.essid
)-2);
1143 ssid
.essid
[0] = 0x1;
1144 ssid
.essid
[1] = 0xff;
1145 for (i
= 2; i
< sizeof(ssid
.essid
); i
++)
1146 ssid
.essid
[i
] = 0x1 + (ssid
.essid
[i
] * 0xfe / 0xff);
1147 ret
= set_essid(usbdev
, &ssid
);
1152 static int set_auth_mode(struct usbnet
*usbdev
, u32 wpa_version
,
1153 enum nl80211_auth_type auth_type
, int keymgmt
)
1155 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1159 netdev_dbg(usbdev
->net
, "%s(): wpa_version=0x%x authalg=0x%x keymgmt=0x%x\n",
1160 __func__
, wpa_version
, auth_type
, keymgmt
);
1162 if (wpa_version
& NL80211_WPA_VERSION_2
) {
1163 if (keymgmt
& RNDIS_WLAN_KEY_MGMT_802_1X
)
1164 auth_mode
= NDIS_80211_AUTH_WPA2
;
1166 auth_mode
= NDIS_80211_AUTH_WPA2_PSK
;
1167 } else if (wpa_version
& NL80211_WPA_VERSION_1
) {
1168 if (keymgmt
& RNDIS_WLAN_KEY_MGMT_802_1X
)
1169 auth_mode
= NDIS_80211_AUTH_WPA
;
1170 else if (keymgmt
& RNDIS_WLAN_KEY_MGMT_PSK
)
1171 auth_mode
= NDIS_80211_AUTH_WPA_PSK
;
1173 auth_mode
= NDIS_80211_AUTH_WPA_NONE
;
1174 } else if (auth_type
== NL80211_AUTHTYPE_SHARED_KEY
)
1175 auth_mode
= NDIS_80211_AUTH_SHARED
;
1176 else if (auth_type
== NL80211_AUTHTYPE_OPEN_SYSTEM
)
1177 auth_mode
= NDIS_80211_AUTH_OPEN
;
1178 else if (auth_type
== NL80211_AUTHTYPE_AUTOMATIC
)
1179 auth_mode
= NDIS_80211_AUTH_AUTO_SWITCH
;
1183 tmp
= cpu_to_le32(auth_mode
);
1184 ret
= rndis_set_oid(usbdev
, OID_802_11_AUTHENTICATION_MODE
, &tmp
,
1187 netdev_warn(usbdev
->net
, "setting auth mode failed (%08X)\n",
1192 priv
->wpa_version
= wpa_version
;
1197 static int set_priv_filter(struct usbnet
*usbdev
)
1199 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1202 netdev_dbg(usbdev
->net
, "%s(): wpa_version=0x%x\n",
1203 __func__
, priv
->wpa_version
);
1205 if (priv
->wpa_version
& NL80211_WPA_VERSION_2
||
1206 priv
->wpa_version
& NL80211_WPA_VERSION_1
)
1207 tmp
= cpu_to_le32(NDIS_80211_PRIV_8021X_WEP
);
1209 tmp
= cpu_to_le32(NDIS_80211_PRIV_ACCEPT_ALL
);
1211 return rndis_set_oid(usbdev
, OID_802_11_PRIVACY_FILTER
, &tmp
,
1215 static int set_encr_mode(struct usbnet
*usbdev
, int pairwise
, int groupwise
)
1220 netdev_dbg(usbdev
->net
, "%s(): cipher_pair=0x%x cipher_group=0x%x\n",
1221 __func__
, pairwise
, groupwise
);
1223 if (pairwise
& RNDIS_WLAN_ALG_CCMP
)
1224 encr_mode
= NDIS_80211_ENCR_CCMP_ENABLED
;
1225 else if (pairwise
& RNDIS_WLAN_ALG_TKIP
)
1226 encr_mode
= NDIS_80211_ENCR_TKIP_ENABLED
;
1227 else if (pairwise
& RNDIS_WLAN_ALG_WEP
)
1228 encr_mode
= NDIS_80211_ENCR_WEP_ENABLED
;
1229 else if (groupwise
& RNDIS_WLAN_ALG_CCMP
)
1230 encr_mode
= NDIS_80211_ENCR_CCMP_ENABLED
;
1231 else if (groupwise
& RNDIS_WLAN_ALG_TKIP
)
1232 encr_mode
= NDIS_80211_ENCR_TKIP_ENABLED
;
1234 encr_mode
= NDIS_80211_ENCR_DISABLED
;
1236 tmp
= cpu_to_le32(encr_mode
);
1237 ret
= rndis_set_oid(usbdev
, OID_802_11_ENCRYPTION_STATUS
, &tmp
,
1240 netdev_warn(usbdev
->net
, "setting encr mode failed (%08X)\n",
1248 static int set_infra_mode(struct usbnet
*usbdev
, int mode
)
1250 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1254 netdev_dbg(usbdev
->net
, "%s(): infra_mode=0x%x\n",
1255 __func__
, priv
->infra_mode
);
1257 tmp
= cpu_to_le32(mode
);
1258 ret
= rndis_set_oid(usbdev
, OID_802_11_INFRASTRUCTURE_MODE
, &tmp
,
1261 netdev_warn(usbdev
->net
, "setting infra mode failed (%08X)\n",
1266 /* NDIS drivers clear keys when infrastructure mode is
1267 * changed. But Linux tools assume otherwise. So set the
1269 restore_keys(usbdev
);
1271 priv
->infra_mode
= mode
;
1275 static int set_rts_threshold(struct usbnet
*usbdev
, u32 rts_threshold
)
1279 netdev_dbg(usbdev
->net
, "%s(): %i\n", __func__
, rts_threshold
);
1281 if (rts_threshold
< 0 || rts_threshold
> 2347)
1282 rts_threshold
= 2347;
1284 tmp
= cpu_to_le32(rts_threshold
);
1285 return rndis_set_oid(usbdev
, OID_802_11_RTS_THRESHOLD
, &tmp
,
1289 static int set_frag_threshold(struct usbnet
*usbdev
, u32 frag_threshold
)
1293 netdev_dbg(usbdev
->net
, "%s(): %i\n", __func__
, frag_threshold
);
1295 if (frag_threshold
< 256 || frag_threshold
> 2346)
1296 frag_threshold
= 2346;
1298 tmp
= cpu_to_le32(frag_threshold
);
1299 return rndis_set_oid(usbdev
, OID_802_11_FRAGMENTATION_THRESHOLD
, &tmp
,
1303 static void set_default_iw_params(struct usbnet
*usbdev
)
1305 set_infra_mode(usbdev
, NDIS_80211_INFRA_INFRA
);
1306 set_auth_mode(usbdev
, 0, NL80211_AUTHTYPE_OPEN_SYSTEM
,
1307 RNDIS_WLAN_KEY_MGMT_NONE
);
1308 set_priv_filter(usbdev
);
1309 set_encr_mode(usbdev
, RNDIS_WLAN_ALG_NONE
, RNDIS_WLAN_ALG_NONE
);
1312 static int deauthenticate(struct usbnet
*usbdev
)
1316 ret
= disassociate(usbdev
, true);
1317 set_default_iw_params(usbdev
);
1321 static int set_channel(struct usbnet
*usbdev
, int channel
)
1323 struct ndis_80211_conf config
;
1324 unsigned int dsconfig
;
1327 netdev_dbg(usbdev
->net
, "%s(%d)\n", __func__
, channel
);
1329 /* this OID is valid only when not associated */
1330 if (is_associated(usbdev
))
1333 dsconfig
= ieee80211_dsss_chan_to_freq(channel
) * 1000;
1335 len
= sizeof(config
);
1336 ret
= rndis_query_oid(usbdev
, OID_802_11_CONFIGURATION
, &config
, &len
);
1338 netdev_dbg(usbdev
->net
, "%s(): querying configuration failed\n",
1343 config
.ds_config
= cpu_to_le32(dsconfig
);
1344 ret
= rndis_set_oid(usbdev
, OID_802_11_CONFIGURATION
, &config
,
1347 netdev_dbg(usbdev
->net
, "%s(): %d -> %d\n", __func__
, channel
, ret
);
1352 static struct ieee80211_channel
*get_current_channel(struct usbnet
*usbdev
,
1353 u16
*beacon_interval
)
1355 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1356 struct ieee80211_channel
*channel
;
1357 struct ndis_80211_conf config
;
1360 /* Get channel and beacon interval */
1361 len
= sizeof(config
);
1362 ret
= rndis_query_oid(usbdev
, OID_802_11_CONFIGURATION
, &config
, &len
);
1363 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_CONFIGURATION -> %d\n",
1368 channel
= ieee80211_get_channel(priv
->wdev
.wiphy
,
1369 KHZ_TO_MHZ(le32_to_cpu(config
.ds_config
)));
1373 if (beacon_interval
)
1374 *beacon_interval
= le16_to_cpu(config
.beacon_period
);
1378 /* index must be 0 - N, as per NDIS */
1379 static int add_wep_key(struct usbnet
*usbdev
, const u8
*key
, int key_len
,
1382 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1383 struct ndis_80211_wep_key ndis_key
;
1387 netdev_dbg(usbdev
->net
, "%s(idx: %d, len: %d)\n",
1388 __func__
, index
, key_len
);
1390 if ((key_len
!= 5 && key_len
!= 13) || index
< 0 || index
> 3)
1394 cipher
= WLAN_CIPHER_SUITE_WEP40
;
1396 cipher
= WLAN_CIPHER_SUITE_WEP104
;
1398 memset(&ndis_key
, 0, sizeof(ndis_key
));
1400 ndis_key
.size
= cpu_to_le32(sizeof(ndis_key
));
1401 ndis_key
.length
= cpu_to_le32(key_len
);
1402 ndis_key
.index
= cpu_to_le32(index
);
1403 memcpy(&ndis_key
.material
, key
, key_len
);
1405 if (index
== priv
->encr_tx_key_index
) {
1406 ndis_key
.index
|= NDIS_80211_ADDWEP_TRANSMIT_KEY
;
1407 ret
= set_encr_mode(usbdev
, RNDIS_WLAN_ALG_WEP
,
1408 RNDIS_WLAN_ALG_NONE
);
1410 netdev_warn(usbdev
->net
, "encryption couldn't be enabled (%08X)\n",
1414 ret
= rndis_set_oid(usbdev
, OID_802_11_ADD_WEP
, &ndis_key
,
1417 netdev_warn(usbdev
->net
, "adding encryption key %d failed (%08X)\n",
1422 priv
->encr_keys
[index
].len
= key_len
;
1423 priv
->encr_keys
[index
].cipher
= cipher
;
1424 memcpy(&priv
->encr_keys
[index
].material
, key
, key_len
);
1425 memset(&priv
->encr_keys
[index
].bssid
, 0xff, ETH_ALEN
);
1430 static int add_wpa_key(struct usbnet
*usbdev
, const u8
*key
, int key_len
,
1431 int index
, const u8
*addr
, const u8
*rx_seq
,
1432 int seq_len
, u32 cipher
, __le32 flags
)
1434 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1435 struct ndis_80211_key ndis_key
;
1439 if (index
< 0 || index
>= 4) {
1440 netdev_dbg(usbdev
->net
, "%s(): index out of range (%i)\n",
1444 if (key_len
> sizeof(ndis_key
.material
) || key_len
< 0) {
1445 netdev_dbg(usbdev
->net
, "%s(): key length out of range (%i)\n",
1449 if (flags
& NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
) {
1450 if (!rx_seq
|| seq_len
<= 0) {
1451 netdev_dbg(usbdev
->net
, "%s(): recv seq flag without buffer\n",
1455 if (rx_seq
&& seq_len
> sizeof(ndis_key
.rsc
)) {
1456 netdev_dbg(usbdev
->net
, "%s(): too big recv seq buffer\n", __func__
);
1461 is_addr_ok
= addr
&& !is_zero_ether_addr(addr
) &&
1462 !is_broadcast_ether_addr(addr
);
1463 if ((flags
& NDIS_80211_ADDKEY_PAIRWISE_KEY
) && !is_addr_ok
) {
1464 netdev_dbg(usbdev
->net
, "%s(): pairwise but bssid invalid (%pM)\n",
1469 netdev_dbg(usbdev
->net
, "%s(%i): flags:%i%i%i\n",
1471 !!(flags
& NDIS_80211_ADDKEY_TRANSMIT_KEY
),
1472 !!(flags
& NDIS_80211_ADDKEY_PAIRWISE_KEY
),
1473 !!(flags
& NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
));
1475 memset(&ndis_key
, 0, sizeof(ndis_key
));
1477 ndis_key
.size
= cpu_to_le32(sizeof(ndis_key
) -
1478 sizeof(ndis_key
.material
) + key_len
);
1479 ndis_key
.length
= cpu_to_le32(key_len
);
1480 ndis_key
.index
= cpu_to_le32(index
) | flags
;
1482 if (cipher
== WLAN_CIPHER_SUITE_TKIP
&& key_len
== 32) {
1483 /* wpa_supplicant gives us the Michael MIC RX/TX keys in
1484 * different order than NDIS spec, so swap the order here. */
1485 memcpy(ndis_key
.material
, key
, 16);
1486 memcpy(ndis_key
.material
+ 16, key
+ 24, 8);
1487 memcpy(ndis_key
.material
+ 24, key
+ 16, 8);
1489 memcpy(ndis_key
.material
, key
, key_len
);
1491 if (flags
& NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
)
1492 memcpy(ndis_key
.rsc
, rx_seq
, seq_len
);
1494 if (flags
& NDIS_80211_ADDKEY_PAIRWISE_KEY
) {
1496 memcpy(ndis_key
.bssid
, addr
, ETH_ALEN
);
1499 if (priv
->infra_mode
== NDIS_80211_INFRA_ADHOC
)
1500 memset(ndis_key
.bssid
, 0xff, ETH_ALEN
);
1502 get_bssid(usbdev
, ndis_key
.bssid
);
1505 ret
= rndis_set_oid(usbdev
, OID_802_11_ADD_KEY
, &ndis_key
,
1506 le32_to_cpu(ndis_key
.size
));
1507 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_ADD_KEY -> %08X\n",
1512 memset(&priv
->encr_keys
[index
], 0, sizeof(priv
->encr_keys
[index
]));
1513 priv
->encr_keys
[index
].len
= key_len
;
1514 priv
->encr_keys
[index
].cipher
= cipher
;
1515 memcpy(&priv
->encr_keys
[index
].material
, key
, key_len
);
1516 if (flags
& NDIS_80211_ADDKEY_PAIRWISE_KEY
)
1517 memcpy(&priv
->encr_keys
[index
].bssid
, ndis_key
.bssid
, ETH_ALEN
);
1519 memset(&priv
->encr_keys
[index
].bssid
, 0xff, ETH_ALEN
);
1521 if (flags
& NDIS_80211_ADDKEY_TRANSMIT_KEY
)
1522 priv
->encr_tx_key_index
= index
;
1527 static int restore_key(struct usbnet
*usbdev
, int key_idx
)
1529 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1530 struct rndis_wlan_encr_key key
;
1532 if (is_wpa_key(priv
, key_idx
))
1535 key
= priv
->encr_keys
[key_idx
];
1537 netdev_dbg(usbdev
->net
, "%s(): %i:%i\n", __func__
, key_idx
, key
.len
);
1542 return add_wep_key(usbdev
, key
.material
, key
.len
, key_idx
);
1545 static void restore_keys(struct usbnet
*usbdev
)
1549 for (i
= 0; i
< 4; i
++)
1550 restore_key(usbdev
, i
);
1553 static void clear_key(struct rndis_wlan_private
*priv
, int idx
)
1555 memset(&priv
->encr_keys
[idx
], 0, sizeof(priv
->encr_keys
[idx
]));
1558 /* remove_key is for both wep and wpa */
1559 static int remove_key(struct usbnet
*usbdev
, int index
, const u8
*bssid
)
1561 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1562 struct ndis_80211_remove_key remove_key
;
1567 if (index
>= RNDIS_WLAN_NUM_KEYS
)
1570 if (priv
->encr_keys
[index
].len
== 0)
1573 is_wpa
= is_wpa_key(priv
, index
);
1575 netdev_dbg(usbdev
->net
, "%s(): %i:%s:%i\n",
1576 __func__
, index
, is_wpa
? "wpa" : "wep",
1577 priv
->encr_keys
[index
].len
);
1579 clear_key(priv
, index
);
1582 remove_key
.size
= cpu_to_le32(sizeof(remove_key
));
1583 remove_key
.index
= cpu_to_le32(index
);
1586 if (!is_broadcast_ether_addr(bssid
))
1588 NDIS_80211_ADDKEY_PAIRWISE_KEY
;
1589 memcpy(remove_key
.bssid
, bssid
,
1590 sizeof(remove_key
.bssid
));
1592 memset(remove_key
.bssid
, 0xff,
1593 sizeof(remove_key
.bssid
));
1595 ret
= rndis_set_oid(usbdev
, OID_802_11_REMOVE_KEY
, &remove_key
,
1596 sizeof(remove_key
));
1600 keyindex
= cpu_to_le32(index
);
1601 ret
= rndis_set_oid(usbdev
, OID_802_11_REMOVE_WEP
, &keyindex
,
1604 netdev_warn(usbdev
->net
,
1605 "removing encryption key %d failed (%08X)\n",
1611 /* if it is transmit key, disable encryption */
1612 if (index
== priv
->encr_tx_key_index
)
1613 set_encr_mode(usbdev
, RNDIS_WLAN_ALG_NONE
, RNDIS_WLAN_ALG_NONE
);
1618 static void set_multicast_list(struct usbnet
*usbdev
)
1620 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1621 struct netdev_hw_addr
*ha
;
1622 __le32 filter
, basefilter
;
1624 char *mc_addrs
= NULL
;
1627 basefilter
= filter
= RNDIS_PACKET_TYPE_DIRECTED
|
1628 RNDIS_PACKET_TYPE_BROADCAST
;
1630 if (usbdev
->net
->flags
& IFF_PROMISC
) {
1631 filter
|= RNDIS_PACKET_TYPE_PROMISCUOUS
|
1632 RNDIS_PACKET_TYPE_ALL_LOCAL
;
1633 } else if (usbdev
->net
->flags
& IFF_ALLMULTI
) {
1634 filter
|= RNDIS_PACKET_TYPE_ALL_MULTICAST
;
1637 if (filter
!= basefilter
)
1641 * mc_list should be accessed holding the lock, so copy addresses to
1642 * local buffer first.
1644 netif_addr_lock_bh(usbdev
->net
);
1645 mc_count
= netdev_mc_count(usbdev
->net
);
1646 if (mc_count
> priv
->multicast_size
) {
1647 filter
|= RNDIS_PACKET_TYPE_ALL_MULTICAST
;
1648 } else if (mc_count
) {
1651 mc_addrs
= kmalloc(mc_count
* ETH_ALEN
, GFP_ATOMIC
);
1653 netdev_warn(usbdev
->net
,
1654 "couldn't alloc %d bytes of memory\n",
1655 mc_count
* ETH_ALEN
);
1656 netif_addr_unlock_bh(usbdev
->net
);
1660 netdev_for_each_mc_addr(ha
, usbdev
->net
)
1661 memcpy(mc_addrs
+ i
++ * ETH_ALEN
,
1662 ha
->addr
, ETH_ALEN
);
1664 netif_addr_unlock_bh(usbdev
->net
);
1666 if (filter
!= basefilter
)
1670 ret
= rndis_set_oid(usbdev
, OID_802_3_MULTICAST_LIST
, mc_addrs
,
1671 mc_count
* ETH_ALEN
);
1674 filter
|= RNDIS_PACKET_TYPE_MULTICAST
;
1676 filter
|= RNDIS_PACKET_TYPE_ALL_MULTICAST
;
1678 netdev_dbg(usbdev
->net
, "OID_802_3_MULTICAST_LIST(%d, max: %d) -> %d\n",
1679 mc_count
, priv
->multicast_size
, ret
);
1683 ret
= rndis_set_oid(usbdev
, OID_GEN_CURRENT_PACKET_FILTER
, &filter
,
1686 netdev_warn(usbdev
->net
, "couldn't set packet filter: %08x\n",
1687 le32_to_cpu(filter
));
1690 netdev_dbg(usbdev
->net
, "OID_GEN_CURRENT_PACKET_FILTER(%08x) -> %d\n",
1691 le32_to_cpu(filter
), ret
);
1695 static void debug_print_pmkids(struct usbnet
*usbdev
,
1696 struct ndis_80211_pmkid
*pmkids
,
1697 const char *func_str
)
1699 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1700 int i
, len
, count
, max_pmkids
, entry_len
;
1702 max_pmkids
= priv
->wdev
.wiphy
->max_num_pmkids
;
1703 len
= le32_to_cpu(pmkids
->length
);
1704 count
= le32_to_cpu(pmkids
->bssid_info_count
);
1706 entry_len
= (count
> 0) ? (len
- sizeof(*pmkids
)) / count
: -1;
1708 netdev_dbg(usbdev
->net
, "%s(): %d PMKIDs (data len: %d, entry len: "
1709 "%d)\n", func_str
, count
, len
, entry_len
);
1711 if (count
> max_pmkids
)
1714 for (i
= 0; i
< count
; i
++) {
1715 u32
*tmp
= (u32
*)pmkids
->bssid_info
[i
].pmkid
;
1717 netdev_dbg(usbdev
->net
, "%s(): bssid: %pM, "
1718 "pmkid: %08X:%08X:%08X:%08X\n",
1719 func_str
, pmkids
->bssid_info
[i
].bssid
,
1720 cpu_to_be32(tmp
[0]), cpu_to_be32(tmp
[1]),
1721 cpu_to_be32(tmp
[2]), cpu_to_be32(tmp
[3]));
1725 static void debug_print_pmkids(struct usbnet
*usbdev
,
1726 struct ndis_80211_pmkid
*pmkids
,
1727 const char *func_str
)
1733 static struct ndis_80211_pmkid
*get_device_pmkids(struct usbnet
*usbdev
)
1735 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1736 struct ndis_80211_pmkid
*pmkids
;
1737 int len
, ret
, max_pmkids
;
1739 max_pmkids
= priv
->wdev
.wiphy
->max_num_pmkids
;
1740 len
= sizeof(*pmkids
) + max_pmkids
* sizeof(pmkids
->bssid_info
[0]);
1742 pmkids
= kzalloc(len
, GFP_KERNEL
);
1744 return ERR_PTR(-ENOMEM
);
1746 pmkids
->length
= cpu_to_le32(len
);
1747 pmkids
->bssid_info_count
= cpu_to_le32(max_pmkids
);
1749 ret
= rndis_query_oid(usbdev
, OID_802_11_PMKID
, pmkids
, &len
);
1751 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_PMKID(%d, %d)"
1752 " -> %d\n", __func__
, len
, max_pmkids
, ret
);
1755 return ERR_PTR(ret
);
1758 if (le32_to_cpu(pmkids
->bssid_info_count
) > max_pmkids
)
1759 pmkids
->bssid_info_count
= cpu_to_le32(max_pmkids
);
1761 debug_print_pmkids(usbdev
, pmkids
, __func__
);
1766 static int set_device_pmkids(struct usbnet
*usbdev
,
1767 struct ndis_80211_pmkid
*pmkids
)
1769 int ret
, len
, num_pmkids
;
1771 num_pmkids
= le32_to_cpu(pmkids
->bssid_info_count
);
1772 len
= sizeof(*pmkids
) + num_pmkids
* sizeof(pmkids
->bssid_info
[0]);
1773 pmkids
->length
= cpu_to_le32(len
);
1775 debug_print_pmkids(usbdev
, pmkids
, __func__
);
1777 ret
= rndis_set_oid(usbdev
, OID_802_11_PMKID
, pmkids
,
1778 le32_to_cpu(pmkids
->length
));
1780 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_PMKID(%d, %d) -> %d"
1781 "\n", __func__
, len
, num_pmkids
, ret
);
1788 static struct ndis_80211_pmkid
*remove_pmkid(struct usbnet
*usbdev
,
1789 struct ndis_80211_pmkid
*pmkids
,
1790 struct cfg80211_pmksa
*pmksa
,
1793 int i
, len
, count
, newlen
, err
;
1795 len
= le32_to_cpu(pmkids
->length
);
1796 count
= le32_to_cpu(pmkids
->bssid_info_count
);
1798 if (count
> max_pmkids
)
1801 for (i
= 0; i
< count
; i
++)
1802 if (!compare_ether_addr(pmkids
->bssid_info
[i
].bssid
,
1806 /* pmkid not found */
1808 netdev_dbg(usbdev
->net
, "%s(): bssid not found (%pM)\n",
1809 __func__
, pmksa
->bssid
);
1814 for (; i
+ 1 < count
; i
++)
1815 pmkids
->bssid_info
[i
] = pmkids
->bssid_info
[i
+ 1];
1818 newlen
= sizeof(*pmkids
) + count
* sizeof(pmkids
->bssid_info
[0]);
1820 pmkids
->length
= cpu_to_le32(newlen
);
1821 pmkids
->bssid_info_count
= cpu_to_le32(count
);
1826 return ERR_PTR(err
);
1829 static struct ndis_80211_pmkid
*update_pmkid(struct usbnet
*usbdev
,
1830 struct ndis_80211_pmkid
*pmkids
,
1831 struct cfg80211_pmksa
*pmksa
,
1834 int i
, err
, len
, count
, newlen
;
1836 len
= le32_to_cpu(pmkids
->length
);
1837 count
= le32_to_cpu(pmkids
->bssid_info_count
);
1839 if (count
> max_pmkids
)
1842 /* update with new pmkid */
1843 for (i
= 0; i
< count
; i
++) {
1844 if (compare_ether_addr(pmkids
->bssid_info
[i
].bssid
,
1848 memcpy(pmkids
->bssid_info
[i
].pmkid
, pmksa
->pmkid
,
1854 /* out of space, return error */
1855 if (i
== max_pmkids
) {
1856 netdev_dbg(usbdev
->net
, "%s(): out of space\n", __func__
);
1862 newlen
= sizeof(*pmkids
) + (count
+ 1) * sizeof(pmkids
->bssid_info
[0]);
1864 pmkids
= krealloc(pmkids
, newlen
, GFP_KERNEL
);
1870 pmkids
->length
= cpu_to_le32(newlen
);
1871 pmkids
->bssid_info_count
= cpu_to_le32(count
+ 1);
1873 memcpy(pmkids
->bssid_info
[count
].bssid
, pmksa
->bssid
, ETH_ALEN
);
1874 memcpy(pmkids
->bssid_info
[count
].pmkid
, pmksa
->pmkid
, WLAN_PMKID_LEN
);
1879 return ERR_PTR(err
);
1885 static int rndis_change_virtual_intf(struct wiphy
*wiphy
,
1886 struct net_device
*dev
,
1887 enum nl80211_iftype type
, u32
*flags
,
1888 struct vif_params
*params
)
1890 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
1891 struct usbnet
*usbdev
= priv
->usbdev
;
1895 case NL80211_IFTYPE_ADHOC
:
1896 mode
= NDIS_80211_INFRA_ADHOC
;
1898 case NL80211_IFTYPE_STATION
:
1899 mode
= NDIS_80211_INFRA_INFRA
;
1905 priv
->wdev
.iftype
= type
;
1907 return set_infra_mode(usbdev
, mode
);
1910 static int rndis_set_wiphy_params(struct wiphy
*wiphy
, u32 changed
)
1912 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
1913 struct usbnet
*usbdev
= priv
->usbdev
;
1916 if (changed
& WIPHY_PARAM_FRAG_THRESHOLD
) {
1917 err
= set_frag_threshold(usbdev
, wiphy
->frag_threshold
);
1922 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
) {
1923 err
= set_rts_threshold(usbdev
, wiphy
->rts_threshold
);
1931 static int rndis_set_tx_power(struct wiphy
*wiphy
,
1932 enum nl80211_tx_power_setting type
,
1935 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
1936 struct usbnet
*usbdev
= priv
->usbdev
;
1938 netdev_dbg(usbdev
->net
, "%s(): type:0x%x mbm:%i\n",
1939 __func__
, type
, mbm
);
1941 if (mbm
< 0 || (mbm
% 100))
1944 /* Device doesn't support changing txpower after initialization, only
1945 * turn off/on radio. Support 'auto' mode and setting same dBm that is
1948 if (type
== NL80211_TX_POWER_AUTOMATIC
||
1949 MBM_TO_DBM(mbm
) == get_bcm4320_power_dbm(priv
)) {
1950 if (!priv
->radio_on
)
1951 disassociate(usbdev
, true); /* turn on radio */
1959 static int rndis_get_tx_power(struct wiphy
*wiphy
, int *dbm
)
1961 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
1962 struct usbnet
*usbdev
= priv
->usbdev
;
1964 *dbm
= get_bcm4320_power_dbm(priv
);
1966 netdev_dbg(usbdev
->net
, "%s(): dbm:%i\n", __func__
, *dbm
);
1971 #define SCAN_DELAY_JIFFIES (6 * HZ)
1972 static int rndis_scan(struct wiphy
*wiphy
, struct net_device
*dev
,
1973 struct cfg80211_scan_request
*request
)
1975 struct usbnet
*usbdev
= netdev_priv(dev
);
1976 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1978 int delay
= SCAN_DELAY_JIFFIES
;
1980 netdev_dbg(usbdev
->net
, "cfg80211.scan\n");
1982 /* Get current bssid list from device before new scan, as new scan
1983 * clears internal bssid list.
1985 rndis_check_bssid_list(usbdev
, NULL
, NULL
);
1990 if (priv
->scan_request
&& priv
->scan_request
!= request
)
1993 priv
->scan_request
= request
;
1995 ret
= rndis_start_bssid_list_scan(usbdev
);
1997 if (priv
->device_type
== RNDIS_BCM4320A
)
2000 /* Wait before retrieving scan results from device */
2001 queue_delayed_work(priv
->workqueue
, &priv
->scan_work
, delay
);
2007 static bool rndis_bss_info_update(struct usbnet
*usbdev
,
2008 struct ndis_80211_bssid_ex
*bssid
)
2010 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2011 struct ieee80211_channel
*channel
;
2012 struct cfg80211_bss
*bss
;
2016 u16 beacon_interval
;
2017 struct ndis_80211_fixed_ies
*fixed
;
2018 int ie_len
, bssid_len
;
2021 netdev_dbg(usbdev
->net
, " found bssid: '%.32s' [%pM], len: %d\n",
2022 bssid
->ssid
.essid
, bssid
->mac
, le32_to_cpu(bssid
->length
));
2024 /* parse bssid structure */
2025 bssid_len
= le32_to_cpu(bssid
->length
);
2027 if (bssid_len
< sizeof(struct ndis_80211_bssid_ex
) +
2028 sizeof(struct ndis_80211_fixed_ies
))
2031 fixed
= (struct ndis_80211_fixed_ies
*)bssid
->ies
;
2033 ie
= (void *)(bssid
->ies
+ sizeof(struct ndis_80211_fixed_ies
));
2034 ie_len
= min(bssid_len
- (int)sizeof(*bssid
),
2035 (int)le32_to_cpu(bssid
->ie_length
));
2036 ie_len
-= sizeof(struct ndis_80211_fixed_ies
);
2040 /* extract data for cfg80211_inform_bss */
2041 channel
= ieee80211_get_channel(priv
->wdev
.wiphy
,
2042 KHZ_TO_MHZ(le32_to_cpu(bssid
->config
.ds_config
)));
2046 signal
= level_to_qual(le32_to_cpu(bssid
->rssi
));
2047 timestamp
= le64_to_cpu(*(__le64
*)fixed
->timestamp
);
2048 capability
= le16_to_cpu(fixed
->capabilities
);
2049 beacon_interval
= le16_to_cpu(fixed
->beacon_interval
);
2051 bss
= cfg80211_inform_bss(priv
->wdev
.wiphy
, channel
, bssid
->mac
,
2052 timestamp
, capability
, beacon_interval
, ie
, ie_len
, signal
,
2054 cfg80211_put_bss(bss
);
2056 return (bss
!= NULL
);
2059 static struct ndis_80211_bssid_ex
*next_bssid_list_item(
2060 struct ndis_80211_bssid_ex
*bssid
,
2061 int *bssid_len
, void *buf
, int len
)
2063 void *buf_end
, *bssid_end
;
2065 buf_end
= (char *)buf
+ len
;
2066 bssid_end
= (char *)bssid
+ *bssid_len
;
2068 if ((int)(buf_end
- bssid_end
) < sizeof(bssid
->length
)) {
2072 bssid
= (void *)((char *)bssid
+ *bssid_len
);
2073 *bssid_len
= le32_to_cpu(bssid
->length
);
2078 static bool check_bssid_list_item(struct ndis_80211_bssid_ex
*bssid
,
2079 int bssid_len
, void *buf
, int len
)
2081 void *buf_end
, *bssid_end
;
2083 if (!bssid
|| bssid_len
<= 0 || bssid_len
> len
)
2086 buf_end
= (char *)buf
+ len
;
2087 bssid_end
= (char *)bssid
+ bssid_len
;
2089 return (int)(buf_end
- bssid_end
) >= 0 && (int)(bssid_end
- buf
) >= 0;
2092 static int rndis_check_bssid_list(struct usbnet
*usbdev
, u8
*match_bssid
,
2096 struct ndis_80211_bssid_list_ex
*bssid_list
;
2097 struct ndis_80211_bssid_ex
*bssid
;
2098 int ret
= -EINVAL
, len
, count
, bssid_len
, real_count
, new_len
;
2100 netdev_dbg(usbdev
->net
, "%s()\n", __func__
);
2102 len
= CONTROL_BUFFER_SIZE
;
2104 buf
= kzalloc(len
, GFP_KERNEL
);
2110 /* BSSID-list might have got bigger last time we checked, keep
2111 * resizing until it won't get any bigger.
2114 ret
= rndis_query_oid(usbdev
, OID_802_11_BSSID_LIST
, buf
, &new_len
);
2115 if (ret
!= 0 || new_len
< sizeof(struct ndis_80211_bssid_list_ex
))
2118 if (new_len
> len
) {
2127 count
= le32_to_cpu(bssid_list
->num_items
);
2129 netdev_dbg(usbdev
->net
, "%s(): buflen: %d\n", __func__
, len
);
2132 bssid
= next_bssid_list_item(bssid_list
->bssid
, &bssid_len
, buf
, len
);
2134 /* Device returns incorrect 'num_items'. Workaround by ignoring the
2135 * received 'num_items' and walking through full bssid buffer instead.
2137 while (check_bssid_list_item(bssid
, bssid_len
, buf
, len
)) {
2138 if (rndis_bss_info_update(usbdev
, bssid
) && match_bssid
&&
2140 if (compare_ether_addr(bssid
->mac
, match_bssid
))
2145 bssid
= next_bssid_list_item(bssid
, &bssid_len
, buf
, len
);
2148 netdev_dbg(usbdev
->net
, "%s(): num_items from device: %d, really found:"
2149 " %d\n", __func__
, count
, real_count
);
2156 static void rndis_get_scan_results(struct work_struct
*work
)
2158 struct rndis_wlan_private
*priv
=
2159 container_of(work
, struct rndis_wlan_private
, scan_work
.work
);
2160 struct usbnet
*usbdev
= priv
->usbdev
;
2163 netdev_dbg(usbdev
->net
, "get_scan_results\n");
2165 if (!priv
->scan_request
)
2168 ret
= rndis_check_bssid_list(usbdev
, NULL
, NULL
);
2170 cfg80211_scan_done(priv
->scan_request
, ret
< 0);
2172 priv
->scan_request
= NULL
;
2175 static int rndis_connect(struct wiphy
*wiphy
, struct net_device
*dev
,
2176 struct cfg80211_connect_params
*sme
)
2178 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2179 struct usbnet
*usbdev
= priv
->usbdev
;
2180 struct ieee80211_channel
*channel
= sme
->channel
;
2181 struct ndis_80211_ssid ssid
;
2182 int pairwise
= RNDIS_WLAN_ALG_NONE
;
2183 int groupwise
= RNDIS_WLAN_ALG_NONE
;
2184 int keymgmt
= RNDIS_WLAN_KEY_MGMT_NONE
;
2185 int length
, i
, ret
, chan
= -1;
2188 chan
= ieee80211_frequency_to_channel(channel
->center_freq
);
2190 groupwise
= rndis_cipher_to_alg(sme
->crypto
.cipher_group
);
2191 for (i
= 0; i
< sme
->crypto
.n_ciphers_pairwise
; i
++)
2193 rndis_cipher_to_alg(sme
->crypto
.ciphers_pairwise
[i
]);
2195 if (sme
->crypto
.n_ciphers_pairwise
> 0 &&
2196 pairwise
== RNDIS_WLAN_ALG_NONE
) {
2197 netdev_err(usbdev
->net
, "Unsupported pairwise cipher\n");
2201 for (i
= 0; i
< sme
->crypto
.n_akm_suites
; i
++)
2203 rndis_akm_suite_to_key_mgmt(sme
->crypto
.akm_suites
[i
]);
2205 if (sme
->crypto
.n_akm_suites
> 0 &&
2206 keymgmt
== RNDIS_WLAN_KEY_MGMT_NONE
) {
2207 netdev_err(usbdev
->net
, "Invalid keymgmt\n");
2211 netdev_dbg(usbdev
->net
, "cfg80211.connect('%.32s':[%pM]:%d:[%d,0x%x:0x%x]:[0x%x:0x%x]:0x%x)\n",
2212 sme
->ssid
, sme
->bssid
, chan
,
2213 sme
->privacy
, sme
->crypto
.wpa_versions
, sme
->auth_type
,
2214 groupwise
, pairwise
, keymgmt
);
2216 if (is_associated(usbdev
))
2217 disassociate(usbdev
, false);
2219 ret
= set_infra_mode(usbdev
, NDIS_80211_INFRA_INFRA
);
2221 netdev_dbg(usbdev
->net
, "connect: set_infra_mode failed, %d\n",
2223 goto err_turn_radio_on
;
2226 ret
= set_auth_mode(usbdev
, sme
->crypto
.wpa_versions
, sme
->auth_type
,
2229 netdev_dbg(usbdev
->net
, "connect: set_auth_mode failed, %d\n",
2231 goto err_turn_radio_on
;
2234 set_priv_filter(usbdev
);
2236 ret
= set_encr_mode(usbdev
, pairwise
, groupwise
);
2238 netdev_dbg(usbdev
->net
, "connect: set_encr_mode failed, %d\n",
2240 goto err_turn_radio_on
;
2244 ret
= set_channel(usbdev
, chan
);
2246 netdev_dbg(usbdev
->net
, "connect: set_channel failed, %d\n",
2248 goto err_turn_radio_on
;
2252 if (sme
->key
&& ((groupwise
| pairwise
) & RNDIS_WLAN_ALG_WEP
)) {
2253 priv
->encr_tx_key_index
= sme
->key_idx
;
2254 ret
= add_wep_key(usbdev
, sme
->key
, sme
->key_len
, sme
->key_idx
);
2256 netdev_dbg(usbdev
->net
, "connect: add_wep_key failed, %d (%d, %d)\n",
2257 ret
, sme
->key_len
, sme
->key_idx
);
2258 goto err_turn_radio_on
;
2262 if (sme
->bssid
&& !is_zero_ether_addr(sme
->bssid
) &&
2263 !is_broadcast_ether_addr(sme
->bssid
)) {
2264 ret
= set_bssid(usbdev
, sme
->bssid
);
2266 netdev_dbg(usbdev
->net
, "connect: set_bssid failed, %d\n",
2268 goto err_turn_radio_on
;
2271 clear_bssid(usbdev
);
2273 length
= sme
->ssid_len
;
2274 if (length
> NDIS_802_11_LENGTH_SSID
)
2275 length
= NDIS_802_11_LENGTH_SSID
;
2277 memset(&ssid
, 0, sizeof(ssid
));
2278 ssid
.length
= cpu_to_le32(length
);
2279 memcpy(ssid
.essid
, sme
->ssid
, length
);
2281 /* Pause and purge rx queue, so we don't pass packets before
2282 * 'media connect'-indication.
2284 usbnet_pause_rx(usbdev
);
2285 usbnet_purge_paused_rxq(usbdev
);
2287 ret
= set_essid(usbdev
, &ssid
);
2289 netdev_dbg(usbdev
->net
, "connect: set_essid failed, %d\n", ret
);
2293 disassociate(usbdev
, true);
2298 static int rndis_disconnect(struct wiphy
*wiphy
, struct net_device
*dev
,
2301 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2302 struct usbnet
*usbdev
= priv
->usbdev
;
2304 netdev_dbg(usbdev
->net
, "cfg80211.disconnect(%d)\n", reason_code
);
2306 priv
->connected
= false;
2307 memset(priv
->bssid
, 0, ETH_ALEN
);
2309 return deauthenticate(usbdev
);
2312 static int rndis_join_ibss(struct wiphy
*wiphy
, struct net_device
*dev
,
2313 struct cfg80211_ibss_params
*params
)
2315 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2316 struct usbnet
*usbdev
= priv
->usbdev
;
2317 struct ieee80211_channel
*channel
= params
->channel
;
2318 struct ndis_80211_ssid ssid
;
2319 enum nl80211_auth_type auth_type
;
2320 int ret
, alg
, length
, chan
= -1;
2323 chan
= ieee80211_frequency_to_channel(channel
->center_freq
);
2325 /* TODO: How to handle ad-hoc encryption?
2326 * connect() has *key, join_ibss() doesn't. RNDIS requires key to be
2327 * pre-shared for encryption (open/shared/wpa), is key set before
2328 * join_ibss? Which auth_type to use (not in params)? What about WPA?
2330 if (params
->privacy
) {
2331 auth_type
= NL80211_AUTHTYPE_SHARED_KEY
;
2332 alg
= RNDIS_WLAN_ALG_WEP
;
2334 auth_type
= NL80211_AUTHTYPE_OPEN_SYSTEM
;
2335 alg
= RNDIS_WLAN_ALG_NONE
;
2338 netdev_dbg(usbdev
->net
, "cfg80211.join_ibss('%.32s':[%pM]:%d:%d)\n",
2339 params
->ssid
, params
->bssid
, chan
, params
->privacy
);
2341 if (is_associated(usbdev
))
2342 disassociate(usbdev
, false);
2344 ret
= set_infra_mode(usbdev
, NDIS_80211_INFRA_ADHOC
);
2346 netdev_dbg(usbdev
->net
, "join_ibss: set_infra_mode failed, %d\n",
2348 goto err_turn_radio_on
;
2351 ret
= set_auth_mode(usbdev
, 0, auth_type
, RNDIS_WLAN_KEY_MGMT_NONE
);
2353 netdev_dbg(usbdev
->net
, "join_ibss: set_auth_mode failed, %d\n",
2355 goto err_turn_radio_on
;
2358 set_priv_filter(usbdev
);
2360 ret
= set_encr_mode(usbdev
, alg
, RNDIS_WLAN_ALG_NONE
);
2362 netdev_dbg(usbdev
->net
, "join_ibss: set_encr_mode failed, %d\n",
2364 goto err_turn_radio_on
;
2368 ret
= set_channel(usbdev
, chan
);
2370 netdev_dbg(usbdev
->net
, "join_ibss: set_channel failed, %d\n",
2372 goto err_turn_radio_on
;
2376 if (params
->bssid
&& !is_zero_ether_addr(params
->bssid
) &&
2377 !is_broadcast_ether_addr(params
->bssid
)) {
2378 ret
= set_bssid(usbdev
, params
->bssid
);
2380 netdev_dbg(usbdev
->net
, "join_ibss: set_bssid failed, %d\n",
2382 goto err_turn_radio_on
;
2385 clear_bssid(usbdev
);
2387 length
= params
->ssid_len
;
2388 if (length
> NDIS_802_11_LENGTH_SSID
)
2389 length
= NDIS_802_11_LENGTH_SSID
;
2391 memset(&ssid
, 0, sizeof(ssid
));
2392 ssid
.length
= cpu_to_le32(length
);
2393 memcpy(ssid
.essid
, params
->ssid
, length
);
2395 /* Don't need to pause rx queue for ad-hoc. */
2396 usbnet_purge_paused_rxq(usbdev
);
2397 usbnet_resume_rx(usbdev
);
2399 ret
= set_essid(usbdev
, &ssid
);
2401 netdev_dbg(usbdev
->net
, "join_ibss: set_essid failed, %d\n",
2406 disassociate(usbdev
, true);
2411 static int rndis_leave_ibss(struct wiphy
*wiphy
, struct net_device
*dev
)
2413 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2414 struct usbnet
*usbdev
= priv
->usbdev
;
2416 netdev_dbg(usbdev
->net
, "cfg80211.leave_ibss()\n");
2418 priv
->connected
= false;
2419 memset(priv
->bssid
, 0, ETH_ALEN
);
2421 return deauthenticate(usbdev
);
2424 static int rndis_set_channel(struct wiphy
*wiphy
, struct net_device
*netdev
,
2425 struct ieee80211_channel
*chan
, enum nl80211_channel_type channel_type
)
2427 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2428 struct usbnet
*usbdev
= priv
->usbdev
;
2430 return set_channel(usbdev
,
2431 ieee80211_frequency_to_channel(chan
->center_freq
));
2434 static int rndis_add_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
2435 u8 key_index
, bool pairwise
, const u8
*mac_addr
,
2436 struct key_params
*params
)
2438 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2439 struct usbnet
*usbdev
= priv
->usbdev
;
2442 netdev_dbg(usbdev
->net
, "%s(%i, %pM, %08x)\n",
2443 __func__
, key_index
, mac_addr
, params
->cipher
);
2445 switch (params
->cipher
) {
2446 case WLAN_CIPHER_SUITE_WEP40
:
2447 case WLAN_CIPHER_SUITE_WEP104
:
2448 return add_wep_key(usbdev
, params
->key
, params
->key_len
,
2450 case WLAN_CIPHER_SUITE_TKIP
:
2451 case WLAN_CIPHER_SUITE_CCMP
:
2454 if (params
->seq
&& params
->seq_len
> 0)
2455 flags
|= NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
;
2457 flags
|= NDIS_80211_ADDKEY_PAIRWISE_KEY
|
2458 NDIS_80211_ADDKEY_TRANSMIT_KEY
;
2460 return add_wpa_key(usbdev
, params
->key
, params
->key_len
,
2461 key_index
, mac_addr
, params
->seq
,
2462 params
->seq_len
, params
->cipher
, flags
);
2464 netdev_dbg(usbdev
->net
, "%s(): unsupported cipher %08x\n",
2465 __func__
, params
->cipher
);
2470 static int rndis_del_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
2471 u8 key_index
, bool pairwise
, const u8
*mac_addr
)
2473 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2474 struct usbnet
*usbdev
= priv
->usbdev
;
2476 netdev_dbg(usbdev
->net
, "%s(%i, %pM)\n", __func__
, key_index
, mac_addr
);
2478 return remove_key(usbdev
, key_index
, mac_addr
);
2481 static int rndis_set_default_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
2482 u8 key_index
, bool unicast
, bool multicast
)
2484 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2485 struct usbnet
*usbdev
= priv
->usbdev
;
2486 struct rndis_wlan_encr_key key
;
2488 netdev_dbg(usbdev
->net
, "%s(%i)\n", __func__
, key_index
);
2490 if (key_index
>= RNDIS_WLAN_NUM_KEYS
)
2493 priv
->encr_tx_key_index
= key_index
;
2495 if (is_wpa_key(priv
, key_index
))
2498 key
= priv
->encr_keys
[key_index
];
2500 return add_wep_key(usbdev
, key
.material
, key
.len
, key_index
);
2503 static void rndis_fill_station_info(struct usbnet
*usbdev
,
2504 struct station_info
*sinfo
)
2506 __le32 linkspeed
, rssi
;
2509 memset(sinfo
, 0, sizeof(*sinfo
));
2511 len
= sizeof(linkspeed
);
2512 ret
= rndis_query_oid(usbdev
, OID_GEN_LINK_SPEED
, &linkspeed
, &len
);
2514 sinfo
->txrate
.legacy
= le32_to_cpu(linkspeed
) / 1000;
2515 sinfo
->filled
|= STATION_INFO_TX_BITRATE
;
2519 ret
= rndis_query_oid(usbdev
, OID_802_11_RSSI
, &rssi
, &len
);
2521 sinfo
->signal
= level_to_qual(le32_to_cpu(rssi
));
2522 sinfo
->filled
|= STATION_INFO_SIGNAL
;
2526 static int rndis_get_station(struct wiphy
*wiphy
, struct net_device
*dev
,
2527 u8
*mac
, struct station_info
*sinfo
)
2529 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2530 struct usbnet
*usbdev
= priv
->usbdev
;
2532 if (compare_ether_addr(priv
->bssid
, mac
))
2535 rndis_fill_station_info(usbdev
, sinfo
);
2540 static int rndis_dump_station(struct wiphy
*wiphy
, struct net_device
*dev
,
2541 int idx
, u8
*mac
, struct station_info
*sinfo
)
2543 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2544 struct usbnet
*usbdev
= priv
->usbdev
;
2549 memcpy(mac
, priv
->bssid
, ETH_ALEN
);
2551 rndis_fill_station_info(usbdev
, sinfo
);
2556 static int rndis_set_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
,
2557 struct cfg80211_pmksa
*pmksa
)
2559 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2560 struct usbnet
*usbdev
= priv
->usbdev
;
2561 struct ndis_80211_pmkid
*pmkids
;
2562 u32
*tmp
= (u32
*)pmksa
->pmkid
;
2564 netdev_dbg(usbdev
->net
, "%s(%pM, %08X:%08X:%08X:%08X)\n", __func__
,
2566 cpu_to_be32(tmp
[0]), cpu_to_be32(tmp
[1]),
2567 cpu_to_be32(tmp
[2]), cpu_to_be32(tmp
[3]));
2569 pmkids
= get_device_pmkids(usbdev
);
2570 if (IS_ERR(pmkids
)) {
2571 /* couldn't read PMKID cache from device */
2572 return PTR_ERR(pmkids
);
2575 pmkids
= update_pmkid(usbdev
, pmkids
, pmksa
, wiphy
->max_num_pmkids
);
2576 if (IS_ERR(pmkids
)) {
2577 /* not found, list full, etc */
2578 return PTR_ERR(pmkids
);
2581 return set_device_pmkids(usbdev
, pmkids
);
2584 static int rndis_del_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
,
2585 struct cfg80211_pmksa
*pmksa
)
2587 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2588 struct usbnet
*usbdev
= priv
->usbdev
;
2589 struct ndis_80211_pmkid
*pmkids
;
2590 u32
*tmp
= (u32
*)pmksa
->pmkid
;
2592 netdev_dbg(usbdev
->net
, "%s(%pM, %08X:%08X:%08X:%08X)\n", __func__
,
2594 cpu_to_be32(tmp
[0]), cpu_to_be32(tmp
[1]),
2595 cpu_to_be32(tmp
[2]), cpu_to_be32(tmp
[3]));
2597 pmkids
= get_device_pmkids(usbdev
);
2598 if (IS_ERR(pmkids
)) {
2599 /* Couldn't read PMKID cache from device */
2600 return PTR_ERR(pmkids
);
2603 pmkids
= remove_pmkid(usbdev
, pmkids
, pmksa
, wiphy
->max_num_pmkids
);
2604 if (IS_ERR(pmkids
)) {
2605 /* not found, etc */
2606 return PTR_ERR(pmkids
);
2609 return set_device_pmkids(usbdev
, pmkids
);
2612 static int rndis_flush_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
)
2614 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2615 struct usbnet
*usbdev
= priv
->usbdev
;
2616 struct ndis_80211_pmkid pmkid
;
2618 netdev_dbg(usbdev
->net
, "%s()\n", __func__
);
2620 memset(&pmkid
, 0, sizeof(pmkid
));
2622 pmkid
.length
= cpu_to_le32(sizeof(pmkid
));
2623 pmkid
.bssid_info_count
= cpu_to_le32(0);
2625 return rndis_set_oid(usbdev
, OID_802_11_PMKID
, &pmkid
, sizeof(pmkid
));
2628 static int rndis_set_power_mgmt(struct wiphy
*wiphy
, struct net_device
*dev
,
2629 bool enabled
, int timeout
)
2631 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2632 struct usbnet
*usbdev
= priv
->usbdev
;
2637 if (priv
->device_type
!= RNDIS_BCM4320B
)
2640 netdev_dbg(usbdev
->net
, "%s(): %s, %d\n", __func__
,
2641 enabled
? "enabled" : "disabled",
2645 power_mode
= NDIS_80211_POWER_MODE_FAST_PSP
;
2647 power_mode
= NDIS_80211_POWER_MODE_CAM
;
2649 if (power_mode
== priv
->power_mode
)
2652 priv
->power_mode
= power_mode
;
2654 mode
= cpu_to_le32(power_mode
);
2655 ret
= rndis_set_oid(usbdev
, OID_802_11_POWER_MODE
, &mode
, sizeof(mode
));
2657 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_POWER_MODE -> %d\n",
2663 static int rndis_set_cqm_rssi_config(struct wiphy
*wiphy
,
2664 struct net_device
*dev
,
2665 s32 rssi_thold
, u32 rssi_hyst
)
2667 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2669 priv
->cqm_rssi_thold
= rssi_thold
;
2670 priv
->cqm_rssi_hyst
= rssi_hyst
;
2671 priv
->last_cqm_event_rssi
= 0;
2676 static void rndis_wlan_craft_connected_bss(struct usbnet
*usbdev
, u8
*bssid
,
2677 struct ndis_80211_assoc_info
*info
)
2679 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2680 struct ieee80211_channel
*channel
;
2681 struct ndis_80211_ssid ssid
;
2682 struct cfg80211_bss
*bss
;
2686 u16 beacon_interval
= 0;
2689 int len
, ret
, ie_len
;
2691 /* Get signal quality, in case of error use rssi=0 and ignore error. */
2694 ret
= rndis_query_oid(usbdev
, OID_802_11_RSSI
, &rssi
, &len
);
2695 signal
= level_to_qual(le32_to_cpu(rssi
));
2697 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_RSSI -> %d, "
2698 "rssi:%d, qual: %d\n", __func__
, ret
, le32_to_cpu(rssi
),
2699 level_to_qual(le32_to_cpu(rssi
)));
2701 /* Get AP capabilities */
2703 capability
= le16_to_cpu(info
->resp_ie
.capa
);
2705 /* Set atleast ESS/IBSS capability */
2706 capability
= (priv
->infra_mode
== NDIS_80211_INFRA_INFRA
) ?
2707 WLAN_CAPABILITY_ESS
: WLAN_CAPABILITY_IBSS
;
2710 /* Get channel and beacon interval */
2711 channel
= get_current_channel(usbdev
, &beacon_interval
);
2713 netdev_warn(usbdev
->net
, "%s(): could not get channel.\n",
2718 /* Get SSID, in case of error, use zero length SSID and ignore error. */
2720 memset(&ssid
, 0, sizeof(ssid
));
2721 ret
= rndis_query_oid(usbdev
, OID_802_11_SSID
, &ssid
, &len
);
2722 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_SSID -> %d, len: %d, ssid: "
2723 "'%.32s'\n", __func__
, ret
,
2724 le32_to_cpu(ssid
.length
), ssid
.essid
);
2726 if (le32_to_cpu(ssid
.length
) > 32)
2727 ssid
.length
= cpu_to_le32(32);
2729 ie_buf
[0] = WLAN_EID_SSID
;
2730 ie_buf
[1] = le32_to_cpu(ssid
.length
);
2731 memcpy(&ie_buf
[2], ssid
.essid
, le32_to_cpu(ssid
.length
));
2733 ie_len
= le32_to_cpu(ssid
.length
) + 2;
2738 netdev_dbg(usbdev
->net
, "%s(): channel:%d(freq), bssid:[%pM], tsf:%d, "
2739 "capa:%x, beacon int:%d, resp_ie(len:%d, essid:'%.32s'), "
2740 "signal:%d\n", __func__
, (channel
? channel
->center_freq
: -1),
2741 bssid
, (u32
)timestamp
, capability
, beacon_interval
, ie_len
,
2742 ssid
.essid
, signal
);
2744 bss
= cfg80211_inform_bss(priv
->wdev
.wiphy
, channel
, bssid
,
2745 timestamp
, capability
, beacon_interval
, ie_buf
, ie_len
,
2746 signal
, GFP_KERNEL
);
2747 cfg80211_put_bss(bss
);
2751 * workers, indication handlers, device poller
2753 static void rndis_wlan_do_link_up_work(struct usbnet
*usbdev
)
2755 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2756 struct ndis_80211_assoc_info
*info
= NULL
;
2758 int resp_ie_len
, req_ie_len
;
2759 u8
*req_ie
, *resp_ie
;
2761 bool roamed
= false;
2764 if (priv
->infra_mode
== NDIS_80211_INFRA_INFRA
&& priv
->connected
) {
2765 /* received media connect indication while connected, either
2766 * device reassociated with same AP or roamed to new. */
2775 if (priv
->infra_mode
== NDIS_80211_INFRA_INFRA
) {
2776 info
= kzalloc(CONTROL_BUFFER_SIZE
, GFP_KERNEL
);
2778 /* No memory? Try resume work later */
2779 set_bit(WORK_LINK_UP
, &priv
->work_pending
);
2780 queue_work(priv
->workqueue
, &priv
->work
);
2784 /* Get association info IEs from device. */
2785 ret
= get_association_info(usbdev
, info
, CONTROL_BUFFER_SIZE
);
2787 req_ie_len
= le32_to_cpu(info
->req_ie_length
);
2788 if (req_ie_len
> 0) {
2789 offset
= le32_to_cpu(info
->offset_req_ies
);
2791 if (offset
> CONTROL_BUFFER_SIZE
)
2792 offset
= CONTROL_BUFFER_SIZE
;
2794 req_ie
= (u8
*)info
+ offset
;
2796 if (offset
+ req_ie_len
> CONTROL_BUFFER_SIZE
)
2798 CONTROL_BUFFER_SIZE
- offset
;
2801 resp_ie_len
= le32_to_cpu(info
->resp_ie_length
);
2802 if (resp_ie_len
> 0) {
2803 offset
= le32_to_cpu(info
->offset_resp_ies
);
2805 if (offset
> CONTROL_BUFFER_SIZE
)
2806 offset
= CONTROL_BUFFER_SIZE
;
2808 resp_ie
= (u8
*)info
+ offset
;
2810 if (offset
+ resp_ie_len
> CONTROL_BUFFER_SIZE
)
2812 CONTROL_BUFFER_SIZE
- offset
;
2815 /* Since rndis_wlan_craft_connected_bss() might use info
2816 * later and expects info to contain valid data if
2817 * non-null, free info and set NULL here.
2822 } else if (WARN_ON(priv
->infra_mode
!= NDIS_80211_INFRA_ADHOC
))
2825 ret
= get_bssid(usbdev
, bssid
);
2827 memset(bssid
, 0, sizeof(bssid
));
2829 netdev_dbg(usbdev
->net
, "link up work: [%pM]%s\n",
2830 bssid
, roamed
? " roamed" : "");
2832 /* Internal bss list in device should contain at least the currently
2833 * connected bss and we can get it to cfg80211 with
2834 * rndis_check_bssid_list().
2836 * NDIS spec says: "If the device is associated, but the associated
2837 * BSSID is not in its BSSID scan list, then the driver must add an
2838 * entry for the BSSID at the end of the data that it returns in
2839 * response to query of OID_802_11_BSSID_LIST."
2841 * NOTE: Seems to be true for BCM4320b variant, but not BCM4320a.
2844 rndis_check_bssid_list(usbdev
, bssid
, &match_bss
);
2846 if (!is_zero_ether_addr(bssid
) && !match_bss
) {
2847 /* Couldn't get bss from device, we need to manually craft bss
2850 rndis_wlan_craft_connected_bss(usbdev
, bssid
, info
);
2853 if (priv
->infra_mode
== NDIS_80211_INFRA_INFRA
) {
2855 cfg80211_connect_result(usbdev
->net
, bssid
, req_ie
,
2856 req_ie_len
, resp_ie
,
2857 resp_ie_len
, 0, GFP_KERNEL
);
2859 cfg80211_roamed(usbdev
->net
,
2860 get_current_channel(usbdev
, NULL
),
2861 bssid
, req_ie
, req_ie_len
,
2862 resp_ie
, resp_ie_len
, GFP_KERNEL
);
2863 } else if (priv
->infra_mode
== NDIS_80211_INFRA_ADHOC
)
2864 cfg80211_ibss_joined(usbdev
->net
, bssid
, GFP_KERNEL
);
2869 priv
->connected
= true;
2870 memcpy(priv
->bssid
, bssid
, ETH_ALEN
);
2872 usbnet_resume_rx(usbdev
);
2873 netif_carrier_on(usbdev
->net
);
2876 static void rndis_wlan_do_link_down_work(struct usbnet
*usbdev
)
2878 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2880 if (priv
->connected
) {
2881 priv
->connected
= false;
2882 memset(priv
->bssid
, 0, ETH_ALEN
);
2884 deauthenticate(usbdev
);
2886 cfg80211_disconnected(usbdev
->net
, 0, NULL
, 0, GFP_KERNEL
);
2889 netif_carrier_off(usbdev
->net
);
2892 static void rndis_wlan_worker(struct work_struct
*work
)
2894 struct rndis_wlan_private
*priv
=
2895 container_of(work
, struct rndis_wlan_private
, work
);
2896 struct usbnet
*usbdev
= priv
->usbdev
;
2898 if (test_and_clear_bit(WORK_LINK_UP
, &priv
->work_pending
))
2899 rndis_wlan_do_link_up_work(usbdev
);
2901 if (test_and_clear_bit(WORK_LINK_DOWN
, &priv
->work_pending
))
2902 rndis_wlan_do_link_down_work(usbdev
);
2904 if (test_and_clear_bit(WORK_SET_MULTICAST_LIST
, &priv
->work_pending
))
2905 set_multicast_list(usbdev
);
2908 static void rndis_wlan_set_multicast_list(struct net_device
*dev
)
2910 struct usbnet
*usbdev
= netdev_priv(dev
);
2911 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2913 if (test_bit(WORK_SET_MULTICAST_LIST
, &priv
->work_pending
))
2916 set_bit(WORK_SET_MULTICAST_LIST
, &priv
->work_pending
);
2917 queue_work(priv
->workqueue
, &priv
->work
);
2920 static void rndis_wlan_auth_indication(struct usbnet
*usbdev
,
2921 struct ndis_80211_status_indication
*indication
,
2926 int flags
, buflen
, key_id
;
2927 bool pairwise_error
, group_error
;
2928 struct ndis_80211_auth_request
*auth_req
;
2929 enum nl80211_key_type key_type
;
2931 /* must have at least one array entry */
2932 if (len
< offsetof(struct ndis_80211_status_indication
, u
) +
2933 sizeof(struct ndis_80211_auth_request
)) {
2934 netdev_info(usbdev
->net
, "authentication indication: too short message (%i)\n",
2939 buf
= (void *)&indication
->u
.auth_request
[0];
2940 buflen
= len
- offsetof(struct ndis_80211_status_indication
, u
);
2942 while (buflen
>= sizeof(*auth_req
)) {
2943 auth_req
= (void *)buf
;
2945 flags
= le32_to_cpu(auth_req
->flags
);
2946 pairwise_error
= false;
2947 group_error
= false;
2950 type
= "reauth request";
2952 type
= "key update request";
2954 pairwise_error
= true;
2955 type
= "pairwise_error";
2959 type
= "group_error";
2962 netdev_info(usbdev
->net
, "authentication indication: %s (0x%08x)\n",
2963 type
, le32_to_cpu(auth_req
->flags
));
2965 if (pairwise_error
) {
2966 key_type
= NL80211_KEYTYPE_PAIRWISE
;
2969 cfg80211_michael_mic_failure(usbdev
->net
,
2971 key_type
, key_id
, NULL
,
2976 key_type
= NL80211_KEYTYPE_GROUP
;
2979 cfg80211_michael_mic_failure(usbdev
->net
,
2981 key_type
, key_id
, NULL
,
2985 buflen
-= le32_to_cpu(auth_req
->length
);
2986 buf
+= le32_to_cpu(auth_req
->length
);
2990 static void rndis_wlan_pmkid_cand_list_indication(struct usbnet
*usbdev
,
2991 struct ndis_80211_status_indication
*indication
,
2994 struct ndis_80211_pmkid_cand_list
*cand_list
;
2995 int list_len
, expected_len
, i
;
2997 if (len
< offsetof(struct ndis_80211_status_indication
, u
) +
2998 sizeof(struct ndis_80211_pmkid_cand_list
)) {
2999 netdev_info(usbdev
->net
, "pmkid candidate list indication: too short message (%i)\n",
3004 list_len
= le32_to_cpu(indication
->u
.cand_list
.num_candidates
) *
3005 sizeof(struct ndis_80211_pmkid_candidate
);
3006 expected_len
= sizeof(struct ndis_80211_pmkid_cand_list
) + list_len
+
3007 offsetof(struct ndis_80211_status_indication
, u
);
3009 if (len
< expected_len
) {
3010 netdev_info(usbdev
->net
, "pmkid candidate list indication: list larger than buffer (%i < %i)\n",
3015 cand_list
= &indication
->u
.cand_list
;
3017 netdev_info(usbdev
->net
, "pmkid candidate list indication: version %i, candidates %i\n",
3018 le32_to_cpu(cand_list
->version
),
3019 le32_to_cpu(cand_list
->num_candidates
));
3021 if (le32_to_cpu(cand_list
->version
) != 1)
3024 for (i
= 0; i
< le32_to_cpu(cand_list
->num_candidates
); i
++) {
3025 struct ndis_80211_pmkid_candidate
*cand
=
3026 &cand_list
->candidate_list
[i
];
3027 bool preauth
= !!(cand
->flags
& NDIS_80211_PMKID_CAND_PREAUTH
);
3029 netdev_dbg(usbdev
->net
, "cand[%i]: flags: 0x%08x, preauth: %d, bssid: %pM\n",
3030 i
, le32_to_cpu(cand
->flags
), preauth
, cand
->bssid
);
3032 cfg80211_pmksa_candidate_notify(usbdev
->net
, i
, cand
->bssid
,
3033 preauth
, GFP_ATOMIC
);
3037 static void rndis_wlan_media_specific_indication(struct usbnet
*usbdev
,
3038 struct rndis_indicate
*msg
, int buflen
)
3040 struct ndis_80211_status_indication
*indication
;
3043 offset
= offsetof(struct rndis_indicate
, status
) +
3044 le32_to_cpu(msg
->offset
);
3045 len
= le32_to_cpu(msg
->length
);
3048 netdev_info(usbdev
->net
, "media specific indication, ignore too short message (%i < 8)\n",
3053 if (offset
+ len
> buflen
) {
3054 netdev_info(usbdev
->net
, "media specific indication, too large to fit to buffer (%i > %i)\n",
3055 offset
+ len
, buflen
);
3059 indication
= (void *)((u8
*)msg
+ offset
);
3061 switch (le32_to_cpu(indication
->status_type
)) {
3062 case NDIS_80211_STATUSTYPE_RADIOSTATE
:
3063 netdev_info(usbdev
->net
, "radio state indication: %i\n",
3064 le32_to_cpu(indication
->u
.radio_status
));
3067 case NDIS_80211_STATUSTYPE_MEDIASTREAMMODE
:
3068 netdev_info(usbdev
->net
, "media stream mode indication: %i\n",
3069 le32_to_cpu(indication
->u
.media_stream_mode
));
3072 case NDIS_80211_STATUSTYPE_AUTHENTICATION
:
3073 rndis_wlan_auth_indication(usbdev
, indication
, len
);
3076 case NDIS_80211_STATUSTYPE_PMKID_CANDIDATELIST
:
3077 rndis_wlan_pmkid_cand_list_indication(usbdev
, indication
, len
);
3081 netdev_info(usbdev
->net
, "media specific indication: unknown status type 0x%08x\n",
3082 le32_to_cpu(indication
->status_type
));
3086 static void rndis_wlan_indication(struct usbnet
*usbdev
, void *ind
, int buflen
)
3088 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3089 struct rndis_indicate
*msg
= ind
;
3091 switch (msg
->status
) {
3092 case RNDIS_STATUS_MEDIA_CONNECT
:
3093 if (priv
->current_command_oid
== OID_802_11_ADD_KEY
) {
3094 /* OID_802_11_ADD_KEY causes sometimes extra
3095 * "media connect" indications which confuses driver
3096 * and userspace to think that device is
3097 * roaming/reassociating when it isn't.
3099 netdev_dbg(usbdev
->net
, "ignored OID_802_11_ADD_KEY triggered 'media connect'\n");
3103 usbnet_pause_rx(usbdev
);
3105 netdev_info(usbdev
->net
, "media connect\n");
3107 /* queue work to avoid recursive calls into rndis_command */
3108 set_bit(WORK_LINK_UP
, &priv
->work_pending
);
3109 queue_work(priv
->workqueue
, &priv
->work
);
3112 case RNDIS_STATUS_MEDIA_DISCONNECT
:
3113 netdev_info(usbdev
->net
, "media disconnect\n");
3115 /* queue work to avoid recursive calls into rndis_command */
3116 set_bit(WORK_LINK_DOWN
, &priv
->work_pending
);
3117 queue_work(priv
->workqueue
, &priv
->work
);
3120 case RNDIS_STATUS_MEDIA_SPECIFIC_INDICATION
:
3121 rndis_wlan_media_specific_indication(usbdev
, msg
, buflen
);
3125 netdev_info(usbdev
->net
, "indication: 0x%08x\n",
3126 le32_to_cpu(msg
->status
));
3131 static int rndis_wlan_get_caps(struct usbnet
*usbdev
, struct wiphy
*wiphy
)
3136 } networks_supported
;
3137 struct ndis_80211_capability
*caps
;
3138 u8 caps_buf
[sizeof(*caps
) + sizeof(caps
->auth_encr_pair
) * 16];
3139 int len
, retval
, i
, n
;
3140 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3142 /* determine supported modes */
3143 len
= sizeof(networks_supported
);
3144 retval
= rndis_query_oid(usbdev
, OID_802_11_NETWORK_TYPES_SUPPORTED
,
3145 &networks_supported
, &len
);
3147 n
= le32_to_cpu(networks_supported
.num_items
);
3150 for (i
= 0; i
< n
; i
++) {
3151 switch (le32_to_cpu(networks_supported
.items
[i
])) {
3152 case NDIS_80211_TYPE_FREQ_HOP
:
3153 case NDIS_80211_TYPE_DIRECT_SEQ
:
3154 priv
->caps
|= CAP_MODE_80211B
;
3156 case NDIS_80211_TYPE_OFDM_A
:
3157 priv
->caps
|= CAP_MODE_80211A
;
3159 case NDIS_80211_TYPE_OFDM_G
:
3160 priv
->caps
|= CAP_MODE_80211G
;
3166 /* get device 802.11 capabilities, number of PMKIDs */
3167 caps
= (struct ndis_80211_capability
*)caps_buf
;
3168 len
= sizeof(caps_buf
);
3169 retval
= rndis_query_oid(usbdev
, OID_802_11_CAPABILITY
, caps
, &len
);
3171 netdev_dbg(usbdev
->net
, "OID_802_11_CAPABILITY -> len %d, "
3172 "ver %d, pmkids %d, auth-encr-pairs %d\n",
3173 le32_to_cpu(caps
->length
),
3174 le32_to_cpu(caps
->version
),
3175 le32_to_cpu(caps
->num_pmkids
),
3176 le32_to_cpu(caps
->num_auth_encr_pair
));
3177 wiphy
->max_num_pmkids
= le32_to_cpu(caps
->num_pmkids
);
3179 wiphy
->max_num_pmkids
= 0;
3184 static void rndis_do_cqm(struct usbnet
*usbdev
, s32 rssi
)
3186 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3187 enum nl80211_cqm_rssi_threshold_event event
;
3188 int thold
, hyst
, last_event
;
3190 if (priv
->cqm_rssi_thold
>= 0 || rssi
>= 0)
3192 if (priv
->infra_mode
!= NDIS_80211_INFRA_INFRA
)
3195 last_event
= priv
->last_cqm_event_rssi
;
3196 thold
= priv
->cqm_rssi_thold
;
3197 hyst
= priv
->cqm_rssi_hyst
;
3199 if (rssi
< thold
&& (last_event
== 0 || rssi
< last_event
- hyst
))
3200 event
= NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW
;
3201 else if (rssi
> thold
&& (last_event
== 0 || rssi
> last_event
+ hyst
))
3202 event
= NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH
;
3206 priv
->last_cqm_event_rssi
= rssi
;
3207 cfg80211_cqm_rssi_notify(usbdev
->net
, event
, GFP_KERNEL
);
3210 #define DEVICE_POLLER_JIFFIES (HZ)
3211 static void rndis_device_poller(struct work_struct
*work
)
3213 struct rndis_wlan_private
*priv
=
3214 container_of(work
, struct rndis_wlan_private
,
3215 dev_poller_work
.work
);
3216 struct usbnet
*usbdev
= priv
->usbdev
;
3219 int update_jiffies
= DEVICE_POLLER_JIFFIES
;
3222 /* Only check/do workaround when connected. Calling is_associated()
3223 * also polls device with rndis_command() and catches for media link
3226 if (!is_associated(usbdev
)) {
3227 /* Workaround bad scanning in BCM4320a devices with active
3228 * background scanning when not associated.
3230 if (priv
->device_type
== RNDIS_BCM4320A
&& priv
->radio_on
&&
3231 !priv
->scan_request
) {
3232 /* Get previous scan results */
3233 rndis_check_bssid_list(usbdev
, NULL
, NULL
);
3235 /* Initiate new scan */
3236 rndis_start_bssid_list_scan(usbdev
);
3243 ret
= rndis_query_oid(usbdev
, OID_802_11_RSSI
, &rssi
, &len
);
3245 priv
->last_qual
= level_to_qual(le32_to_cpu(rssi
));
3246 rndis_do_cqm(usbdev
, le32_to_cpu(rssi
));
3249 netdev_dbg(usbdev
->net
, "dev-poller: OID_802_11_RSSI -> %d, rssi:%d, qual: %d\n",
3250 ret
, le32_to_cpu(rssi
), level_to_qual(le32_to_cpu(rssi
)));
3252 /* Workaround transfer stalls on poor quality links.
3253 * TODO: find right way to fix these stalls (as stalls do not happen
3254 * with ndiswrapper/windows driver). */
3255 if (priv
->param_workaround_interval
> 0 && priv
->last_qual
<= 25) {
3256 /* Decrease stats worker interval to catch stalls.
3257 * faster. Faster than 400-500ms causes packet loss,
3258 * Slower doesn't catch stalls fast enough.
3260 j
= msecs_to_jiffies(priv
->param_workaround_interval
);
3261 if (j
> DEVICE_POLLER_JIFFIES
)
3262 j
= DEVICE_POLLER_JIFFIES
;
3267 /* Send scan OID. Use of both OIDs is required to get device
3270 tmp
= cpu_to_le32(1);
3271 rndis_set_oid(usbdev
, OID_802_11_BSSID_LIST_SCAN
, &tmp
,
3274 len
= CONTROL_BUFFER_SIZE
;
3275 buf
= kmalloc(len
, GFP_KERNEL
);
3279 rndis_query_oid(usbdev
, OID_802_11_BSSID_LIST
, buf
, &len
);
3284 if (update_jiffies
>= HZ
)
3285 update_jiffies
= round_jiffies_relative(update_jiffies
);
3287 j
= round_jiffies_relative(update_jiffies
);
3288 if (abs(j
- update_jiffies
) <= 10)
3292 queue_delayed_work(priv
->workqueue
, &priv
->dev_poller_work
,
3297 * driver/device initialization
3299 static void rndis_copy_module_params(struct usbnet
*usbdev
, int device_type
)
3301 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3303 priv
->device_type
= device_type
;
3305 priv
->param_country
[0] = modparam_country
[0];
3306 priv
->param_country
[1] = modparam_country
[1];
3307 priv
->param_country
[2] = 0;
3308 priv
->param_frameburst
= modparam_frameburst
;
3309 priv
->param_afterburner
= modparam_afterburner
;
3310 priv
->param_power_save
= modparam_power_save
;
3311 priv
->param_power_output
= modparam_power_output
;
3312 priv
->param_roamtrigger
= modparam_roamtrigger
;
3313 priv
->param_roamdelta
= modparam_roamdelta
;
3315 priv
->param_country
[0] = toupper(priv
->param_country
[0]);
3316 priv
->param_country
[1] = toupper(priv
->param_country
[1]);
3317 /* doesn't support EU as country code, use FI instead */
3318 if (!strcmp(priv
->param_country
, "EU"))
3319 strcpy(priv
->param_country
, "FI");
3321 if (priv
->param_power_save
< 0)
3322 priv
->param_power_save
= 0;
3323 else if (priv
->param_power_save
> 2)
3324 priv
->param_power_save
= 2;
3326 if (priv
->param_power_output
< 0)
3327 priv
->param_power_output
= 0;
3328 else if (priv
->param_power_output
> 3)
3329 priv
->param_power_output
= 3;
3331 if (priv
->param_roamtrigger
< -80)
3332 priv
->param_roamtrigger
= -80;
3333 else if (priv
->param_roamtrigger
> -60)
3334 priv
->param_roamtrigger
= -60;
3336 if (priv
->param_roamdelta
< 0)
3337 priv
->param_roamdelta
= 0;
3338 else if (priv
->param_roamdelta
> 2)
3339 priv
->param_roamdelta
= 2;
3341 if (modparam_workaround_interval
< 0)
3342 priv
->param_workaround_interval
= 500;
3344 priv
->param_workaround_interval
= modparam_workaround_interval
;
3347 static int unknown_early_init(struct usbnet
*usbdev
)
3349 /* copy module parameters for unknown so that iwconfig reports txpower
3350 * and workaround parameter is copied to private structure correctly.
3352 rndis_copy_module_params(usbdev
, RNDIS_UNKNOWN
);
3354 /* This is unknown device, so do not try set configuration parameters.
3360 static int bcm4320a_early_init(struct usbnet
*usbdev
)
3362 /* copy module parameters for bcm4320a so that iwconfig reports txpower
3363 * and workaround parameter is copied to private structure correctly.
3365 rndis_copy_module_params(usbdev
, RNDIS_BCM4320A
);
3367 /* bcm4320a doesn't handle configuration parameters well. Try
3368 * set any and you get partially zeroed mac and broken device.
3374 static int bcm4320b_early_init(struct usbnet
*usbdev
)
3376 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3379 rndis_copy_module_params(usbdev
, RNDIS_BCM4320B
);
3381 /* Early initialization settings, setting these won't have effect
3382 * if called after generic_rndis_bind().
3385 rndis_set_config_parameter_str(usbdev
, "Country", priv
->param_country
);
3386 rndis_set_config_parameter_str(usbdev
, "FrameBursting",
3387 priv
->param_frameburst
? "1" : "0");
3388 rndis_set_config_parameter_str(usbdev
, "Afterburner",
3389 priv
->param_afterburner
? "1" : "0");
3390 sprintf(buf
, "%d", priv
->param_power_save
);
3391 rndis_set_config_parameter_str(usbdev
, "PowerSaveMode", buf
);
3392 sprintf(buf
, "%d", priv
->param_power_output
);
3393 rndis_set_config_parameter_str(usbdev
, "PwrOut", buf
);
3394 sprintf(buf
, "%d", priv
->param_roamtrigger
);
3395 rndis_set_config_parameter_str(usbdev
, "RoamTrigger", buf
);
3396 sprintf(buf
, "%d", priv
->param_roamdelta
);
3397 rndis_set_config_parameter_str(usbdev
, "RoamDelta", buf
);
3402 /* same as rndis_netdev_ops but with local multicast handler */
3403 static const struct net_device_ops rndis_wlan_netdev_ops
= {
3404 .ndo_open
= usbnet_open
,
3405 .ndo_stop
= usbnet_stop
,
3406 .ndo_start_xmit
= usbnet_start_xmit
,
3407 .ndo_tx_timeout
= usbnet_tx_timeout
,
3408 .ndo_set_mac_address
= eth_mac_addr
,
3409 .ndo_validate_addr
= eth_validate_addr
,
3410 .ndo_set_rx_mode
= rndis_wlan_set_multicast_list
,
3413 static int rndis_wlan_bind(struct usbnet
*usbdev
, struct usb_interface
*intf
)
3415 struct wiphy
*wiphy
;
3416 struct rndis_wlan_private
*priv
;
3420 /* allocate wiphy and rndis private data
3421 * NOTE: We only support a single virtual interface, so wiphy
3422 * and wireless_dev are somewhat synonymous for this device.
3424 wiphy
= wiphy_new(&rndis_config_ops
, sizeof(struct rndis_wlan_private
));
3428 priv
= wiphy_priv(wiphy
);
3429 usbdev
->net
->ieee80211_ptr
= &priv
->wdev
;
3430 priv
->wdev
.wiphy
= wiphy
;
3431 priv
->wdev
.iftype
= NL80211_IFTYPE_STATION
;
3433 /* These have to be initialized before calling generic_rndis_bind().
3434 * Otherwise we'll be in big trouble in rndis_wlan_early_init().
3436 usbdev
->driver_priv
= priv
;
3437 priv
->usbdev
= usbdev
;
3439 mutex_init(&priv
->command_lock
);
3441 /* because rndis_command() sleeps we need to use workqueue */
3442 priv
->workqueue
= create_singlethread_workqueue("rndis_wlan");
3443 INIT_WORK(&priv
->work
, rndis_wlan_worker
);
3444 INIT_DELAYED_WORK(&priv
->dev_poller_work
, rndis_device_poller
);
3445 INIT_DELAYED_WORK(&priv
->scan_work
, rndis_get_scan_results
);
3447 /* try bind rndis_host */
3448 retval
= generic_rndis_bind(usbdev
, intf
, FLAG_RNDIS_PHYM_WIRELESS
);
3452 /* generic_rndis_bind set packet filter to multicast_all+
3453 * promisc mode which doesn't work well for our devices (device
3454 * picks up rssi to closest station instead of to access point).
3456 * rndis_host wants to avoid all OID as much as possible
3457 * so do promisc/multicast handling in rndis_wlan.
3459 usbdev
->net
->netdev_ops
= &rndis_wlan_netdev_ops
;
3461 tmp
= RNDIS_PACKET_TYPE_DIRECTED
| RNDIS_PACKET_TYPE_BROADCAST
;
3462 retval
= rndis_set_oid(usbdev
, OID_GEN_CURRENT_PACKET_FILTER
, &tmp
,
3466 retval
= rndis_query_oid(usbdev
, OID_802_3_MAXIMUM_LIST_SIZE
, &tmp
,
3468 priv
->multicast_size
= le32_to_cpu(tmp
);
3469 if (retval
< 0 || priv
->multicast_size
< 0)
3470 priv
->multicast_size
= 0;
3471 if (priv
->multicast_size
> 0)
3472 usbdev
->net
->flags
|= IFF_MULTICAST
;
3474 usbdev
->net
->flags
&= ~IFF_MULTICAST
;
3476 /* fill-out wiphy structure and register w/ cfg80211 */
3477 memcpy(wiphy
->perm_addr
, usbdev
->net
->dev_addr
, ETH_ALEN
);
3478 wiphy
->privid
= rndis_wiphy_privid
;
3479 wiphy
->interface_modes
= BIT(NL80211_IFTYPE_STATION
)
3480 | BIT(NL80211_IFTYPE_ADHOC
);
3481 wiphy
->max_scan_ssids
= 1;
3483 /* TODO: fill-out band/encr information based on priv->caps */
3484 rndis_wlan_get_caps(usbdev
, wiphy
);
3486 memcpy(priv
->channels
, rndis_channels
, sizeof(rndis_channels
));
3487 memcpy(priv
->rates
, rndis_rates
, sizeof(rndis_rates
));
3488 priv
->band
.channels
= priv
->channels
;
3489 priv
->band
.n_channels
= ARRAY_SIZE(rndis_channels
);
3490 priv
->band
.bitrates
= priv
->rates
;
3491 priv
->band
.n_bitrates
= ARRAY_SIZE(rndis_rates
);
3492 wiphy
->bands
[IEEE80211_BAND_2GHZ
] = &priv
->band
;
3493 wiphy
->signal_type
= CFG80211_SIGNAL_TYPE_UNSPEC
;
3495 memcpy(priv
->cipher_suites
, rndis_cipher_suites
,
3496 sizeof(rndis_cipher_suites
));
3497 wiphy
->cipher_suites
= priv
->cipher_suites
;
3498 wiphy
->n_cipher_suites
= ARRAY_SIZE(rndis_cipher_suites
);
3500 set_wiphy_dev(wiphy
, &usbdev
->udev
->dev
);
3502 if (wiphy_register(wiphy
)) {
3507 set_default_iw_params(usbdev
);
3509 priv
->power_mode
= -1;
3511 /* set default rts/frag */
3512 rndis_set_wiphy_params(wiphy
,
3513 WIPHY_PARAM_FRAG_THRESHOLD
| WIPHY_PARAM_RTS_THRESHOLD
);
3515 /* turn radio off on init */
3516 priv
->radio_on
= false;
3517 disassociate(usbdev
, false);
3518 netif_carrier_off(usbdev
->net
);
3523 cancel_delayed_work_sync(&priv
->dev_poller_work
);
3524 cancel_delayed_work_sync(&priv
->scan_work
);
3525 cancel_work_sync(&priv
->work
);
3526 flush_workqueue(priv
->workqueue
);
3527 destroy_workqueue(priv
->workqueue
);
3533 static void rndis_wlan_unbind(struct usbnet
*usbdev
, struct usb_interface
*intf
)
3535 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3537 /* turn radio off */
3538 disassociate(usbdev
, false);
3540 cancel_delayed_work_sync(&priv
->dev_poller_work
);
3541 cancel_delayed_work_sync(&priv
->scan_work
);
3542 cancel_work_sync(&priv
->work
);
3543 flush_workqueue(priv
->workqueue
);
3544 destroy_workqueue(priv
->workqueue
);
3546 rndis_unbind(usbdev
, intf
);
3548 wiphy_unregister(priv
->wdev
.wiphy
);
3549 wiphy_free(priv
->wdev
.wiphy
);
3552 static int rndis_wlan_reset(struct usbnet
*usbdev
)
3554 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3557 netdev_dbg(usbdev
->net
, "%s()\n", __func__
);
3559 retval
= rndis_reset(usbdev
);
3561 netdev_warn(usbdev
->net
, "rndis_reset failed: %d\n", retval
);
3563 /* rndis_reset cleared multicast list, so restore here.
3564 (set_multicast_list() also turns on current packet filter) */
3565 set_multicast_list(usbdev
);
3567 queue_delayed_work(priv
->workqueue
, &priv
->dev_poller_work
,
3568 round_jiffies_relative(DEVICE_POLLER_JIFFIES
));
3570 return deauthenticate(usbdev
);
3573 static int rndis_wlan_stop(struct usbnet
*usbdev
)
3575 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3579 netdev_dbg(usbdev
->net
, "%s()\n", __func__
);
3581 retval
= disassociate(usbdev
, false);
3583 priv
->work_pending
= 0;
3584 cancel_delayed_work_sync(&priv
->dev_poller_work
);
3585 cancel_delayed_work_sync(&priv
->scan_work
);
3586 cancel_work_sync(&priv
->work
);
3587 flush_workqueue(priv
->workqueue
);
3589 if (priv
->scan_request
) {
3590 cfg80211_scan_done(priv
->scan_request
, true);
3591 priv
->scan_request
= NULL
;
3594 /* Set current packet filter zero to block receiving data packets from
3597 rndis_set_oid(usbdev
, OID_GEN_CURRENT_PACKET_FILTER
, &filter
,
3603 static const struct driver_info bcm4320b_info
= {
3604 .description
= "Wireless RNDIS device, BCM4320b based",
3605 .flags
= FLAG_WLAN
| FLAG_FRAMING_RN
| FLAG_NO_SETINT
|
3606 FLAG_AVOID_UNLINK_URBS
,
3607 .bind
= rndis_wlan_bind
,
3608 .unbind
= rndis_wlan_unbind
,
3609 .status
= rndis_status
,
3610 .rx_fixup
= rndis_rx_fixup
,
3611 .tx_fixup
= rndis_tx_fixup
,
3612 .reset
= rndis_wlan_reset
,
3613 .stop
= rndis_wlan_stop
,
3614 .early_init
= bcm4320b_early_init
,
3615 .indication
= rndis_wlan_indication
,
3618 static const struct driver_info bcm4320a_info
= {
3619 .description
= "Wireless RNDIS device, BCM4320a based",
3620 .flags
= FLAG_WLAN
| FLAG_FRAMING_RN
| FLAG_NO_SETINT
|
3621 FLAG_AVOID_UNLINK_URBS
,
3622 .bind
= rndis_wlan_bind
,
3623 .unbind
= rndis_wlan_unbind
,
3624 .status
= rndis_status
,
3625 .rx_fixup
= rndis_rx_fixup
,
3626 .tx_fixup
= rndis_tx_fixup
,
3627 .reset
= rndis_wlan_reset
,
3628 .stop
= rndis_wlan_stop
,
3629 .early_init
= bcm4320a_early_init
,
3630 .indication
= rndis_wlan_indication
,
3633 static const struct driver_info rndis_wlan_info
= {
3634 .description
= "Wireless RNDIS device",
3635 .flags
= FLAG_WLAN
| FLAG_FRAMING_RN
| FLAG_NO_SETINT
|
3636 FLAG_AVOID_UNLINK_URBS
,
3637 .bind
= rndis_wlan_bind
,
3638 .unbind
= rndis_wlan_unbind
,
3639 .status
= rndis_status
,
3640 .rx_fixup
= rndis_rx_fixup
,
3641 .tx_fixup
= rndis_tx_fixup
,
3642 .reset
= rndis_wlan_reset
,
3643 .stop
= rndis_wlan_stop
,
3644 .early_init
= unknown_early_init
,
3645 .indication
= rndis_wlan_indication
,
3648 /*-------------------------------------------------------------------------*/
3650 static const struct usb_device_id products
[] = {
3651 #define RNDIS_MASTER_INTERFACE \
3652 .bInterfaceClass = USB_CLASS_COMM, \
3653 .bInterfaceSubClass = 2 /* ACM */, \
3654 .bInterfaceProtocol = 0x0ff
3656 /* INF driver for these devices have DriverVer >= 4.xx.xx.xx and many custom
3657 * parameters available. Chipset marked as 'BCM4320SKFBG' in NDISwrapper-wiki.
3660 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3661 | USB_DEVICE_ID_MATCH_DEVICE
,
3663 .idProduct
= 0x00bc, /* Buffalo WLI-U2-KG125S */
3664 RNDIS_MASTER_INTERFACE
,
3665 .driver_info
= (unsigned long) &bcm4320b_info
,
3667 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3668 | USB_DEVICE_ID_MATCH_DEVICE
,
3670 .idProduct
= 0x011b, /* U.S. Robotics USR5421 */
3671 RNDIS_MASTER_INTERFACE
,
3672 .driver_info
= (unsigned long) &bcm4320b_info
,
3674 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3675 | USB_DEVICE_ID_MATCH_DEVICE
,
3677 .idProduct
= 0x011b, /* Belkin F5D7051 */
3678 RNDIS_MASTER_INTERFACE
,
3679 .driver_info
= (unsigned long) &bcm4320b_info
,
3681 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3682 | USB_DEVICE_ID_MATCH_DEVICE
,
3683 .idVendor
= 0x1799, /* Belkin has two vendor ids */
3684 .idProduct
= 0x011b, /* Belkin F5D7051 */
3685 RNDIS_MASTER_INTERFACE
,
3686 .driver_info
= (unsigned long) &bcm4320b_info
,
3688 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3689 | USB_DEVICE_ID_MATCH_DEVICE
,
3691 .idProduct
= 0x0014, /* Linksys WUSB54GSv2 */
3692 RNDIS_MASTER_INTERFACE
,
3693 .driver_info
= (unsigned long) &bcm4320b_info
,
3695 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3696 | USB_DEVICE_ID_MATCH_DEVICE
,
3698 .idProduct
= 0x0026, /* Linksys WUSB54GSC */
3699 RNDIS_MASTER_INTERFACE
,
3700 .driver_info
= (unsigned long) &bcm4320b_info
,
3702 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3703 | USB_DEVICE_ID_MATCH_DEVICE
,
3705 .idProduct
= 0x1717, /* Asus WL169gE */
3706 RNDIS_MASTER_INTERFACE
,
3707 .driver_info
= (unsigned long) &bcm4320b_info
,
3709 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3710 | USB_DEVICE_ID_MATCH_DEVICE
,
3712 .idProduct
= 0xd11b, /* Eminent EM4045 */
3713 RNDIS_MASTER_INTERFACE
,
3714 .driver_info
= (unsigned long) &bcm4320b_info
,
3716 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3717 | USB_DEVICE_ID_MATCH_DEVICE
,
3719 .idProduct
= 0x0715, /* BT Voyager 1055 */
3720 RNDIS_MASTER_INTERFACE
,
3721 .driver_info
= (unsigned long) &bcm4320b_info
,
3723 /* These devices have DriverVer < 4.xx.xx.xx and do not have any custom
3724 * parameters available, hardware probably contain older firmware version with
3725 * no way of updating. Chipset marked as 'BCM4320????' in NDISwrapper-wiki.
3728 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3729 | USB_DEVICE_ID_MATCH_DEVICE
,
3731 .idProduct
= 0x000e, /* Linksys WUSB54GSv1 */
3732 RNDIS_MASTER_INTERFACE
,
3733 .driver_info
= (unsigned long) &bcm4320a_info
,
3735 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3736 | USB_DEVICE_ID_MATCH_DEVICE
,
3738 .idProduct
= 0x0111, /* U.S. Robotics USR5420 */
3739 RNDIS_MASTER_INTERFACE
,
3740 .driver_info
= (unsigned long) &bcm4320a_info
,
3742 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3743 | USB_DEVICE_ID_MATCH_DEVICE
,
3745 .idProduct
= 0x004b, /* BUFFALO WLI-USB-G54 */
3746 RNDIS_MASTER_INTERFACE
,
3747 .driver_info
= (unsigned long) &bcm4320a_info
,
3749 /* Generic Wireless RNDIS devices that we don't have exact
3750 * idVendor/idProduct/chip yet.
3753 /* RNDIS is MSFT's un-official variant of CDC ACM */
3754 USB_INTERFACE_INFO(USB_CLASS_COMM
, 2 /* ACM */, 0x0ff),
3755 .driver_info
= (unsigned long) &rndis_wlan_info
,
3757 /* "ActiveSync" is an undocumented variant of RNDIS, used in WM5 */
3758 USB_INTERFACE_INFO(USB_CLASS_MISC
, 1, 1),
3759 .driver_info
= (unsigned long) &rndis_wlan_info
,
3763 MODULE_DEVICE_TABLE(usb
, products
);
3765 static struct usb_driver rndis_wlan_driver
= {
3766 .name
= "rndis_wlan",
3767 .id_table
= products
,
3768 .probe
= usbnet_probe
,
3769 .disconnect
= usbnet_disconnect
,
3770 .suspend
= usbnet_suspend
,
3771 .resume
= usbnet_resume
,
3774 module_usb_driver(rndis_wlan_driver
);
3776 MODULE_AUTHOR("Bjorge Dijkstra");
3777 MODULE_AUTHOR("Jussi Kivilinna");
3778 MODULE_DESCRIPTION("Driver for RNDIS based USB Wireless adapters");
3779 MODULE_LICENSE("GPL");