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/wireless.h>
40 #include <linux/ieee80211.h>
41 #include <linux/if_arp.h>
42 #include <linux/ctype.h>
43 #include <linux/spinlock.h>
44 #include <linux/slab.h>
45 #include <net/iw_handler.h>
46 #include <net/cfg80211.h>
47 #include <linux/usb/usbnet.h>
48 #include <linux/usb/rndis_host.h>
51 /* NOTE: All these are settings for Broadcom chipset */
52 static char modparam_country
[4] = "EU";
53 module_param_string(country
, modparam_country
, 4, 0444);
54 MODULE_PARM_DESC(country
, "Country code (ISO 3166-1 alpha-2), default: EU");
56 static int modparam_frameburst
= 1;
57 module_param_named(frameburst
, modparam_frameburst
, int, 0444);
58 MODULE_PARM_DESC(frameburst
, "enable frame bursting (default: on)");
60 static int modparam_afterburner
= 0;
61 module_param_named(afterburner
, modparam_afterburner
, int, 0444);
62 MODULE_PARM_DESC(afterburner
,
63 "enable afterburner aka '125 High Speed Mode' (default: off)");
65 static int modparam_power_save
= 0;
66 module_param_named(power_save
, modparam_power_save
, int, 0444);
67 MODULE_PARM_DESC(power_save
,
68 "set power save mode: 0=off, 1=on, 2=fast (default: off)");
70 static int modparam_power_output
= 3;
71 module_param_named(power_output
, modparam_power_output
, int, 0444);
72 MODULE_PARM_DESC(power_output
,
73 "set power output: 0=25%, 1=50%, 2=75%, 3=100% (default: 100%)");
75 static int modparam_roamtrigger
= -70;
76 module_param_named(roamtrigger
, modparam_roamtrigger
, int, 0444);
77 MODULE_PARM_DESC(roamtrigger
,
78 "set roaming dBm trigger: -80=optimize for distance, "
79 "-60=bandwidth (default: -70)");
81 static int modparam_roamdelta
= 1;
82 module_param_named(roamdelta
, modparam_roamdelta
, int, 0444);
83 MODULE_PARM_DESC(roamdelta
,
84 "set roaming tendency: 0=aggressive, 1=moderate, "
85 "2=conservative (default: moderate)");
87 static int modparam_workaround_interval
;
88 module_param_named(workaround_interval
, modparam_workaround_interval
,
90 MODULE_PARM_DESC(workaround_interval
,
91 "set stall workaround interval in msecs (0=disabled) (default: 0)");
94 /* various RNDIS OID defs */
95 #define OID_GEN_LINK_SPEED cpu_to_le32(0x00010107)
96 #define OID_GEN_RNDIS_CONFIG_PARAMETER cpu_to_le32(0x0001021b)
98 #define OID_GEN_XMIT_OK cpu_to_le32(0x00020101)
99 #define OID_GEN_RCV_OK cpu_to_le32(0x00020102)
100 #define OID_GEN_XMIT_ERROR cpu_to_le32(0x00020103)
101 #define OID_GEN_RCV_ERROR cpu_to_le32(0x00020104)
102 #define OID_GEN_RCV_NO_BUFFER cpu_to_le32(0x00020105)
104 #define OID_802_3_CURRENT_ADDRESS cpu_to_le32(0x01010102)
105 #define OID_802_3_MULTICAST_LIST cpu_to_le32(0x01010103)
106 #define OID_802_3_MAXIMUM_LIST_SIZE cpu_to_le32(0x01010104)
108 #define OID_802_11_BSSID cpu_to_le32(0x0d010101)
109 #define OID_802_11_SSID cpu_to_le32(0x0d010102)
110 #define OID_802_11_INFRASTRUCTURE_MODE cpu_to_le32(0x0d010108)
111 #define OID_802_11_ADD_WEP cpu_to_le32(0x0d010113)
112 #define OID_802_11_REMOVE_WEP cpu_to_le32(0x0d010114)
113 #define OID_802_11_DISASSOCIATE cpu_to_le32(0x0d010115)
114 #define OID_802_11_AUTHENTICATION_MODE cpu_to_le32(0x0d010118)
115 #define OID_802_11_PRIVACY_FILTER cpu_to_le32(0x0d010119)
116 #define OID_802_11_BSSID_LIST_SCAN cpu_to_le32(0x0d01011a)
117 #define OID_802_11_ENCRYPTION_STATUS cpu_to_le32(0x0d01011b)
118 #define OID_802_11_ADD_KEY cpu_to_le32(0x0d01011d)
119 #define OID_802_11_REMOVE_KEY cpu_to_le32(0x0d01011e)
120 #define OID_802_11_ASSOCIATION_INFORMATION cpu_to_le32(0x0d01011f)
121 #define OID_802_11_CAPABILITY cpu_to_le32(0x0d010122)
122 #define OID_802_11_PMKID cpu_to_le32(0x0d010123)
123 #define OID_802_11_NETWORK_TYPES_SUPPORTED cpu_to_le32(0x0d010203)
124 #define OID_802_11_NETWORK_TYPE_IN_USE cpu_to_le32(0x0d010204)
125 #define OID_802_11_TX_POWER_LEVEL cpu_to_le32(0x0d010205)
126 #define OID_802_11_RSSI cpu_to_le32(0x0d010206)
127 #define OID_802_11_RSSI_TRIGGER cpu_to_le32(0x0d010207)
128 #define OID_802_11_FRAGMENTATION_THRESHOLD cpu_to_le32(0x0d010209)
129 #define OID_802_11_RTS_THRESHOLD cpu_to_le32(0x0d01020a)
130 #define OID_802_11_SUPPORTED_RATES cpu_to_le32(0x0d01020e)
131 #define OID_802_11_CONFIGURATION cpu_to_le32(0x0d010211)
132 #define OID_802_11_POWER_MODE cpu_to_le32(0x0d010216)
133 #define OID_802_11_BSSID_LIST cpu_to_le32(0x0d010217)
136 /* Typical noise/maximum signal level values taken from ndiswrapper iw_ndis.h */
137 #define WL_NOISE -96 /* typical noise level in dBm */
138 #define WL_SIGMAX -32 /* typical maximum signal level in dBm */
141 /* Assume that Broadcom 4320 (only chipset at time of writing known to be
142 * based on wireless rndis) has default txpower of 13dBm.
143 * This value is from Linksys WUSB54GSC User Guide, Appendix F: Specifications.
144 * 100% : 20 mW ~ 13dBm
145 * 75% : 15 mW ~ 12dBm
146 * 50% : 10 mW ~ 10dBm
149 #define BCM4320_DEFAULT_TXPOWER_DBM_100 13
150 #define BCM4320_DEFAULT_TXPOWER_DBM_75 12
151 #define BCM4320_DEFAULT_TXPOWER_DBM_50 10
152 #define BCM4320_DEFAULT_TXPOWER_DBM_25 7
155 /* codes for "status" field of completion messages */
156 #define RNDIS_STATUS_ADAPTER_NOT_READY cpu_to_le32(0xc0010011)
157 #define RNDIS_STATUS_ADAPTER_NOT_OPEN cpu_to_le32(0xc0010012)
160 /* Known device types */
161 #define RNDIS_UNKNOWN 0
162 #define RNDIS_BCM4320A 1
163 #define RNDIS_BCM4320B 2
166 /* NDIS data structures. Taken from wpa_supplicant driver_ndis.c
167 * slightly modified for datatype endianess, etc
169 #define NDIS_802_11_LENGTH_SSID 32
170 #define NDIS_802_11_LENGTH_RATES 8
171 #define NDIS_802_11_LENGTH_RATES_EX 16
173 enum ndis_80211_net_type
{
174 NDIS_80211_TYPE_FREQ_HOP
,
175 NDIS_80211_TYPE_DIRECT_SEQ
,
176 NDIS_80211_TYPE_OFDM_A
,
177 NDIS_80211_TYPE_OFDM_G
180 enum ndis_80211_net_infra
{
181 NDIS_80211_INFRA_ADHOC
,
182 NDIS_80211_INFRA_INFRA
,
183 NDIS_80211_INFRA_AUTO_UNKNOWN
186 enum ndis_80211_auth_mode
{
187 NDIS_80211_AUTH_OPEN
,
188 NDIS_80211_AUTH_SHARED
,
189 NDIS_80211_AUTH_AUTO_SWITCH
,
191 NDIS_80211_AUTH_WPA_PSK
,
192 NDIS_80211_AUTH_WPA_NONE
,
193 NDIS_80211_AUTH_WPA2
,
194 NDIS_80211_AUTH_WPA2_PSK
197 enum ndis_80211_encr_status
{
198 NDIS_80211_ENCR_WEP_ENABLED
,
199 NDIS_80211_ENCR_DISABLED
,
200 NDIS_80211_ENCR_WEP_KEY_ABSENT
,
201 NDIS_80211_ENCR_NOT_SUPPORTED
,
202 NDIS_80211_ENCR_TKIP_ENABLED
,
203 NDIS_80211_ENCR_TKIP_KEY_ABSENT
,
204 NDIS_80211_ENCR_CCMP_ENABLED
,
205 NDIS_80211_ENCR_CCMP_KEY_ABSENT
208 enum ndis_80211_priv_filter
{
209 NDIS_80211_PRIV_ACCEPT_ALL
,
210 NDIS_80211_PRIV_8021X_WEP
213 enum ndis_80211_status_type
{
214 NDIS_80211_STATUSTYPE_AUTHENTICATION
,
215 NDIS_80211_STATUSTYPE_MEDIASTREAMMODE
,
216 NDIS_80211_STATUSTYPE_PMKID_CANDIDATELIST
,
217 NDIS_80211_STATUSTYPE_RADIOSTATE
,
220 enum ndis_80211_media_stream_mode
{
221 NDIS_80211_MEDIA_STREAM_OFF
,
222 NDIS_80211_MEDIA_STREAM_ON
225 enum ndis_80211_radio_status
{
226 NDIS_80211_RADIO_STATUS_ON
,
227 NDIS_80211_RADIO_STATUS_HARDWARE_OFF
,
228 NDIS_80211_RADIO_STATUS_SOFTWARE_OFF
,
231 enum ndis_80211_addkey_bits
{
232 NDIS_80211_ADDKEY_8021X_AUTH
= cpu_to_le32(1 << 28),
233 NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
= cpu_to_le32(1 << 29),
234 NDIS_80211_ADDKEY_PAIRWISE_KEY
= cpu_to_le32(1 << 30),
235 NDIS_80211_ADDKEY_TRANSMIT_KEY
= cpu_to_le32(1 << 31)
238 enum ndis_80211_addwep_bits
{
239 NDIS_80211_ADDWEP_PERCLIENT_KEY
= cpu_to_le32(1 << 30),
240 NDIS_80211_ADDWEP_TRANSMIT_KEY
= cpu_to_le32(1 << 31)
243 enum ndis_80211_power_mode
{
244 NDIS_80211_POWER_MODE_CAM
,
245 NDIS_80211_POWER_MODE_MAX_PSP
,
246 NDIS_80211_POWER_MODE_FAST_PSP
,
249 struct ndis_80211_auth_request
{
256 struct ndis_80211_pmkid_candidate
{
262 struct ndis_80211_pmkid_cand_list
{
264 __le32 num_candidates
;
265 struct ndis_80211_pmkid_candidate candidate_list
[0];
268 struct ndis_80211_status_indication
{
271 __le32 media_stream_mode
;
273 struct ndis_80211_auth_request auth_request
[0];
274 struct ndis_80211_pmkid_cand_list cand_list
;
278 struct ndis_80211_ssid
{
280 u8 essid
[NDIS_802_11_LENGTH_SSID
];
283 struct ndis_80211_conf_freq_hop
{
290 struct ndis_80211_conf
{
292 __le32 beacon_period
;
295 struct ndis_80211_conf_freq_hop fh_config
;
298 struct ndis_80211_bssid_ex
{
302 struct ndis_80211_ssid ssid
;
306 struct ndis_80211_conf config
;
308 u8 rates
[NDIS_802_11_LENGTH_RATES_EX
];
313 struct ndis_80211_bssid_list_ex
{
315 struct ndis_80211_bssid_ex bssid
[0];
318 struct ndis_80211_fixed_ies
{
320 __le16 beacon_interval
;
324 struct ndis_80211_wep_key
{
331 struct ndis_80211_key
{
341 struct ndis_80211_remove_key
{
348 struct ndis_config_param
{
356 struct ndis_80211_assoc_info
{
361 __le16 listen_interval
;
362 u8 cur_ap_address
[6];
364 __le32 req_ie_length
;
365 __le32 offset_req_ies
;
372 __le32 resp_ie_length
;
373 __le32 offset_resp_ies
;
376 struct ndis_80211_auth_encr_pair
{
381 struct ndis_80211_capability
{
385 __le32 num_auth_encr_pair
;
386 struct ndis_80211_auth_encr_pair auth_encr_pair
[0];
389 struct ndis_80211_bssid_info
{
394 struct ndis_80211_pmkid
{
396 __le32 bssid_info_count
;
397 struct ndis_80211_bssid_info bssid_info
[0];
403 #define NET_TYPE_11FB 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_KEY_MGMT_NONE 0
420 #define RNDIS_WLAN_KEY_MGMT_802_1X (1<<0)
421 #define RNDIS_WLAN_KEY_MGMT_PSK (1<<1)
423 #define COMMAND_BUFFER_SIZE (CONTROL_BUFFER_SIZE + sizeof(struct rndis_set))
425 static const struct ieee80211_channel rndis_channels
[] = {
426 { .center_freq
= 2412 },
427 { .center_freq
= 2417 },
428 { .center_freq
= 2422 },
429 { .center_freq
= 2427 },
430 { .center_freq
= 2432 },
431 { .center_freq
= 2437 },
432 { .center_freq
= 2442 },
433 { .center_freq
= 2447 },
434 { .center_freq
= 2452 },
435 { .center_freq
= 2457 },
436 { .center_freq
= 2462 },
437 { .center_freq
= 2467 },
438 { .center_freq
= 2472 },
439 { .center_freq
= 2484 },
442 static const struct ieee80211_rate rndis_rates
[] = {
444 { .bitrate
= 20, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
445 { .bitrate
= 55, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
446 { .bitrate
= 110, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
457 static const u32 rndis_cipher_suites
[] = {
458 WLAN_CIPHER_SUITE_WEP40
,
459 WLAN_CIPHER_SUITE_WEP104
,
460 WLAN_CIPHER_SUITE_TKIP
,
461 WLAN_CIPHER_SUITE_CCMP
,
464 struct rndis_wlan_encr_key
{
473 /* RNDIS device private data */
474 struct rndis_wlan_private
{
475 struct usbnet
*usbdev
;
477 struct wireless_dev wdev
;
479 struct cfg80211_scan_request
*scan_request
;
481 struct workqueue_struct
*workqueue
;
482 struct delayed_work dev_poller_work
;
483 struct delayed_work scan_work
;
484 struct work_struct work
;
485 struct mutex command_lock
;
486 unsigned long work_pending
;
490 int last_cqm_event_rssi
;
492 struct ieee80211_supported_band band
;
493 struct ieee80211_channel channels
[ARRAY_SIZE(rndis_channels
)];
494 struct ieee80211_rate rates
[ARRAY_SIZE(rndis_rates
)];
495 u32 cipher_suites
[ARRAY_SIZE(rndis_cipher_suites
)];
501 /* module parameters */
502 char param_country
[4];
503 int param_frameburst
;
504 int param_afterburner
;
505 int param_power_save
;
506 int param_power_output
;
507 int param_roamtrigger
;
509 u32 param_workaround_interval
;
517 __le32 current_command_oid
;
519 /* encryption stuff */
520 int encr_tx_key_index
;
521 struct rndis_wlan_encr_key encr_keys
[4];
524 u8 command_buffer
[COMMAND_BUFFER_SIZE
];
530 static int rndis_change_virtual_intf(struct wiphy
*wiphy
,
531 struct net_device
*dev
,
532 enum nl80211_iftype type
, u32
*flags
,
533 struct vif_params
*params
);
535 static int rndis_scan(struct wiphy
*wiphy
, struct net_device
*dev
,
536 struct cfg80211_scan_request
*request
);
538 static int rndis_set_wiphy_params(struct wiphy
*wiphy
, u32 changed
);
540 static int rndis_set_tx_power(struct wiphy
*wiphy
,
541 enum nl80211_tx_power_setting type
,
543 static int rndis_get_tx_power(struct wiphy
*wiphy
, int *dbm
);
545 static int rndis_connect(struct wiphy
*wiphy
, struct net_device
*dev
,
546 struct cfg80211_connect_params
*sme
);
548 static int rndis_disconnect(struct wiphy
*wiphy
, struct net_device
*dev
,
551 static int rndis_join_ibss(struct wiphy
*wiphy
, struct net_device
*dev
,
552 struct cfg80211_ibss_params
*params
);
554 static int rndis_leave_ibss(struct wiphy
*wiphy
, struct net_device
*dev
);
556 static int rndis_set_channel(struct wiphy
*wiphy
, struct net_device
*dev
,
557 struct ieee80211_channel
*chan
, enum nl80211_channel_type channel_type
);
559 static int rndis_add_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
560 u8 key_index
, bool pairwise
, const u8
*mac_addr
,
561 struct key_params
*params
);
563 static int rndis_del_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
564 u8 key_index
, bool pairwise
, const u8
*mac_addr
);
566 static int rndis_set_default_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
567 u8 key_index
, bool unicast
, bool multicast
);
569 static int rndis_get_station(struct wiphy
*wiphy
, struct net_device
*dev
,
570 u8
*mac
, struct station_info
*sinfo
);
572 static int rndis_dump_station(struct wiphy
*wiphy
, struct net_device
*dev
,
573 int idx
, u8
*mac
, struct station_info
*sinfo
);
575 static int rndis_set_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
,
576 struct cfg80211_pmksa
*pmksa
);
578 static int rndis_del_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
,
579 struct cfg80211_pmksa
*pmksa
);
581 static int rndis_flush_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
);
583 static int rndis_set_power_mgmt(struct wiphy
*wiphy
, struct net_device
*dev
,
584 bool enabled
, int timeout
);
586 static int rndis_set_cqm_rssi_config(struct wiphy
*wiphy
,
587 struct net_device
*dev
,
588 s32 rssi_thold
, u32 rssi_hyst
);
590 static const struct cfg80211_ops rndis_config_ops
= {
591 .change_virtual_intf
= rndis_change_virtual_intf
,
593 .set_wiphy_params
= rndis_set_wiphy_params
,
594 .set_tx_power
= rndis_set_tx_power
,
595 .get_tx_power
= rndis_get_tx_power
,
596 .connect
= rndis_connect
,
597 .disconnect
= rndis_disconnect
,
598 .join_ibss
= rndis_join_ibss
,
599 .leave_ibss
= rndis_leave_ibss
,
600 .set_channel
= rndis_set_channel
,
601 .add_key
= rndis_add_key
,
602 .del_key
= rndis_del_key
,
603 .set_default_key
= rndis_set_default_key
,
604 .get_station
= rndis_get_station
,
605 .dump_station
= rndis_dump_station
,
606 .set_pmksa
= rndis_set_pmksa
,
607 .del_pmksa
= rndis_del_pmksa
,
608 .flush_pmksa
= rndis_flush_pmksa
,
609 .set_power_mgmt
= rndis_set_power_mgmt
,
610 .set_cqm_rssi_config
= rndis_set_cqm_rssi_config
,
613 static void *rndis_wiphy_privid
= &rndis_wiphy_privid
;
616 static struct rndis_wlan_private
*get_rndis_wlan_priv(struct usbnet
*dev
)
618 return (struct rndis_wlan_private
*)dev
->driver_priv
;
621 static u32
get_bcm4320_power_dbm(struct rndis_wlan_private
*priv
)
623 switch (priv
->param_power_output
) {
626 return BCM4320_DEFAULT_TXPOWER_DBM_100
;
628 return BCM4320_DEFAULT_TXPOWER_DBM_75
;
630 return BCM4320_DEFAULT_TXPOWER_DBM_50
;
632 return BCM4320_DEFAULT_TXPOWER_DBM_25
;
636 static bool is_wpa_key(struct rndis_wlan_private
*priv
, int idx
)
638 int cipher
= priv
->encr_keys
[idx
].cipher
;
640 return (cipher
== WLAN_CIPHER_SUITE_CCMP
||
641 cipher
== WLAN_CIPHER_SUITE_TKIP
);
644 static int rndis_cipher_to_alg(u32 cipher
)
648 return RNDIS_WLAN_ALG_NONE
;
649 case WLAN_CIPHER_SUITE_WEP40
:
650 case WLAN_CIPHER_SUITE_WEP104
:
651 return RNDIS_WLAN_ALG_WEP
;
652 case WLAN_CIPHER_SUITE_TKIP
:
653 return RNDIS_WLAN_ALG_TKIP
;
654 case WLAN_CIPHER_SUITE_CCMP
:
655 return RNDIS_WLAN_ALG_CCMP
;
659 static int rndis_akm_suite_to_key_mgmt(u32 akm_suite
)
663 return RNDIS_WLAN_KEY_MGMT_NONE
;
664 case WLAN_AKM_SUITE_8021X
:
665 return RNDIS_WLAN_KEY_MGMT_802_1X
;
666 case WLAN_AKM_SUITE_PSK
:
667 return RNDIS_WLAN_KEY_MGMT_PSK
;
672 static const char *oid_to_string(__le32 oid
)
675 #define OID_STR(oid) case oid: return(#oid)
676 /* from rndis_host.h */
677 OID_STR(OID_802_3_PERMANENT_ADDRESS
);
678 OID_STR(OID_GEN_MAXIMUM_FRAME_SIZE
);
679 OID_STR(OID_GEN_CURRENT_PACKET_FILTER
);
680 OID_STR(OID_GEN_PHYSICAL_MEDIUM
);
682 /* from rndis_wlan.c */
683 OID_STR(OID_GEN_LINK_SPEED
);
684 OID_STR(OID_GEN_RNDIS_CONFIG_PARAMETER
);
686 OID_STR(OID_GEN_XMIT_OK
);
687 OID_STR(OID_GEN_RCV_OK
);
688 OID_STR(OID_GEN_XMIT_ERROR
);
689 OID_STR(OID_GEN_RCV_ERROR
);
690 OID_STR(OID_GEN_RCV_NO_BUFFER
);
692 OID_STR(OID_802_3_CURRENT_ADDRESS
);
693 OID_STR(OID_802_3_MULTICAST_LIST
);
694 OID_STR(OID_802_3_MAXIMUM_LIST_SIZE
);
696 OID_STR(OID_802_11_BSSID
);
697 OID_STR(OID_802_11_SSID
);
698 OID_STR(OID_802_11_INFRASTRUCTURE_MODE
);
699 OID_STR(OID_802_11_ADD_WEP
);
700 OID_STR(OID_802_11_REMOVE_WEP
);
701 OID_STR(OID_802_11_DISASSOCIATE
);
702 OID_STR(OID_802_11_AUTHENTICATION_MODE
);
703 OID_STR(OID_802_11_PRIVACY_FILTER
);
704 OID_STR(OID_802_11_BSSID_LIST_SCAN
);
705 OID_STR(OID_802_11_ENCRYPTION_STATUS
);
706 OID_STR(OID_802_11_ADD_KEY
);
707 OID_STR(OID_802_11_REMOVE_KEY
);
708 OID_STR(OID_802_11_ASSOCIATION_INFORMATION
);
709 OID_STR(OID_802_11_CAPABILITY
);
710 OID_STR(OID_802_11_PMKID
);
711 OID_STR(OID_802_11_NETWORK_TYPES_SUPPORTED
);
712 OID_STR(OID_802_11_NETWORK_TYPE_IN_USE
);
713 OID_STR(OID_802_11_TX_POWER_LEVEL
);
714 OID_STR(OID_802_11_RSSI
);
715 OID_STR(OID_802_11_RSSI_TRIGGER
);
716 OID_STR(OID_802_11_FRAGMENTATION_THRESHOLD
);
717 OID_STR(OID_802_11_RTS_THRESHOLD
);
718 OID_STR(OID_802_11_SUPPORTED_RATES
);
719 OID_STR(OID_802_11_CONFIGURATION
);
720 OID_STR(OID_802_11_POWER_MODE
);
721 OID_STR(OID_802_11_BSSID_LIST
);
728 static const char *oid_to_string(__le32 oid
)
734 /* translate error code */
735 static int rndis_error_status(__le32 rndis_status
)
738 switch (rndis_status
) {
739 case RNDIS_STATUS_SUCCESS
:
742 case RNDIS_STATUS_FAILURE
:
743 case RNDIS_STATUS_INVALID_DATA
:
746 case RNDIS_STATUS_NOT_SUPPORTED
:
749 case RNDIS_STATUS_ADAPTER_NOT_READY
:
750 case RNDIS_STATUS_ADAPTER_NOT_OPEN
:
757 static int rndis_query_oid(struct usbnet
*dev
, __le32 oid
, void *data
, int *len
)
759 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(dev
);
762 struct rndis_msg_hdr
*header
;
763 struct rndis_query
*get
;
764 struct rndis_query_c
*get_c
;
767 int resplen
, respoffs
, copylen
;
769 buflen
= *len
+ sizeof(*u
.get
);
770 if (buflen
< CONTROL_BUFFER_SIZE
)
771 buflen
= CONTROL_BUFFER_SIZE
;
773 if (buflen
> COMMAND_BUFFER_SIZE
) {
774 u
.buf
= kmalloc(buflen
, GFP_KERNEL
);
778 u
.buf
= priv
->command_buffer
;
781 mutex_lock(&priv
->command_lock
);
783 memset(u
.get
, 0, sizeof *u
.get
);
784 u
.get
->msg_type
= RNDIS_MSG_QUERY
;
785 u
.get
->msg_len
= cpu_to_le32(sizeof *u
.get
);
788 priv
->current_command_oid
= oid
;
789 ret
= rndis_command(dev
, u
.header
, buflen
);
790 priv
->current_command_oid
= 0;
792 netdev_dbg(dev
->net
, "%s(%s): rndis_command() failed, %d (%08x)\n",
793 __func__
, oid_to_string(oid
), ret
,
794 le32_to_cpu(u
.get_c
->status
));
797 resplen
= le32_to_cpu(u
.get_c
->len
);
798 respoffs
= le32_to_cpu(u
.get_c
->offset
) + 8;
800 if (respoffs
> buflen
) {
801 /* Device returned data offset outside buffer, error. */
802 netdev_dbg(dev
->net
, "%s(%s): received invalid "
803 "data offset: %d > %d\n", __func__
,
804 oid_to_string(oid
), respoffs
, buflen
);
810 if ((resplen
+ respoffs
) > buflen
) {
811 /* Device would have returned more data if buffer would
812 * have been big enough. Copy just the bits that we got.
814 copylen
= buflen
- respoffs
;
822 memcpy(data
, u
.buf
+ respoffs
, copylen
);
826 ret
= rndis_error_status(u
.get_c
->status
);
828 netdev_dbg(dev
->net
, "%s(%s): device returned error, 0x%08x (%d)\n",
829 __func__
, oid_to_string(oid
),
830 le32_to_cpu(u
.get_c
->status
), ret
);
834 mutex_unlock(&priv
->command_lock
);
836 if (u
.buf
!= priv
->command_buffer
)
841 static int rndis_set_oid(struct usbnet
*dev
, __le32 oid
, const void *data
,
844 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(dev
);
847 struct rndis_msg_hdr
*header
;
848 struct rndis_set
*set
;
849 struct rndis_set_c
*set_c
;
853 buflen
= len
+ sizeof(*u
.set
);
854 if (buflen
< CONTROL_BUFFER_SIZE
)
855 buflen
= CONTROL_BUFFER_SIZE
;
857 if (buflen
> COMMAND_BUFFER_SIZE
) {
858 u
.buf
= kmalloc(buflen
, GFP_KERNEL
);
862 u
.buf
= priv
->command_buffer
;
865 mutex_lock(&priv
->command_lock
);
867 memset(u
.set
, 0, sizeof *u
.set
);
868 u
.set
->msg_type
= RNDIS_MSG_SET
;
869 u
.set
->msg_len
= cpu_to_le32(sizeof(*u
.set
) + len
);
871 u
.set
->len
= cpu_to_le32(len
);
872 u
.set
->offset
= cpu_to_le32(sizeof(*u
.set
) - 8);
873 u
.set
->handle
= cpu_to_le32(0);
874 memcpy(u
.buf
+ sizeof(*u
.set
), data
, len
);
876 priv
->current_command_oid
= oid
;
877 ret
= rndis_command(dev
, u
.header
, buflen
);
878 priv
->current_command_oid
= 0;
880 netdev_dbg(dev
->net
, "%s(%s): rndis_command() failed, %d (%08x)\n",
881 __func__
, oid_to_string(oid
), ret
,
882 le32_to_cpu(u
.set_c
->status
));
885 ret
= rndis_error_status(u
.set_c
->status
);
888 netdev_dbg(dev
->net
, "%s(%s): device returned error, 0x%08x (%d)\n",
889 __func__
, oid_to_string(oid
),
890 le32_to_cpu(u
.set_c
->status
), ret
);
893 mutex_unlock(&priv
->command_lock
);
895 if (u
.buf
!= priv
->command_buffer
)
900 static int rndis_reset(struct usbnet
*usbdev
)
902 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
903 struct rndis_reset
*reset
;
906 mutex_lock(&priv
->command_lock
);
908 reset
= (void *)priv
->command_buffer
;
909 memset(reset
, 0, sizeof(*reset
));
910 reset
->msg_type
= RNDIS_MSG_RESET
;
911 reset
->msg_len
= cpu_to_le32(sizeof(*reset
));
912 priv
->current_command_oid
= 0;
913 ret
= rndis_command(usbdev
, (void *)reset
, CONTROL_BUFFER_SIZE
);
915 mutex_unlock(&priv
->command_lock
);
923 * Specs say that we can only set config parameters only soon after device
925 * value_type: 0 = u32, 2 = unicode string
927 static int rndis_set_config_parameter(struct usbnet
*dev
, char *param
,
928 int value_type
, void *value
)
930 struct ndis_config_param
*infobuf
;
931 int value_len
, info_len
, param_len
, ret
, i
;
936 value_len
= sizeof(__le32
);
937 else if (value_type
== 2)
938 value_len
= strlen(value
) * sizeof(__le16
);
942 param_len
= strlen(param
) * sizeof(__le16
);
943 info_len
= sizeof(*infobuf
) + param_len
+ value_len
;
948 infobuf
= kmalloc(info_len
, GFP_KERNEL
);
954 /* extra 12 bytes are for padding (debug output) */
955 memset(infobuf
, 0xCC, info_len
+ 12);
959 netdev_dbg(dev
->net
, "setting config parameter: %s, value: %s\n",
962 netdev_dbg(dev
->net
, "setting config parameter: %s, value: %d\n",
963 param
, *(u32
*)value
);
965 infobuf
->name_offs
= cpu_to_le32(sizeof(*infobuf
));
966 infobuf
->name_length
= cpu_to_le32(param_len
);
967 infobuf
->type
= cpu_to_le32(value_type
);
968 infobuf
->value_offs
= cpu_to_le32(sizeof(*infobuf
) + param_len
);
969 infobuf
->value_length
= cpu_to_le32(value_len
);
971 /* simple string to unicode string conversion */
972 unibuf
= (void *)infobuf
+ sizeof(*infobuf
);
973 for (i
= 0; i
< param_len
/ sizeof(__le16
); i
++)
974 unibuf
[i
] = cpu_to_le16(param
[i
]);
976 if (value_type
== 2) {
977 unibuf
= (void *)infobuf
+ sizeof(*infobuf
) + param_len
;
978 for (i
= 0; i
< value_len
/ sizeof(__le16
); i
++)
979 unibuf
[i
] = cpu_to_le16(((u8
*)value
)[i
]);
981 dst_value
= (void *)infobuf
+ sizeof(*infobuf
) + param_len
;
982 *dst_value
= cpu_to_le32(*(u32
*)value
);
986 netdev_dbg(dev
->net
, "info buffer (len: %d)\n", info_len
);
987 for (i
= 0; i
< info_len
; i
+= 12) {
988 u32
*tmp
= (u32
*)((u8
*)infobuf
+ i
);
989 netdev_dbg(dev
->net
, "%08X:%08X:%08X\n",
992 cpu_to_be32(tmp
[2]));
996 ret
= rndis_set_oid(dev
, OID_GEN_RNDIS_CONFIG_PARAMETER
,
999 netdev_dbg(dev
->net
, "setting rndis config parameter failed, %d\n",
1006 static int rndis_set_config_parameter_str(struct usbnet
*dev
,
1007 char *param
, char *value
)
1009 return rndis_set_config_parameter(dev
, param
, 2, value
);
1013 * data conversion functions
1015 static int level_to_qual(int level
)
1017 int qual
= 100 * (level
- WL_NOISE
) / (WL_SIGMAX
- WL_NOISE
);
1018 return qual
>= 0 ? (qual
<= 100 ? qual
: 100) : 0;
1024 static int set_infra_mode(struct usbnet
*usbdev
, int mode
);
1025 static void restore_keys(struct usbnet
*usbdev
);
1026 static int rndis_check_bssid_list(struct usbnet
*usbdev
, u8
*match_bssid
,
1029 static int rndis_start_bssid_list_scan(struct usbnet
*usbdev
)
1033 /* Note: OID_802_11_BSSID_LIST_SCAN clears internal BSS list. */
1034 tmp
= cpu_to_le32(1);
1035 return rndis_set_oid(usbdev
, OID_802_11_BSSID_LIST_SCAN
, &tmp
,
1039 static int set_essid(struct usbnet
*usbdev
, struct ndis_80211_ssid
*ssid
)
1041 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1044 ret
= rndis_set_oid(usbdev
, OID_802_11_SSID
, ssid
, sizeof(*ssid
));
1046 netdev_warn(usbdev
->net
, "setting SSID failed (%08X)\n", ret
);
1050 priv
->radio_on
= true;
1051 netdev_dbg(usbdev
->net
, "%s(): radio_on = true\n", __func__
);
1057 static int set_bssid(struct usbnet
*usbdev
, const u8
*bssid
)
1061 ret
= rndis_set_oid(usbdev
, OID_802_11_BSSID
, bssid
, ETH_ALEN
);
1063 netdev_warn(usbdev
->net
, "setting BSSID[%pM] failed (%08X)\n",
1071 static int clear_bssid(struct usbnet
*usbdev
)
1073 static const u8 broadcast_mac
[ETH_ALEN
] = {
1074 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
1077 return set_bssid(usbdev
, broadcast_mac
);
1080 static int get_bssid(struct usbnet
*usbdev
, u8 bssid
[ETH_ALEN
])
1085 ret
= rndis_query_oid(usbdev
, OID_802_11_BSSID
, bssid
, &len
);
1088 memset(bssid
, 0, ETH_ALEN
);
1093 static int get_association_info(struct usbnet
*usbdev
,
1094 struct ndis_80211_assoc_info
*info
, int len
)
1096 return rndis_query_oid(usbdev
, OID_802_11_ASSOCIATION_INFORMATION
,
1100 static bool is_associated(struct usbnet
*usbdev
)
1102 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1106 if (!priv
->radio_on
)
1109 ret
= get_bssid(usbdev
, bssid
);
1111 return (ret
== 0 && !is_zero_ether_addr(bssid
));
1114 static int disassociate(struct usbnet
*usbdev
, bool reset_ssid
)
1116 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1117 struct ndis_80211_ssid ssid
;
1120 if (priv
->radio_on
) {
1121 ret
= rndis_set_oid(usbdev
, OID_802_11_DISASSOCIATE
, NULL
, 0);
1123 priv
->radio_on
= false;
1124 netdev_dbg(usbdev
->net
, "%s(): radio_on = false\n",
1132 /* disassociate causes radio to be turned off; if reset_ssid
1133 * is given, set random ssid to enable radio */
1135 /* Set device to infrastructure mode so we don't get ad-hoc
1136 * 'media connect' indications with the random ssid.
1138 set_infra_mode(usbdev
, NDIS_80211_INFRA_INFRA
);
1140 ssid
.length
= cpu_to_le32(sizeof(ssid
.essid
));
1141 get_random_bytes(&ssid
.essid
[2], sizeof(ssid
.essid
)-2);
1142 ssid
.essid
[0] = 0x1;
1143 ssid
.essid
[1] = 0xff;
1144 for (i
= 2; i
< sizeof(ssid
.essid
); i
++)
1145 ssid
.essid
[i
] = 0x1 + (ssid
.essid
[i
] * 0xfe / 0xff);
1146 ret
= set_essid(usbdev
, &ssid
);
1151 static int set_auth_mode(struct usbnet
*usbdev
, u32 wpa_version
,
1152 enum nl80211_auth_type auth_type
, int keymgmt
)
1154 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1158 netdev_dbg(usbdev
->net
, "%s(): wpa_version=0x%x authalg=0x%x keymgmt=0x%x\n",
1159 __func__
, wpa_version
, auth_type
, keymgmt
);
1161 if (wpa_version
& NL80211_WPA_VERSION_2
) {
1162 if (keymgmt
& RNDIS_WLAN_KEY_MGMT_802_1X
)
1163 auth_mode
= NDIS_80211_AUTH_WPA2
;
1165 auth_mode
= NDIS_80211_AUTH_WPA2_PSK
;
1166 } else if (wpa_version
& NL80211_WPA_VERSION_1
) {
1167 if (keymgmt
& RNDIS_WLAN_KEY_MGMT_802_1X
)
1168 auth_mode
= NDIS_80211_AUTH_WPA
;
1169 else if (keymgmt
& RNDIS_WLAN_KEY_MGMT_PSK
)
1170 auth_mode
= NDIS_80211_AUTH_WPA_PSK
;
1172 auth_mode
= NDIS_80211_AUTH_WPA_NONE
;
1173 } else if (auth_type
== NL80211_AUTHTYPE_SHARED_KEY
)
1174 auth_mode
= NDIS_80211_AUTH_SHARED
;
1175 else if (auth_type
== NL80211_AUTHTYPE_OPEN_SYSTEM
)
1176 auth_mode
= NDIS_80211_AUTH_OPEN
;
1177 else if (auth_type
== NL80211_AUTHTYPE_AUTOMATIC
)
1178 auth_mode
= NDIS_80211_AUTH_AUTO_SWITCH
;
1182 tmp
= cpu_to_le32(auth_mode
);
1183 ret
= rndis_set_oid(usbdev
, OID_802_11_AUTHENTICATION_MODE
, &tmp
,
1186 netdev_warn(usbdev
->net
, "setting auth mode failed (%08X)\n",
1191 priv
->wpa_version
= wpa_version
;
1196 static int set_priv_filter(struct usbnet
*usbdev
)
1198 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1201 netdev_dbg(usbdev
->net
, "%s(): wpa_version=0x%x\n",
1202 __func__
, priv
->wpa_version
);
1204 if (priv
->wpa_version
& NL80211_WPA_VERSION_2
||
1205 priv
->wpa_version
& NL80211_WPA_VERSION_1
)
1206 tmp
= cpu_to_le32(NDIS_80211_PRIV_8021X_WEP
);
1208 tmp
= cpu_to_le32(NDIS_80211_PRIV_ACCEPT_ALL
);
1210 return rndis_set_oid(usbdev
, OID_802_11_PRIVACY_FILTER
, &tmp
,
1214 static int set_encr_mode(struct usbnet
*usbdev
, int pairwise
, int groupwise
)
1219 netdev_dbg(usbdev
->net
, "%s(): cipher_pair=0x%x cipher_group=0x%x\n",
1220 __func__
, pairwise
, groupwise
);
1222 if (pairwise
& RNDIS_WLAN_ALG_CCMP
)
1223 encr_mode
= NDIS_80211_ENCR_CCMP_ENABLED
;
1224 else if (pairwise
& RNDIS_WLAN_ALG_TKIP
)
1225 encr_mode
= NDIS_80211_ENCR_TKIP_ENABLED
;
1226 else if (pairwise
& RNDIS_WLAN_ALG_WEP
)
1227 encr_mode
= NDIS_80211_ENCR_WEP_ENABLED
;
1228 else if (groupwise
& RNDIS_WLAN_ALG_CCMP
)
1229 encr_mode
= NDIS_80211_ENCR_CCMP_ENABLED
;
1230 else if (groupwise
& RNDIS_WLAN_ALG_TKIP
)
1231 encr_mode
= NDIS_80211_ENCR_TKIP_ENABLED
;
1233 encr_mode
= NDIS_80211_ENCR_DISABLED
;
1235 tmp
= cpu_to_le32(encr_mode
);
1236 ret
= rndis_set_oid(usbdev
, OID_802_11_ENCRYPTION_STATUS
, &tmp
,
1239 netdev_warn(usbdev
->net
, "setting encr mode failed (%08X)\n",
1247 static int set_infra_mode(struct usbnet
*usbdev
, int mode
)
1249 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1253 netdev_dbg(usbdev
->net
, "%s(): infra_mode=0x%x\n",
1254 __func__
, priv
->infra_mode
);
1256 tmp
= cpu_to_le32(mode
);
1257 ret
= rndis_set_oid(usbdev
, OID_802_11_INFRASTRUCTURE_MODE
, &tmp
,
1260 netdev_warn(usbdev
->net
, "setting infra mode failed (%08X)\n",
1265 /* NDIS drivers clear keys when infrastructure mode is
1266 * changed. But Linux tools assume otherwise. So set the
1268 restore_keys(usbdev
);
1270 priv
->infra_mode
= mode
;
1274 static int set_rts_threshold(struct usbnet
*usbdev
, u32 rts_threshold
)
1278 netdev_dbg(usbdev
->net
, "%s(): %i\n", __func__
, rts_threshold
);
1280 if (rts_threshold
< 0 || rts_threshold
> 2347)
1281 rts_threshold
= 2347;
1283 tmp
= cpu_to_le32(rts_threshold
);
1284 return rndis_set_oid(usbdev
, OID_802_11_RTS_THRESHOLD
, &tmp
,
1288 static int set_frag_threshold(struct usbnet
*usbdev
, u32 frag_threshold
)
1292 netdev_dbg(usbdev
->net
, "%s(): %i\n", __func__
, frag_threshold
);
1294 if (frag_threshold
< 256 || frag_threshold
> 2346)
1295 frag_threshold
= 2346;
1297 tmp
= cpu_to_le32(frag_threshold
);
1298 return rndis_set_oid(usbdev
, OID_802_11_FRAGMENTATION_THRESHOLD
, &tmp
,
1302 static void set_default_iw_params(struct usbnet
*usbdev
)
1304 set_infra_mode(usbdev
, NDIS_80211_INFRA_INFRA
);
1305 set_auth_mode(usbdev
, 0, NL80211_AUTHTYPE_OPEN_SYSTEM
,
1306 RNDIS_WLAN_KEY_MGMT_NONE
);
1307 set_priv_filter(usbdev
);
1308 set_encr_mode(usbdev
, RNDIS_WLAN_ALG_NONE
, RNDIS_WLAN_ALG_NONE
);
1311 static int deauthenticate(struct usbnet
*usbdev
)
1315 ret
= disassociate(usbdev
, true);
1316 set_default_iw_params(usbdev
);
1320 static int set_channel(struct usbnet
*usbdev
, int channel
)
1322 struct ndis_80211_conf config
;
1323 unsigned int dsconfig
;
1326 netdev_dbg(usbdev
->net
, "%s(%d)\n", __func__
, channel
);
1328 /* this OID is valid only when not associated */
1329 if (is_associated(usbdev
))
1332 dsconfig
= ieee80211_dsss_chan_to_freq(channel
) * 1000;
1334 len
= sizeof(config
);
1335 ret
= rndis_query_oid(usbdev
, OID_802_11_CONFIGURATION
, &config
, &len
);
1337 netdev_dbg(usbdev
->net
, "%s(): querying configuration failed\n",
1342 config
.ds_config
= cpu_to_le32(dsconfig
);
1343 ret
= rndis_set_oid(usbdev
, OID_802_11_CONFIGURATION
, &config
,
1346 netdev_dbg(usbdev
->net
, "%s(): %d -> %d\n", __func__
, channel
, ret
);
1351 /* index must be 0 - N, as per NDIS */
1352 static int add_wep_key(struct usbnet
*usbdev
, const u8
*key
, int key_len
,
1355 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1356 struct ndis_80211_wep_key ndis_key
;
1360 netdev_dbg(usbdev
->net
, "%s(idx: %d, len: %d)\n",
1361 __func__
, index
, key_len
);
1363 if ((key_len
!= 5 && key_len
!= 13) || index
< 0 || index
> 3)
1367 cipher
= WLAN_CIPHER_SUITE_WEP40
;
1369 cipher
= WLAN_CIPHER_SUITE_WEP104
;
1371 memset(&ndis_key
, 0, sizeof(ndis_key
));
1373 ndis_key
.size
= cpu_to_le32(sizeof(ndis_key
));
1374 ndis_key
.length
= cpu_to_le32(key_len
);
1375 ndis_key
.index
= cpu_to_le32(index
);
1376 memcpy(&ndis_key
.material
, key
, key_len
);
1378 if (index
== priv
->encr_tx_key_index
) {
1379 ndis_key
.index
|= NDIS_80211_ADDWEP_TRANSMIT_KEY
;
1380 ret
= set_encr_mode(usbdev
, RNDIS_WLAN_ALG_WEP
,
1381 RNDIS_WLAN_ALG_NONE
);
1383 netdev_warn(usbdev
->net
, "encryption couldn't be enabled (%08X)\n",
1387 ret
= rndis_set_oid(usbdev
, OID_802_11_ADD_WEP
, &ndis_key
,
1390 netdev_warn(usbdev
->net
, "adding encryption key %d failed (%08X)\n",
1395 priv
->encr_keys
[index
].len
= key_len
;
1396 priv
->encr_keys
[index
].cipher
= cipher
;
1397 memcpy(&priv
->encr_keys
[index
].material
, key
, key_len
);
1398 memset(&priv
->encr_keys
[index
].bssid
, 0xff, ETH_ALEN
);
1403 static int add_wpa_key(struct usbnet
*usbdev
, const u8
*key
, int key_len
,
1404 int index
, const u8
*addr
, const u8
*rx_seq
,
1405 int seq_len
, u32 cipher
, __le32 flags
)
1407 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1408 struct ndis_80211_key ndis_key
;
1412 if (index
< 0 || index
>= 4) {
1413 netdev_dbg(usbdev
->net
, "%s(): index out of range (%i)\n",
1417 if (key_len
> sizeof(ndis_key
.material
) || key_len
< 0) {
1418 netdev_dbg(usbdev
->net
, "%s(): key length out of range (%i)\n",
1422 if (flags
& NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
) {
1423 if (!rx_seq
|| seq_len
<= 0) {
1424 netdev_dbg(usbdev
->net
, "%s(): recv seq flag without buffer\n",
1428 if (rx_seq
&& seq_len
> sizeof(ndis_key
.rsc
)) {
1429 netdev_dbg(usbdev
->net
, "%s(): too big recv seq buffer\n", __func__
);
1434 is_addr_ok
= addr
&& !is_zero_ether_addr(addr
) &&
1435 !is_broadcast_ether_addr(addr
);
1436 if ((flags
& NDIS_80211_ADDKEY_PAIRWISE_KEY
) && !is_addr_ok
) {
1437 netdev_dbg(usbdev
->net
, "%s(): pairwise but bssid invalid (%pM)\n",
1442 netdev_dbg(usbdev
->net
, "%s(%i): flags:%i%i%i\n",
1444 !!(flags
& NDIS_80211_ADDKEY_TRANSMIT_KEY
),
1445 !!(flags
& NDIS_80211_ADDKEY_PAIRWISE_KEY
),
1446 !!(flags
& NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
));
1448 memset(&ndis_key
, 0, sizeof(ndis_key
));
1450 ndis_key
.size
= cpu_to_le32(sizeof(ndis_key
) -
1451 sizeof(ndis_key
.material
) + key_len
);
1452 ndis_key
.length
= cpu_to_le32(key_len
);
1453 ndis_key
.index
= cpu_to_le32(index
) | flags
;
1455 if (cipher
== WLAN_CIPHER_SUITE_TKIP
&& key_len
== 32) {
1456 /* wpa_supplicant gives us the Michael MIC RX/TX keys in
1457 * different order than NDIS spec, so swap the order here. */
1458 memcpy(ndis_key
.material
, key
, 16);
1459 memcpy(ndis_key
.material
+ 16, key
+ 24, 8);
1460 memcpy(ndis_key
.material
+ 24, key
+ 16, 8);
1462 memcpy(ndis_key
.material
, key
, key_len
);
1464 if (flags
& NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
)
1465 memcpy(ndis_key
.rsc
, rx_seq
, seq_len
);
1467 if (flags
& NDIS_80211_ADDKEY_PAIRWISE_KEY
) {
1469 memcpy(ndis_key
.bssid
, addr
, ETH_ALEN
);
1472 if (priv
->infra_mode
== NDIS_80211_INFRA_ADHOC
)
1473 memset(ndis_key
.bssid
, 0xff, ETH_ALEN
);
1475 get_bssid(usbdev
, ndis_key
.bssid
);
1478 ret
= rndis_set_oid(usbdev
, OID_802_11_ADD_KEY
, &ndis_key
,
1479 le32_to_cpu(ndis_key
.size
));
1480 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_ADD_KEY -> %08X\n",
1485 memset(&priv
->encr_keys
[index
], 0, sizeof(priv
->encr_keys
[index
]));
1486 priv
->encr_keys
[index
].len
= key_len
;
1487 priv
->encr_keys
[index
].cipher
= cipher
;
1488 memcpy(&priv
->encr_keys
[index
].material
, key
, key_len
);
1489 if (flags
& NDIS_80211_ADDKEY_PAIRWISE_KEY
)
1490 memcpy(&priv
->encr_keys
[index
].bssid
, ndis_key
.bssid
, ETH_ALEN
);
1492 memset(&priv
->encr_keys
[index
].bssid
, 0xff, ETH_ALEN
);
1494 if (flags
& NDIS_80211_ADDKEY_TRANSMIT_KEY
)
1495 priv
->encr_tx_key_index
= index
;
1500 static int restore_key(struct usbnet
*usbdev
, int key_idx
)
1502 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1503 struct rndis_wlan_encr_key key
;
1505 if (is_wpa_key(priv
, key_idx
))
1508 key
= priv
->encr_keys
[key_idx
];
1510 netdev_dbg(usbdev
->net
, "%s(): %i:%i\n", __func__
, key_idx
, key
.len
);
1515 return add_wep_key(usbdev
, key
.material
, key
.len
, key_idx
);
1518 static void restore_keys(struct usbnet
*usbdev
)
1522 for (i
= 0; i
< 4; i
++)
1523 restore_key(usbdev
, i
);
1526 static void clear_key(struct rndis_wlan_private
*priv
, int idx
)
1528 memset(&priv
->encr_keys
[idx
], 0, sizeof(priv
->encr_keys
[idx
]));
1531 /* remove_key is for both wep and wpa */
1532 static int remove_key(struct usbnet
*usbdev
, int index
, const u8
*bssid
)
1534 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1535 struct ndis_80211_remove_key remove_key
;
1540 if (priv
->encr_keys
[index
].len
== 0)
1543 is_wpa
= is_wpa_key(priv
, index
);
1545 netdev_dbg(usbdev
->net
, "%s(): %i:%s:%i\n",
1546 __func__
, index
, is_wpa
? "wpa" : "wep",
1547 priv
->encr_keys
[index
].len
);
1549 clear_key(priv
, index
);
1552 remove_key
.size
= cpu_to_le32(sizeof(remove_key
));
1553 remove_key
.index
= cpu_to_le32(index
);
1556 if (!is_broadcast_ether_addr(bssid
))
1558 NDIS_80211_ADDKEY_PAIRWISE_KEY
;
1559 memcpy(remove_key
.bssid
, bssid
,
1560 sizeof(remove_key
.bssid
));
1562 memset(remove_key
.bssid
, 0xff,
1563 sizeof(remove_key
.bssid
));
1565 ret
= rndis_set_oid(usbdev
, OID_802_11_REMOVE_KEY
, &remove_key
,
1566 sizeof(remove_key
));
1570 keyindex
= cpu_to_le32(index
);
1571 ret
= rndis_set_oid(usbdev
, OID_802_11_REMOVE_WEP
, &keyindex
,
1574 netdev_warn(usbdev
->net
,
1575 "removing encryption key %d failed (%08X)\n",
1581 /* if it is transmit key, disable encryption */
1582 if (index
== priv
->encr_tx_key_index
)
1583 set_encr_mode(usbdev
, RNDIS_WLAN_ALG_NONE
, RNDIS_WLAN_ALG_NONE
);
1588 static void set_multicast_list(struct usbnet
*usbdev
)
1590 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1591 struct netdev_hw_addr
*ha
;
1592 __le32 filter
, basefilter
;
1594 char *mc_addrs
= NULL
;
1597 basefilter
= filter
= RNDIS_PACKET_TYPE_DIRECTED
|
1598 RNDIS_PACKET_TYPE_BROADCAST
;
1600 if (usbdev
->net
->flags
& IFF_PROMISC
) {
1601 filter
|= RNDIS_PACKET_TYPE_PROMISCUOUS
|
1602 RNDIS_PACKET_TYPE_ALL_LOCAL
;
1603 } else if (usbdev
->net
->flags
& IFF_ALLMULTI
) {
1604 filter
|= RNDIS_PACKET_TYPE_ALL_MULTICAST
;
1607 if (filter
!= basefilter
)
1611 * mc_list should be accessed holding the lock, so copy addresses to
1612 * local buffer first.
1614 netif_addr_lock_bh(usbdev
->net
);
1615 mc_count
= netdev_mc_count(usbdev
->net
);
1616 if (mc_count
> priv
->multicast_size
) {
1617 filter
|= RNDIS_PACKET_TYPE_ALL_MULTICAST
;
1618 } else if (mc_count
) {
1621 mc_addrs
= kmalloc(mc_count
* ETH_ALEN
, GFP_ATOMIC
);
1623 netdev_warn(usbdev
->net
,
1624 "couldn't alloc %d bytes of memory\n",
1625 mc_count
* ETH_ALEN
);
1626 netif_addr_unlock_bh(usbdev
->net
);
1630 netdev_for_each_mc_addr(ha
, usbdev
->net
)
1631 memcpy(mc_addrs
+ i
++ * ETH_ALEN
,
1632 ha
->addr
, ETH_ALEN
);
1634 netif_addr_unlock_bh(usbdev
->net
);
1636 if (filter
!= basefilter
)
1640 ret
= rndis_set_oid(usbdev
, OID_802_3_MULTICAST_LIST
, mc_addrs
,
1641 mc_count
* ETH_ALEN
);
1644 filter
|= RNDIS_PACKET_TYPE_MULTICAST
;
1646 filter
|= RNDIS_PACKET_TYPE_ALL_MULTICAST
;
1648 netdev_dbg(usbdev
->net
, "OID_802_3_MULTICAST_LIST(%d, max: %d) -> %d\n",
1649 mc_count
, priv
->multicast_size
, ret
);
1653 ret
= rndis_set_oid(usbdev
, OID_GEN_CURRENT_PACKET_FILTER
, &filter
,
1656 netdev_warn(usbdev
->net
, "couldn't set packet filter: %08x\n",
1657 le32_to_cpu(filter
));
1660 netdev_dbg(usbdev
->net
, "OID_GEN_CURRENT_PACKET_FILTER(%08x) -> %d\n",
1661 le32_to_cpu(filter
), ret
);
1665 static void debug_print_pmkids(struct usbnet
*usbdev
,
1666 struct ndis_80211_pmkid
*pmkids
,
1667 const char *func_str
)
1669 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1670 int i
, len
, count
, max_pmkids
, entry_len
;
1672 max_pmkids
= priv
->wdev
.wiphy
->max_num_pmkids
;
1673 len
= le32_to_cpu(pmkids
->length
);
1674 count
= le32_to_cpu(pmkids
->bssid_info_count
);
1676 entry_len
= (count
> 0) ? (len
- sizeof(*pmkids
)) / count
: -1;
1678 netdev_dbg(usbdev
->net
, "%s(): %d PMKIDs (data len: %d, entry len: "
1679 "%d)\n", func_str
, count
, len
, entry_len
);
1681 if (count
> max_pmkids
)
1684 for (i
= 0; i
< count
; i
++) {
1685 u32
*tmp
= (u32
*)pmkids
->bssid_info
[i
].pmkid
;
1687 netdev_dbg(usbdev
->net
, "%s(): bssid: %pM, "
1688 "pmkid: %08X:%08X:%08X:%08X\n",
1689 func_str
, pmkids
->bssid_info
[i
].bssid
,
1690 cpu_to_be32(tmp
[0]), cpu_to_be32(tmp
[1]),
1691 cpu_to_be32(tmp
[2]), cpu_to_be32(tmp
[3]));
1695 static void debug_print_pmkids(struct usbnet
*usbdev
,
1696 struct ndis_80211_pmkid
*pmkids
,
1697 const char *func_str
)
1703 static struct ndis_80211_pmkid
*get_device_pmkids(struct usbnet
*usbdev
)
1705 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1706 struct ndis_80211_pmkid
*pmkids
;
1707 int len
, ret
, max_pmkids
;
1709 max_pmkids
= priv
->wdev
.wiphy
->max_num_pmkids
;
1710 len
= sizeof(*pmkids
) + max_pmkids
* sizeof(pmkids
->bssid_info
[0]);
1712 pmkids
= kzalloc(len
, GFP_KERNEL
);
1714 return ERR_PTR(-ENOMEM
);
1716 pmkids
->length
= cpu_to_le32(len
);
1717 pmkids
->bssid_info_count
= cpu_to_le32(max_pmkids
);
1719 ret
= rndis_query_oid(usbdev
, OID_802_11_PMKID
, pmkids
, &len
);
1721 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_PMKID(%d, %d)"
1722 " -> %d\n", __func__
, len
, max_pmkids
, ret
);
1725 return ERR_PTR(ret
);
1728 if (le32_to_cpu(pmkids
->bssid_info_count
) > max_pmkids
)
1729 pmkids
->bssid_info_count
= cpu_to_le32(max_pmkids
);
1731 debug_print_pmkids(usbdev
, pmkids
, __func__
);
1736 static int set_device_pmkids(struct usbnet
*usbdev
,
1737 struct ndis_80211_pmkid
*pmkids
)
1739 int ret
, len
, num_pmkids
;
1741 num_pmkids
= le32_to_cpu(pmkids
->bssid_info_count
);
1742 len
= sizeof(*pmkids
) + num_pmkids
* sizeof(pmkids
->bssid_info
[0]);
1743 pmkids
->length
= cpu_to_le32(len
);
1745 debug_print_pmkids(usbdev
, pmkids
, __func__
);
1747 ret
= rndis_set_oid(usbdev
, OID_802_11_PMKID
, pmkids
,
1748 le32_to_cpu(pmkids
->length
));
1750 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_PMKID(%d, %d) -> %d"
1751 "\n", __func__
, len
, num_pmkids
, ret
);
1758 static struct ndis_80211_pmkid
*remove_pmkid(struct usbnet
*usbdev
,
1759 struct ndis_80211_pmkid
*pmkids
,
1760 struct cfg80211_pmksa
*pmksa
,
1763 int i
, len
, count
, newlen
, err
;
1765 len
= le32_to_cpu(pmkids
->length
);
1766 count
= le32_to_cpu(pmkids
->bssid_info_count
);
1768 if (count
> max_pmkids
)
1771 for (i
= 0; i
< count
; i
++)
1772 if (!compare_ether_addr(pmkids
->bssid_info
[i
].bssid
,
1776 /* pmkid not found */
1778 netdev_dbg(usbdev
->net
, "%s(): bssid not found (%pM)\n",
1779 __func__
, pmksa
->bssid
);
1784 for (; i
+ 1 < count
; i
++)
1785 pmkids
->bssid_info
[i
] = pmkids
->bssid_info
[i
+ 1];
1788 newlen
= sizeof(*pmkids
) + count
* sizeof(pmkids
->bssid_info
[0]);
1790 pmkids
->length
= cpu_to_le32(newlen
);
1791 pmkids
->bssid_info_count
= cpu_to_le32(count
);
1796 return ERR_PTR(err
);
1799 static struct ndis_80211_pmkid
*update_pmkid(struct usbnet
*usbdev
,
1800 struct ndis_80211_pmkid
*pmkids
,
1801 struct cfg80211_pmksa
*pmksa
,
1804 int i
, err
, len
, count
, newlen
;
1806 len
= le32_to_cpu(pmkids
->length
);
1807 count
= le32_to_cpu(pmkids
->bssid_info_count
);
1809 if (count
> max_pmkids
)
1812 /* update with new pmkid */
1813 for (i
= 0; i
< count
; i
++) {
1814 if (compare_ether_addr(pmkids
->bssid_info
[i
].bssid
,
1818 memcpy(pmkids
->bssid_info
[i
].pmkid
, pmksa
->pmkid
,
1824 /* out of space, return error */
1825 if (i
== max_pmkids
) {
1826 netdev_dbg(usbdev
->net
, "%s(): out of space\n", __func__
);
1832 newlen
= sizeof(*pmkids
) + (count
+ 1) * sizeof(pmkids
->bssid_info
[0]);
1834 pmkids
= krealloc(pmkids
, newlen
, GFP_KERNEL
);
1840 pmkids
->length
= cpu_to_le32(newlen
);
1841 pmkids
->bssid_info_count
= cpu_to_le32(count
+ 1);
1843 memcpy(pmkids
->bssid_info
[count
].bssid
, pmksa
->bssid
, ETH_ALEN
);
1844 memcpy(pmkids
->bssid_info
[count
].pmkid
, pmksa
->pmkid
, WLAN_PMKID_LEN
);
1849 return ERR_PTR(err
);
1855 static int rndis_change_virtual_intf(struct wiphy
*wiphy
,
1856 struct net_device
*dev
,
1857 enum nl80211_iftype type
, u32
*flags
,
1858 struct vif_params
*params
)
1860 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
1861 struct usbnet
*usbdev
= priv
->usbdev
;
1865 case NL80211_IFTYPE_ADHOC
:
1866 mode
= NDIS_80211_INFRA_ADHOC
;
1868 case NL80211_IFTYPE_STATION
:
1869 mode
= NDIS_80211_INFRA_INFRA
;
1875 priv
->wdev
.iftype
= type
;
1877 return set_infra_mode(usbdev
, mode
);
1880 static int rndis_set_wiphy_params(struct wiphy
*wiphy
, u32 changed
)
1882 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
1883 struct usbnet
*usbdev
= priv
->usbdev
;
1886 if (changed
& WIPHY_PARAM_FRAG_THRESHOLD
) {
1887 err
= set_frag_threshold(usbdev
, wiphy
->frag_threshold
);
1892 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
) {
1893 err
= set_rts_threshold(usbdev
, wiphy
->rts_threshold
);
1901 static int rndis_set_tx_power(struct wiphy
*wiphy
,
1902 enum nl80211_tx_power_setting type
,
1905 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
1906 struct usbnet
*usbdev
= priv
->usbdev
;
1908 netdev_dbg(usbdev
->net
, "%s(): type:0x%x mbm:%i\n",
1909 __func__
, type
, mbm
);
1911 if (mbm
< 0 || (mbm
% 100))
1914 /* Device doesn't support changing txpower after initialization, only
1915 * turn off/on radio. Support 'auto' mode and setting same dBm that is
1918 if (type
== NL80211_TX_POWER_AUTOMATIC
||
1919 MBM_TO_DBM(mbm
) == get_bcm4320_power_dbm(priv
)) {
1920 if (!priv
->radio_on
)
1921 disassociate(usbdev
, true); /* turn on radio */
1929 static int rndis_get_tx_power(struct wiphy
*wiphy
, int *dbm
)
1931 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
1932 struct usbnet
*usbdev
= priv
->usbdev
;
1934 *dbm
= get_bcm4320_power_dbm(priv
);
1936 netdev_dbg(usbdev
->net
, "%s(): dbm:%i\n", __func__
, *dbm
);
1941 #define SCAN_DELAY_JIFFIES (6 * HZ)
1942 static int rndis_scan(struct wiphy
*wiphy
, struct net_device
*dev
,
1943 struct cfg80211_scan_request
*request
)
1945 struct usbnet
*usbdev
= netdev_priv(dev
);
1946 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1948 int delay
= SCAN_DELAY_JIFFIES
;
1950 netdev_dbg(usbdev
->net
, "cfg80211.scan\n");
1952 /* Get current bssid list from device before new scan, as new scan
1953 * clears internal bssid list.
1955 rndis_check_bssid_list(usbdev
, NULL
, NULL
);
1960 if (priv
->scan_request
&& priv
->scan_request
!= request
)
1963 priv
->scan_request
= request
;
1965 ret
= rndis_start_bssid_list_scan(usbdev
);
1967 if (priv
->device_type
== RNDIS_BCM4320A
)
1970 /* Wait before retrieving scan results from device */
1971 queue_delayed_work(priv
->workqueue
, &priv
->scan_work
, delay
);
1977 static struct cfg80211_bss
*rndis_bss_info_update(struct usbnet
*usbdev
,
1978 struct ndis_80211_bssid_ex
*bssid
)
1980 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1981 struct ieee80211_channel
*channel
;
1985 u16 beacon_interval
;
1986 struct ndis_80211_fixed_ies
*fixed
;
1987 int ie_len
, bssid_len
;
1990 netdev_dbg(usbdev
->net
, " found bssid: '%.32s' [%pM], len: %d\n",
1991 bssid
->ssid
.essid
, bssid
->mac
, le32_to_cpu(bssid
->length
));
1993 /* parse bssid structure */
1994 bssid_len
= le32_to_cpu(bssid
->length
);
1996 if (bssid_len
< sizeof(struct ndis_80211_bssid_ex
) +
1997 sizeof(struct ndis_80211_fixed_ies
))
2000 fixed
= (struct ndis_80211_fixed_ies
*)bssid
->ies
;
2002 ie
= (void *)(bssid
->ies
+ sizeof(struct ndis_80211_fixed_ies
));
2003 ie_len
= min(bssid_len
- (int)sizeof(*bssid
),
2004 (int)le32_to_cpu(bssid
->ie_length
));
2005 ie_len
-= sizeof(struct ndis_80211_fixed_ies
);
2009 /* extract data for cfg80211_inform_bss */
2010 channel
= ieee80211_get_channel(priv
->wdev
.wiphy
,
2011 KHZ_TO_MHZ(le32_to_cpu(bssid
->config
.ds_config
)));
2015 signal
= level_to_qual(le32_to_cpu(bssid
->rssi
));
2016 timestamp
= le64_to_cpu(*(__le64
*)fixed
->timestamp
);
2017 capability
= le16_to_cpu(fixed
->capabilities
);
2018 beacon_interval
= le16_to_cpu(fixed
->beacon_interval
);
2020 return cfg80211_inform_bss(priv
->wdev
.wiphy
, channel
, bssid
->mac
,
2021 timestamp
, capability
, beacon_interval
, ie
, ie_len
, signal
,
2025 static struct ndis_80211_bssid_ex
*next_bssid_list_item(
2026 struct ndis_80211_bssid_ex
*bssid
,
2027 int *bssid_len
, void *buf
, int len
)
2029 void *buf_end
, *bssid_end
;
2031 buf_end
= (char *)buf
+ len
;
2032 bssid_end
= (char *)bssid
+ *bssid_len
;
2034 if ((int)(buf_end
- bssid_end
) < sizeof(bssid
->length
)) {
2038 bssid
= (void *)((char *)bssid
+ *bssid_len
);
2039 *bssid_len
= le32_to_cpu(bssid
->length
);
2044 static bool check_bssid_list_item(struct ndis_80211_bssid_ex
*bssid
,
2045 int bssid_len
, void *buf
, int len
)
2047 void *buf_end
, *bssid_end
;
2049 if (!bssid
|| bssid_len
<= 0 || bssid_len
> len
)
2052 buf_end
= (char *)buf
+ len
;
2053 bssid_end
= (char *)bssid
+ bssid_len
;
2055 return (int)(buf_end
- bssid_end
) >= 0 && (int)(bssid_end
- buf
) >= 0;
2058 static int rndis_check_bssid_list(struct usbnet
*usbdev
, u8
*match_bssid
,
2062 struct ndis_80211_bssid_list_ex
*bssid_list
;
2063 struct ndis_80211_bssid_ex
*bssid
;
2064 int ret
= -EINVAL
, len
, count
, bssid_len
, real_count
, new_len
;
2066 netdev_dbg(usbdev
->net
, "%s()\n", __func__
);
2068 len
= CONTROL_BUFFER_SIZE
;
2070 buf
= kzalloc(len
, GFP_KERNEL
);
2076 /* BSSID-list might have got bigger last time we checked, keep
2077 * resizing until it won't get any bigger.
2080 ret
= rndis_query_oid(usbdev
, OID_802_11_BSSID_LIST
, buf
, &new_len
);
2081 if (ret
!= 0 || new_len
< sizeof(struct ndis_80211_bssid_list_ex
))
2084 if (new_len
> len
) {
2093 count
= le32_to_cpu(bssid_list
->num_items
);
2095 netdev_dbg(usbdev
->net
, "%s(): buflen: %d\n", __func__
, len
);
2098 bssid
= next_bssid_list_item(bssid_list
->bssid
, &bssid_len
, buf
, len
);
2100 /* Device returns incorrect 'num_items'. Workaround by ignoring the
2101 * received 'num_items' and walking through full bssid buffer instead.
2103 while (check_bssid_list_item(bssid
, bssid_len
, buf
, len
)) {
2104 if (rndis_bss_info_update(usbdev
, bssid
) && match_bssid
&&
2106 if (compare_ether_addr(bssid
->mac
, match_bssid
))
2111 bssid
= next_bssid_list_item(bssid
, &bssid_len
, buf
, len
);
2114 netdev_dbg(usbdev
->net
, "%s(): num_items from device: %d, really found:"
2115 " %d\n", __func__
, count
, real_count
);
2122 static void rndis_get_scan_results(struct work_struct
*work
)
2124 struct rndis_wlan_private
*priv
=
2125 container_of(work
, struct rndis_wlan_private
, scan_work
.work
);
2126 struct usbnet
*usbdev
= priv
->usbdev
;
2129 netdev_dbg(usbdev
->net
, "get_scan_results\n");
2131 if (!priv
->scan_request
)
2134 ret
= rndis_check_bssid_list(usbdev
, NULL
, NULL
);
2136 cfg80211_scan_done(priv
->scan_request
, ret
< 0);
2138 priv
->scan_request
= NULL
;
2141 static int rndis_connect(struct wiphy
*wiphy
, struct net_device
*dev
,
2142 struct cfg80211_connect_params
*sme
)
2144 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2145 struct usbnet
*usbdev
= priv
->usbdev
;
2146 struct ieee80211_channel
*channel
= sme
->channel
;
2147 struct ndis_80211_ssid ssid
;
2148 int pairwise
= RNDIS_WLAN_ALG_NONE
;
2149 int groupwise
= RNDIS_WLAN_ALG_NONE
;
2150 int keymgmt
= RNDIS_WLAN_KEY_MGMT_NONE
;
2151 int length
, i
, ret
, chan
= -1;
2154 chan
= ieee80211_frequency_to_channel(channel
->center_freq
);
2156 groupwise
= rndis_cipher_to_alg(sme
->crypto
.cipher_group
);
2157 for (i
= 0; i
< sme
->crypto
.n_ciphers_pairwise
; i
++)
2159 rndis_cipher_to_alg(sme
->crypto
.ciphers_pairwise
[i
]);
2161 if (sme
->crypto
.n_ciphers_pairwise
> 0 &&
2162 pairwise
== RNDIS_WLAN_ALG_NONE
) {
2163 netdev_err(usbdev
->net
, "Unsupported pairwise cipher\n");
2167 for (i
= 0; i
< sme
->crypto
.n_akm_suites
; i
++)
2169 rndis_akm_suite_to_key_mgmt(sme
->crypto
.akm_suites
[i
]);
2171 if (sme
->crypto
.n_akm_suites
> 0 &&
2172 keymgmt
== RNDIS_WLAN_KEY_MGMT_NONE
) {
2173 netdev_err(usbdev
->net
, "Invalid keymgmt\n");
2177 netdev_dbg(usbdev
->net
, "cfg80211.connect('%.32s':[%pM]:%d:[%d,0x%x:0x%x]:[0x%x:0x%x]:0x%x)\n",
2178 sme
->ssid
, sme
->bssid
, chan
,
2179 sme
->privacy
, sme
->crypto
.wpa_versions
, sme
->auth_type
,
2180 groupwise
, pairwise
, keymgmt
);
2182 if (is_associated(usbdev
))
2183 disassociate(usbdev
, false);
2185 ret
= set_infra_mode(usbdev
, NDIS_80211_INFRA_INFRA
);
2187 netdev_dbg(usbdev
->net
, "connect: set_infra_mode failed, %d\n",
2189 goto err_turn_radio_on
;
2192 ret
= set_auth_mode(usbdev
, sme
->crypto
.wpa_versions
, sme
->auth_type
,
2195 netdev_dbg(usbdev
->net
, "connect: set_auth_mode failed, %d\n",
2197 goto err_turn_radio_on
;
2200 set_priv_filter(usbdev
);
2202 ret
= set_encr_mode(usbdev
, pairwise
, groupwise
);
2204 netdev_dbg(usbdev
->net
, "connect: set_encr_mode failed, %d\n",
2206 goto err_turn_radio_on
;
2210 ret
= set_channel(usbdev
, chan
);
2212 netdev_dbg(usbdev
->net
, "connect: set_channel failed, %d\n",
2214 goto err_turn_radio_on
;
2218 if (sme
->key
&& ((groupwise
| pairwise
) & RNDIS_WLAN_ALG_WEP
)) {
2219 priv
->encr_tx_key_index
= sme
->key_idx
;
2220 ret
= add_wep_key(usbdev
, sme
->key
, sme
->key_len
, sme
->key_idx
);
2222 netdev_dbg(usbdev
->net
, "connect: add_wep_key failed, %d (%d, %d)\n",
2223 ret
, sme
->key_len
, sme
->key_idx
);
2224 goto err_turn_radio_on
;
2228 if (sme
->bssid
&& !is_zero_ether_addr(sme
->bssid
) &&
2229 !is_broadcast_ether_addr(sme
->bssid
)) {
2230 ret
= set_bssid(usbdev
, sme
->bssid
);
2232 netdev_dbg(usbdev
->net
, "connect: set_bssid failed, %d\n",
2234 goto err_turn_radio_on
;
2237 clear_bssid(usbdev
);
2239 length
= sme
->ssid_len
;
2240 if (length
> NDIS_802_11_LENGTH_SSID
)
2241 length
= NDIS_802_11_LENGTH_SSID
;
2243 memset(&ssid
, 0, sizeof(ssid
));
2244 ssid
.length
= cpu_to_le32(length
);
2245 memcpy(ssid
.essid
, sme
->ssid
, length
);
2247 /* Pause and purge rx queue, so we don't pass packets before
2248 * 'media connect'-indication.
2250 usbnet_pause_rx(usbdev
);
2251 usbnet_purge_paused_rxq(usbdev
);
2253 ret
= set_essid(usbdev
, &ssid
);
2255 netdev_dbg(usbdev
->net
, "connect: set_essid failed, %d\n", ret
);
2259 disassociate(usbdev
, true);
2264 static int rndis_disconnect(struct wiphy
*wiphy
, struct net_device
*dev
,
2267 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2268 struct usbnet
*usbdev
= priv
->usbdev
;
2270 netdev_dbg(usbdev
->net
, "cfg80211.disconnect(%d)\n", reason_code
);
2272 priv
->connected
= false;
2273 memset(priv
->bssid
, 0, ETH_ALEN
);
2275 return deauthenticate(usbdev
);
2278 static int rndis_join_ibss(struct wiphy
*wiphy
, struct net_device
*dev
,
2279 struct cfg80211_ibss_params
*params
)
2281 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2282 struct usbnet
*usbdev
= priv
->usbdev
;
2283 struct ieee80211_channel
*channel
= params
->channel
;
2284 struct ndis_80211_ssid ssid
;
2285 enum nl80211_auth_type auth_type
;
2286 int ret
, alg
, length
, chan
= -1;
2289 chan
= ieee80211_frequency_to_channel(channel
->center_freq
);
2291 /* TODO: How to handle ad-hoc encryption?
2292 * connect() has *key, join_ibss() doesn't. RNDIS requires key to be
2293 * pre-shared for encryption (open/shared/wpa), is key set before
2294 * join_ibss? Which auth_type to use (not in params)? What about WPA?
2296 if (params
->privacy
) {
2297 auth_type
= NL80211_AUTHTYPE_SHARED_KEY
;
2298 alg
= RNDIS_WLAN_ALG_WEP
;
2300 auth_type
= NL80211_AUTHTYPE_OPEN_SYSTEM
;
2301 alg
= RNDIS_WLAN_ALG_NONE
;
2304 netdev_dbg(usbdev
->net
, "cfg80211.join_ibss('%.32s':[%pM]:%d:%d)\n",
2305 params
->ssid
, params
->bssid
, chan
, params
->privacy
);
2307 if (is_associated(usbdev
))
2308 disassociate(usbdev
, false);
2310 ret
= set_infra_mode(usbdev
, NDIS_80211_INFRA_ADHOC
);
2312 netdev_dbg(usbdev
->net
, "join_ibss: set_infra_mode failed, %d\n",
2314 goto err_turn_radio_on
;
2317 ret
= set_auth_mode(usbdev
, 0, auth_type
, RNDIS_WLAN_KEY_MGMT_NONE
);
2319 netdev_dbg(usbdev
->net
, "join_ibss: set_auth_mode failed, %d\n",
2321 goto err_turn_radio_on
;
2324 set_priv_filter(usbdev
);
2326 ret
= set_encr_mode(usbdev
, alg
, RNDIS_WLAN_ALG_NONE
);
2328 netdev_dbg(usbdev
->net
, "join_ibss: set_encr_mode failed, %d\n",
2330 goto err_turn_radio_on
;
2334 ret
= set_channel(usbdev
, chan
);
2336 netdev_dbg(usbdev
->net
, "join_ibss: set_channel failed, %d\n",
2338 goto err_turn_radio_on
;
2342 if (params
->bssid
&& !is_zero_ether_addr(params
->bssid
) &&
2343 !is_broadcast_ether_addr(params
->bssid
)) {
2344 ret
= set_bssid(usbdev
, params
->bssid
);
2346 netdev_dbg(usbdev
->net
, "join_ibss: set_bssid failed, %d\n",
2348 goto err_turn_radio_on
;
2351 clear_bssid(usbdev
);
2353 length
= params
->ssid_len
;
2354 if (length
> NDIS_802_11_LENGTH_SSID
)
2355 length
= NDIS_802_11_LENGTH_SSID
;
2357 memset(&ssid
, 0, sizeof(ssid
));
2358 ssid
.length
= cpu_to_le32(length
);
2359 memcpy(ssid
.essid
, params
->ssid
, length
);
2361 /* Don't need to pause rx queue for ad-hoc. */
2362 usbnet_purge_paused_rxq(usbdev
);
2363 usbnet_resume_rx(usbdev
);
2365 ret
= set_essid(usbdev
, &ssid
);
2367 netdev_dbg(usbdev
->net
, "join_ibss: set_essid failed, %d\n",
2372 disassociate(usbdev
, true);
2377 static int rndis_leave_ibss(struct wiphy
*wiphy
, struct net_device
*dev
)
2379 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2380 struct usbnet
*usbdev
= priv
->usbdev
;
2382 netdev_dbg(usbdev
->net
, "cfg80211.leave_ibss()\n");
2384 priv
->connected
= false;
2385 memset(priv
->bssid
, 0, ETH_ALEN
);
2387 return deauthenticate(usbdev
);
2390 static int rndis_set_channel(struct wiphy
*wiphy
, struct net_device
*netdev
,
2391 struct ieee80211_channel
*chan
, enum nl80211_channel_type channel_type
)
2393 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2394 struct usbnet
*usbdev
= priv
->usbdev
;
2396 return set_channel(usbdev
,
2397 ieee80211_frequency_to_channel(chan
->center_freq
));
2400 static int rndis_add_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
2401 u8 key_index
, bool pairwise
, const u8
*mac_addr
,
2402 struct key_params
*params
)
2404 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2405 struct usbnet
*usbdev
= priv
->usbdev
;
2408 netdev_dbg(usbdev
->net
, "%s(%i, %pM, %08x)\n",
2409 __func__
, key_index
, mac_addr
, params
->cipher
);
2411 switch (params
->cipher
) {
2412 case WLAN_CIPHER_SUITE_WEP40
:
2413 case WLAN_CIPHER_SUITE_WEP104
:
2414 return add_wep_key(usbdev
, params
->key
, params
->key_len
,
2416 case WLAN_CIPHER_SUITE_TKIP
:
2417 case WLAN_CIPHER_SUITE_CCMP
:
2420 if (params
->seq
&& params
->seq_len
> 0)
2421 flags
|= NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
;
2423 flags
|= NDIS_80211_ADDKEY_PAIRWISE_KEY
|
2424 NDIS_80211_ADDKEY_TRANSMIT_KEY
;
2426 return add_wpa_key(usbdev
, params
->key
, params
->key_len
,
2427 key_index
, mac_addr
, params
->seq
,
2428 params
->seq_len
, params
->cipher
, flags
);
2430 netdev_dbg(usbdev
->net
, "%s(): unsupported cipher %08x\n",
2431 __func__
, params
->cipher
);
2436 static int rndis_del_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
2437 u8 key_index
, bool pairwise
, const u8
*mac_addr
)
2439 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2440 struct usbnet
*usbdev
= priv
->usbdev
;
2442 netdev_dbg(usbdev
->net
, "%s(%i, %pM)\n", __func__
, key_index
, mac_addr
);
2444 return remove_key(usbdev
, key_index
, mac_addr
);
2447 static int rndis_set_default_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
2448 u8 key_index
, bool unicast
, bool multicast
)
2450 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2451 struct usbnet
*usbdev
= priv
->usbdev
;
2452 struct rndis_wlan_encr_key key
;
2454 netdev_dbg(usbdev
->net
, "%s(%i)\n", __func__
, key_index
);
2456 priv
->encr_tx_key_index
= key_index
;
2458 if (is_wpa_key(priv
, key_index
))
2461 key
= priv
->encr_keys
[key_index
];
2463 return add_wep_key(usbdev
, key
.material
, key
.len
, key_index
);
2466 static void rndis_fill_station_info(struct usbnet
*usbdev
,
2467 struct station_info
*sinfo
)
2469 __le32 linkspeed
, rssi
;
2472 memset(sinfo
, 0, sizeof(*sinfo
));
2474 len
= sizeof(linkspeed
);
2475 ret
= rndis_query_oid(usbdev
, OID_GEN_LINK_SPEED
, &linkspeed
, &len
);
2477 sinfo
->txrate
.legacy
= le32_to_cpu(linkspeed
) / 1000;
2478 sinfo
->filled
|= STATION_INFO_TX_BITRATE
;
2482 ret
= rndis_query_oid(usbdev
, OID_802_11_RSSI
, &rssi
, &len
);
2484 sinfo
->signal
= level_to_qual(le32_to_cpu(rssi
));
2485 sinfo
->filled
|= STATION_INFO_SIGNAL
;
2489 static int rndis_get_station(struct wiphy
*wiphy
, struct net_device
*dev
,
2490 u8
*mac
, struct station_info
*sinfo
)
2492 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2493 struct usbnet
*usbdev
= priv
->usbdev
;
2495 if (compare_ether_addr(priv
->bssid
, mac
))
2498 rndis_fill_station_info(usbdev
, sinfo
);
2503 static int rndis_dump_station(struct wiphy
*wiphy
, struct net_device
*dev
,
2504 int idx
, u8
*mac
, struct station_info
*sinfo
)
2506 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2507 struct usbnet
*usbdev
= priv
->usbdev
;
2512 memcpy(mac
, priv
->bssid
, ETH_ALEN
);
2514 rndis_fill_station_info(usbdev
, sinfo
);
2519 static int rndis_set_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
,
2520 struct cfg80211_pmksa
*pmksa
)
2522 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2523 struct usbnet
*usbdev
= priv
->usbdev
;
2524 struct ndis_80211_pmkid
*pmkids
;
2525 u32
*tmp
= (u32
*)pmksa
->pmkid
;
2527 netdev_dbg(usbdev
->net
, "%s(%pM, %08X:%08X:%08X:%08X)\n", __func__
,
2529 cpu_to_be32(tmp
[0]), cpu_to_be32(tmp
[1]),
2530 cpu_to_be32(tmp
[2]), cpu_to_be32(tmp
[3]));
2532 pmkids
= get_device_pmkids(usbdev
);
2533 if (IS_ERR(pmkids
)) {
2534 /* couldn't read PMKID cache from device */
2535 return PTR_ERR(pmkids
);
2538 pmkids
= update_pmkid(usbdev
, pmkids
, pmksa
, wiphy
->max_num_pmkids
);
2539 if (IS_ERR(pmkids
)) {
2540 /* not found, list full, etc */
2541 return PTR_ERR(pmkids
);
2544 return set_device_pmkids(usbdev
, pmkids
);
2547 static int rndis_del_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
,
2548 struct cfg80211_pmksa
*pmksa
)
2550 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2551 struct usbnet
*usbdev
= priv
->usbdev
;
2552 struct ndis_80211_pmkid
*pmkids
;
2553 u32
*tmp
= (u32
*)pmksa
->pmkid
;
2555 netdev_dbg(usbdev
->net
, "%s(%pM, %08X:%08X:%08X:%08X)\n", __func__
,
2557 cpu_to_be32(tmp
[0]), cpu_to_be32(tmp
[1]),
2558 cpu_to_be32(tmp
[2]), cpu_to_be32(tmp
[3]));
2560 pmkids
= get_device_pmkids(usbdev
);
2561 if (IS_ERR(pmkids
)) {
2562 /* Couldn't read PMKID cache from device */
2563 return PTR_ERR(pmkids
);
2566 pmkids
= remove_pmkid(usbdev
, pmkids
, pmksa
, wiphy
->max_num_pmkids
);
2567 if (IS_ERR(pmkids
)) {
2568 /* not found, etc */
2569 return PTR_ERR(pmkids
);
2572 return set_device_pmkids(usbdev
, pmkids
);
2575 static int rndis_flush_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
)
2577 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2578 struct usbnet
*usbdev
= priv
->usbdev
;
2579 struct ndis_80211_pmkid pmkid
;
2581 netdev_dbg(usbdev
->net
, "%s()\n", __func__
);
2583 memset(&pmkid
, 0, sizeof(pmkid
));
2585 pmkid
.length
= cpu_to_le32(sizeof(pmkid
));
2586 pmkid
.bssid_info_count
= cpu_to_le32(0);
2588 return rndis_set_oid(usbdev
, OID_802_11_PMKID
, &pmkid
, sizeof(pmkid
));
2591 static int rndis_set_power_mgmt(struct wiphy
*wiphy
, struct net_device
*dev
,
2592 bool enabled
, int timeout
)
2594 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2595 struct usbnet
*usbdev
= priv
->usbdev
;
2600 netdev_dbg(usbdev
->net
, "%s(): %s, %d\n", __func__
,
2601 enabled
? "enabled" : "disabled",
2605 power_mode
= NDIS_80211_POWER_MODE_FAST_PSP
;
2607 power_mode
= NDIS_80211_POWER_MODE_CAM
;
2609 if (power_mode
== priv
->power_mode
)
2612 priv
->power_mode
= power_mode
;
2614 mode
= cpu_to_le32(power_mode
);
2615 ret
= rndis_set_oid(usbdev
, OID_802_11_POWER_MODE
, &mode
, sizeof(mode
));
2617 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_POWER_MODE -> %d\n",
2623 static int rndis_set_cqm_rssi_config(struct wiphy
*wiphy
,
2624 struct net_device
*dev
,
2625 s32 rssi_thold
, u32 rssi_hyst
)
2627 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2629 priv
->cqm_rssi_thold
= rssi_thold
;
2630 priv
->cqm_rssi_hyst
= rssi_hyst
;
2631 priv
->last_cqm_event_rssi
= 0;
2636 static void rndis_wlan_craft_connected_bss(struct usbnet
*usbdev
, u8
*bssid
,
2637 struct ndis_80211_assoc_info
*info
)
2639 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2640 struct ieee80211_channel
*channel
;
2641 struct ndis_80211_conf config
;
2642 struct ndis_80211_ssid ssid
;
2646 u16 beacon_interval
;
2649 int len
, ret
, ie_len
;
2651 /* Get signal quality, in case of error use rssi=0 and ignore error. */
2654 ret
= rndis_query_oid(usbdev
, OID_802_11_RSSI
, &rssi
, &len
);
2655 signal
= level_to_qual(le32_to_cpu(rssi
));
2657 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_RSSI -> %d, "
2658 "rssi:%d, qual: %d\n", __func__
, ret
, le32_to_cpu(rssi
),
2659 level_to_qual(le32_to_cpu(rssi
)));
2661 /* Get AP capabilities */
2663 capability
= le16_to_cpu(info
->resp_ie
.capa
);
2665 /* Set atleast ESS/IBSS capability */
2666 capability
= (priv
->infra_mode
== NDIS_80211_INFRA_INFRA
) ?
2667 WLAN_CAPABILITY_ESS
: WLAN_CAPABILITY_IBSS
;
2670 /* Get channel and beacon interval */
2671 len
= sizeof(config
);
2672 ret
= rndis_query_oid(usbdev
, OID_802_11_CONFIGURATION
, &config
, &len
);
2673 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_CONFIGURATION -> %d\n",
2676 beacon_interval
= le16_to_cpu(config
.beacon_period
);
2677 channel
= ieee80211_get_channel(priv
->wdev
.wiphy
,
2678 KHZ_TO_MHZ(le32_to_cpu(config
.ds_config
)));
2680 netdev_warn(usbdev
->net
, "%s(): could not get channel."
2685 netdev_warn(usbdev
->net
, "%s(): could not get configuration.\n",
2690 /* Get SSID, in case of error, use zero length SSID and ignore error. */
2692 memset(&ssid
, 0, sizeof(ssid
));
2693 ret
= rndis_query_oid(usbdev
, OID_802_11_SSID
, &ssid
, &len
);
2694 netdev_dbg(usbdev
->net
, "%s(): OID_802_11_SSID -> %d, len: %d, ssid: "
2695 "'%.32s'\n", __func__
, ret
,
2696 le32_to_cpu(ssid
.length
), ssid
.essid
);
2698 if (le32_to_cpu(ssid
.length
) > 32)
2699 ssid
.length
= cpu_to_le32(32);
2701 ie_buf
[0] = WLAN_EID_SSID
;
2702 ie_buf
[1] = le32_to_cpu(ssid
.length
);
2703 memcpy(&ie_buf
[2], ssid
.essid
, le32_to_cpu(ssid
.length
));
2705 ie_len
= le32_to_cpu(ssid
.length
) + 2;
2710 netdev_dbg(usbdev
->net
, "%s(): channel:%d(freq), bssid:[%pM], tsf:%d, "
2711 "capa:%x, beacon int:%d, resp_ie(len:%d, essid:'%.32s'), "
2712 "signal:%d\n", __func__
, (channel
? channel
->center_freq
: -1),
2713 bssid
, (u32
)timestamp
, capability
, beacon_interval
, ie_len
,
2714 ssid
.essid
, signal
);
2716 cfg80211_inform_bss(priv
->wdev
.wiphy
, channel
, bssid
,
2717 timestamp
, capability
, beacon_interval
, ie_buf
, ie_len
,
2718 signal
, GFP_KERNEL
);
2722 * workers, indication handlers, device poller
2724 static void rndis_wlan_do_link_up_work(struct usbnet
*usbdev
)
2726 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2727 struct ndis_80211_assoc_info
*info
= NULL
;
2729 int resp_ie_len
, req_ie_len
;
2730 u8
*req_ie
, *resp_ie
;
2732 bool roamed
= false;
2735 if (priv
->infra_mode
== NDIS_80211_INFRA_INFRA
&& priv
->connected
) {
2736 /* received media connect indication while connected, either
2737 * device reassociated with same AP or roamed to new. */
2746 if (priv
->infra_mode
== NDIS_80211_INFRA_INFRA
) {
2747 info
= kzalloc(CONTROL_BUFFER_SIZE
, GFP_KERNEL
);
2749 /* No memory? Try resume work later */
2750 set_bit(WORK_LINK_UP
, &priv
->work_pending
);
2751 queue_work(priv
->workqueue
, &priv
->work
);
2755 /* Get association info IEs from device. */
2756 ret
= get_association_info(usbdev
, info
, CONTROL_BUFFER_SIZE
);
2758 req_ie_len
= le32_to_cpu(info
->req_ie_length
);
2759 if (req_ie_len
> 0) {
2760 offset
= le32_to_cpu(info
->offset_req_ies
);
2762 if (offset
> CONTROL_BUFFER_SIZE
)
2763 offset
= CONTROL_BUFFER_SIZE
;
2765 req_ie
= (u8
*)info
+ offset
;
2767 if (offset
+ req_ie_len
> CONTROL_BUFFER_SIZE
)
2769 CONTROL_BUFFER_SIZE
- offset
;
2772 resp_ie_len
= le32_to_cpu(info
->resp_ie_length
);
2773 if (resp_ie_len
> 0) {
2774 offset
= le32_to_cpu(info
->offset_resp_ies
);
2776 if (offset
> CONTROL_BUFFER_SIZE
)
2777 offset
= CONTROL_BUFFER_SIZE
;
2779 resp_ie
= (u8
*)info
+ offset
;
2781 if (offset
+ resp_ie_len
> CONTROL_BUFFER_SIZE
)
2783 CONTROL_BUFFER_SIZE
- offset
;
2786 /* Since rndis_wlan_craft_connected_bss() might use info
2787 * later and expects info to contain valid data if
2788 * non-null, free info and set NULL here.
2793 } else if (WARN_ON(priv
->infra_mode
!= NDIS_80211_INFRA_ADHOC
))
2796 ret
= get_bssid(usbdev
, bssid
);
2798 memset(bssid
, 0, sizeof(bssid
));
2800 netdev_dbg(usbdev
->net
, "link up work: [%pM]%s\n",
2801 bssid
, roamed
? " roamed" : "");
2803 /* Internal bss list in device should contain at least the currently
2804 * connected bss and we can get it to cfg80211 with
2805 * rndis_check_bssid_list().
2807 * NDIS spec says: "If the device is associated, but the associated
2808 * BSSID is not in its BSSID scan list, then the driver must add an
2809 * entry for the BSSID at the end of the data that it returns in
2810 * response to query of OID_802_11_BSSID_LIST."
2812 * NOTE: Seems to be true for BCM4320b variant, but not BCM4320a.
2815 rndis_check_bssid_list(usbdev
, bssid
, &match_bss
);
2817 if (!is_zero_ether_addr(bssid
) && !match_bss
) {
2818 /* Couldn't get bss from device, we need to manually craft bss
2821 rndis_wlan_craft_connected_bss(usbdev
, bssid
, info
);
2824 if (priv
->infra_mode
== NDIS_80211_INFRA_INFRA
) {
2826 cfg80211_connect_result(usbdev
->net
, bssid
, req_ie
,
2827 req_ie_len
, resp_ie
,
2828 resp_ie_len
, 0, GFP_KERNEL
);
2830 cfg80211_roamed(usbdev
->net
, bssid
, req_ie
, req_ie_len
,
2831 resp_ie
, resp_ie_len
, GFP_KERNEL
);
2832 } else if (priv
->infra_mode
== NDIS_80211_INFRA_ADHOC
)
2833 cfg80211_ibss_joined(usbdev
->net
, bssid
, GFP_KERNEL
);
2838 priv
->connected
= true;
2839 memcpy(priv
->bssid
, bssid
, ETH_ALEN
);
2841 usbnet_resume_rx(usbdev
);
2842 netif_carrier_on(usbdev
->net
);
2845 static void rndis_wlan_do_link_down_work(struct usbnet
*usbdev
)
2847 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2849 if (priv
->connected
) {
2850 priv
->connected
= false;
2851 memset(priv
->bssid
, 0, ETH_ALEN
);
2853 deauthenticate(usbdev
);
2855 cfg80211_disconnected(usbdev
->net
, 0, NULL
, 0, GFP_KERNEL
);
2858 netif_carrier_off(usbdev
->net
);
2861 static void rndis_wlan_worker(struct work_struct
*work
)
2863 struct rndis_wlan_private
*priv
=
2864 container_of(work
, struct rndis_wlan_private
, work
);
2865 struct usbnet
*usbdev
= priv
->usbdev
;
2867 if (test_and_clear_bit(WORK_LINK_UP
, &priv
->work_pending
))
2868 rndis_wlan_do_link_up_work(usbdev
);
2870 if (test_and_clear_bit(WORK_LINK_DOWN
, &priv
->work_pending
))
2871 rndis_wlan_do_link_down_work(usbdev
);
2873 if (test_and_clear_bit(WORK_SET_MULTICAST_LIST
, &priv
->work_pending
))
2874 set_multicast_list(usbdev
);
2877 static void rndis_wlan_set_multicast_list(struct net_device
*dev
)
2879 struct usbnet
*usbdev
= netdev_priv(dev
);
2880 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2882 if (test_bit(WORK_SET_MULTICAST_LIST
, &priv
->work_pending
))
2885 set_bit(WORK_SET_MULTICAST_LIST
, &priv
->work_pending
);
2886 queue_work(priv
->workqueue
, &priv
->work
);
2889 static void rndis_wlan_auth_indication(struct usbnet
*usbdev
,
2890 struct ndis_80211_status_indication
*indication
,
2895 int flags
, buflen
, key_id
;
2896 bool pairwise_error
, group_error
;
2897 struct ndis_80211_auth_request
*auth_req
;
2898 enum nl80211_key_type key_type
;
2900 /* must have at least one array entry */
2901 if (len
< offsetof(struct ndis_80211_status_indication
, u
) +
2902 sizeof(struct ndis_80211_auth_request
)) {
2903 netdev_info(usbdev
->net
, "authentication indication: too short message (%i)\n",
2908 buf
= (void *)&indication
->u
.auth_request
[0];
2909 buflen
= len
- offsetof(struct ndis_80211_status_indication
, u
);
2911 while (buflen
>= sizeof(*auth_req
)) {
2912 auth_req
= (void *)buf
;
2914 flags
= le32_to_cpu(auth_req
->flags
);
2915 pairwise_error
= false;
2916 group_error
= false;
2919 type
= "reauth request";
2921 type
= "key update request";
2923 pairwise_error
= true;
2924 type
= "pairwise_error";
2928 type
= "group_error";
2931 netdev_info(usbdev
->net
, "authentication indication: %s (0x%08x)\n",
2932 type
, le32_to_cpu(auth_req
->flags
));
2934 if (pairwise_error
) {
2935 key_type
= NL80211_KEYTYPE_PAIRWISE
;
2938 cfg80211_michael_mic_failure(usbdev
->net
,
2940 key_type
, key_id
, NULL
,
2945 key_type
= NL80211_KEYTYPE_GROUP
;
2948 cfg80211_michael_mic_failure(usbdev
->net
,
2950 key_type
, key_id
, NULL
,
2954 buflen
-= le32_to_cpu(auth_req
->length
);
2955 buf
+= le32_to_cpu(auth_req
->length
);
2959 static void rndis_wlan_pmkid_cand_list_indication(struct usbnet
*usbdev
,
2960 struct ndis_80211_status_indication
*indication
,
2963 struct ndis_80211_pmkid_cand_list
*cand_list
;
2964 int list_len
, expected_len
, i
;
2966 if (len
< offsetof(struct ndis_80211_status_indication
, u
) +
2967 sizeof(struct ndis_80211_pmkid_cand_list
)) {
2968 netdev_info(usbdev
->net
, "pmkid candidate list indication: too short message (%i)\n",
2973 list_len
= le32_to_cpu(indication
->u
.cand_list
.num_candidates
) *
2974 sizeof(struct ndis_80211_pmkid_candidate
);
2975 expected_len
= sizeof(struct ndis_80211_pmkid_cand_list
) + list_len
+
2976 offsetof(struct ndis_80211_status_indication
, u
);
2978 if (len
< expected_len
) {
2979 netdev_info(usbdev
->net
, "pmkid candidate list indication: list larger than buffer (%i < %i)\n",
2984 cand_list
= &indication
->u
.cand_list
;
2986 netdev_info(usbdev
->net
, "pmkid candidate list indication: version %i, candidates %i\n",
2987 le32_to_cpu(cand_list
->version
),
2988 le32_to_cpu(cand_list
->num_candidates
));
2990 if (le32_to_cpu(cand_list
->version
) != 1)
2993 for (i
= 0; i
< le32_to_cpu(cand_list
->num_candidates
); i
++) {
2994 struct ndis_80211_pmkid_candidate
*cand
=
2995 &cand_list
->candidate_list
[i
];
2997 netdev_dbg(usbdev
->net
, "cand[%i]: flags: 0x%08x, bssid: %pM\n",
2998 i
, le32_to_cpu(cand
->flags
), cand
->bssid
);
3001 struct iw_pmkid_cand pcand
;
3002 union iwreq_data wrqu
;
3004 memset(&pcand
, 0, sizeof(pcand
));
3005 if (le32_to_cpu(cand
->flags
) & 0x01)
3006 pcand
.flags
|= IW_PMKID_CAND_PREAUTH
;
3008 memcpy(pcand
.bssid
.sa_data
, cand
->bssid
, ETH_ALEN
);
3010 memset(&wrqu
, 0, sizeof(wrqu
));
3011 wrqu
.data
.length
= sizeof(pcand
);
3012 wireless_send_event(usbdev
->net
, IWEVPMKIDCAND
, &wrqu
,
3018 static void rndis_wlan_media_specific_indication(struct usbnet
*usbdev
,
3019 struct rndis_indicate
*msg
, int buflen
)
3021 struct ndis_80211_status_indication
*indication
;
3024 offset
= offsetof(struct rndis_indicate
, status
) +
3025 le32_to_cpu(msg
->offset
);
3026 len
= le32_to_cpu(msg
->length
);
3029 netdev_info(usbdev
->net
, "media specific indication, ignore too short message (%i < 8)\n",
3034 if (offset
+ len
> buflen
) {
3035 netdev_info(usbdev
->net
, "media specific indication, too large to fit to buffer (%i > %i)\n",
3036 offset
+ len
, buflen
);
3040 indication
= (void *)((u8
*)msg
+ offset
);
3042 switch (le32_to_cpu(indication
->status_type
)) {
3043 case NDIS_80211_STATUSTYPE_RADIOSTATE
:
3044 netdev_info(usbdev
->net
, "radio state indication: %i\n",
3045 le32_to_cpu(indication
->u
.radio_status
));
3048 case NDIS_80211_STATUSTYPE_MEDIASTREAMMODE
:
3049 netdev_info(usbdev
->net
, "media stream mode indication: %i\n",
3050 le32_to_cpu(indication
->u
.media_stream_mode
));
3053 case NDIS_80211_STATUSTYPE_AUTHENTICATION
:
3054 rndis_wlan_auth_indication(usbdev
, indication
, len
);
3057 case NDIS_80211_STATUSTYPE_PMKID_CANDIDATELIST
:
3058 rndis_wlan_pmkid_cand_list_indication(usbdev
, indication
, len
);
3062 netdev_info(usbdev
->net
, "media specific indication: unknown status type 0x%08x\n",
3063 le32_to_cpu(indication
->status_type
));
3067 static void rndis_wlan_indication(struct usbnet
*usbdev
, void *ind
, int buflen
)
3069 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3070 struct rndis_indicate
*msg
= ind
;
3072 switch (msg
->status
) {
3073 case RNDIS_STATUS_MEDIA_CONNECT
:
3074 if (priv
->current_command_oid
== OID_802_11_ADD_KEY
) {
3075 /* OID_802_11_ADD_KEY causes sometimes extra
3076 * "media connect" indications which confuses driver
3077 * and userspace to think that device is
3078 * roaming/reassociating when it isn't.
3080 netdev_dbg(usbdev
->net
, "ignored OID_802_11_ADD_KEY triggered 'media connect'\n");
3084 usbnet_pause_rx(usbdev
);
3086 netdev_info(usbdev
->net
, "media connect\n");
3088 /* queue work to avoid recursive calls into rndis_command */
3089 set_bit(WORK_LINK_UP
, &priv
->work_pending
);
3090 queue_work(priv
->workqueue
, &priv
->work
);
3093 case RNDIS_STATUS_MEDIA_DISCONNECT
:
3094 netdev_info(usbdev
->net
, "media disconnect\n");
3096 /* queue work to avoid recursive calls into rndis_command */
3097 set_bit(WORK_LINK_DOWN
, &priv
->work_pending
);
3098 queue_work(priv
->workqueue
, &priv
->work
);
3101 case RNDIS_STATUS_MEDIA_SPECIFIC_INDICATION
:
3102 rndis_wlan_media_specific_indication(usbdev
, msg
, buflen
);
3106 netdev_info(usbdev
->net
, "indication: 0x%08x\n",
3107 le32_to_cpu(msg
->status
));
3112 static int rndis_wlan_get_caps(struct usbnet
*usbdev
, struct wiphy
*wiphy
)
3117 } networks_supported
;
3118 struct ndis_80211_capability
*caps
;
3119 u8 caps_buf
[sizeof(*caps
) + sizeof(caps
->auth_encr_pair
) * 16];
3120 int len
, retval
, i
, n
;
3121 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3123 /* determine supported modes */
3124 len
= sizeof(networks_supported
);
3125 retval
= rndis_query_oid(usbdev
, OID_802_11_NETWORK_TYPES_SUPPORTED
,
3126 &networks_supported
, &len
);
3128 n
= le32_to_cpu(networks_supported
.num_items
);
3131 for (i
= 0; i
< n
; i
++) {
3132 switch (le32_to_cpu(networks_supported
.items
[i
])) {
3133 case NDIS_80211_TYPE_FREQ_HOP
:
3134 case NDIS_80211_TYPE_DIRECT_SEQ
:
3135 priv
->caps
|= CAP_MODE_80211B
;
3137 case NDIS_80211_TYPE_OFDM_A
:
3138 priv
->caps
|= CAP_MODE_80211A
;
3140 case NDIS_80211_TYPE_OFDM_G
:
3141 priv
->caps
|= CAP_MODE_80211G
;
3147 /* get device 802.11 capabilities, number of PMKIDs */
3148 caps
= (struct ndis_80211_capability
*)caps_buf
;
3149 len
= sizeof(caps_buf
);
3150 retval
= rndis_query_oid(usbdev
, OID_802_11_CAPABILITY
, caps
, &len
);
3152 netdev_dbg(usbdev
->net
, "OID_802_11_CAPABILITY -> len %d, "
3153 "ver %d, pmkids %d, auth-encr-pairs %d\n",
3154 le32_to_cpu(caps
->length
),
3155 le32_to_cpu(caps
->version
),
3156 le32_to_cpu(caps
->num_pmkids
),
3157 le32_to_cpu(caps
->num_auth_encr_pair
));
3158 wiphy
->max_num_pmkids
= le32_to_cpu(caps
->num_pmkids
);
3160 wiphy
->max_num_pmkids
= 0;
3165 static void rndis_do_cqm(struct usbnet
*usbdev
, s32 rssi
)
3167 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3168 enum nl80211_cqm_rssi_threshold_event event
;
3169 int thold
, hyst
, last_event
;
3171 if (priv
->cqm_rssi_thold
>= 0 || rssi
>= 0)
3173 if (priv
->infra_mode
!= NDIS_80211_INFRA_INFRA
)
3176 last_event
= priv
->last_cqm_event_rssi
;
3177 thold
= priv
->cqm_rssi_thold
;
3178 hyst
= priv
->cqm_rssi_hyst
;
3180 if (rssi
< thold
&& (last_event
== 0 || rssi
< last_event
- hyst
))
3181 event
= NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW
;
3182 else if (rssi
> thold
&& (last_event
== 0 || rssi
> last_event
+ hyst
))
3183 event
= NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH
;
3187 priv
->last_cqm_event_rssi
= rssi
;
3188 cfg80211_cqm_rssi_notify(usbdev
->net
, event
, GFP_KERNEL
);
3191 #define DEVICE_POLLER_JIFFIES (HZ)
3192 static void rndis_device_poller(struct work_struct
*work
)
3194 struct rndis_wlan_private
*priv
=
3195 container_of(work
, struct rndis_wlan_private
,
3196 dev_poller_work
.work
);
3197 struct usbnet
*usbdev
= priv
->usbdev
;
3200 int update_jiffies
= DEVICE_POLLER_JIFFIES
;
3203 /* Only check/do workaround when connected. Calling is_associated()
3204 * also polls device with rndis_command() and catches for media link
3207 if (!is_associated(usbdev
)) {
3208 /* Workaround bad scanning in BCM4320a devices with active
3209 * background scanning when not associated.
3211 if (priv
->device_type
== RNDIS_BCM4320A
&& priv
->radio_on
&&
3212 !priv
->scan_request
) {
3213 /* Get previous scan results */
3214 rndis_check_bssid_list(usbdev
, NULL
, NULL
);
3216 /* Initiate new scan */
3217 rndis_start_bssid_list_scan(usbdev
);
3224 ret
= rndis_query_oid(usbdev
, OID_802_11_RSSI
, &rssi
, &len
);
3226 priv
->last_qual
= level_to_qual(le32_to_cpu(rssi
));
3227 rndis_do_cqm(usbdev
, le32_to_cpu(rssi
));
3230 netdev_dbg(usbdev
->net
, "dev-poller: OID_802_11_RSSI -> %d, rssi:%d, qual: %d\n",
3231 ret
, le32_to_cpu(rssi
), level_to_qual(le32_to_cpu(rssi
)));
3233 /* Workaround transfer stalls on poor quality links.
3234 * TODO: find right way to fix these stalls (as stalls do not happen
3235 * with ndiswrapper/windows driver). */
3236 if (priv
->param_workaround_interval
> 0 && priv
->last_qual
<= 25) {
3237 /* Decrease stats worker interval to catch stalls.
3238 * faster. Faster than 400-500ms causes packet loss,
3239 * Slower doesn't catch stalls fast enough.
3241 j
= msecs_to_jiffies(priv
->param_workaround_interval
);
3242 if (j
> DEVICE_POLLER_JIFFIES
)
3243 j
= DEVICE_POLLER_JIFFIES
;
3248 /* Send scan OID. Use of both OIDs is required to get device
3251 tmp
= cpu_to_le32(1);
3252 rndis_set_oid(usbdev
, OID_802_11_BSSID_LIST_SCAN
, &tmp
,
3255 len
= CONTROL_BUFFER_SIZE
;
3256 buf
= kmalloc(len
, GFP_KERNEL
);
3260 rndis_query_oid(usbdev
, OID_802_11_BSSID_LIST
, buf
, &len
);
3265 if (update_jiffies
>= HZ
)
3266 update_jiffies
= round_jiffies_relative(update_jiffies
);
3268 j
= round_jiffies_relative(update_jiffies
);
3269 if (abs(j
- update_jiffies
) <= 10)
3273 queue_delayed_work(priv
->workqueue
, &priv
->dev_poller_work
,
3278 * driver/device initialization
3280 static void rndis_copy_module_params(struct usbnet
*usbdev
, int device_type
)
3282 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3284 priv
->device_type
= device_type
;
3286 priv
->param_country
[0] = modparam_country
[0];
3287 priv
->param_country
[1] = modparam_country
[1];
3288 priv
->param_country
[2] = 0;
3289 priv
->param_frameburst
= modparam_frameburst
;
3290 priv
->param_afterburner
= modparam_afterburner
;
3291 priv
->param_power_save
= modparam_power_save
;
3292 priv
->param_power_output
= modparam_power_output
;
3293 priv
->param_roamtrigger
= modparam_roamtrigger
;
3294 priv
->param_roamdelta
= modparam_roamdelta
;
3296 priv
->param_country
[0] = toupper(priv
->param_country
[0]);
3297 priv
->param_country
[1] = toupper(priv
->param_country
[1]);
3298 /* doesn't support EU as country code, use FI instead */
3299 if (!strcmp(priv
->param_country
, "EU"))
3300 strcpy(priv
->param_country
, "FI");
3302 if (priv
->param_power_save
< 0)
3303 priv
->param_power_save
= 0;
3304 else if (priv
->param_power_save
> 2)
3305 priv
->param_power_save
= 2;
3307 if (priv
->param_power_output
< 0)
3308 priv
->param_power_output
= 0;
3309 else if (priv
->param_power_output
> 3)
3310 priv
->param_power_output
= 3;
3312 if (priv
->param_roamtrigger
< -80)
3313 priv
->param_roamtrigger
= -80;
3314 else if (priv
->param_roamtrigger
> -60)
3315 priv
->param_roamtrigger
= -60;
3317 if (priv
->param_roamdelta
< 0)
3318 priv
->param_roamdelta
= 0;
3319 else if (priv
->param_roamdelta
> 2)
3320 priv
->param_roamdelta
= 2;
3322 if (modparam_workaround_interval
< 0)
3323 priv
->param_workaround_interval
= 500;
3325 priv
->param_workaround_interval
= modparam_workaround_interval
;
3328 static int unknown_early_init(struct usbnet
*usbdev
)
3330 /* copy module parameters for unknown so that iwconfig reports txpower
3331 * and workaround parameter is copied to private structure correctly.
3333 rndis_copy_module_params(usbdev
, RNDIS_UNKNOWN
);
3335 /* This is unknown device, so do not try set configuration parameters.
3341 static int bcm4320a_early_init(struct usbnet
*usbdev
)
3343 /* copy module parameters for bcm4320a so that iwconfig reports txpower
3344 * and workaround parameter is copied to private structure correctly.
3346 rndis_copy_module_params(usbdev
, RNDIS_BCM4320A
);
3348 /* bcm4320a doesn't handle configuration parameters well. Try
3349 * set any and you get partially zeroed mac and broken device.
3355 static int bcm4320b_early_init(struct usbnet
*usbdev
)
3357 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3360 rndis_copy_module_params(usbdev
, RNDIS_BCM4320B
);
3362 /* Early initialization settings, setting these won't have effect
3363 * if called after generic_rndis_bind().
3366 rndis_set_config_parameter_str(usbdev
, "Country", priv
->param_country
);
3367 rndis_set_config_parameter_str(usbdev
, "FrameBursting",
3368 priv
->param_frameburst
? "1" : "0");
3369 rndis_set_config_parameter_str(usbdev
, "Afterburner",
3370 priv
->param_afterburner
? "1" : "0");
3371 sprintf(buf
, "%d", priv
->param_power_save
);
3372 rndis_set_config_parameter_str(usbdev
, "PowerSaveMode", buf
);
3373 sprintf(buf
, "%d", priv
->param_power_output
);
3374 rndis_set_config_parameter_str(usbdev
, "PwrOut", buf
);
3375 sprintf(buf
, "%d", priv
->param_roamtrigger
);
3376 rndis_set_config_parameter_str(usbdev
, "RoamTrigger", buf
);
3377 sprintf(buf
, "%d", priv
->param_roamdelta
);
3378 rndis_set_config_parameter_str(usbdev
, "RoamDelta", buf
);
3383 /* same as rndis_netdev_ops but with local multicast handler */
3384 static const struct net_device_ops rndis_wlan_netdev_ops
= {
3385 .ndo_open
= usbnet_open
,
3386 .ndo_stop
= usbnet_stop
,
3387 .ndo_start_xmit
= usbnet_start_xmit
,
3388 .ndo_tx_timeout
= usbnet_tx_timeout
,
3389 .ndo_set_mac_address
= eth_mac_addr
,
3390 .ndo_validate_addr
= eth_validate_addr
,
3391 .ndo_set_multicast_list
= rndis_wlan_set_multicast_list
,
3394 static int rndis_wlan_bind(struct usbnet
*usbdev
, struct usb_interface
*intf
)
3396 struct wiphy
*wiphy
;
3397 struct rndis_wlan_private
*priv
;
3401 /* allocate wiphy and rndis private data
3402 * NOTE: We only support a single virtual interface, so wiphy
3403 * and wireless_dev are somewhat synonymous for this device.
3405 wiphy
= wiphy_new(&rndis_config_ops
, sizeof(struct rndis_wlan_private
));
3409 priv
= wiphy_priv(wiphy
);
3410 usbdev
->net
->ieee80211_ptr
= &priv
->wdev
;
3411 priv
->wdev
.wiphy
= wiphy
;
3412 priv
->wdev
.iftype
= NL80211_IFTYPE_STATION
;
3414 /* These have to be initialized before calling generic_rndis_bind().
3415 * Otherwise we'll be in big trouble in rndis_wlan_early_init().
3417 usbdev
->driver_priv
= priv
;
3418 priv
->usbdev
= usbdev
;
3420 mutex_init(&priv
->command_lock
);
3422 /* because rndis_command() sleeps we need to use workqueue */
3423 priv
->workqueue
= create_singlethread_workqueue("rndis_wlan");
3424 INIT_WORK(&priv
->work
, rndis_wlan_worker
);
3425 INIT_DELAYED_WORK(&priv
->dev_poller_work
, rndis_device_poller
);
3426 INIT_DELAYED_WORK(&priv
->scan_work
, rndis_get_scan_results
);
3428 /* try bind rndis_host */
3429 retval
= generic_rndis_bind(usbdev
, intf
, FLAG_RNDIS_PHYM_WIRELESS
);
3433 /* generic_rndis_bind set packet filter to multicast_all+
3434 * promisc mode which doesn't work well for our devices (device
3435 * picks up rssi to closest station instead of to access point).
3437 * rndis_host wants to avoid all OID as much as possible
3438 * so do promisc/multicast handling in rndis_wlan.
3440 usbdev
->net
->netdev_ops
= &rndis_wlan_netdev_ops
;
3442 tmp
= RNDIS_PACKET_TYPE_DIRECTED
| RNDIS_PACKET_TYPE_BROADCAST
;
3443 retval
= rndis_set_oid(usbdev
, OID_GEN_CURRENT_PACKET_FILTER
, &tmp
,
3447 retval
= rndis_query_oid(usbdev
, OID_802_3_MAXIMUM_LIST_SIZE
, &tmp
,
3449 priv
->multicast_size
= le32_to_cpu(tmp
);
3450 if (retval
< 0 || priv
->multicast_size
< 0)
3451 priv
->multicast_size
= 0;
3452 if (priv
->multicast_size
> 0)
3453 usbdev
->net
->flags
|= IFF_MULTICAST
;
3455 usbdev
->net
->flags
&= ~IFF_MULTICAST
;
3457 /* fill-out wiphy structure and register w/ cfg80211 */
3458 memcpy(wiphy
->perm_addr
, usbdev
->net
->dev_addr
, ETH_ALEN
);
3459 wiphy
->privid
= rndis_wiphy_privid
;
3460 wiphy
->interface_modes
= BIT(NL80211_IFTYPE_STATION
)
3461 | BIT(NL80211_IFTYPE_ADHOC
);
3462 wiphy
->max_scan_ssids
= 1;
3464 /* TODO: fill-out band/encr information based on priv->caps */
3465 rndis_wlan_get_caps(usbdev
, wiphy
);
3467 memcpy(priv
->channels
, rndis_channels
, sizeof(rndis_channels
));
3468 memcpy(priv
->rates
, rndis_rates
, sizeof(rndis_rates
));
3469 priv
->band
.channels
= priv
->channels
;
3470 priv
->band
.n_channels
= ARRAY_SIZE(rndis_channels
);
3471 priv
->band
.bitrates
= priv
->rates
;
3472 priv
->band
.n_bitrates
= ARRAY_SIZE(rndis_rates
);
3473 wiphy
->bands
[IEEE80211_BAND_2GHZ
] = &priv
->band
;
3474 wiphy
->signal_type
= CFG80211_SIGNAL_TYPE_UNSPEC
;
3476 memcpy(priv
->cipher_suites
, rndis_cipher_suites
,
3477 sizeof(rndis_cipher_suites
));
3478 wiphy
->cipher_suites
= priv
->cipher_suites
;
3479 wiphy
->n_cipher_suites
= ARRAY_SIZE(rndis_cipher_suites
);
3481 set_wiphy_dev(wiphy
, &usbdev
->udev
->dev
);
3483 if (wiphy_register(wiphy
)) {
3488 set_default_iw_params(usbdev
);
3490 priv
->power_mode
= -1;
3492 /* set default rts/frag */
3493 rndis_set_wiphy_params(wiphy
,
3494 WIPHY_PARAM_FRAG_THRESHOLD
| WIPHY_PARAM_RTS_THRESHOLD
);
3496 /* turn radio off on init */
3497 priv
->radio_on
= false;
3498 disassociate(usbdev
, false);
3499 netif_carrier_off(usbdev
->net
);
3504 cancel_delayed_work_sync(&priv
->dev_poller_work
);
3505 cancel_delayed_work_sync(&priv
->scan_work
);
3506 cancel_work_sync(&priv
->work
);
3507 flush_workqueue(priv
->workqueue
);
3508 destroy_workqueue(priv
->workqueue
);
3514 static void rndis_wlan_unbind(struct usbnet
*usbdev
, struct usb_interface
*intf
)
3516 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3518 /* turn radio off */
3519 disassociate(usbdev
, false);
3521 cancel_delayed_work_sync(&priv
->dev_poller_work
);
3522 cancel_delayed_work_sync(&priv
->scan_work
);
3523 cancel_work_sync(&priv
->work
);
3524 flush_workqueue(priv
->workqueue
);
3525 destroy_workqueue(priv
->workqueue
);
3527 rndis_unbind(usbdev
, intf
);
3529 wiphy_unregister(priv
->wdev
.wiphy
);
3530 wiphy_free(priv
->wdev
.wiphy
);
3533 static int rndis_wlan_reset(struct usbnet
*usbdev
)
3535 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3538 netdev_dbg(usbdev
->net
, "%s()\n", __func__
);
3540 retval
= rndis_reset(usbdev
);
3542 netdev_warn(usbdev
->net
, "rndis_reset failed: %d\n", retval
);
3544 /* rndis_reset cleared multicast list, so restore here.
3545 (set_multicast_list() also turns on current packet filter) */
3546 set_multicast_list(usbdev
);
3548 queue_delayed_work(priv
->workqueue
, &priv
->dev_poller_work
,
3549 round_jiffies_relative(DEVICE_POLLER_JIFFIES
));
3551 return deauthenticate(usbdev
);
3554 static int rndis_wlan_stop(struct usbnet
*usbdev
)
3556 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3560 netdev_dbg(usbdev
->net
, "%s()\n", __func__
);
3562 retval
= disassociate(usbdev
, false);
3564 priv
->work_pending
= 0;
3565 cancel_delayed_work_sync(&priv
->dev_poller_work
);
3566 cancel_delayed_work_sync(&priv
->scan_work
);
3567 cancel_work_sync(&priv
->work
);
3568 flush_workqueue(priv
->workqueue
);
3570 if (priv
->scan_request
) {
3571 cfg80211_scan_done(priv
->scan_request
, true);
3572 priv
->scan_request
= NULL
;
3575 /* Set current packet filter zero to block receiving data packets from
3578 rndis_set_oid(usbdev
, OID_GEN_CURRENT_PACKET_FILTER
, &filter
,
3584 static const struct driver_info bcm4320b_info
= {
3585 .description
= "Wireless RNDIS device, BCM4320b based",
3586 .flags
= FLAG_WLAN
| FLAG_FRAMING_RN
| FLAG_NO_SETINT
|
3587 FLAG_AVOID_UNLINK_URBS
,
3588 .bind
= rndis_wlan_bind
,
3589 .unbind
= rndis_wlan_unbind
,
3590 .status
= rndis_status
,
3591 .rx_fixup
= rndis_rx_fixup
,
3592 .tx_fixup
= rndis_tx_fixup
,
3593 .reset
= rndis_wlan_reset
,
3594 .stop
= rndis_wlan_stop
,
3595 .early_init
= bcm4320b_early_init
,
3596 .indication
= rndis_wlan_indication
,
3599 static const struct driver_info bcm4320a_info
= {
3600 .description
= "Wireless RNDIS device, BCM4320a based",
3601 .flags
= FLAG_WLAN
| FLAG_FRAMING_RN
| FLAG_NO_SETINT
|
3602 FLAG_AVOID_UNLINK_URBS
,
3603 .bind
= rndis_wlan_bind
,
3604 .unbind
= rndis_wlan_unbind
,
3605 .status
= rndis_status
,
3606 .rx_fixup
= rndis_rx_fixup
,
3607 .tx_fixup
= rndis_tx_fixup
,
3608 .reset
= rndis_wlan_reset
,
3609 .stop
= rndis_wlan_stop
,
3610 .early_init
= bcm4320a_early_init
,
3611 .indication
= rndis_wlan_indication
,
3614 static const struct driver_info rndis_wlan_info
= {
3615 .description
= "Wireless RNDIS device",
3616 .flags
= FLAG_WLAN
| FLAG_FRAMING_RN
| FLAG_NO_SETINT
|
3617 FLAG_AVOID_UNLINK_URBS
,
3618 .bind
= rndis_wlan_bind
,
3619 .unbind
= rndis_wlan_unbind
,
3620 .status
= rndis_status
,
3621 .rx_fixup
= rndis_rx_fixup
,
3622 .tx_fixup
= rndis_tx_fixup
,
3623 .reset
= rndis_wlan_reset
,
3624 .stop
= rndis_wlan_stop
,
3625 .early_init
= unknown_early_init
,
3626 .indication
= rndis_wlan_indication
,
3629 /*-------------------------------------------------------------------------*/
3631 static const struct usb_device_id products
[] = {
3632 #define RNDIS_MASTER_INTERFACE \
3633 .bInterfaceClass = USB_CLASS_COMM, \
3634 .bInterfaceSubClass = 2 /* ACM */, \
3635 .bInterfaceProtocol = 0x0ff
3637 /* INF driver for these devices have DriverVer >= 4.xx.xx.xx and many custom
3638 * parameters available. Chipset marked as 'BCM4320SKFBG' in NDISwrapper-wiki.
3641 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3642 | USB_DEVICE_ID_MATCH_DEVICE
,
3644 .idProduct
= 0x00bc, /* Buffalo WLI-U2-KG125S */
3645 RNDIS_MASTER_INTERFACE
,
3646 .driver_info
= (unsigned long) &bcm4320b_info
,
3648 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3649 | USB_DEVICE_ID_MATCH_DEVICE
,
3651 .idProduct
= 0x011b, /* U.S. Robotics USR5421 */
3652 RNDIS_MASTER_INTERFACE
,
3653 .driver_info
= (unsigned long) &bcm4320b_info
,
3655 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3656 | USB_DEVICE_ID_MATCH_DEVICE
,
3658 .idProduct
= 0x011b, /* Belkin F5D7051 */
3659 RNDIS_MASTER_INTERFACE
,
3660 .driver_info
= (unsigned long) &bcm4320b_info
,
3662 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3663 | USB_DEVICE_ID_MATCH_DEVICE
,
3664 .idVendor
= 0x1799, /* Belkin has two vendor ids */
3665 .idProduct
= 0x011b, /* Belkin F5D7051 */
3666 RNDIS_MASTER_INTERFACE
,
3667 .driver_info
= (unsigned long) &bcm4320b_info
,
3669 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3670 | USB_DEVICE_ID_MATCH_DEVICE
,
3672 .idProduct
= 0x0014, /* Linksys WUSB54GSv2 */
3673 RNDIS_MASTER_INTERFACE
,
3674 .driver_info
= (unsigned long) &bcm4320b_info
,
3676 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3677 | USB_DEVICE_ID_MATCH_DEVICE
,
3679 .idProduct
= 0x0026, /* Linksys WUSB54GSC */
3680 RNDIS_MASTER_INTERFACE
,
3681 .driver_info
= (unsigned long) &bcm4320b_info
,
3683 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3684 | USB_DEVICE_ID_MATCH_DEVICE
,
3686 .idProduct
= 0x1717, /* Asus WL169gE */
3687 RNDIS_MASTER_INTERFACE
,
3688 .driver_info
= (unsigned long) &bcm4320b_info
,
3690 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3691 | USB_DEVICE_ID_MATCH_DEVICE
,
3693 .idProduct
= 0xd11b, /* Eminent EM4045 */
3694 RNDIS_MASTER_INTERFACE
,
3695 .driver_info
= (unsigned long) &bcm4320b_info
,
3697 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3698 | USB_DEVICE_ID_MATCH_DEVICE
,
3700 .idProduct
= 0x0715, /* BT Voyager 1055 */
3701 RNDIS_MASTER_INTERFACE
,
3702 .driver_info
= (unsigned long) &bcm4320b_info
,
3704 /* These devices have DriverVer < 4.xx.xx.xx and do not have any custom
3705 * parameters available, hardware probably contain older firmware version with
3706 * no way of updating. Chipset marked as 'BCM4320????' in NDISwrapper-wiki.
3709 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3710 | USB_DEVICE_ID_MATCH_DEVICE
,
3712 .idProduct
= 0x000e, /* Linksys WUSB54GSv1 */
3713 RNDIS_MASTER_INTERFACE
,
3714 .driver_info
= (unsigned long) &bcm4320a_info
,
3716 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3717 | USB_DEVICE_ID_MATCH_DEVICE
,
3719 .idProduct
= 0x0111, /* U.S. Robotics USR5420 */
3720 RNDIS_MASTER_INTERFACE
,
3721 .driver_info
= (unsigned long) &bcm4320a_info
,
3723 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3724 | USB_DEVICE_ID_MATCH_DEVICE
,
3726 .idProduct
= 0x004b, /* BUFFALO WLI-USB-G54 */
3727 RNDIS_MASTER_INTERFACE
,
3728 .driver_info
= (unsigned long) &bcm4320a_info
,
3730 /* Generic Wireless RNDIS devices that we don't have exact
3731 * idVendor/idProduct/chip yet.
3734 /* RNDIS is MSFT's un-official variant of CDC ACM */
3735 USB_INTERFACE_INFO(USB_CLASS_COMM
, 2 /* ACM */, 0x0ff),
3736 .driver_info
= (unsigned long) &rndis_wlan_info
,
3738 /* "ActiveSync" is an undocumented variant of RNDIS, used in WM5 */
3739 USB_INTERFACE_INFO(USB_CLASS_MISC
, 1, 1),
3740 .driver_info
= (unsigned long) &rndis_wlan_info
,
3744 MODULE_DEVICE_TABLE(usb
, products
);
3746 static struct usb_driver rndis_wlan_driver
= {
3747 .name
= "rndis_wlan",
3748 .id_table
= products
,
3749 .probe
= usbnet_probe
,
3750 .disconnect
= usbnet_disconnect
,
3751 .suspend
= usbnet_suspend
,
3752 .resume
= usbnet_resume
,
3755 static int __init
rndis_wlan_init(void)
3757 return usb_register(&rndis_wlan_driver
);
3759 module_init(rndis_wlan_init
);
3761 static void __exit
rndis_wlan_exit(void)
3763 usb_deregister(&rndis_wlan_driver
);
3765 module_exit(rndis_wlan_exit
);
3767 MODULE_AUTHOR("Bjorge Dijkstra");
3768 MODULE_AUTHOR("Jussi Kivilinna");
3769 MODULE_DESCRIPTION("Driver for RNDIS based USB Wireless adapters");
3770 MODULE_LICENSE("GPL");