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@iki.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, see <http://www.gnu.org/licenses/>.
20 * Portions of this file are based on NDISwrapper project,
21 * Copyright (C) 2003-2005 Pontus Fuchs, Giridhar Pemmasani
22 * http://ndiswrapper.sourceforge.net/
25 // #define DEBUG // error path messages, extra info
26 // #define VERBOSE // more; success messages
28 #include <linux/module.h>
29 #include <linux/netdevice.h>
30 #include <linux/etherdevice.h>
31 #include <linux/ethtool.h>
32 #include <linux/workqueue.h>
33 #include <linux/mutex.h>
34 #include <linux/mii.h>
35 #include <linux/usb.h>
36 #include <linux/usb/cdc.h>
37 #include <linux/ieee80211.h>
38 #include <linux/if_arp.h>
39 #include <linux/ctype.h>
40 #include <linux/spinlock.h>
41 #include <linux/slab.h>
42 #include <net/cfg80211.h>
43 #include <linux/usb/usbnet.h>
44 #include <linux/usb/rndis_host.h>
47 /* NOTE: All these are settings for Broadcom chipset */
48 static char modparam_country
[4] = "EU";
49 module_param_string(country
, modparam_country
, 4, 0444);
50 MODULE_PARM_DESC(country
, "Country code (ISO 3166-1 alpha-2), default: EU");
52 static int modparam_frameburst
= 1;
53 module_param_named(frameburst
, modparam_frameburst
, int, 0444);
54 MODULE_PARM_DESC(frameburst
, "enable frame bursting (default: on)");
56 static int modparam_afterburner
= 0;
57 module_param_named(afterburner
, modparam_afterburner
, int, 0444);
58 MODULE_PARM_DESC(afterburner
,
59 "enable afterburner aka '125 High Speed Mode' (default: off)");
61 static int modparam_power_save
= 0;
62 module_param_named(power_save
, modparam_power_save
, int, 0444);
63 MODULE_PARM_DESC(power_save
,
64 "set power save mode: 0=off, 1=on, 2=fast (default: off)");
66 static int modparam_power_output
= 3;
67 module_param_named(power_output
, modparam_power_output
, int, 0444);
68 MODULE_PARM_DESC(power_output
,
69 "set power output: 0=25%, 1=50%, 2=75%, 3=100% (default: 100%)");
71 static int modparam_roamtrigger
= -70;
72 module_param_named(roamtrigger
, modparam_roamtrigger
, int, 0444);
73 MODULE_PARM_DESC(roamtrigger
,
74 "set roaming dBm trigger: -80=optimize for distance, "
75 "-60=bandwidth (default: -70)");
77 static int modparam_roamdelta
= 1;
78 module_param_named(roamdelta
, modparam_roamdelta
, int, 0444);
79 MODULE_PARM_DESC(roamdelta
,
80 "set roaming tendency: 0=aggressive, 1=moderate, "
81 "2=conservative (default: moderate)");
83 static int modparam_workaround_interval
;
84 module_param_named(workaround_interval
, modparam_workaround_interval
,
86 MODULE_PARM_DESC(workaround_interval
,
87 "set stall workaround interval in msecs (0=disabled) (default: 0)");
89 /* Typical noise/maximum signal level values taken from ndiswrapper iw_ndis.h */
90 #define WL_NOISE -96 /* typical noise level in dBm */
91 #define WL_SIGMAX -32 /* typical maximum signal level in dBm */
94 /* Assume that Broadcom 4320 (only chipset at time of writing known to be
95 * based on wireless rndis) has default txpower of 13dBm.
96 * This value is from Linksys WUSB54GSC User Guide, Appendix F: Specifications.
97 * 100% : 20 mW ~ 13dBm
102 #define BCM4320_DEFAULT_TXPOWER_DBM_100 13
103 #define BCM4320_DEFAULT_TXPOWER_DBM_75 12
104 #define BCM4320_DEFAULT_TXPOWER_DBM_50 10
105 #define BCM4320_DEFAULT_TXPOWER_DBM_25 7
107 /* Known device types */
108 #define RNDIS_UNKNOWN 0
109 #define RNDIS_BCM4320A 1
110 #define RNDIS_BCM4320B 2
113 /* NDIS data structures. Taken from wpa_supplicant driver_ndis.c
114 * slightly modified for datatype endianess, etc
116 #define NDIS_802_11_LENGTH_SSID 32
117 #define NDIS_802_11_LENGTH_RATES 8
118 #define NDIS_802_11_LENGTH_RATES_EX 16
120 enum ndis_80211_net_type
{
121 NDIS_80211_TYPE_FREQ_HOP
,
122 NDIS_80211_TYPE_DIRECT_SEQ
,
123 NDIS_80211_TYPE_OFDM_A
,
124 NDIS_80211_TYPE_OFDM_G
127 enum ndis_80211_net_infra
{
128 NDIS_80211_INFRA_ADHOC
,
129 NDIS_80211_INFRA_INFRA
,
130 NDIS_80211_INFRA_AUTO_UNKNOWN
133 enum ndis_80211_auth_mode
{
134 NDIS_80211_AUTH_OPEN
,
135 NDIS_80211_AUTH_SHARED
,
136 NDIS_80211_AUTH_AUTO_SWITCH
,
138 NDIS_80211_AUTH_WPA_PSK
,
139 NDIS_80211_AUTH_WPA_NONE
,
140 NDIS_80211_AUTH_WPA2
,
141 NDIS_80211_AUTH_WPA2_PSK
144 enum ndis_80211_encr_status
{
145 NDIS_80211_ENCR_WEP_ENABLED
,
146 NDIS_80211_ENCR_DISABLED
,
147 NDIS_80211_ENCR_WEP_KEY_ABSENT
,
148 NDIS_80211_ENCR_NOT_SUPPORTED
,
149 NDIS_80211_ENCR_TKIP_ENABLED
,
150 NDIS_80211_ENCR_TKIP_KEY_ABSENT
,
151 NDIS_80211_ENCR_CCMP_ENABLED
,
152 NDIS_80211_ENCR_CCMP_KEY_ABSENT
155 enum ndis_80211_priv_filter
{
156 NDIS_80211_PRIV_ACCEPT_ALL
,
157 NDIS_80211_PRIV_8021X_WEP
160 enum ndis_80211_status_type
{
161 NDIS_80211_STATUSTYPE_AUTHENTICATION
,
162 NDIS_80211_STATUSTYPE_MEDIASTREAMMODE
,
163 NDIS_80211_STATUSTYPE_PMKID_CANDIDATELIST
,
164 NDIS_80211_STATUSTYPE_RADIOSTATE
,
167 enum ndis_80211_media_stream_mode
{
168 NDIS_80211_MEDIA_STREAM_OFF
,
169 NDIS_80211_MEDIA_STREAM_ON
172 enum ndis_80211_radio_status
{
173 NDIS_80211_RADIO_STATUS_ON
,
174 NDIS_80211_RADIO_STATUS_HARDWARE_OFF
,
175 NDIS_80211_RADIO_STATUS_SOFTWARE_OFF
,
178 enum ndis_80211_addkey_bits
{
179 NDIS_80211_ADDKEY_8021X_AUTH
= cpu_to_le32(1 << 28),
180 NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
= cpu_to_le32(1 << 29),
181 NDIS_80211_ADDKEY_PAIRWISE_KEY
= cpu_to_le32(1 << 30),
182 NDIS_80211_ADDKEY_TRANSMIT_KEY
= cpu_to_le32(1 << 31)
185 enum ndis_80211_addwep_bits
{
186 NDIS_80211_ADDWEP_PERCLIENT_KEY
= cpu_to_le32(1 << 30),
187 NDIS_80211_ADDWEP_TRANSMIT_KEY
= cpu_to_le32(1 << 31)
190 enum ndis_80211_power_mode
{
191 NDIS_80211_POWER_MODE_CAM
,
192 NDIS_80211_POWER_MODE_MAX_PSP
,
193 NDIS_80211_POWER_MODE_FAST_PSP
,
196 enum ndis_80211_pmkid_cand_list_flag_bits
{
197 NDIS_80211_PMKID_CAND_PREAUTH
= cpu_to_le32(1 << 0)
200 struct ndis_80211_auth_request
{
207 struct ndis_80211_pmkid_candidate
{
213 struct ndis_80211_pmkid_cand_list
{
215 __le32 num_candidates
;
216 struct ndis_80211_pmkid_candidate candidate_list
[0];
219 struct ndis_80211_status_indication
{
222 __le32 media_stream_mode
;
224 struct ndis_80211_auth_request auth_request
[0];
225 struct ndis_80211_pmkid_cand_list cand_list
;
229 struct ndis_80211_ssid
{
231 u8 essid
[NDIS_802_11_LENGTH_SSID
];
234 struct ndis_80211_conf_freq_hop
{
241 struct ndis_80211_conf
{
243 __le32 beacon_period
;
246 struct ndis_80211_conf_freq_hop fh_config
;
249 struct ndis_80211_bssid_ex
{
253 struct ndis_80211_ssid ssid
;
257 struct ndis_80211_conf config
;
259 u8 rates
[NDIS_802_11_LENGTH_RATES_EX
];
264 struct ndis_80211_bssid_list_ex
{
266 struct ndis_80211_bssid_ex bssid
[0];
269 struct ndis_80211_fixed_ies
{
271 __le16 beacon_interval
;
275 struct ndis_80211_wep_key
{
282 struct ndis_80211_key
{
292 struct ndis_80211_remove_key
{
299 struct ndis_config_param
{
307 struct ndis_80211_assoc_info
{
312 __le16 listen_interval
;
313 u8 cur_ap_address
[ETH_ALEN
];
315 __le32 req_ie_length
;
316 __le32 offset_req_ies
;
323 __le32 resp_ie_length
;
324 __le32 offset_resp_ies
;
327 struct ndis_80211_auth_encr_pair
{
332 struct ndis_80211_capability
{
336 __le32 num_auth_encr_pair
;
337 struct ndis_80211_auth_encr_pair auth_encr_pair
[0];
340 struct ndis_80211_bssid_info
{
345 struct ndis_80211_pmkid
{
347 __le32 bssid_info_count
;
348 struct ndis_80211_bssid_info bssid_info
[0];
354 #define CAP_MODE_80211A 1
355 #define CAP_MODE_80211B 2
356 #define CAP_MODE_80211G 4
357 #define CAP_MODE_MASK 7
359 #define WORK_LINK_UP 0
360 #define WORK_LINK_DOWN 1
361 #define WORK_SET_MULTICAST_LIST 2
363 #define RNDIS_WLAN_ALG_NONE 0
364 #define RNDIS_WLAN_ALG_WEP (1<<0)
365 #define RNDIS_WLAN_ALG_TKIP (1<<1)
366 #define RNDIS_WLAN_ALG_CCMP (1<<2)
368 #define RNDIS_WLAN_NUM_KEYS 4
369 #define RNDIS_WLAN_KEY_MGMT_NONE 0
370 #define RNDIS_WLAN_KEY_MGMT_802_1X (1<<0)
371 #define RNDIS_WLAN_KEY_MGMT_PSK (1<<1)
373 #define COMMAND_BUFFER_SIZE (CONTROL_BUFFER_SIZE + sizeof(struct rndis_set))
375 static const struct ieee80211_channel rndis_channels
[] = {
376 { .center_freq
= 2412 },
377 { .center_freq
= 2417 },
378 { .center_freq
= 2422 },
379 { .center_freq
= 2427 },
380 { .center_freq
= 2432 },
381 { .center_freq
= 2437 },
382 { .center_freq
= 2442 },
383 { .center_freq
= 2447 },
384 { .center_freq
= 2452 },
385 { .center_freq
= 2457 },
386 { .center_freq
= 2462 },
387 { .center_freq
= 2467 },
388 { .center_freq
= 2472 },
389 { .center_freq
= 2484 },
392 static const struct ieee80211_rate rndis_rates
[] = {
394 { .bitrate
= 20, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
395 { .bitrate
= 55, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
396 { .bitrate
= 110, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
407 static const u32 rndis_cipher_suites
[] = {
408 WLAN_CIPHER_SUITE_WEP40
,
409 WLAN_CIPHER_SUITE_WEP104
,
410 WLAN_CIPHER_SUITE_TKIP
,
411 WLAN_CIPHER_SUITE_CCMP
,
414 struct rndis_wlan_encr_key
{
423 /* RNDIS device private data */
424 struct rndis_wlan_private
{
425 struct usbnet
*usbdev
;
427 struct wireless_dev wdev
;
429 struct cfg80211_scan_request
*scan_request
;
431 struct workqueue_struct
*workqueue
;
432 struct delayed_work dev_poller_work
;
433 struct delayed_work scan_work
;
434 struct work_struct work
;
435 struct mutex command_lock
;
436 unsigned long work_pending
;
440 int last_cqm_event_rssi
;
442 struct ieee80211_supported_band band
;
443 struct ieee80211_channel channels
[ARRAY_SIZE(rndis_channels
)];
444 struct ieee80211_rate rates
[ARRAY_SIZE(rndis_rates
)];
445 u32 cipher_suites
[ARRAY_SIZE(rndis_cipher_suites
)];
451 /* module parameters */
452 char param_country
[4];
453 int param_frameburst
;
454 int param_afterburner
;
455 int param_power_save
;
456 int param_power_output
;
457 int param_roamtrigger
;
459 u32 param_workaround_interval
;
467 u32 current_command_oid
;
469 /* encryption stuff */
470 u8 encr_tx_key_index
;
471 struct rndis_wlan_encr_key encr_keys
[RNDIS_WLAN_NUM_KEYS
];
474 u8 command_buffer
[COMMAND_BUFFER_SIZE
];
480 static int rndis_change_virtual_intf(struct wiphy
*wiphy
,
481 struct net_device
*dev
,
482 enum nl80211_iftype type
,
483 struct vif_params
*params
);
485 static int rndis_scan(struct wiphy
*wiphy
,
486 struct cfg80211_scan_request
*request
);
488 static int rndis_set_wiphy_params(struct wiphy
*wiphy
, u32 changed
);
490 static int rndis_set_tx_power(struct wiphy
*wiphy
,
491 struct wireless_dev
*wdev
,
492 enum nl80211_tx_power_setting type
,
494 static int rndis_get_tx_power(struct wiphy
*wiphy
,
495 struct wireless_dev
*wdev
,
498 static int rndis_connect(struct wiphy
*wiphy
, struct net_device
*dev
,
499 struct cfg80211_connect_params
*sme
);
501 static int rndis_disconnect(struct wiphy
*wiphy
, struct net_device
*dev
,
504 static int rndis_join_ibss(struct wiphy
*wiphy
, struct net_device
*dev
,
505 struct cfg80211_ibss_params
*params
);
507 static int rndis_leave_ibss(struct wiphy
*wiphy
, struct net_device
*dev
);
509 static int rndis_add_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
510 u8 key_index
, bool pairwise
, const u8
*mac_addr
,
511 struct key_params
*params
);
513 static int rndis_del_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
514 u8 key_index
, bool pairwise
, const u8
*mac_addr
);
516 static int rndis_set_default_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
517 u8 key_index
, bool unicast
, bool multicast
);
519 static int rndis_get_station(struct wiphy
*wiphy
, struct net_device
*dev
,
520 const u8
*mac
, struct station_info
*sinfo
);
522 static int rndis_dump_station(struct wiphy
*wiphy
, struct net_device
*dev
,
523 int idx
, u8
*mac
, struct station_info
*sinfo
);
525 static int rndis_set_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
,
526 struct cfg80211_pmksa
*pmksa
);
528 static int rndis_del_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
,
529 struct cfg80211_pmksa
*pmksa
);
531 static int rndis_flush_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
);
533 static int rndis_set_power_mgmt(struct wiphy
*wiphy
, struct net_device
*dev
,
534 bool enabled
, int timeout
);
536 static int rndis_set_cqm_rssi_config(struct wiphy
*wiphy
,
537 struct net_device
*dev
,
538 s32 rssi_thold
, u32 rssi_hyst
);
540 static const struct cfg80211_ops rndis_config_ops
= {
541 .change_virtual_intf
= rndis_change_virtual_intf
,
543 .set_wiphy_params
= rndis_set_wiphy_params
,
544 .set_tx_power
= rndis_set_tx_power
,
545 .get_tx_power
= rndis_get_tx_power
,
546 .connect
= rndis_connect
,
547 .disconnect
= rndis_disconnect
,
548 .join_ibss
= rndis_join_ibss
,
549 .leave_ibss
= rndis_leave_ibss
,
550 .add_key
= rndis_add_key
,
551 .del_key
= rndis_del_key
,
552 .set_default_key
= rndis_set_default_key
,
553 .get_station
= rndis_get_station
,
554 .dump_station
= rndis_dump_station
,
555 .set_pmksa
= rndis_set_pmksa
,
556 .del_pmksa
= rndis_del_pmksa
,
557 .flush_pmksa
= rndis_flush_pmksa
,
558 .set_power_mgmt
= rndis_set_power_mgmt
,
559 .set_cqm_rssi_config
= rndis_set_cqm_rssi_config
,
562 static void *rndis_wiphy_privid
= &rndis_wiphy_privid
;
565 static struct rndis_wlan_private
*get_rndis_wlan_priv(struct usbnet
*dev
)
567 return (struct rndis_wlan_private
*)dev
->driver_priv
;
570 static u32
get_bcm4320_power_dbm(struct rndis_wlan_private
*priv
)
572 switch (priv
->param_power_output
) {
575 return BCM4320_DEFAULT_TXPOWER_DBM_100
;
577 return BCM4320_DEFAULT_TXPOWER_DBM_75
;
579 return BCM4320_DEFAULT_TXPOWER_DBM_50
;
581 return BCM4320_DEFAULT_TXPOWER_DBM_25
;
585 static bool is_wpa_key(struct rndis_wlan_private
*priv
, u8 idx
)
587 int cipher
= priv
->encr_keys
[idx
].cipher
;
589 return (cipher
== WLAN_CIPHER_SUITE_CCMP
||
590 cipher
== WLAN_CIPHER_SUITE_TKIP
);
593 static int rndis_cipher_to_alg(u32 cipher
)
597 return RNDIS_WLAN_ALG_NONE
;
598 case WLAN_CIPHER_SUITE_WEP40
:
599 case WLAN_CIPHER_SUITE_WEP104
:
600 return RNDIS_WLAN_ALG_WEP
;
601 case WLAN_CIPHER_SUITE_TKIP
:
602 return RNDIS_WLAN_ALG_TKIP
;
603 case WLAN_CIPHER_SUITE_CCMP
:
604 return RNDIS_WLAN_ALG_CCMP
;
608 static int rndis_akm_suite_to_key_mgmt(u32 akm_suite
)
612 return RNDIS_WLAN_KEY_MGMT_NONE
;
613 case WLAN_AKM_SUITE_8021X
:
614 return RNDIS_WLAN_KEY_MGMT_802_1X
;
615 case WLAN_AKM_SUITE_PSK
:
616 return RNDIS_WLAN_KEY_MGMT_PSK
;
621 static const char *oid_to_string(u32 oid
)
624 #define OID_STR(oid) case oid: return(#oid)
625 /* from rndis_host.h */
626 OID_STR(RNDIS_OID_802_3_PERMANENT_ADDRESS
);
627 OID_STR(RNDIS_OID_GEN_MAXIMUM_FRAME_SIZE
);
628 OID_STR(RNDIS_OID_GEN_CURRENT_PACKET_FILTER
);
629 OID_STR(RNDIS_OID_GEN_PHYSICAL_MEDIUM
);
631 /* from rndis_wlan.c */
632 OID_STR(RNDIS_OID_GEN_LINK_SPEED
);
633 OID_STR(RNDIS_OID_GEN_RNDIS_CONFIG_PARAMETER
);
635 OID_STR(RNDIS_OID_GEN_XMIT_OK
);
636 OID_STR(RNDIS_OID_GEN_RCV_OK
);
637 OID_STR(RNDIS_OID_GEN_XMIT_ERROR
);
638 OID_STR(RNDIS_OID_GEN_RCV_ERROR
);
639 OID_STR(RNDIS_OID_GEN_RCV_NO_BUFFER
);
641 OID_STR(RNDIS_OID_802_3_CURRENT_ADDRESS
);
642 OID_STR(RNDIS_OID_802_3_MULTICAST_LIST
);
643 OID_STR(RNDIS_OID_802_3_MAXIMUM_LIST_SIZE
);
645 OID_STR(RNDIS_OID_802_11_BSSID
);
646 OID_STR(RNDIS_OID_802_11_SSID
);
647 OID_STR(RNDIS_OID_802_11_INFRASTRUCTURE_MODE
);
648 OID_STR(RNDIS_OID_802_11_ADD_WEP
);
649 OID_STR(RNDIS_OID_802_11_REMOVE_WEP
);
650 OID_STR(RNDIS_OID_802_11_DISASSOCIATE
);
651 OID_STR(RNDIS_OID_802_11_AUTHENTICATION_MODE
);
652 OID_STR(RNDIS_OID_802_11_PRIVACY_FILTER
);
653 OID_STR(RNDIS_OID_802_11_BSSID_LIST_SCAN
);
654 OID_STR(RNDIS_OID_802_11_ENCRYPTION_STATUS
);
655 OID_STR(RNDIS_OID_802_11_ADD_KEY
);
656 OID_STR(RNDIS_OID_802_11_REMOVE_KEY
);
657 OID_STR(RNDIS_OID_802_11_ASSOCIATION_INFORMATION
);
658 OID_STR(RNDIS_OID_802_11_CAPABILITY
);
659 OID_STR(RNDIS_OID_802_11_PMKID
);
660 OID_STR(RNDIS_OID_802_11_NETWORK_TYPES_SUPPORTED
);
661 OID_STR(RNDIS_OID_802_11_NETWORK_TYPE_IN_USE
);
662 OID_STR(RNDIS_OID_802_11_TX_POWER_LEVEL
);
663 OID_STR(RNDIS_OID_802_11_RSSI
);
664 OID_STR(RNDIS_OID_802_11_RSSI_TRIGGER
);
665 OID_STR(RNDIS_OID_802_11_FRAGMENTATION_THRESHOLD
);
666 OID_STR(RNDIS_OID_802_11_RTS_THRESHOLD
);
667 OID_STR(RNDIS_OID_802_11_SUPPORTED_RATES
);
668 OID_STR(RNDIS_OID_802_11_CONFIGURATION
);
669 OID_STR(RNDIS_OID_802_11_POWER_MODE
);
670 OID_STR(RNDIS_OID_802_11_BSSID_LIST
);
677 static const char *oid_to_string(u32 oid
)
683 /* translate error code */
684 static int rndis_error_status(__le32 rndis_status
)
687 switch (le32_to_cpu(rndis_status
)) {
688 case RNDIS_STATUS_SUCCESS
:
691 case RNDIS_STATUS_FAILURE
:
692 case RNDIS_STATUS_INVALID_DATA
:
695 case RNDIS_STATUS_NOT_SUPPORTED
:
698 case RNDIS_STATUS_ADAPTER_NOT_READY
:
699 case RNDIS_STATUS_ADAPTER_NOT_OPEN
:
706 static int rndis_query_oid(struct usbnet
*dev
, u32 oid
, void *data
, int *len
)
708 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(dev
);
711 struct rndis_msg_hdr
*header
;
712 struct rndis_query
*get
;
713 struct rndis_query_c
*get_c
;
716 int resplen
, respoffs
, copylen
;
718 buflen
= *len
+ sizeof(*u
.get
);
719 if (buflen
< CONTROL_BUFFER_SIZE
)
720 buflen
= CONTROL_BUFFER_SIZE
;
722 if (buflen
> COMMAND_BUFFER_SIZE
) {
723 u
.buf
= kmalloc(buflen
, GFP_KERNEL
);
727 u
.buf
= priv
->command_buffer
;
730 mutex_lock(&priv
->command_lock
);
732 memset(u
.get
, 0, sizeof *u
.get
);
733 u
.get
->msg_type
= cpu_to_le32(RNDIS_MSG_QUERY
);
734 u
.get
->msg_len
= cpu_to_le32(sizeof *u
.get
);
735 u
.get
->oid
= cpu_to_le32(oid
);
737 priv
->current_command_oid
= oid
;
738 ret
= rndis_command(dev
, u
.header
, buflen
);
739 priv
->current_command_oid
= 0;
741 netdev_dbg(dev
->net
, "%s(%s): rndis_command() failed, %d (%08x)\n",
742 __func__
, oid_to_string(oid
), ret
,
743 le32_to_cpu(u
.get_c
->status
));
746 resplen
= le32_to_cpu(u
.get_c
->len
);
747 respoffs
= le32_to_cpu(u
.get_c
->offset
) + 8;
749 if (respoffs
> buflen
) {
750 /* Device returned data offset outside buffer, error. */
751 netdev_dbg(dev
->net
, "%s(%s): received invalid "
752 "data offset: %d > %d\n", __func__
,
753 oid_to_string(oid
), respoffs
, buflen
);
759 if ((resplen
+ respoffs
) > buflen
) {
760 /* Device would have returned more data if buffer would
761 * have been big enough. Copy just the bits that we got.
763 copylen
= buflen
- respoffs
;
771 memcpy(data
, u
.buf
+ respoffs
, copylen
);
775 ret
= rndis_error_status(u
.get_c
->status
);
777 netdev_dbg(dev
->net
, "%s(%s): device returned error, 0x%08x (%d)\n",
778 __func__
, oid_to_string(oid
),
779 le32_to_cpu(u
.get_c
->status
), ret
);
783 mutex_unlock(&priv
->command_lock
);
785 if (u
.buf
!= priv
->command_buffer
)
790 static int rndis_set_oid(struct usbnet
*dev
, u32 oid
, const void *data
,
793 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(dev
);
796 struct rndis_msg_hdr
*header
;
797 struct rndis_set
*set
;
798 struct rndis_set_c
*set_c
;
802 buflen
= len
+ sizeof(*u
.set
);
803 if (buflen
< CONTROL_BUFFER_SIZE
)
804 buflen
= CONTROL_BUFFER_SIZE
;
806 if (buflen
> COMMAND_BUFFER_SIZE
) {
807 u
.buf
= kmalloc(buflen
, GFP_KERNEL
);
811 u
.buf
= priv
->command_buffer
;
814 mutex_lock(&priv
->command_lock
);
816 memset(u
.set
, 0, sizeof *u
.set
);
817 u
.set
->msg_type
= cpu_to_le32(RNDIS_MSG_SET
);
818 u
.set
->msg_len
= cpu_to_le32(sizeof(*u
.set
) + len
);
819 u
.set
->oid
= cpu_to_le32(oid
);
820 u
.set
->len
= cpu_to_le32(len
);
821 u
.set
->offset
= cpu_to_le32(sizeof(*u
.set
) - 8);
822 u
.set
->handle
= cpu_to_le32(0);
823 memcpy(u
.buf
+ sizeof(*u
.set
), data
, len
);
825 priv
->current_command_oid
= oid
;
826 ret
= rndis_command(dev
, u
.header
, buflen
);
827 priv
->current_command_oid
= 0;
829 netdev_dbg(dev
->net
, "%s(%s): rndis_command() failed, %d (%08x)\n",
830 __func__
, oid_to_string(oid
), ret
,
831 le32_to_cpu(u
.set_c
->status
));
834 ret
= rndis_error_status(u
.set_c
->status
);
837 netdev_dbg(dev
->net
, "%s(%s): device returned error, 0x%08x (%d)\n",
838 __func__
, oid_to_string(oid
),
839 le32_to_cpu(u
.set_c
->status
), ret
);
842 mutex_unlock(&priv
->command_lock
);
844 if (u
.buf
!= priv
->command_buffer
)
849 static int rndis_reset(struct usbnet
*usbdev
)
851 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
852 struct rndis_reset
*reset
;
855 mutex_lock(&priv
->command_lock
);
857 reset
= (void *)priv
->command_buffer
;
858 memset(reset
, 0, sizeof(*reset
));
859 reset
->msg_type
= cpu_to_le32(RNDIS_MSG_RESET
);
860 reset
->msg_len
= cpu_to_le32(sizeof(*reset
));
861 priv
->current_command_oid
= 0;
862 ret
= rndis_command(usbdev
, (void *)reset
, CONTROL_BUFFER_SIZE
);
864 mutex_unlock(&priv
->command_lock
);
872 * Specs say that we can only set config parameters only soon after device
874 * value_type: 0 = u32, 2 = unicode string
876 static int rndis_set_config_parameter(struct usbnet
*dev
, char *param
,
877 int value_type
, void *value
)
879 struct ndis_config_param
*infobuf
;
880 int value_len
, info_len
, param_len
, ret
, i
;
885 value_len
= sizeof(__le32
);
886 else if (value_type
== 2)
887 value_len
= strlen(value
) * sizeof(__le16
);
891 param_len
= strlen(param
) * sizeof(__le16
);
892 info_len
= sizeof(*infobuf
) + param_len
+ value_len
;
897 infobuf
= kmalloc(info_len
, GFP_KERNEL
);
903 /* extra 12 bytes are for padding (debug output) */
904 memset(infobuf
, 0xCC, info_len
+ 12);
908 netdev_dbg(dev
->net
, "setting config parameter: %s, value: %s\n",
911 netdev_dbg(dev
->net
, "setting config parameter: %s, value: %d\n",
912 param
, *(u32
*)value
);
914 infobuf
->name_offs
= cpu_to_le32(sizeof(*infobuf
));
915 infobuf
->name_length
= cpu_to_le32(param_len
);
916 infobuf
->type
= cpu_to_le32(value_type
);
917 infobuf
->value_offs
= cpu_to_le32(sizeof(*infobuf
) + param_len
);
918 infobuf
->value_length
= cpu_to_le32(value_len
);
920 /* simple string to unicode string conversion */
921 unibuf
= (void *)infobuf
+ sizeof(*infobuf
);
922 for (i
= 0; i
< param_len
/ sizeof(__le16
); i
++)
923 unibuf
[i
] = cpu_to_le16(param
[i
]);
925 if (value_type
== 2) {
926 unibuf
= (void *)infobuf
+ sizeof(*infobuf
) + param_len
;
927 for (i
= 0; i
< value_len
/ sizeof(__le16
); i
++)
928 unibuf
[i
] = cpu_to_le16(((u8
*)value
)[i
]);
930 dst_value
= (void *)infobuf
+ sizeof(*infobuf
) + param_len
;
931 *dst_value
= cpu_to_le32(*(u32
*)value
);
935 netdev_dbg(dev
->net
, "info buffer (len: %d)\n", info_len
);
936 for (i
= 0; i
< info_len
; i
+= 12) {
937 u32
*tmp
= (u32
*)((u8
*)infobuf
+ i
);
938 netdev_dbg(dev
->net
, "%08X:%08X:%08X\n",
941 cpu_to_be32(tmp
[2]));
945 ret
= rndis_set_oid(dev
, RNDIS_OID_GEN_RNDIS_CONFIG_PARAMETER
,
948 netdev_dbg(dev
->net
, "setting rndis config parameter failed, %d\n",
955 static int rndis_set_config_parameter_str(struct usbnet
*dev
,
956 char *param
, char *value
)
958 return rndis_set_config_parameter(dev
, param
, 2, value
);
962 * data conversion functions
964 static int level_to_qual(int level
)
966 int qual
= 100 * (level
- WL_NOISE
) / (WL_SIGMAX
- WL_NOISE
);
967 return qual
>= 0 ? (qual
<= 100 ? qual
: 100) : 0;
973 static int set_infra_mode(struct usbnet
*usbdev
, int mode
);
974 static void restore_keys(struct usbnet
*usbdev
);
975 static int rndis_check_bssid_list(struct usbnet
*usbdev
, u8
*match_bssid
,
978 static int rndis_start_bssid_list_scan(struct usbnet
*usbdev
)
982 /* Note: RNDIS_OID_802_11_BSSID_LIST_SCAN clears internal BSS list. */
983 tmp
= cpu_to_le32(1);
984 return rndis_set_oid(usbdev
, RNDIS_OID_802_11_BSSID_LIST_SCAN
, &tmp
,
988 static int set_essid(struct usbnet
*usbdev
, struct ndis_80211_ssid
*ssid
)
990 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
993 ret
= rndis_set_oid(usbdev
, RNDIS_OID_802_11_SSID
,
994 ssid
, sizeof(*ssid
));
996 netdev_warn(usbdev
->net
, "setting SSID failed (%08X)\n", ret
);
1000 priv
->radio_on
= true;
1001 netdev_dbg(usbdev
->net
, "%s(): radio_on = true\n", __func__
);
1007 static int set_bssid(struct usbnet
*usbdev
, const u8
*bssid
)
1011 ret
= rndis_set_oid(usbdev
, RNDIS_OID_802_11_BSSID
,
1014 netdev_warn(usbdev
->net
, "setting BSSID[%pM] failed (%08X)\n",
1022 static int clear_bssid(struct usbnet
*usbdev
)
1024 static const u8 broadcast_mac
[ETH_ALEN
] = {
1025 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
1028 return set_bssid(usbdev
, broadcast_mac
);
1031 static int get_bssid(struct usbnet
*usbdev
, u8 bssid
[ETH_ALEN
])
1036 ret
= rndis_query_oid(usbdev
, RNDIS_OID_802_11_BSSID
,
1040 eth_zero_addr(bssid
);
1045 static int get_association_info(struct usbnet
*usbdev
,
1046 struct ndis_80211_assoc_info
*info
, int len
)
1048 return rndis_query_oid(usbdev
,
1049 RNDIS_OID_802_11_ASSOCIATION_INFORMATION
,
1053 static bool is_associated(struct usbnet
*usbdev
)
1055 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1059 if (!priv
->radio_on
)
1062 ret
= get_bssid(usbdev
, bssid
);
1064 return (ret
== 0 && !is_zero_ether_addr(bssid
));
1067 static int disassociate(struct usbnet
*usbdev
, bool reset_ssid
)
1069 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1070 struct ndis_80211_ssid ssid
;
1073 if (priv
->radio_on
) {
1074 ret
= rndis_set_oid(usbdev
,
1075 RNDIS_OID_802_11_DISASSOCIATE
,
1078 priv
->radio_on
= false;
1079 netdev_dbg(usbdev
->net
, "%s(): radio_on = false\n",
1087 /* disassociate causes radio to be turned off; if reset_ssid
1088 * is given, set random ssid to enable radio */
1090 /* Set device to infrastructure mode so we don't get ad-hoc
1091 * 'media connect' indications with the random ssid.
1093 set_infra_mode(usbdev
, NDIS_80211_INFRA_INFRA
);
1095 ssid
.length
= cpu_to_le32(sizeof(ssid
.essid
));
1096 get_random_bytes(&ssid
.essid
[2], sizeof(ssid
.essid
)-2);
1097 ssid
.essid
[0] = 0x1;
1098 ssid
.essid
[1] = 0xff;
1099 for (i
= 2; i
< sizeof(ssid
.essid
); i
++)
1100 ssid
.essid
[i
] = 0x1 + (ssid
.essid
[i
] * 0xfe / 0xff);
1101 ret
= set_essid(usbdev
, &ssid
);
1106 static int set_auth_mode(struct usbnet
*usbdev
, u32 wpa_version
,
1107 enum nl80211_auth_type auth_type
, int keymgmt
)
1109 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1113 netdev_dbg(usbdev
->net
, "%s(): wpa_version=0x%x authalg=0x%x keymgmt=0x%x\n",
1114 __func__
, wpa_version
, auth_type
, keymgmt
);
1116 if (wpa_version
& NL80211_WPA_VERSION_2
) {
1117 if (keymgmt
& RNDIS_WLAN_KEY_MGMT_802_1X
)
1118 auth_mode
= NDIS_80211_AUTH_WPA2
;
1120 auth_mode
= NDIS_80211_AUTH_WPA2_PSK
;
1121 } else if (wpa_version
& NL80211_WPA_VERSION_1
) {
1122 if (keymgmt
& RNDIS_WLAN_KEY_MGMT_802_1X
)
1123 auth_mode
= NDIS_80211_AUTH_WPA
;
1124 else if (keymgmt
& RNDIS_WLAN_KEY_MGMT_PSK
)
1125 auth_mode
= NDIS_80211_AUTH_WPA_PSK
;
1127 auth_mode
= NDIS_80211_AUTH_WPA_NONE
;
1128 } else if (auth_type
== NL80211_AUTHTYPE_SHARED_KEY
)
1129 auth_mode
= NDIS_80211_AUTH_SHARED
;
1130 else if (auth_type
== NL80211_AUTHTYPE_OPEN_SYSTEM
)
1131 auth_mode
= NDIS_80211_AUTH_OPEN
;
1132 else if (auth_type
== NL80211_AUTHTYPE_AUTOMATIC
)
1133 auth_mode
= NDIS_80211_AUTH_AUTO_SWITCH
;
1137 tmp
= cpu_to_le32(auth_mode
);
1138 ret
= rndis_set_oid(usbdev
,
1139 RNDIS_OID_802_11_AUTHENTICATION_MODE
,
1142 netdev_warn(usbdev
->net
, "setting auth mode failed (%08X)\n",
1147 priv
->wpa_version
= wpa_version
;
1152 static int set_priv_filter(struct usbnet
*usbdev
)
1154 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1157 netdev_dbg(usbdev
->net
, "%s(): wpa_version=0x%x\n",
1158 __func__
, priv
->wpa_version
);
1160 if (priv
->wpa_version
& NL80211_WPA_VERSION_2
||
1161 priv
->wpa_version
& NL80211_WPA_VERSION_1
)
1162 tmp
= cpu_to_le32(NDIS_80211_PRIV_8021X_WEP
);
1164 tmp
= cpu_to_le32(NDIS_80211_PRIV_ACCEPT_ALL
);
1166 return rndis_set_oid(usbdev
,
1167 RNDIS_OID_802_11_PRIVACY_FILTER
, &tmp
,
1171 static int set_encr_mode(struct usbnet
*usbdev
, int pairwise
, int groupwise
)
1176 netdev_dbg(usbdev
->net
, "%s(): cipher_pair=0x%x cipher_group=0x%x\n",
1177 __func__
, pairwise
, groupwise
);
1179 if (pairwise
& RNDIS_WLAN_ALG_CCMP
)
1180 encr_mode
= NDIS_80211_ENCR_CCMP_ENABLED
;
1181 else if (pairwise
& RNDIS_WLAN_ALG_TKIP
)
1182 encr_mode
= NDIS_80211_ENCR_TKIP_ENABLED
;
1183 else if (pairwise
& RNDIS_WLAN_ALG_WEP
)
1184 encr_mode
= NDIS_80211_ENCR_WEP_ENABLED
;
1185 else if (groupwise
& RNDIS_WLAN_ALG_CCMP
)
1186 encr_mode
= NDIS_80211_ENCR_CCMP_ENABLED
;
1187 else if (groupwise
& RNDIS_WLAN_ALG_TKIP
)
1188 encr_mode
= NDIS_80211_ENCR_TKIP_ENABLED
;
1190 encr_mode
= NDIS_80211_ENCR_DISABLED
;
1192 tmp
= cpu_to_le32(encr_mode
);
1193 ret
= rndis_set_oid(usbdev
,
1194 RNDIS_OID_802_11_ENCRYPTION_STATUS
, &tmp
,
1197 netdev_warn(usbdev
->net
, "setting encr mode failed (%08X)\n",
1205 static int set_infra_mode(struct usbnet
*usbdev
, int mode
)
1207 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1211 netdev_dbg(usbdev
->net
, "%s(): infra_mode=0x%x\n",
1212 __func__
, priv
->infra_mode
);
1214 tmp
= cpu_to_le32(mode
);
1215 ret
= rndis_set_oid(usbdev
,
1216 RNDIS_OID_802_11_INFRASTRUCTURE_MODE
,
1219 netdev_warn(usbdev
->net
, "setting infra mode failed (%08X)\n",
1224 /* NDIS drivers clear keys when infrastructure mode is
1225 * changed. But Linux tools assume otherwise. So set the
1227 restore_keys(usbdev
);
1229 priv
->infra_mode
= mode
;
1233 static int set_rts_threshold(struct usbnet
*usbdev
, u32 rts_threshold
)
1237 netdev_dbg(usbdev
->net
, "%s(): %i\n", __func__
, rts_threshold
);
1239 if (rts_threshold
== -1 || rts_threshold
> 2347)
1240 rts_threshold
= 2347;
1242 tmp
= cpu_to_le32(rts_threshold
);
1243 return rndis_set_oid(usbdev
,
1244 RNDIS_OID_802_11_RTS_THRESHOLD
,
1248 static int set_frag_threshold(struct usbnet
*usbdev
, u32 frag_threshold
)
1252 netdev_dbg(usbdev
->net
, "%s(): %i\n", __func__
, frag_threshold
);
1254 if (frag_threshold
< 256 || frag_threshold
> 2346)
1255 frag_threshold
= 2346;
1257 tmp
= cpu_to_le32(frag_threshold
);
1258 return rndis_set_oid(usbdev
,
1259 RNDIS_OID_802_11_FRAGMENTATION_THRESHOLD
,
1263 static void set_default_iw_params(struct usbnet
*usbdev
)
1265 set_infra_mode(usbdev
, NDIS_80211_INFRA_INFRA
);
1266 set_auth_mode(usbdev
, 0, NL80211_AUTHTYPE_OPEN_SYSTEM
,
1267 RNDIS_WLAN_KEY_MGMT_NONE
);
1268 set_priv_filter(usbdev
);
1269 set_encr_mode(usbdev
, RNDIS_WLAN_ALG_NONE
, RNDIS_WLAN_ALG_NONE
);
1272 static int deauthenticate(struct usbnet
*usbdev
)
1276 ret
= disassociate(usbdev
, true);
1277 set_default_iw_params(usbdev
);
1281 static int set_channel(struct usbnet
*usbdev
, int channel
)
1283 struct ndis_80211_conf config
;
1284 unsigned int dsconfig
;
1287 netdev_dbg(usbdev
->net
, "%s(%d)\n", __func__
, channel
);
1289 /* this OID is valid only when not associated */
1290 if (is_associated(usbdev
))
1294 ieee80211_channel_to_frequency(channel
, NL80211_BAND_2GHZ
);
1296 len
= sizeof(config
);
1297 ret
= rndis_query_oid(usbdev
,
1298 RNDIS_OID_802_11_CONFIGURATION
,
1301 netdev_dbg(usbdev
->net
, "%s(): querying configuration failed\n",
1306 config
.ds_config
= cpu_to_le32(dsconfig
);
1307 ret
= rndis_set_oid(usbdev
,
1308 RNDIS_OID_802_11_CONFIGURATION
,
1309 &config
, sizeof(config
));
1311 netdev_dbg(usbdev
->net
, "%s(): %d -> %d\n", __func__
, channel
, ret
);
1316 static struct ieee80211_channel
*get_current_channel(struct usbnet
*usbdev
,
1319 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1320 struct ieee80211_channel
*channel
;
1321 struct ndis_80211_conf config
;
1324 /* Get channel and beacon interval */
1325 len
= sizeof(config
);
1326 ret
= rndis_query_oid(usbdev
,
1327 RNDIS_OID_802_11_CONFIGURATION
,
1329 netdev_dbg(usbdev
->net
, "%s(): RNDIS_OID_802_11_CONFIGURATION -> %d\n",
1334 channel
= ieee80211_get_channel(priv
->wdev
.wiphy
,
1335 KHZ_TO_MHZ(le32_to_cpu(config
.ds_config
)));
1340 *beacon_period
= le32_to_cpu(config
.beacon_period
);
1344 /* index must be 0 - N, as per NDIS */
1345 static int add_wep_key(struct usbnet
*usbdev
, const u8
*key
, int key_len
,
1348 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1349 struct ndis_80211_wep_key ndis_key
;
1353 netdev_dbg(usbdev
->net
, "%s(idx: %d, len: %d)\n",
1354 __func__
, index
, key_len
);
1356 if (index
>= RNDIS_WLAN_NUM_KEYS
)
1360 cipher
= WLAN_CIPHER_SUITE_WEP40
;
1361 else if (key_len
== 13)
1362 cipher
= WLAN_CIPHER_SUITE_WEP104
;
1366 memset(&ndis_key
, 0, sizeof(ndis_key
));
1368 ndis_key
.size
= cpu_to_le32(sizeof(ndis_key
));
1369 ndis_key
.length
= cpu_to_le32(key_len
);
1370 ndis_key
.index
= cpu_to_le32(index
);
1371 memcpy(&ndis_key
.material
, key
, key_len
);
1373 if (index
== priv
->encr_tx_key_index
) {
1374 ndis_key
.index
|= NDIS_80211_ADDWEP_TRANSMIT_KEY
;
1375 ret
= set_encr_mode(usbdev
, RNDIS_WLAN_ALG_WEP
,
1376 RNDIS_WLAN_ALG_NONE
);
1378 netdev_warn(usbdev
->net
, "encryption couldn't be enabled (%08X)\n",
1382 ret
= rndis_set_oid(usbdev
,
1383 RNDIS_OID_802_11_ADD_WEP
, &ndis_key
,
1386 netdev_warn(usbdev
->net
, "adding encryption key %d failed (%08X)\n",
1391 priv
->encr_keys
[index
].len
= key_len
;
1392 priv
->encr_keys
[index
].cipher
= cipher
;
1393 memcpy(&priv
->encr_keys
[index
].material
, key
, key_len
);
1394 eth_broadcast_addr(priv
->encr_keys
[index
].bssid
);
1399 static int add_wpa_key(struct usbnet
*usbdev
, const u8
*key
, int key_len
,
1400 u8 index
, const u8
*addr
, const u8
*rx_seq
,
1401 int seq_len
, u32 cipher
, __le32 flags
)
1403 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1404 struct ndis_80211_key ndis_key
;
1408 if (index
>= RNDIS_WLAN_NUM_KEYS
) {
1409 netdev_dbg(usbdev
->net
, "%s(): index out of range (%i)\n",
1413 if (key_len
> sizeof(ndis_key
.material
) || key_len
< 0) {
1414 netdev_dbg(usbdev
->net
, "%s(): key length out of range (%i)\n",
1418 if (flags
& NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
) {
1419 if (!rx_seq
|| seq_len
<= 0) {
1420 netdev_dbg(usbdev
->net
, "%s(): recv seq flag without buffer\n",
1424 if (rx_seq
&& seq_len
> sizeof(ndis_key
.rsc
)) {
1425 netdev_dbg(usbdev
->net
, "%s(): too big recv seq buffer\n", __func__
);
1430 is_addr_ok
= addr
&& !is_zero_ether_addr(addr
) &&
1431 !is_broadcast_ether_addr(addr
);
1432 if ((flags
& NDIS_80211_ADDKEY_PAIRWISE_KEY
) && !is_addr_ok
) {
1433 netdev_dbg(usbdev
->net
, "%s(): pairwise but bssid invalid (%pM)\n",
1438 netdev_dbg(usbdev
->net
, "%s(%i): flags:%i%i%i\n",
1440 !!(flags
& NDIS_80211_ADDKEY_TRANSMIT_KEY
),
1441 !!(flags
& NDIS_80211_ADDKEY_PAIRWISE_KEY
),
1442 !!(flags
& NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
));
1444 memset(&ndis_key
, 0, sizeof(ndis_key
));
1446 ndis_key
.size
= cpu_to_le32(sizeof(ndis_key
) -
1447 sizeof(ndis_key
.material
) + key_len
);
1448 ndis_key
.length
= cpu_to_le32(key_len
);
1449 ndis_key
.index
= cpu_to_le32(index
) | flags
;
1451 if (cipher
== WLAN_CIPHER_SUITE_TKIP
&& key_len
== 32) {
1452 /* wpa_supplicant gives us the Michael MIC RX/TX keys in
1453 * different order than NDIS spec, so swap the order here. */
1454 memcpy(ndis_key
.material
, key
, 16);
1455 memcpy(ndis_key
.material
+ 16, key
+ 24, 8);
1456 memcpy(ndis_key
.material
+ 24, key
+ 16, 8);
1458 memcpy(ndis_key
.material
, key
, key_len
);
1460 if (flags
& NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ
)
1461 memcpy(ndis_key
.rsc
, rx_seq
, seq_len
);
1463 if (flags
& NDIS_80211_ADDKEY_PAIRWISE_KEY
) {
1465 memcpy(ndis_key
.bssid
, addr
, ETH_ALEN
);
1468 if (priv
->infra_mode
== NDIS_80211_INFRA_ADHOC
)
1469 eth_broadcast_addr(ndis_key
.bssid
);
1471 get_bssid(usbdev
, ndis_key
.bssid
);
1474 ret
= rndis_set_oid(usbdev
,
1475 RNDIS_OID_802_11_ADD_KEY
, &ndis_key
,
1476 le32_to_cpu(ndis_key
.size
));
1477 netdev_dbg(usbdev
->net
, "%s(): RNDIS_OID_802_11_ADD_KEY -> %08X\n",
1482 memset(&priv
->encr_keys
[index
], 0, sizeof(priv
->encr_keys
[index
]));
1483 priv
->encr_keys
[index
].len
= key_len
;
1484 priv
->encr_keys
[index
].cipher
= cipher
;
1485 memcpy(&priv
->encr_keys
[index
].material
, key
, key_len
);
1486 if (flags
& NDIS_80211_ADDKEY_PAIRWISE_KEY
)
1487 memcpy(&priv
->encr_keys
[index
].bssid
, ndis_key
.bssid
, ETH_ALEN
);
1489 eth_broadcast_addr(priv
->encr_keys
[index
].bssid
);
1491 if (flags
& NDIS_80211_ADDKEY_TRANSMIT_KEY
)
1492 priv
->encr_tx_key_index
= index
;
1497 static int restore_key(struct usbnet
*usbdev
, u8 key_idx
)
1499 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1500 struct rndis_wlan_encr_key key
;
1502 if (is_wpa_key(priv
, key_idx
))
1505 key
= priv
->encr_keys
[key_idx
];
1507 netdev_dbg(usbdev
->net
, "%s(): %i:%i\n", __func__
, key_idx
, key
.len
);
1512 return add_wep_key(usbdev
, key
.material
, key
.len
, key_idx
);
1515 static void restore_keys(struct usbnet
*usbdev
)
1519 for (i
= 0; i
< 4; i
++)
1520 restore_key(usbdev
, i
);
1523 static void clear_key(struct rndis_wlan_private
*priv
, u8 idx
)
1525 memset(&priv
->encr_keys
[idx
], 0, sizeof(priv
->encr_keys
[idx
]));
1528 /* remove_key is for both wep and wpa */
1529 static int remove_key(struct usbnet
*usbdev
, u8 index
, const u8
*bssid
)
1531 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1532 struct ndis_80211_remove_key remove_key
;
1537 if (index
>= RNDIS_WLAN_NUM_KEYS
)
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
,
1566 RNDIS_OID_802_11_REMOVE_KEY
,
1567 &remove_key
, sizeof(remove_key
));
1571 keyindex
= cpu_to_le32(index
);
1572 ret
= rndis_set_oid(usbdev
,
1573 RNDIS_OID_802_11_REMOVE_WEP
,
1574 &keyindex
, sizeof(keyindex
));
1576 netdev_warn(usbdev
->net
,
1577 "removing encryption key %d failed (%08X)\n",
1583 /* if it is transmit key, disable encryption */
1584 if (index
== priv
->encr_tx_key_index
)
1585 set_encr_mode(usbdev
, RNDIS_WLAN_ALG_NONE
, RNDIS_WLAN_ALG_NONE
);
1590 static void set_multicast_list(struct usbnet
*usbdev
)
1592 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1593 struct netdev_hw_addr
*ha
;
1594 __le32 filter
, basefilter
;
1596 char *mc_addrs
= NULL
;
1599 basefilter
= filter
= cpu_to_le32(RNDIS_PACKET_TYPE_DIRECTED
|
1600 RNDIS_PACKET_TYPE_BROADCAST
);
1602 if (usbdev
->net
->flags
& IFF_PROMISC
) {
1603 filter
|= cpu_to_le32(RNDIS_PACKET_TYPE_PROMISCUOUS
|
1604 RNDIS_PACKET_TYPE_ALL_LOCAL
);
1605 } else if (usbdev
->net
->flags
& IFF_ALLMULTI
) {
1606 filter
|= cpu_to_le32(RNDIS_PACKET_TYPE_ALL_MULTICAST
);
1609 if (filter
!= basefilter
)
1613 * mc_list should be accessed holding the lock, so copy addresses to
1614 * local buffer first.
1616 netif_addr_lock_bh(usbdev
->net
);
1617 mc_count
= netdev_mc_count(usbdev
->net
);
1618 if (mc_count
> priv
->multicast_size
) {
1619 filter
|= cpu_to_le32(RNDIS_PACKET_TYPE_ALL_MULTICAST
);
1620 } else if (mc_count
) {
1623 mc_addrs
= kmalloc_array(mc_count
, ETH_ALEN
, GFP_ATOMIC
);
1625 netif_addr_unlock_bh(usbdev
->net
);
1629 netdev_for_each_mc_addr(ha
, usbdev
->net
)
1630 memcpy(mc_addrs
+ i
++ * ETH_ALEN
,
1631 ha
->addr
, ETH_ALEN
);
1633 netif_addr_unlock_bh(usbdev
->net
);
1635 if (filter
!= basefilter
)
1639 ret
= rndis_set_oid(usbdev
,
1640 RNDIS_OID_802_3_MULTICAST_LIST
,
1641 mc_addrs
, mc_count
* ETH_ALEN
);
1644 filter
|= cpu_to_le32(RNDIS_PACKET_TYPE_MULTICAST
);
1646 filter
|= cpu_to_le32(RNDIS_PACKET_TYPE_ALL_MULTICAST
);
1648 netdev_dbg(usbdev
->net
, "RNDIS_OID_802_3_MULTICAST_LIST(%d, max: %d) -> %d\n",
1649 mc_count
, priv
->multicast_size
, ret
);
1653 ret
= rndis_set_oid(usbdev
, RNDIS_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
, "RNDIS_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
= struct_size(pmkids
, bssid_info
, max_pmkids
);
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
, RNDIS_OID_802_11_PMKID
,
1722 netdev_dbg(usbdev
->net
, "%s(): RNDIS_OID_802_11_PMKID(%d, %d)"
1723 " -> %d\n", __func__
, len
, max_pmkids
, ret
);
1726 return ERR_PTR(ret
);
1729 if (le32_to_cpu(pmkids
->bssid_info_count
) > max_pmkids
)
1730 pmkids
->bssid_info_count
= cpu_to_le32(max_pmkids
);
1732 debug_print_pmkids(usbdev
, pmkids
, __func__
);
1737 static int set_device_pmkids(struct usbnet
*usbdev
,
1738 struct ndis_80211_pmkid
*pmkids
)
1740 int ret
, len
, num_pmkids
;
1742 num_pmkids
= le32_to_cpu(pmkids
->bssid_info_count
);
1743 len
= struct_size(pmkids
, bssid_info
, num_pmkids
);
1744 pmkids
->length
= cpu_to_le32(len
);
1746 debug_print_pmkids(usbdev
, pmkids
, __func__
);
1748 ret
= rndis_set_oid(usbdev
, RNDIS_OID_802_11_PMKID
, pmkids
,
1749 le32_to_cpu(pmkids
->length
));
1751 netdev_dbg(usbdev
->net
, "%s(): RNDIS_OID_802_11_PMKID(%d, %d) -> %d"
1752 "\n", __func__
, len
, num_pmkids
, ret
);
1759 static struct ndis_80211_pmkid
*remove_pmkid(struct usbnet
*usbdev
,
1760 struct ndis_80211_pmkid
*pmkids
,
1761 struct cfg80211_pmksa
*pmksa
,
1767 count
= le32_to_cpu(pmkids
->bssid_info_count
);
1769 if (count
> max_pmkids
)
1772 for (i
= 0; i
< count
; i
++)
1773 if (ether_addr_equal(pmkids
->bssid_info
[i
].bssid
,
1777 /* pmkid not found */
1779 netdev_dbg(usbdev
->net
, "%s(): bssid not found (%pM)\n",
1780 __func__
, pmksa
->bssid
);
1785 for (; i
+ 1 < count
; i
++)
1786 pmkids
->bssid_info
[i
] = pmkids
->bssid_info
[i
+ 1];
1789 pmkids
->length
= cpu_to_le32(struct_size(pmkids
, bssid_info
, count
));
1790 pmkids
->bssid_info_count
= cpu_to_le32(count
);
1795 return ERR_PTR(err
);
1798 static struct ndis_80211_pmkid
*update_pmkid(struct usbnet
*usbdev
,
1799 struct ndis_80211_pmkid
*pmkids
,
1800 struct cfg80211_pmksa
*pmksa
,
1803 struct ndis_80211_pmkid
*new_pmkids
;
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 (!ether_addr_equal(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
= struct_size(pmkids
, bssid_info
, count
+ 1);
1834 new_pmkids
= krealloc(pmkids
, newlen
, GFP_KERNEL
);
1839 pmkids
= new_pmkids
;
1841 pmkids
->length
= cpu_to_le32(newlen
);
1842 pmkids
->bssid_info_count
= cpu_to_le32(count
+ 1);
1844 memcpy(pmkids
->bssid_info
[count
].bssid
, pmksa
->bssid
, ETH_ALEN
);
1845 memcpy(pmkids
->bssid_info
[count
].pmkid
, pmksa
->pmkid
, WLAN_PMKID_LEN
);
1850 return ERR_PTR(err
);
1856 static int rndis_change_virtual_intf(struct wiphy
*wiphy
,
1857 struct net_device
*dev
,
1858 enum nl80211_iftype type
,
1859 struct vif_params
*params
)
1861 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
1862 struct usbnet
*usbdev
= priv
->usbdev
;
1866 case NL80211_IFTYPE_ADHOC
:
1867 mode
= NDIS_80211_INFRA_ADHOC
;
1869 case NL80211_IFTYPE_STATION
:
1870 mode
= NDIS_80211_INFRA_INFRA
;
1876 priv
->wdev
.iftype
= type
;
1878 return set_infra_mode(usbdev
, mode
);
1881 static int rndis_set_wiphy_params(struct wiphy
*wiphy
, u32 changed
)
1883 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
1884 struct usbnet
*usbdev
= priv
->usbdev
;
1887 if (changed
& WIPHY_PARAM_FRAG_THRESHOLD
) {
1888 err
= set_frag_threshold(usbdev
, wiphy
->frag_threshold
);
1893 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
) {
1894 err
= set_rts_threshold(usbdev
, wiphy
->rts_threshold
);
1902 static int rndis_set_tx_power(struct wiphy
*wiphy
,
1903 struct wireless_dev
*wdev
,
1904 enum nl80211_tx_power_setting type
,
1907 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
1908 struct usbnet
*usbdev
= priv
->usbdev
;
1910 netdev_dbg(usbdev
->net
, "%s(): type:0x%x mbm:%i\n",
1911 __func__
, type
, mbm
);
1913 if (mbm
< 0 || (mbm
% 100))
1916 /* Device doesn't support changing txpower after initialization, only
1917 * turn off/on radio. Support 'auto' mode and setting same dBm that is
1920 if (type
== NL80211_TX_POWER_AUTOMATIC
||
1921 MBM_TO_DBM(mbm
) == get_bcm4320_power_dbm(priv
)) {
1922 if (!priv
->radio_on
)
1923 disassociate(usbdev
, true); /* turn on radio */
1931 static int rndis_get_tx_power(struct wiphy
*wiphy
,
1932 struct wireless_dev
*wdev
,
1935 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
1936 struct usbnet
*usbdev
= priv
->usbdev
;
1938 *dbm
= get_bcm4320_power_dbm(priv
);
1940 netdev_dbg(usbdev
->net
, "%s(): dbm:%i\n", __func__
, *dbm
);
1945 #define SCAN_DELAY_JIFFIES (6 * HZ)
1946 static int rndis_scan(struct wiphy
*wiphy
,
1947 struct cfg80211_scan_request
*request
)
1949 struct net_device
*dev
= request
->wdev
->netdev
;
1950 struct usbnet
*usbdev
= netdev_priv(dev
);
1951 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1953 int delay
= SCAN_DELAY_JIFFIES
;
1955 netdev_dbg(usbdev
->net
, "cfg80211.scan\n");
1957 /* Get current bssid list from device before new scan, as new scan
1958 * clears internal bssid list.
1960 rndis_check_bssid_list(usbdev
, NULL
, NULL
);
1962 if (priv
->scan_request
&& priv
->scan_request
!= request
)
1965 priv
->scan_request
= request
;
1967 ret
= rndis_start_bssid_list_scan(usbdev
);
1969 if (priv
->device_type
== RNDIS_BCM4320A
)
1972 /* Wait before retrieving scan results from device */
1973 queue_delayed_work(priv
->workqueue
, &priv
->scan_work
, delay
);
1979 static bool rndis_bss_info_update(struct usbnet
*usbdev
,
1980 struct ndis_80211_bssid_ex
*bssid
)
1982 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
1983 struct ieee80211_channel
*channel
;
1984 struct cfg80211_bss
*bss
;
1988 u16 beacon_interval
;
1989 struct ndis_80211_fixed_ies
*fixed
;
1990 int ie_len
, bssid_len
;
1993 netdev_dbg(usbdev
->net
, " found bssid: '%.32s' [%pM], len: %d\n",
1994 bssid
->ssid
.essid
, bssid
->mac
, le32_to_cpu(bssid
->length
));
1996 /* parse bssid structure */
1997 bssid_len
= le32_to_cpu(bssid
->length
);
1999 if (bssid_len
< sizeof(struct ndis_80211_bssid_ex
) +
2000 sizeof(struct ndis_80211_fixed_ies
))
2003 fixed
= (struct ndis_80211_fixed_ies
*)bssid
->ies
;
2005 ie
= (void *)(bssid
->ies
+ sizeof(struct ndis_80211_fixed_ies
));
2006 ie_len
= min(bssid_len
- (int)sizeof(*bssid
),
2007 (int)le32_to_cpu(bssid
->ie_length
));
2008 ie_len
-= sizeof(struct ndis_80211_fixed_ies
);
2012 /* extract data for cfg80211_inform_bss */
2013 channel
= ieee80211_get_channel(priv
->wdev
.wiphy
,
2014 KHZ_TO_MHZ(le32_to_cpu(bssid
->config
.ds_config
)));
2018 signal
= level_to_qual(le32_to_cpu(bssid
->rssi
));
2019 timestamp
= le64_to_cpu(*(__le64
*)fixed
->timestamp
);
2020 capability
= le16_to_cpu(fixed
->capabilities
);
2021 beacon_interval
= le16_to_cpu(fixed
->beacon_interval
);
2023 bss
= cfg80211_inform_bss(priv
->wdev
.wiphy
, channel
,
2024 CFG80211_BSS_FTYPE_UNKNOWN
, bssid
->mac
,
2025 timestamp
, capability
, beacon_interval
,
2026 ie
, ie_len
, signal
, GFP_KERNEL
);
2027 cfg80211_put_bss(priv
->wdev
.wiphy
, bss
);
2029 return (bss
!= NULL
);
2032 static struct ndis_80211_bssid_ex
*next_bssid_list_item(
2033 struct ndis_80211_bssid_ex
*bssid
,
2034 int *bssid_len
, void *buf
, int len
)
2036 void *buf_end
, *bssid_end
;
2038 buf_end
= (char *)buf
+ len
;
2039 bssid_end
= (char *)bssid
+ *bssid_len
;
2041 if ((int)(buf_end
- bssid_end
) < sizeof(bssid
->length
)) {
2045 bssid
= (void *)((char *)bssid
+ *bssid_len
);
2046 *bssid_len
= le32_to_cpu(bssid
->length
);
2051 static bool check_bssid_list_item(struct ndis_80211_bssid_ex
*bssid
,
2052 int bssid_len
, void *buf
, int len
)
2054 void *buf_end
, *bssid_end
;
2056 if (!bssid
|| bssid_len
<= 0 || bssid_len
> len
)
2059 buf_end
= (char *)buf
+ len
;
2060 bssid_end
= (char *)bssid
+ bssid_len
;
2062 return (int)(buf_end
- bssid_end
) >= 0 && (int)(bssid_end
- buf
) >= 0;
2065 static int rndis_check_bssid_list(struct usbnet
*usbdev
, u8
*match_bssid
,
2069 struct ndis_80211_bssid_list_ex
*bssid_list
;
2070 struct ndis_80211_bssid_ex
*bssid
;
2071 int ret
= -EINVAL
, len
, count
, bssid_len
, real_count
, new_len
;
2073 netdev_dbg(usbdev
->net
, "%s()\n", __func__
);
2075 len
= CONTROL_BUFFER_SIZE
;
2077 buf
= kzalloc(len
, GFP_KERNEL
);
2083 /* BSSID-list might have got bigger last time we checked, keep
2084 * resizing until it won't get any bigger.
2087 ret
= rndis_query_oid(usbdev
, RNDIS_OID_802_11_BSSID_LIST
,
2089 if (ret
!= 0 || new_len
< sizeof(struct ndis_80211_bssid_list_ex
))
2092 if (new_len
> len
) {
2101 count
= le32_to_cpu(bssid_list
->num_items
);
2103 netdev_dbg(usbdev
->net
, "%s(): buflen: %d\n", __func__
, len
);
2106 bssid
= next_bssid_list_item(bssid_list
->bssid
, &bssid_len
, buf
, len
);
2108 /* Device returns incorrect 'num_items'. Workaround by ignoring the
2109 * received 'num_items' and walking through full bssid buffer instead.
2111 while (check_bssid_list_item(bssid
, bssid_len
, buf
, len
)) {
2112 if (rndis_bss_info_update(usbdev
, bssid
) && match_bssid
&&
2114 if (ether_addr_equal(bssid
->mac
, match_bssid
))
2119 bssid
= next_bssid_list_item(bssid
, &bssid_len
, buf
, len
);
2122 netdev_dbg(usbdev
->net
, "%s(): num_items from device: %d, really found:"
2123 " %d\n", __func__
, count
, real_count
);
2130 static void rndis_get_scan_results(struct work_struct
*work
)
2132 struct rndis_wlan_private
*priv
=
2133 container_of(work
, struct rndis_wlan_private
, scan_work
.work
);
2134 struct usbnet
*usbdev
= priv
->usbdev
;
2135 struct cfg80211_scan_info info
= {};
2138 netdev_dbg(usbdev
->net
, "get_scan_results\n");
2140 if (!priv
->scan_request
)
2143 ret
= rndis_check_bssid_list(usbdev
, NULL
, NULL
);
2145 info
.aborted
= ret
< 0;
2146 cfg80211_scan_done(priv
->scan_request
, &info
);
2148 priv
->scan_request
= NULL
;
2151 static int rndis_connect(struct wiphy
*wiphy
, struct net_device
*dev
,
2152 struct cfg80211_connect_params
*sme
)
2154 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2155 struct usbnet
*usbdev
= priv
->usbdev
;
2156 struct ieee80211_channel
*channel
= sme
->channel
;
2157 struct ndis_80211_ssid ssid
;
2158 int pairwise
= RNDIS_WLAN_ALG_NONE
;
2159 int groupwise
= RNDIS_WLAN_ALG_NONE
;
2160 int keymgmt
= RNDIS_WLAN_KEY_MGMT_NONE
;
2161 int length
, i
, ret
, chan
= -1;
2164 chan
= ieee80211_frequency_to_channel(channel
->center_freq
);
2166 groupwise
= rndis_cipher_to_alg(sme
->crypto
.cipher_group
);
2167 for (i
= 0; i
< sme
->crypto
.n_ciphers_pairwise
; i
++)
2169 rndis_cipher_to_alg(sme
->crypto
.ciphers_pairwise
[i
]);
2171 if (sme
->crypto
.n_ciphers_pairwise
> 0 &&
2172 pairwise
== RNDIS_WLAN_ALG_NONE
) {
2173 netdev_err(usbdev
->net
, "Unsupported pairwise cipher\n");
2177 for (i
= 0; i
< sme
->crypto
.n_akm_suites
; i
++)
2179 rndis_akm_suite_to_key_mgmt(sme
->crypto
.akm_suites
[i
]);
2181 if (sme
->crypto
.n_akm_suites
> 0 &&
2182 keymgmt
== RNDIS_WLAN_KEY_MGMT_NONE
) {
2183 netdev_err(usbdev
->net
, "Invalid keymgmt\n");
2187 netdev_dbg(usbdev
->net
, "cfg80211.connect('%.32s':[%pM]:%d:[%d,0x%x:0x%x]:[0x%x:0x%x]:0x%x)\n",
2188 sme
->ssid
, sme
->bssid
, chan
,
2189 sme
->privacy
, sme
->crypto
.wpa_versions
, sme
->auth_type
,
2190 groupwise
, pairwise
, keymgmt
);
2192 if (is_associated(usbdev
))
2193 disassociate(usbdev
, false);
2195 ret
= set_infra_mode(usbdev
, NDIS_80211_INFRA_INFRA
);
2197 netdev_dbg(usbdev
->net
, "connect: set_infra_mode failed, %d\n",
2199 goto err_turn_radio_on
;
2202 ret
= set_auth_mode(usbdev
, sme
->crypto
.wpa_versions
, sme
->auth_type
,
2205 netdev_dbg(usbdev
->net
, "connect: set_auth_mode failed, %d\n",
2207 goto err_turn_radio_on
;
2210 set_priv_filter(usbdev
);
2212 ret
= set_encr_mode(usbdev
, pairwise
, groupwise
);
2214 netdev_dbg(usbdev
->net
, "connect: set_encr_mode failed, %d\n",
2216 goto err_turn_radio_on
;
2220 ret
= set_channel(usbdev
, chan
);
2222 netdev_dbg(usbdev
->net
, "connect: set_channel failed, %d\n",
2224 goto err_turn_radio_on
;
2228 if (sme
->key
&& ((groupwise
| pairwise
) & RNDIS_WLAN_ALG_WEP
)) {
2229 priv
->encr_tx_key_index
= sme
->key_idx
;
2230 ret
= add_wep_key(usbdev
, sme
->key
, sme
->key_len
, sme
->key_idx
);
2232 netdev_dbg(usbdev
->net
, "connect: add_wep_key failed, %d (%d, %d)\n",
2233 ret
, sme
->key_len
, sme
->key_idx
);
2234 goto err_turn_radio_on
;
2238 if (sme
->bssid
&& !is_zero_ether_addr(sme
->bssid
) &&
2239 !is_broadcast_ether_addr(sme
->bssid
)) {
2240 ret
= set_bssid(usbdev
, sme
->bssid
);
2242 netdev_dbg(usbdev
->net
, "connect: set_bssid failed, %d\n",
2244 goto err_turn_radio_on
;
2247 clear_bssid(usbdev
);
2249 length
= sme
->ssid_len
;
2250 if (length
> NDIS_802_11_LENGTH_SSID
)
2251 length
= NDIS_802_11_LENGTH_SSID
;
2253 memset(&ssid
, 0, sizeof(ssid
));
2254 ssid
.length
= cpu_to_le32(length
);
2255 memcpy(ssid
.essid
, sme
->ssid
, length
);
2257 /* Pause and purge rx queue, so we don't pass packets before
2258 * 'media connect'-indication.
2260 usbnet_pause_rx(usbdev
);
2261 usbnet_purge_paused_rxq(usbdev
);
2263 ret
= set_essid(usbdev
, &ssid
);
2265 netdev_dbg(usbdev
->net
, "connect: set_essid failed, %d\n", ret
);
2269 disassociate(usbdev
, true);
2274 static int rndis_disconnect(struct wiphy
*wiphy
, struct net_device
*dev
,
2277 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2278 struct usbnet
*usbdev
= priv
->usbdev
;
2280 netdev_dbg(usbdev
->net
, "cfg80211.disconnect(%d)\n", reason_code
);
2282 priv
->connected
= false;
2283 eth_zero_addr(priv
->bssid
);
2285 return deauthenticate(usbdev
);
2288 static int rndis_join_ibss(struct wiphy
*wiphy
, struct net_device
*dev
,
2289 struct cfg80211_ibss_params
*params
)
2291 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2292 struct usbnet
*usbdev
= priv
->usbdev
;
2293 struct ieee80211_channel
*channel
= params
->chandef
.chan
;
2294 struct ndis_80211_ssid ssid
;
2295 enum nl80211_auth_type auth_type
;
2296 int ret
, alg
, length
, chan
= -1;
2299 chan
= ieee80211_frequency_to_channel(channel
->center_freq
);
2301 /* TODO: How to handle ad-hoc encryption?
2302 * connect() has *key, join_ibss() doesn't. RNDIS requires key to be
2303 * pre-shared for encryption (open/shared/wpa), is key set before
2304 * join_ibss? Which auth_type to use (not in params)? What about WPA?
2306 if (params
->privacy
) {
2307 auth_type
= NL80211_AUTHTYPE_SHARED_KEY
;
2308 alg
= RNDIS_WLAN_ALG_WEP
;
2310 auth_type
= NL80211_AUTHTYPE_OPEN_SYSTEM
;
2311 alg
= RNDIS_WLAN_ALG_NONE
;
2314 netdev_dbg(usbdev
->net
, "cfg80211.join_ibss('%.32s':[%pM]:%d:%d)\n",
2315 params
->ssid
, params
->bssid
, chan
, params
->privacy
);
2317 if (is_associated(usbdev
))
2318 disassociate(usbdev
, false);
2320 ret
= set_infra_mode(usbdev
, NDIS_80211_INFRA_ADHOC
);
2322 netdev_dbg(usbdev
->net
, "join_ibss: set_infra_mode failed, %d\n",
2324 goto err_turn_radio_on
;
2327 ret
= set_auth_mode(usbdev
, 0, auth_type
, RNDIS_WLAN_KEY_MGMT_NONE
);
2329 netdev_dbg(usbdev
->net
, "join_ibss: set_auth_mode failed, %d\n",
2331 goto err_turn_radio_on
;
2334 set_priv_filter(usbdev
);
2336 ret
= set_encr_mode(usbdev
, alg
, RNDIS_WLAN_ALG_NONE
);
2338 netdev_dbg(usbdev
->net
, "join_ibss: set_encr_mode failed, %d\n",
2340 goto err_turn_radio_on
;
2344 ret
= set_channel(usbdev
, chan
);
2346 netdev_dbg(usbdev
->net
, "join_ibss: set_channel failed, %d\n",
2348 goto err_turn_radio_on
;
2352 if (params
->bssid
&& !is_zero_ether_addr(params
->bssid
) &&
2353 !is_broadcast_ether_addr(params
->bssid
)) {
2354 ret
= set_bssid(usbdev
, params
->bssid
);
2356 netdev_dbg(usbdev
->net
, "join_ibss: set_bssid failed, %d\n",
2358 goto err_turn_radio_on
;
2361 clear_bssid(usbdev
);
2363 length
= params
->ssid_len
;
2364 if (length
> NDIS_802_11_LENGTH_SSID
)
2365 length
= NDIS_802_11_LENGTH_SSID
;
2367 memset(&ssid
, 0, sizeof(ssid
));
2368 ssid
.length
= cpu_to_le32(length
);
2369 memcpy(ssid
.essid
, params
->ssid
, length
);
2371 /* Don't need to pause rx queue for ad-hoc. */
2372 usbnet_purge_paused_rxq(usbdev
);
2373 usbnet_resume_rx(usbdev
);
2375 ret
= set_essid(usbdev
, &ssid
);
2377 netdev_dbg(usbdev
->net
, "join_ibss: set_essid failed, %d\n",
2382 disassociate(usbdev
, true);
2387 static int rndis_leave_ibss(struct wiphy
*wiphy
, struct net_device
*dev
)
2389 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2390 struct usbnet
*usbdev
= priv
->usbdev
;
2392 netdev_dbg(usbdev
->net
, "cfg80211.leave_ibss()\n");
2394 priv
->connected
= false;
2395 eth_zero_addr(priv
->bssid
);
2397 return deauthenticate(usbdev
);
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 if (key_index
>= RNDIS_WLAN_NUM_KEYS
)
2459 priv
->encr_tx_key_index
= key_index
;
2461 if (is_wpa_key(priv
, key_index
))
2464 key
= priv
->encr_keys
[key_index
];
2466 return add_wep_key(usbdev
, key
.material
, key
.len
, key_index
);
2469 static void rndis_fill_station_info(struct usbnet
*usbdev
,
2470 struct station_info
*sinfo
)
2472 __le32 linkspeed
, rssi
;
2475 memset(sinfo
, 0, sizeof(*sinfo
));
2477 len
= sizeof(linkspeed
);
2478 ret
= rndis_query_oid(usbdev
, RNDIS_OID_GEN_LINK_SPEED
, &linkspeed
, &len
);
2480 sinfo
->txrate
.legacy
= le32_to_cpu(linkspeed
) / 1000;
2481 sinfo
->filled
|= BIT_ULL(NL80211_STA_INFO_TX_BITRATE
);
2485 ret
= rndis_query_oid(usbdev
, RNDIS_OID_802_11_RSSI
,
2488 sinfo
->signal
= level_to_qual(le32_to_cpu(rssi
));
2489 sinfo
->filled
|= BIT_ULL(NL80211_STA_INFO_SIGNAL
);
2493 static int rndis_get_station(struct wiphy
*wiphy
, struct net_device
*dev
,
2494 const u8
*mac
, struct station_info
*sinfo
)
2496 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2497 struct usbnet
*usbdev
= priv
->usbdev
;
2499 if (!ether_addr_equal(priv
->bssid
, mac
))
2502 rndis_fill_station_info(usbdev
, sinfo
);
2507 static int rndis_dump_station(struct wiphy
*wiphy
, struct net_device
*dev
,
2508 int idx
, u8
*mac
, struct station_info
*sinfo
)
2510 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2511 struct usbnet
*usbdev
= priv
->usbdev
;
2516 memcpy(mac
, priv
->bssid
, ETH_ALEN
);
2518 rndis_fill_station_info(usbdev
, sinfo
);
2523 static int rndis_set_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
,
2524 struct cfg80211_pmksa
*pmksa
)
2526 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2527 struct usbnet
*usbdev
= priv
->usbdev
;
2528 struct ndis_80211_pmkid
*pmkids
;
2529 u32
*tmp
= (u32
*)pmksa
->pmkid
;
2531 netdev_dbg(usbdev
->net
, "%s(%pM, %08X:%08X:%08X:%08X)\n", __func__
,
2533 cpu_to_be32(tmp
[0]), cpu_to_be32(tmp
[1]),
2534 cpu_to_be32(tmp
[2]), cpu_to_be32(tmp
[3]));
2536 pmkids
= get_device_pmkids(usbdev
);
2537 if (IS_ERR(pmkids
)) {
2538 /* couldn't read PMKID cache from device */
2539 return PTR_ERR(pmkids
);
2542 pmkids
= update_pmkid(usbdev
, pmkids
, pmksa
, wiphy
->max_num_pmkids
);
2543 if (IS_ERR(pmkids
)) {
2544 /* not found, list full, etc */
2545 return PTR_ERR(pmkids
);
2548 return set_device_pmkids(usbdev
, pmkids
);
2551 static int rndis_del_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
,
2552 struct cfg80211_pmksa
*pmksa
)
2554 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2555 struct usbnet
*usbdev
= priv
->usbdev
;
2556 struct ndis_80211_pmkid
*pmkids
;
2557 u32
*tmp
= (u32
*)pmksa
->pmkid
;
2559 netdev_dbg(usbdev
->net
, "%s(%pM, %08X:%08X:%08X:%08X)\n", __func__
,
2561 cpu_to_be32(tmp
[0]), cpu_to_be32(tmp
[1]),
2562 cpu_to_be32(tmp
[2]), cpu_to_be32(tmp
[3]));
2564 pmkids
= get_device_pmkids(usbdev
);
2565 if (IS_ERR(pmkids
)) {
2566 /* Couldn't read PMKID cache from device */
2567 return PTR_ERR(pmkids
);
2570 pmkids
= remove_pmkid(usbdev
, pmkids
, pmksa
, wiphy
->max_num_pmkids
);
2571 if (IS_ERR(pmkids
)) {
2572 /* not found, etc */
2573 return PTR_ERR(pmkids
);
2576 return set_device_pmkids(usbdev
, pmkids
);
2579 static int rndis_flush_pmksa(struct wiphy
*wiphy
, struct net_device
*netdev
)
2581 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2582 struct usbnet
*usbdev
= priv
->usbdev
;
2583 struct ndis_80211_pmkid pmkid
;
2585 netdev_dbg(usbdev
->net
, "%s()\n", __func__
);
2587 memset(&pmkid
, 0, sizeof(pmkid
));
2589 pmkid
.length
= cpu_to_le32(sizeof(pmkid
));
2590 pmkid
.bssid_info_count
= cpu_to_le32(0);
2592 return rndis_set_oid(usbdev
, RNDIS_OID_802_11_PMKID
,
2593 &pmkid
, sizeof(pmkid
));
2596 static int rndis_set_power_mgmt(struct wiphy
*wiphy
, struct net_device
*dev
,
2597 bool enabled
, int timeout
)
2599 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2600 struct usbnet
*usbdev
= priv
->usbdev
;
2605 if (priv
->device_type
!= RNDIS_BCM4320B
)
2608 netdev_dbg(usbdev
->net
, "%s(): %s, %d\n", __func__
,
2609 enabled
? "enabled" : "disabled",
2613 power_mode
= NDIS_80211_POWER_MODE_FAST_PSP
;
2615 power_mode
= NDIS_80211_POWER_MODE_CAM
;
2617 if (power_mode
== priv
->power_mode
)
2620 priv
->power_mode
= power_mode
;
2622 mode
= cpu_to_le32(power_mode
);
2623 ret
= rndis_set_oid(usbdev
, RNDIS_OID_802_11_POWER_MODE
,
2624 &mode
, sizeof(mode
));
2626 netdev_dbg(usbdev
->net
, "%s(): RNDIS_OID_802_11_POWER_MODE -> %d\n",
2632 static int rndis_set_cqm_rssi_config(struct wiphy
*wiphy
,
2633 struct net_device
*dev
,
2634 s32 rssi_thold
, u32 rssi_hyst
)
2636 struct rndis_wlan_private
*priv
= wiphy_priv(wiphy
);
2638 priv
->cqm_rssi_thold
= rssi_thold
;
2639 priv
->cqm_rssi_hyst
= rssi_hyst
;
2640 priv
->last_cqm_event_rssi
= 0;
2645 static void rndis_wlan_craft_connected_bss(struct usbnet
*usbdev
, u8
*bssid
,
2646 struct ndis_80211_assoc_info
*info
)
2648 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2649 struct ieee80211_channel
*channel
;
2650 struct ndis_80211_ssid ssid
;
2651 struct cfg80211_bss
*bss
;
2655 u32 beacon_period
= 0;
2658 int len
, ret
, ie_len
;
2660 /* Get signal quality, in case of error use rssi=0 and ignore error. */
2663 ret
= rndis_query_oid(usbdev
, RNDIS_OID_802_11_RSSI
,
2665 signal
= level_to_qual(le32_to_cpu(rssi
));
2667 netdev_dbg(usbdev
->net
, "%s(): RNDIS_OID_802_11_RSSI -> %d, "
2668 "rssi:%d, qual: %d\n", __func__
, ret
, le32_to_cpu(rssi
),
2669 level_to_qual(le32_to_cpu(rssi
)));
2671 /* Get AP capabilities */
2673 capability
= le16_to_cpu(info
->resp_ie
.capa
);
2675 /* Set atleast ESS/IBSS capability */
2676 capability
= (priv
->infra_mode
== NDIS_80211_INFRA_INFRA
) ?
2677 WLAN_CAPABILITY_ESS
: WLAN_CAPABILITY_IBSS
;
2680 /* Get channel and beacon interval */
2681 channel
= get_current_channel(usbdev
, &beacon_period
);
2683 netdev_warn(usbdev
->net
, "%s(): could not get channel.\n",
2688 /* Get SSID, in case of error, use zero length SSID and ignore error. */
2690 memset(&ssid
, 0, sizeof(ssid
));
2691 ret
= rndis_query_oid(usbdev
, RNDIS_OID_802_11_SSID
,
2693 netdev_dbg(usbdev
->net
, "%s(): RNDIS_OID_802_11_SSID -> %d, len: %d, ssid: "
2694 "'%.32s'\n", __func__
, ret
,
2695 le32_to_cpu(ssid
.length
), ssid
.essid
);
2697 if (le32_to_cpu(ssid
.length
) > 32)
2698 ssid
.length
= cpu_to_le32(32);
2700 ie_buf
[0] = WLAN_EID_SSID
;
2701 ie_buf
[1] = le32_to_cpu(ssid
.length
);
2702 memcpy(&ie_buf
[2], ssid
.essid
, le32_to_cpu(ssid
.length
));
2704 ie_len
= le32_to_cpu(ssid
.length
) + 2;
2709 netdev_dbg(usbdev
->net
, "%s(): channel:%d(freq), bssid:[%pM], tsf:%d, "
2710 "capa:%x, beacon int:%d, resp_ie(len:%d, essid:'%.32s'), "
2711 "signal:%d\n", __func__
, (channel
? channel
->center_freq
: -1),
2712 bssid
, (u32
)timestamp
, capability
, beacon_period
, ie_len
,
2713 ssid
.essid
, signal
);
2715 bss
= cfg80211_inform_bss(priv
->wdev
.wiphy
, channel
,
2716 CFG80211_BSS_FTYPE_UNKNOWN
, bssid
,
2717 timestamp
, capability
, beacon_period
,
2718 ie_buf
, ie_len
, signal
, GFP_KERNEL
);
2719 cfg80211_put_bss(priv
->wdev
.wiphy
, bss
);
2723 * workers, indication handlers, device poller
2725 static void rndis_wlan_do_link_up_work(struct usbnet
*usbdev
)
2727 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2728 struct ndis_80211_assoc_info
*info
= NULL
;
2730 unsigned int resp_ie_len
, req_ie_len
;
2731 unsigned int offset
;
2732 u8
*req_ie
, *resp_ie
;
2734 bool roamed
= false;
2737 if (priv
->infra_mode
== NDIS_80211_INFRA_INFRA
&& priv
->connected
) {
2738 /* received media connect indication while connected, either
2739 * device reassociated with same AP or roamed to new. */
2748 if (priv
->infra_mode
== NDIS_80211_INFRA_INFRA
) {
2749 info
= kzalloc(CONTROL_BUFFER_SIZE
, GFP_KERNEL
);
2751 /* No memory? Try resume work later */
2752 set_bit(WORK_LINK_UP
, &priv
->work_pending
);
2753 queue_work(priv
->workqueue
, &priv
->work
);
2757 /* Get association info IEs from device. */
2758 ret
= get_association_info(usbdev
, info
, CONTROL_BUFFER_SIZE
);
2760 req_ie_len
= le32_to_cpu(info
->req_ie_length
);
2761 if (req_ie_len
> CONTROL_BUFFER_SIZE
)
2762 req_ie_len
= CONTROL_BUFFER_SIZE
;
2763 if (req_ie_len
!= 0) {
2764 offset
= le32_to_cpu(info
->offset_req_ies
);
2766 if (offset
> CONTROL_BUFFER_SIZE
)
2767 offset
= CONTROL_BUFFER_SIZE
;
2769 req_ie
= (u8
*)info
+ offset
;
2771 if (offset
+ req_ie_len
> CONTROL_BUFFER_SIZE
)
2773 CONTROL_BUFFER_SIZE
- offset
;
2776 resp_ie_len
= le32_to_cpu(info
->resp_ie_length
);
2777 if (resp_ie_len
> CONTROL_BUFFER_SIZE
)
2778 resp_ie_len
= CONTROL_BUFFER_SIZE
;
2779 if (resp_ie_len
!= 0) {
2780 offset
= le32_to_cpu(info
->offset_resp_ies
);
2782 if (offset
> CONTROL_BUFFER_SIZE
)
2783 offset
= CONTROL_BUFFER_SIZE
;
2785 resp_ie
= (u8
*)info
+ offset
;
2787 if (offset
+ resp_ie_len
> CONTROL_BUFFER_SIZE
)
2789 CONTROL_BUFFER_SIZE
- offset
;
2792 /* Since rndis_wlan_craft_connected_bss() might use info
2793 * later and expects info to contain valid data if
2794 * non-null, free info and set NULL here.
2799 } else if (WARN_ON(priv
->infra_mode
!= NDIS_80211_INFRA_ADHOC
))
2802 ret
= get_bssid(usbdev
, bssid
);
2804 memset(bssid
, 0, sizeof(bssid
));
2806 netdev_dbg(usbdev
->net
, "link up work: [%pM]%s\n",
2807 bssid
, roamed
? " roamed" : "");
2809 /* Internal bss list in device should contain at least the currently
2810 * connected bss and we can get it to cfg80211 with
2811 * rndis_check_bssid_list().
2813 * NDIS spec says: "If the device is associated, but the associated
2814 * BSSID is not in its BSSID scan list, then the driver must add an
2815 * entry for the BSSID at the end of the data that it returns in
2816 * response to query of RNDIS_OID_802_11_BSSID_LIST."
2818 * NOTE: Seems to be true for BCM4320b variant, but not BCM4320a.
2821 rndis_check_bssid_list(usbdev
, bssid
, &match_bss
);
2823 if (!is_zero_ether_addr(bssid
) && !match_bss
) {
2824 /* Couldn't get bss from device, we need to manually craft bss
2827 rndis_wlan_craft_connected_bss(usbdev
, bssid
, info
);
2830 if (priv
->infra_mode
== NDIS_80211_INFRA_INFRA
) {
2832 cfg80211_connect_result(usbdev
->net
, bssid
, req_ie
,
2833 req_ie_len
, resp_ie
,
2834 resp_ie_len
, 0, GFP_KERNEL
);
2836 struct cfg80211_roam_info roam_info
= {
2837 .channel
= get_current_channel(usbdev
, NULL
),
2840 .req_ie_len
= req_ie_len
,
2842 .resp_ie_len
= resp_ie_len
,
2845 cfg80211_roamed(usbdev
->net
, &roam_info
, GFP_KERNEL
);
2847 } else if (priv
->infra_mode
== NDIS_80211_INFRA_ADHOC
)
2848 cfg80211_ibss_joined(usbdev
->net
, bssid
,
2849 get_current_channel(usbdev
, NULL
),
2854 priv
->connected
= true;
2855 memcpy(priv
->bssid
, bssid
, ETH_ALEN
);
2857 usbnet_resume_rx(usbdev
);
2858 netif_carrier_on(usbdev
->net
);
2861 static void rndis_wlan_do_link_down_work(struct usbnet
*usbdev
)
2863 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2865 if (priv
->connected
) {
2866 priv
->connected
= false;
2867 eth_zero_addr(priv
->bssid
);
2869 deauthenticate(usbdev
);
2871 cfg80211_disconnected(usbdev
->net
, 0, NULL
, 0, true, GFP_KERNEL
);
2874 netif_carrier_off(usbdev
->net
);
2877 static void rndis_wlan_worker(struct work_struct
*work
)
2879 struct rndis_wlan_private
*priv
=
2880 container_of(work
, struct rndis_wlan_private
, work
);
2881 struct usbnet
*usbdev
= priv
->usbdev
;
2883 if (test_and_clear_bit(WORK_LINK_UP
, &priv
->work_pending
))
2884 rndis_wlan_do_link_up_work(usbdev
);
2886 if (test_and_clear_bit(WORK_LINK_DOWN
, &priv
->work_pending
))
2887 rndis_wlan_do_link_down_work(usbdev
);
2889 if (test_and_clear_bit(WORK_SET_MULTICAST_LIST
, &priv
->work_pending
))
2890 set_multicast_list(usbdev
);
2893 static void rndis_wlan_set_multicast_list(struct net_device
*dev
)
2895 struct usbnet
*usbdev
= netdev_priv(dev
);
2896 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
2898 if (test_bit(WORK_SET_MULTICAST_LIST
, &priv
->work_pending
))
2901 set_bit(WORK_SET_MULTICAST_LIST
, &priv
->work_pending
);
2902 queue_work(priv
->workqueue
, &priv
->work
);
2905 static void rndis_wlan_auth_indication(struct usbnet
*usbdev
,
2906 struct ndis_80211_status_indication
*indication
,
2911 int flags
, buflen
, key_id
;
2912 bool pairwise_error
, group_error
;
2913 struct ndis_80211_auth_request
*auth_req
;
2914 enum nl80211_key_type key_type
;
2916 /* must have at least one array entry */
2917 if (len
< offsetof(struct ndis_80211_status_indication
, u
) +
2918 sizeof(struct ndis_80211_auth_request
)) {
2919 netdev_info(usbdev
->net
, "authentication indication: too short message (%i)\n",
2924 buf
= (void *)&indication
->u
.auth_request
[0];
2925 buflen
= len
- offsetof(struct ndis_80211_status_indication
, u
);
2927 while (buflen
>= sizeof(*auth_req
)) {
2928 auth_req
= (void *)buf
;
2929 if (buflen
< le32_to_cpu(auth_req
->length
))
2932 flags
= le32_to_cpu(auth_req
->flags
);
2933 pairwise_error
= false;
2934 group_error
= false;
2937 type
= "reauth request";
2939 type
= "key update request";
2941 pairwise_error
= true;
2942 type
= "pairwise_error";
2946 type
= "group_error";
2949 netdev_info(usbdev
->net
, "authentication indication: %s (0x%08x)\n",
2950 type
, le32_to_cpu(auth_req
->flags
));
2952 if (pairwise_error
) {
2953 key_type
= NL80211_KEYTYPE_PAIRWISE
;
2956 cfg80211_michael_mic_failure(usbdev
->net
,
2958 key_type
, key_id
, NULL
,
2963 key_type
= NL80211_KEYTYPE_GROUP
;
2966 cfg80211_michael_mic_failure(usbdev
->net
,
2968 key_type
, key_id
, NULL
,
2972 buflen
-= le32_to_cpu(auth_req
->length
);
2973 buf
+= le32_to_cpu(auth_req
->length
);
2977 static void rndis_wlan_pmkid_cand_list_indication(struct usbnet
*usbdev
,
2978 struct ndis_80211_status_indication
*indication
,
2981 struct ndis_80211_pmkid_cand_list
*cand_list
;
2982 int list_len
, expected_len
, i
;
2984 if (len
< offsetof(struct ndis_80211_status_indication
, u
) +
2985 sizeof(struct ndis_80211_pmkid_cand_list
)) {
2986 netdev_info(usbdev
->net
, "pmkid candidate list indication: too short message (%i)\n",
2991 list_len
= le32_to_cpu(indication
->u
.cand_list
.num_candidates
) *
2992 sizeof(struct ndis_80211_pmkid_candidate
);
2993 expected_len
= sizeof(struct ndis_80211_pmkid_cand_list
) + list_len
+
2994 offsetof(struct ndis_80211_status_indication
, u
);
2996 if (len
< expected_len
) {
2997 netdev_info(usbdev
->net
, "pmkid candidate list indication: list larger than buffer (%i < %i)\n",
3002 cand_list
= &indication
->u
.cand_list
;
3004 netdev_info(usbdev
->net
, "pmkid candidate list indication: version %i, candidates %i\n",
3005 le32_to_cpu(cand_list
->version
),
3006 le32_to_cpu(cand_list
->num_candidates
));
3008 if (le32_to_cpu(cand_list
->version
) != 1)
3011 for (i
= 0; i
< le32_to_cpu(cand_list
->num_candidates
); i
++) {
3012 struct ndis_80211_pmkid_candidate
*cand
=
3013 &cand_list
->candidate_list
[i
];
3014 bool preauth
= !!(cand
->flags
& NDIS_80211_PMKID_CAND_PREAUTH
);
3016 netdev_dbg(usbdev
->net
, "cand[%i]: flags: 0x%08x, preauth: %d, bssid: %pM\n",
3017 i
, le32_to_cpu(cand
->flags
), preauth
, cand
->bssid
);
3019 cfg80211_pmksa_candidate_notify(usbdev
->net
, i
, cand
->bssid
,
3020 preauth
, GFP_ATOMIC
);
3024 static void rndis_wlan_media_specific_indication(struct usbnet
*usbdev
,
3025 struct rndis_indicate
*msg
, int buflen
)
3027 struct ndis_80211_status_indication
*indication
;
3028 unsigned int len
, offset
;
3030 offset
= offsetof(struct rndis_indicate
, status
) +
3031 le32_to_cpu(msg
->offset
);
3032 len
= le32_to_cpu(msg
->length
);
3035 netdev_info(usbdev
->net
, "media specific indication, ignore too short message (%i < 8)\n",
3040 if (len
> buflen
|| offset
> buflen
|| offset
+ len
> buflen
) {
3041 netdev_info(usbdev
->net
, "media specific indication, too large to fit to buffer (%i > %i)\n",
3042 offset
+ len
, buflen
);
3046 indication
= (void *)((u8
*)msg
+ offset
);
3048 switch (le32_to_cpu(indication
->status_type
)) {
3049 case NDIS_80211_STATUSTYPE_RADIOSTATE
:
3050 netdev_info(usbdev
->net
, "radio state indication: %i\n",
3051 le32_to_cpu(indication
->u
.radio_status
));
3054 case NDIS_80211_STATUSTYPE_MEDIASTREAMMODE
:
3055 netdev_info(usbdev
->net
, "media stream mode indication: %i\n",
3056 le32_to_cpu(indication
->u
.media_stream_mode
));
3059 case NDIS_80211_STATUSTYPE_AUTHENTICATION
:
3060 rndis_wlan_auth_indication(usbdev
, indication
, len
);
3063 case NDIS_80211_STATUSTYPE_PMKID_CANDIDATELIST
:
3064 rndis_wlan_pmkid_cand_list_indication(usbdev
, indication
, len
);
3068 netdev_info(usbdev
->net
, "media specific indication: unknown status type 0x%08x\n",
3069 le32_to_cpu(indication
->status_type
));
3073 static void rndis_wlan_indication(struct usbnet
*usbdev
, void *ind
, int buflen
)
3075 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3076 struct rndis_indicate
*msg
= ind
;
3078 switch (le32_to_cpu(msg
->status
)) {
3079 case RNDIS_STATUS_MEDIA_CONNECT
:
3080 if (priv
->current_command_oid
== RNDIS_OID_802_11_ADD_KEY
) {
3081 /* RNDIS_OID_802_11_ADD_KEY causes sometimes extra
3082 * "media connect" indications which confuses driver
3083 * and userspace to think that device is
3084 * roaming/reassociating when it isn't.
3086 netdev_dbg(usbdev
->net
, "ignored RNDIS_OID_802_11_ADD_KEY triggered 'media connect'\n");
3090 usbnet_pause_rx(usbdev
);
3092 netdev_info(usbdev
->net
, "media connect\n");
3094 /* queue work to avoid recursive calls into rndis_command */
3095 set_bit(WORK_LINK_UP
, &priv
->work_pending
);
3096 queue_work(priv
->workqueue
, &priv
->work
);
3099 case RNDIS_STATUS_MEDIA_DISCONNECT
:
3100 netdev_info(usbdev
->net
, "media disconnect\n");
3102 /* queue work to avoid recursive calls into rndis_command */
3103 set_bit(WORK_LINK_DOWN
, &priv
->work_pending
);
3104 queue_work(priv
->workqueue
, &priv
->work
);
3107 case RNDIS_STATUS_MEDIA_SPECIFIC_INDICATION
:
3108 rndis_wlan_media_specific_indication(usbdev
, msg
, buflen
);
3112 netdev_info(usbdev
->net
, "indication: 0x%08x\n",
3113 le32_to_cpu(msg
->status
));
3118 static int rndis_wlan_get_caps(struct usbnet
*usbdev
, struct wiphy
*wiphy
)
3123 } networks_supported
;
3124 struct ndis_80211_capability
*caps
;
3125 u8 caps_buf
[sizeof(*caps
) + sizeof(caps
->auth_encr_pair
) * 16];
3126 int len
, retval
, i
, n
;
3127 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3129 /* determine supported modes */
3130 len
= sizeof(networks_supported
);
3131 retval
= rndis_query_oid(usbdev
,
3132 RNDIS_OID_802_11_NETWORK_TYPES_SUPPORTED
,
3133 &networks_supported
, &len
);
3135 n
= le32_to_cpu(networks_supported
.num_items
);
3138 for (i
= 0; i
< n
; i
++) {
3139 switch (le32_to_cpu(networks_supported
.items
[i
])) {
3140 case NDIS_80211_TYPE_FREQ_HOP
:
3141 case NDIS_80211_TYPE_DIRECT_SEQ
:
3142 priv
->caps
|= CAP_MODE_80211B
;
3144 case NDIS_80211_TYPE_OFDM_A
:
3145 priv
->caps
|= CAP_MODE_80211A
;
3147 case NDIS_80211_TYPE_OFDM_G
:
3148 priv
->caps
|= CAP_MODE_80211G
;
3154 /* get device 802.11 capabilities, number of PMKIDs */
3155 caps
= (struct ndis_80211_capability
*)caps_buf
;
3156 len
= sizeof(caps_buf
);
3157 retval
= rndis_query_oid(usbdev
,
3158 RNDIS_OID_802_11_CAPABILITY
,
3161 netdev_dbg(usbdev
->net
, "RNDIS_OID_802_11_CAPABILITY -> len %d, "
3162 "ver %d, pmkids %d, auth-encr-pairs %d\n",
3163 le32_to_cpu(caps
->length
),
3164 le32_to_cpu(caps
->version
),
3165 le32_to_cpu(caps
->num_pmkids
),
3166 le32_to_cpu(caps
->num_auth_encr_pair
));
3167 wiphy
->max_num_pmkids
= le32_to_cpu(caps
->num_pmkids
);
3169 wiphy
->max_num_pmkids
= 0;
3174 static void rndis_do_cqm(struct usbnet
*usbdev
, s32 rssi
)
3176 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3177 enum nl80211_cqm_rssi_threshold_event event
;
3178 int thold
, hyst
, last_event
;
3180 if (priv
->cqm_rssi_thold
>= 0 || rssi
>= 0)
3182 if (priv
->infra_mode
!= NDIS_80211_INFRA_INFRA
)
3185 last_event
= priv
->last_cqm_event_rssi
;
3186 thold
= priv
->cqm_rssi_thold
;
3187 hyst
= priv
->cqm_rssi_hyst
;
3189 if (rssi
< thold
&& (last_event
== 0 || rssi
< last_event
- hyst
))
3190 event
= NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW
;
3191 else if (rssi
> thold
&& (last_event
== 0 || rssi
> last_event
+ hyst
))
3192 event
= NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH
;
3196 priv
->last_cqm_event_rssi
= rssi
;
3197 cfg80211_cqm_rssi_notify(usbdev
->net
, event
, rssi
, GFP_KERNEL
);
3200 #define DEVICE_POLLER_JIFFIES (HZ)
3201 static void rndis_device_poller(struct work_struct
*work
)
3203 struct rndis_wlan_private
*priv
=
3204 container_of(work
, struct rndis_wlan_private
,
3205 dev_poller_work
.work
);
3206 struct usbnet
*usbdev
= priv
->usbdev
;
3209 int update_jiffies
= DEVICE_POLLER_JIFFIES
;
3212 /* Only check/do workaround when connected. Calling is_associated()
3213 * also polls device with rndis_command() and catches for media link
3216 if (!is_associated(usbdev
)) {
3217 /* Workaround bad scanning in BCM4320a devices with active
3218 * background scanning when not associated.
3220 if (priv
->device_type
== RNDIS_BCM4320A
&& priv
->radio_on
&&
3221 !priv
->scan_request
) {
3222 /* Get previous scan results */
3223 rndis_check_bssid_list(usbdev
, NULL
, NULL
);
3225 /* Initiate new scan */
3226 rndis_start_bssid_list_scan(usbdev
);
3233 ret
= rndis_query_oid(usbdev
, RNDIS_OID_802_11_RSSI
,
3236 priv
->last_qual
= level_to_qual(le32_to_cpu(rssi
));
3237 rndis_do_cqm(usbdev
, le32_to_cpu(rssi
));
3240 netdev_dbg(usbdev
->net
, "dev-poller: RNDIS_OID_802_11_RSSI -> %d, rssi:%d, qual: %d\n",
3241 ret
, le32_to_cpu(rssi
), level_to_qual(le32_to_cpu(rssi
)));
3243 /* Workaround transfer stalls on poor quality links.
3244 * TODO: find right way to fix these stalls (as stalls do not happen
3245 * with ndiswrapper/windows driver). */
3246 if (priv
->param_workaround_interval
> 0 && priv
->last_qual
<= 25) {
3247 /* Decrease stats worker interval to catch stalls.
3248 * faster. Faster than 400-500ms causes packet loss,
3249 * Slower doesn't catch stalls fast enough.
3251 j
= msecs_to_jiffies(priv
->param_workaround_interval
);
3252 if (j
> DEVICE_POLLER_JIFFIES
)
3253 j
= DEVICE_POLLER_JIFFIES
;
3258 /* Send scan OID. Use of both OIDs is required to get device
3261 tmp
= cpu_to_le32(1);
3262 rndis_set_oid(usbdev
,
3263 RNDIS_OID_802_11_BSSID_LIST_SCAN
,
3266 len
= CONTROL_BUFFER_SIZE
;
3267 buf
= kmalloc(len
, GFP_KERNEL
);
3271 rndis_query_oid(usbdev
,
3272 RNDIS_OID_802_11_BSSID_LIST
,
3278 if (update_jiffies
>= HZ
)
3279 update_jiffies
= round_jiffies_relative(update_jiffies
);
3281 j
= round_jiffies_relative(update_jiffies
);
3282 if (abs(j
- update_jiffies
) <= 10)
3286 queue_delayed_work(priv
->workqueue
, &priv
->dev_poller_work
,
3291 * driver/device initialization
3293 static void rndis_copy_module_params(struct usbnet
*usbdev
, int device_type
)
3295 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3297 priv
->device_type
= device_type
;
3299 priv
->param_country
[0] = modparam_country
[0];
3300 priv
->param_country
[1] = modparam_country
[1];
3301 priv
->param_country
[2] = 0;
3302 priv
->param_frameburst
= modparam_frameburst
;
3303 priv
->param_afterburner
= modparam_afterburner
;
3304 priv
->param_power_save
= modparam_power_save
;
3305 priv
->param_power_output
= modparam_power_output
;
3306 priv
->param_roamtrigger
= modparam_roamtrigger
;
3307 priv
->param_roamdelta
= modparam_roamdelta
;
3309 priv
->param_country
[0] = toupper(priv
->param_country
[0]);
3310 priv
->param_country
[1] = toupper(priv
->param_country
[1]);
3311 /* doesn't support EU as country code, use FI instead */
3312 if (!strcmp(priv
->param_country
, "EU"))
3313 strcpy(priv
->param_country
, "FI");
3315 if (priv
->param_power_save
< 0)
3316 priv
->param_power_save
= 0;
3317 else if (priv
->param_power_save
> 2)
3318 priv
->param_power_save
= 2;
3320 if (priv
->param_power_output
< 0)
3321 priv
->param_power_output
= 0;
3322 else if (priv
->param_power_output
> 3)
3323 priv
->param_power_output
= 3;
3325 if (priv
->param_roamtrigger
< -80)
3326 priv
->param_roamtrigger
= -80;
3327 else if (priv
->param_roamtrigger
> -60)
3328 priv
->param_roamtrigger
= -60;
3330 if (priv
->param_roamdelta
< 0)
3331 priv
->param_roamdelta
= 0;
3332 else if (priv
->param_roamdelta
> 2)
3333 priv
->param_roamdelta
= 2;
3335 if (modparam_workaround_interval
< 0)
3336 priv
->param_workaround_interval
= 500;
3338 priv
->param_workaround_interval
= modparam_workaround_interval
;
3341 static int unknown_early_init(struct usbnet
*usbdev
)
3343 /* copy module parameters for unknown so that iwconfig reports txpower
3344 * and workaround parameter is copied to private structure correctly.
3346 rndis_copy_module_params(usbdev
, RNDIS_UNKNOWN
);
3348 /* This is unknown device, so do not try set configuration parameters.
3354 static int bcm4320a_early_init(struct usbnet
*usbdev
)
3356 /* copy module parameters for bcm4320a so that iwconfig reports txpower
3357 * and workaround parameter is copied to private structure correctly.
3359 rndis_copy_module_params(usbdev
, RNDIS_BCM4320A
);
3361 /* bcm4320a doesn't handle configuration parameters well. Try
3362 * set any and you get partially zeroed mac and broken device.
3368 static int bcm4320b_early_init(struct usbnet
*usbdev
)
3370 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3373 rndis_copy_module_params(usbdev
, RNDIS_BCM4320B
);
3375 /* Early initialization settings, setting these won't have effect
3376 * if called after generic_rndis_bind().
3379 rndis_set_config_parameter_str(usbdev
, "Country", priv
->param_country
);
3380 rndis_set_config_parameter_str(usbdev
, "FrameBursting",
3381 priv
->param_frameburst
? "1" : "0");
3382 rndis_set_config_parameter_str(usbdev
, "Afterburner",
3383 priv
->param_afterburner
? "1" : "0");
3384 sprintf(buf
, "%d", priv
->param_power_save
);
3385 rndis_set_config_parameter_str(usbdev
, "PowerSaveMode", buf
);
3386 sprintf(buf
, "%d", priv
->param_power_output
);
3387 rndis_set_config_parameter_str(usbdev
, "PwrOut", buf
);
3388 sprintf(buf
, "%d", priv
->param_roamtrigger
);
3389 rndis_set_config_parameter_str(usbdev
, "RoamTrigger", buf
);
3390 sprintf(buf
, "%d", priv
->param_roamdelta
);
3391 rndis_set_config_parameter_str(usbdev
, "RoamDelta", buf
);
3396 /* same as rndis_netdev_ops but with local multicast handler */
3397 static const struct net_device_ops rndis_wlan_netdev_ops
= {
3398 .ndo_open
= usbnet_open
,
3399 .ndo_stop
= usbnet_stop
,
3400 .ndo_start_xmit
= usbnet_start_xmit
,
3401 .ndo_tx_timeout
= usbnet_tx_timeout
,
3402 .ndo_get_stats64
= usbnet_get_stats64
,
3403 .ndo_set_mac_address
= eth_mac_addr
,
3404 .ndo_validate_addr
= eth_validate_addr
,
3405 .ndo_set_rx_mode
= rndis_wlan_set_multicast_list
,
3408 static int rndis_wlan_bind(struct usbnet
*usbdev
, struct usb_interface
*intf
)
3410 struct wiphy
*wiphy
;
3411 struct rndis_wlan_private
*priv
;
3415 /* allocate wiphy and rndis private data
3416 * NOTE: We only support a single virtual interface, so wiphy
3417 * and wireless_dev are somewhat synonymous for this device.
3419 wiphy
= wiphy_new(&rndis_config_ops
, sizeof(struct rndis_wlan_private
));
3423 priv
= wiphy_priv(wiphy
);
3424 usbdev
->net
->ieee80211_ptr
= &priv
->wdev
;
3425 priv
->wdev
.wiphy
= wiphy
;
3426 priv
->wdev
.iftype
= NL80211_IFTYPE_STATION
;
3428 /* These have to be initialized before calling generic_rndis_bind().
3429 * Otherwise we'll be in big trouble in rndis_wlan_early_init().
3431 usbdev
->driver_priv
= priv
;
3432 priv
->usbdev
= usbdev
;
3434 mutex_init(&priv
->command_lock
);
3436 /* because rndis_command() sleeps we need to use workqueue */
3437 priv
->workqueue
= create_singlethread_workqueue("rndis_wlan");
3438 if (!priv
->workqueue
) {
3442 INIT_WORK(&priv
->work
, rndis_wlan_worker
);
3443 INIT_DELAYED_WORK(&priv
->dev_poller_work
, rndis_device_poller
);
3444 INIT_DELAYED_WORK(&priv
->scan_work
, rndis_get_scan_results
);
3446 /* try bind rndis_host */
3447 retval
= generic_rndis_bind(usbdev
, intf
, FLAG_RNDIS_PHYM_WIRELESS
);
3451 /* generic_rndis_bind set packet filter to multicast_all+
3452 * promisc mode which doesn't work well for our devices (device
3453 * picks up rssi to closest station instead of to access point).
3455 * rndis_host wants to avoid all OID as much as possible
3456 * so do promisc/multicast handling in rndis_wlan.
3458 usbdev
->net
->netdev_ops
= &rndis_wlan_netdev_ops
;
3460 tmp
= cpu_to_le32(RNDIS_PACKET_TYPE_DIRECTED
| RNDIS_PACKET_TYPE_BROADCAST
);
3461 retval
= rndis_set_oid(usbdev
,
3462 RNDIS_OID_GEN_CURRENT_PACKET_FILTER
,
3466 retval
= rndis_query_oid(usbdev
,
3467 RNDIS_OID_802_3_MAXIMUM_LIST_SIZE
,
3469 priv
->multicast_size
= le32_to_cpu(tmp
);
3470 if (retval
< 0 || priv
->multicast_size
< 0)
3471 priv
->multicast_size
= 0;
3472 if (priv
->multicast_size
> 0)
3473 usbdev
->net
->flags
|= IFF_MULTICAST
;
3475 usbdev
->net
->flags
&= ~IFF_MULTICAST
;
3477 /* fill-out wiphy structure and register w/ cfg80211 */
3478 memcpy(wiphy
->perm_addr
, usbdev
->net
->dev_addr
, ETH_ALEN
);
3479 wiphy
->privid
= rndis_wiphy_privid
;
3480 wiphy
->interface_modes
= BIT(NL80211_IFTYPE_STATION
)
3481 | BIT(NL80211_IFTYPE_ADHOC
);
3482 wiphy
->max_scan_ssids
= 1;
3484 /* TODO: fill-out band/encr information based on priv->caps */
3485 rndis_wlan_get_caps(usbdev
, wiphy
);
3487 memcpy(priv
->channels
, rndis_channels
, sizeof(rndis_channels
));
3488 memcpy(priv
->rates
, rndis_rates
, sizeof(rndis_rates
));
3489 priv
->band
.channels
= priv
->channels
;
3490 priv
->band
.n_channels
= ARRAY_SIZE(rndis_channels
);
3491 priv
->band
.bitrates
= priv
->rates
;
3492 priv
->band
.n_bitrates
= ARRAY_SIZE(rndis_rates
);
3493 wiphy
->bands
[NL80211_BAND_2GHZ
] = &priv
->band
;
3494 wiphy
->signal_type
= CFG80211_SIGNAL_TYPE_UNSPEC
;
3496 memcpy(priv
->cipher_suites
, rndis_cipher_suites
,
3497 sizeof(rndis_cipher_suites
));
3498 wiphy
->cipher_suites
= priv
->cipher_suites
;
3499 wiphy
->n_cipher_suites
= ARRAY_SIZE(rndis_cipher_suites
);
3501 set_wiphy_dev(wiphy
, &usbdev
->udev
->dev
);
3503 if (wiphy_register(wiphy
)) {
3508 set_default_iw_params(usbdev
);
3510 priv
->power_mode
= -1;
3512 /* set default rts/frag */
3513 rndis_set_wiphy_params(wiphy
,
3514 WIPHY_PARAM_FRAG_THRESHOLD
| WIPHY_PARAM_RTS_THRESHOLD
);
3516 /* turn radio off on init */
3517 priv
->radio_on
= false;
3518 disassociate(usbdev
, false);
3519 netif_carrier_off(usbdev
->net
);
3524 cancel_delayed_work_sync(&priv
->dev_poller_work
);
3525 cancel_delayed_work_sync(&priv
->scan_work
);
3526 cancel_work_sync(&priv
->work
);
3527 flush_workqueue(priv
->workqueue
);
3528 destroy_workqueue(priv
->workqueue
);
3534 static void rndis_wlan_unbind(struct usbnet
*usbdev
, struct usb_interface
*intf
)
3536 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3538 /* turn radio off */
3539 disassociate(usbdev
, false);
3541 cancel_delayed_work_sync(&priv
->dev_poller_work
);
3542 cancel_delayed_work_sync(&priv
->scan_work
);
3543 cancel_work_sync(&priv
->work
);
3544 flush_workqueue(priv
->workqueue
);
3545 destroy_workqueue(priv
->workqueue
);
3547 rndis_unbind(usbdev
, intf
);
3549 wiphy_unregister(priv
->wdev
.wiphy
);
3550 wiphy_free(priv
->wdev
.wiphy
);
3553 static int rndis_wlan_reset(struct usbnet
*usbdev
)
3555 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3558 netdev_dbg(usbdev
->net
, "%s()\n", __func__
);
3560 retval
= rndis_reset(usbdev
);
3562 netdev_warn(usbdev
->net
, "rndis_reset failed: %d\n", retval
);
3564 /* rndis_reset cleared multicast list, so restore here.
3565 (set_multicast_list() also turns on current packet filter) */
3566 set_multicast_list(usbdev
);
3568 queue_delayed_work(priv
->workqueue
, &priv
->dev_poller_work
,
3569 round_jiffies_relative(DEVICE_POLLER_JIFFIES
));
3571 return deauthenticate(usbdev
);
3574 static int rndis_wlan_stop(struct usbnet
*usbdev
)
3576 struct rndis_wlan_private
*priv
= get_rndis_wlan_priv(usbdev
);
3580 netdev_dbg(usbdev
->net
, "%s()\n", __func__
);
3582 retval
= disassociate(usbdev
, false);
3584 priv
->work_pending
= 0;
3585 cancel_delayed_work_sync(&priv
->dev_poller_work
);
3586 cancel_delayed_work_sync(&priv
->scan_work
);
3587 cancel_work_sync(&priv
->work
);
3588 flush_workqueue(priv
->workqueue
);
3590 if (priv
->scan_request
) {
3591 struct cfg80211_scan_info info
= {
3595 cfg80211_scan_done(priv
->scan_request
, &info
);
3596 priv
->scan_request
= NULL
;
3599 /* Set current packet filter zero to block receiving data packets from
3602 rndis_set_oid(usbdev
, RNDIS_OID_GEN_CURRENT_PACKET_FILTER
, &filter
,
3608 static const struct driver_info bcm4320b_info
= {
3609 .description
= "Wireless RNDIS device, BCM4320b based",
3610 .flags
= FLAG_WLAN
| FLAG_FRAMING_RN
| FLAG_NO_SETINT
|
3611 FLAG_AVOID_UNLINK_URBS
,
3612 .bind
= rndis_wlan_bind
,
3613 .unbind
= rndis_wlan_unbind
,
3614 .status
= rndis_status
,
3615 .rx_fixup
= rndis_rx_fixup
,
3616 .tx_fixup
= rndis_tx_fixup
,
3617 .reset
= rndis_wlan_reset
,
3618 .stop
= rndis_wlan_stop
,
3619 .early_init
= bcm4320b_early_init
,
3620 .indication
= rndis_wlan_indication
,
3623 static const struct driver_info bcm4320a_info
= {
3624 .description
= "Wireless RNDIS device, BCM4320a based",
3625 .flags
= FLAG_WLAN
| FLAG_FRAMING_RN
| FLAG_NO_SETINT
|
3626 FLAG_AVOID_UNLINK_URBS
,
3627 .bind
= rndis_wlan_bind
,
3628 .unbind
= rndis_wlan_unbind
,
3629 .status
= rndis_status
,
3630 .rx_fixup
= rndis_rx_fixup
,
3631 .tx_fixup
= rndis_tx_fixup
,
3632 .reset
= rndis_wlan_reset
,
3633 .stop
= rndis_wlan_stop
,
3634 .early_init
= bcm4320a_early_init
,
3635 .indication
= rndis_wlan_indication
,
3638 static const struct driver_info rndis_wlan_info
= {
3639 .description
= "Wireless RNDIS device",
3640 .flags
= FLAG_WLAN
| FLAG_FRAMING_RN
| FLAG_NO_SETINT
|
3641 FLAG_AVOID_UNLINK_URBS
,
3642 .bind
= rndis_wlan_bind
,
3643 .unbind
= rndis_wlan_unbind
,
3644 .status
= rndis_status
,
3645 .rx_fixup
= rndis_rx_fixup
,
3646 .tx_fixup
= rndis_tx_fixup
,
3647 .reset
= rndis_wlan_reset
,
3648 .stop
= rndis_wlan_stop
,
3649 .early_init
= unknown_early_init
,
3650 .indication
= rndis_wlan_indication
,
3653 /*-------------------------------------------------------------------------*/
3655 static const struct usb_device_id products
[] = {
3656 #define RNDIS_MASTER_INTERFACE \
3657 .bInterfaceClass = USB_CLASS_COMM, \
3658 .bInterfaceSubClass = 2 /* ACM */, \
3659 .bInterfaceProtocol = 0x0ff
3661 /* INF driver for these devices have DriverVer >= 4.xx.xx.xx and many custom
3662 * parameters available. Chipset marked as 'BCM4320SKFBG' in NDISwrapper-wiki.
3665 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3666 | USB_DEVICE_ID_MATCH_DEVICE
,
3668 .idProduct
= 0x00bc, /* Buffalo WLI-U2-KG125S */
3669 RNDIS_MASTER_INTERFACE
,
3670 .driver_info
= (unsigned long) &bcm4320b_info
,
3672 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3673 | USB_DEVICE_ID_MATCH_DEVICE
,
3675 .idProduct
= 0x011b, /* U.S. Robotics USR5421 */
3676 RNDIS_MASTER_INTERFACE
,
3677 .driver_info
= (unsigned long) &bcm4320b_info
,
3679 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3680 | USB_DEVICE_ID_MATCH_DEVICE
,
3682 .idProduct
= 0x011b, /* Belkin F5D7051 */
3683 RNDIS_MASTER_INTERFACE
,
3684 .driver_info
= (unsigned long) &bcm4320b_info
,
3686 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3687 | USB_DEVICE_ID_MATCH_DEVICE
,
3688 .idVendor
= 0x1799, /* Belkin has two vendor ids */
3689 .idProduct
= 0x011b, /* Belkin F5D7051 */
3690 RNDIS_MASTER_INTERFACE
,
3691 .driver_info
= (unsigned long) &bcm4320b_info
,
3693 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3694 | USB_DEVICE_ID_MATCH_DEVICE
,
3696 .idProduct
= 0x0014, /* Linksys WUSB54GSv2 */
3697 RNDIS_MASTER_INTERFACE
,
3698 .driver_info
= (unsigned long) &bcm4320b_info
,
3700 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3701 | USB_DEVICE_ID_MATCH_DEVICE
,
3703 .idProduct
= 0x0026, /* Linksys WUSB54GSC */
3704 RNDIS_MASTER_INTERFACE
,
3705 .driver_info
= (unsigned long) &bcm4320b_info
,
3707 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3708 | USB_DEVICE_ID_MATCH_DEVICE
,
3710 .idProduct
= 0x1717, /* Asus WL169gE */
3711 RNDIS_MASTER_INTERFACE
,
3712 .driver_info
= (unsigned long) &bcm4320b_info
,
3714 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3715 | USB_DEVICE_ID_MATCH_DEVICE
,
3717 .idProduct
= 0xd11b, /* Eminent EM4045 */
3718 RNDIS_MASTER_INTERFACE
,
3719 .driver_info
= (unsigned long) &bcm4320b_info
,
3721 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3722 | USB_DEVICE_ID_MATCH_DEVICE
,
3724 .idProduct
= 0x0715, /* BT Voyager 1055 */
3725 RNDIS_MASTER_INTERFACE
,
3726 .driver_info
= (unsigned long) &bcm4320b_info
,
3728 /* These devices have DriverVer < 4.xx.xx.xx and do not have any custom
3729 * parameters available, hardware probably contain older firmware version with
3730 * no way of updating. Chipset marked as 'BCM4320????' in NDISwrapper-wiki.
3733 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3734 | USB_DEVICE_ID_MATCH_DEVICE
,
3736 .idProduct
= 0x000e, /* Linksys WUSB54GSv1 */
3737 RNDIS_MASTER_INTERFACE
,
3738 .driver_info
= (unsigned long) &bcm4320a_info
,
3740 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3741 | USB_DEVICE_ID_MATCH_DEVICE
,
3743 .idProduct
= 0x0111, /* U.S. Robotics USR5420 */
3744 RNDIS_MASTER_INTERFACE
,
3745 .driver_info
= (unsigned long) &bcm4320a_info
,
3747 .match_flags
= USB_DEVICE_ID_MATCH_INT_INFO
3748 | USB_DEVICE_ID_MATCH_DEVICE
,
3750 .idProduct
= 0x004b, /* BUFFALO WLI-USB-G54 */
3751 RNDIS_MASTER_INTERFACE
,
3752 .driver_info
= (unsigned long) &bcm4320a_info
,
3754 /* Generic Wireless RNDIS devices that we don't have exact
3755 * idVendor/idProduct/chip yet.
3758 /* RNDIS is MSFT's un-official variant of CDC ACM */
3759 USB_INTERFACE_INFO(USB_CLASS_COMM
, 2 /* ACM */, 0x0ff),
3760 .driver_info
= (unsigned long) &rndis_wlan_info
,
3762 /* "ActiveSync" is an undocumented variant of RNDIS, used in WM5 */
3763 USB_INTERFACE_INFO(USB_CLASS_MISC
, 1, 1),
3764 .driver_info
= (unsigned long) &rndis_wlan_info
,
3768 MODULE_DEVICE_TABLE(usb
, products
);
3770 static struct usb_driver rndis_wlan_driver
= {
3771 .name
= "rndis_wlan",
3772 .id_table
= products
,
3773 .probe
= usbnet_probe
,
3774 .disconnect
= usbnet_disconnect
,
3775 .suspend
= usbnet_suspend
,
3776 .resume
= usbnet_resume
,
3777 .disable_hub_initiated_lpm
= 1,
3780 module_usb_driver(rndis_wlan_driver
);
3782 MODULE_AUTHOR("Bjorge Dijkstra");
3783 MODULE_AUTHOR("Jussi Kivilinna");
3784 MODULE_DESCRIPTION("Driver for RNDIS based USB Wireless adapters");
3785 MODULE_LICENSE("GPL");