]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/net/wireless/rndis_wlan.c
rndis_wlan: integer overflows in rndis_wlan_do_link_up_work()
[mirror_ubuntu-jammy-kernel.git] / drivers / net / wireless / rndis_wlan.c
CommitLineData
bf164cc0
JK
1/*
2 * Driver for RNDIS based wireless USB devices.
3 *
4 * Copyright (C) 2007 by Bjorge Dijkstra <bjd@jooz.net>
9656e85b 5 * Copyright (C) 2008-2009 by Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
bf164cc0
JK
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Portions of this file are based on NDISwrapper project,
22 * Copyright (C) 2003-2005 Pontus Fuchs, Giridhar Pemmasani
23 * http://ndiswrapper.sourceforge.net/
24 */
25
26// #define DEBUG // error path messages, extra info
27// #define VERBOSE // more; success messages
28
29#include <linux/module.h>
30#include <linux/init.h>
31#include <linux/netdevice.h>
32#include <linux/etherdevice.h>
33#include <linux/ethtool.h>
34#include <linux/workqueue.h>
35#include <linux/mutex.h>
36#include <linux/mii.h>
37#include <linux/usb.h>
38#include <linux/usb/cdc.h>
2c706002 39#include <linux/ieee80211.h>
bf164cc0
JK
40#include <linux/if_arp.h>
41#include <linux/ctype.h>
42#include <linux/spinlock.h>
5a0e3ad6 43#include <linux/slab.h>
5c8fa4f7 44#include <net/cfg80211.h>
bf164cc0
JK
45#include <linux/usb/usbnet.h>
46#include <linux/usb/rndis_host.h>
47
48
49/* NOTE: All these are settings for Broadcom chipset */
50static char modparam_country[4] = "EU";
51module_param_string(country, modparam_country, 4, 0444);
52MODULE_PARM_DESC(country, "Country code (ISO 3166-1 alpha-2), default: EU");
53
54static int modparam_frameburst = 1;
55module_param_named(frameburst, modparam_frameburst, int, 0444);
56MODULE_PARM_DESC(frameburst, "enable frame bursting (default: on)");
57
58static int modparam_afterburner = 0;
59module_param_named(afterburner, modparam_afterburner, int, 0444);
60MODULE_PARM_DESC(afterburner,
61 "enable afterburner aka '125 High Speed Mode' (default: off)");
62
63static int modparam_power_save = 0;
64module_param_named(power_save, modparam_power_save, int, 0444);
65MODULE_PARM_DESC(power_save,
66 "set power save mode: 0=off, 1=on, 2=fast (default: off)");
67
68static int modparam_power_output = 3;
69module_param_named(power_output, modparam_power_output, int, 0444);
70MODULE_PARM_DESC(power_output,
71 "set power output: 0=25%, 1=50%, 2=75%, 3=100% (default: 100%)");
72
73static int modparam_roamtrigger = -70;
74module_param_named(roamtrigger, modparam_roamtrigger, int, 0444);
75MODULE_PARM_DESC(roamtrigger,
76 "set roaming dBm trigger: -80=optimize for distance, "
77 "-60=bandwidth (default: -70)");
78
79static int modparam_roamdelta = 1;
80module_param_named(roamdelta, modparam_roamdelta, int, 0444);
81MODULE_PARM_DESC(roamdelta,
82 "set roaming tendency: 0=aggressive, 1=moderate, "
83 "2=conservative (default: moderate)");
84
77593ae2 85static int modparam_workaround_interval;
bf164cc0
JK
86module_param_named(workaround_interval, modparam_workaround_interval,
87 int, 0444);
88MODULE_PARM_DESC(workaround_interval,
77593ae2 89 "set stall workaround interval in msecs (0=disabled) (default: 0)");
bf164cc0
JK
90
91
92/* various RNDIS OID defs */
35c26c2c
HH
93#define OID_GEN_LINK_SPEED cpu_to_le32(0x00010107)
94#define OID_GEN_RNDIS_CONFIG_PARAMETER cpu_to_le32(0x0001021b)
95
96#define OID_GEN_XMIT_OK cpu_to_le32(0x00020101)
97#define OID_GEN_RCV_OK cpu_to_le32(0x00020102)
98#define OID_GEN_XMIT_ERROR cpu_to_le32(0x00020103)
99#define OID_GEN_RCV_ERROR cpu_to_le32(0x00020104)
100#define OID_GEN_RCV_NO_BUFFER cpu_to_le32(0x00020105)
101
35c26c2c
HH
102#define OID_802_3_CURRENT_ADDRESS cpu_to_le32(0x01010102)
103#define OID_802_3_MULTICAST_LIST cpu_to_le32(0x01010103)
104#define OID_802_3_MAXIMUM_LIST_SIZE cpu_to_le32(0x01010104)
105
106#define OID_802_11_BSSID cpu_to_le32(0x0d010101)
107#define OID_802_11_SSID cpu_to_le32(0x0d010102)
108#define OID_802_11_INFRASTRUCTURE_MODE cpu_to_le32(0x0d010108)
109#define OID_802_11_ADD_WEP cpu_to_le32(0x0d010113)
110#define OID_802_11_REMOVE_WEP cpu_to_le32(0x0d010114)
111#define OID_802_11_DISASSOCIATE cpu_to_le32(0x0d010115)
112#define OID_802_11_AUTHENTICATION_MODE cpu_to_le32(0x0d010118)
113#define OID_802_11_PRIVACY_FILTER cpu_to_le32(0x0d010119)
114#define OID_802_11_BSSID_LIST_SCAN cpu_to_le32(0x0d01011a)
115#define OID_802_11_ENCRYPTION_STATUS cpu_to_le32(0x0d01011b)
116#define OID_802_11_ADD_KEY cpu_to_le32(0x0d01011d)
117#define OID_802_11_REMOVE_KEY cpu_to_le32(0x0d01011e)
118#define OID_802_11_ASSOCIATION_INFORMATION cpu_to_le32(0x0d01011f)
0308383f 119#define OID_802_11_CAPABILITY cpu_to_le32(0x0d010122)
35c26c2c
HH
120#define OID_802_11_PMKID cpu_to_le32(0x0d010123)
121#define OID_802_11_NETWORK_TYPES_SUPPORTED cpu_to_le32(0x0d010203)
122#define OID_802_11_NETWORK_TYPE_IN_USE cpu_to_le32(0x0d010204)
123#define OID_802_11_TX_POWER_LEVEL cpu_to_le32(0x0d010205)
124#define OID_802_11_RSSI cpu_to_le32(0x0d010206)
125#define OID_802_11_RSSI_TRIGGER cpu_to_le32(0x0d010207)
126#define OID_802_11_FRAGMENTATION_THRESHOLD cpu_to_le32(0x0d010209)
127#define OID_802_11_RTS_THRESHOLD cpu_to_le32(0x0d01020a)
128#define OID_802_11_SUPPORTED_RATES cpu_to_le32(0x0d01020e)
129#define OID_802_11_CONFIGURATION cpu_to_le32(0x0d010211)
40d70dd1 130#define OID_802_11_POWER_MODE cpu_to_le32(0x0d010216)
35c26c2c 131#define OID_802_11_BSSID_LIST cpu_to_le32(0x0d010217)
bf164cc0
JK
132
133
134/* Typical noise/maximum signal level values taken from ndiswrapper iw_ndis.h */
135#define WL_NOISE -96 /* typical noise level in dBm */
136#define WL_SIGMAX -32 /* typical maximum signal level in dBm */
137
138
139/* Assume that Broadcom 4320 (only chipset at time of writing known to be
140 * based on wireless rndis) has default txpower of 13dBm.
141 * This value is from Linksys WUSB54GSC User Guide, Appendix F: Specifications.
222ec50a
JK
142 * 100% : 20 mW ~ 13dBm
143 * 75% : 15 mW ~ 12dBm
144 * 50% : 10 mW ~ 10dBm
145 * 25% : 5 mW ~ 7dBm
bf164cc0 146 */
222ec50a
JK
147#define BCM4320_DEFAULT_TXPOWER_DBM_100 13
148#define BCM4320_DEFAULT_TXPOWER_DBM_75 12
149#define BCM4320_DEFAULT_TXPOWER_DBM_50 10
150#define BCM4320_DEFAULT_TXPOWER_DBM_25 7
bf164cc0
JK
151
152
153/* codes for "status" field of completion messages */
35c26c2c
HH
154#define RNDIS_STATUS_ADAPTER_NOT_READY cpu_to_le32(0xc0010011)
155#define RNDIS_STATUS_ADAPTER_NOT_OPEN cpu_to_le32(0xc0010012)
bf164cc0
JK
156
157
5cb56af2
JK
158/* Known device types */
159#define RNDIS_UNKNOWN 0
160#define RNDIS_BCM4320A 1
161#define RNDIS_BCM4320B 2
162
163
bf164cc0
JK
164/* NDIS data structures. Taken from wpa_supplicant driver_ndis.c
165 * slightly modified for datatype endianess, etc
166 */
167#define NDIS_802_11_LENGTH_SSID 32
168#define NDIS_802_11_LENGTH_RATES 8
169#define NDIS_802_11_LENGTH_RATES_EX 16
170
1e41e1d2 171enum ndis_80211_net_type {
aa18294a
JK
172 NDIS_80211_TYPE_FREQ_HOP,
173 NDIS_80211_TYPE_DIRECT_SEQ,
174 NDIS_80211_TYPE_OFDM_A,
175 NDIS_80211_TYPE_OFDM_G
1e41e1d2
JK
176};
177
178enum ndis_80211_net_infra {
aa18294a
JK
179 NDIS_80211_INFRA_ADHOC,
180 NDIS_80211_INFRA_INFRA,
181 NDIS_80211_INFRA_AUTO_UNKNOWN
1e41e1d2
JK
182};
183
184enum ndis_80211_auth_mode {
aa18294a
JK
185 NDIS_80211_AUTH_OPEN,
186 NDIS_80211_AUTH_SHARED,
187 NDIS_80211_AUTH_AUTO_SWITCH,
188 NDIS_80211_AUTH_WPA,
189 NDIS_80211_AUTH_WPA_PSK,
190 NDIS_80211_AUTH_WPA_NONE,
191 NDIS_80211_AUTH_WPA2,
192 NDIS_80211_AUTH_WPA2_PSK
1e41e1d2
JK
193};
194
195enum ndis_80211_encr_status {
aa18294a
JK
196 NDIS_80211_ENCR_WEP_ENABLED,
197 NDIS_80211_ENCR_DISABLED,
198 NDIS_80211_ENCR_WEP_KEY_ABSENT,
199 NDIS_80211_ENCR_NOT_SUPPORTED,
200 NDIS_80211_ENCR_TKIP_ENABLED,
201 NDIS_80211_ENCR_TKIP_KEY_ABSENT,
202 NDIS_80211_ENCR_CCMP_ENABLED,
203 NDIS_80211_ENCR_CCMP_KEY_ABSENT
1e41e1d2
JK
204};
205
206enum ndis_80211_priv_filter {
aa18294a
JK
207 NDIS_80211_PRIV_ACCEPT_ALL,
208 NDIS_80211_PRIV_8021X_WEP
1e41e1d2
JK
209};
210
030645ac
JK
211enum ndis_80211_status_type {
212 NDIS_80211_STATUSTYPE_AUTHENTICATION,
213 NDIS_80211_STATUSTYPE_MEDIASTREAMMODE,
214 NDIS_80211_STATUSTYPE_PMKID_CANDIDATELIST,
215 NDIS_80211_STATUSTYPE_RADIOSTATE,
216};
217
218enum ndis_80211_media_stream_mode {
219 NDIS_80211_MEDIA_STREAM_OFF,
220 NDIS_80211_MEDIA_STREAM_ON
221};
222
223enum ndis_80211_radio_status {
224 NDIS_80211_RADIO_STATUS_ON,
225 NDIS_80211_RADIO_STATUS_HARDWARE_OFF,
226 NDIS_80211_RADIO_STATUS_SOFTWARE_OFF,
227};
228
b4703a2e 229enum ndis_80211_addkey_bits {
aa18294a
JK
230 NDIS_80211_ADDKEY_8021X_AUTH = cpu_to_le32(1 << 28),
231 NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ = cpu_to_le32(1 << 29),
232 NDIS_80211_ADDKEY_PAIRWISE_KEY = cpu_to_le32(1 << 30),
233 NDIS_80211_ADDKEY_TRANSMIT_KEY = cpu_to_le32(1 << 31)
b4703a2e
JK
234};
235
236enum ndis_80211_addwep_bits {
aa18294a
JK
237 NDIS_80211_ADDWEP_PERCLIENT_KEY = cpu_to_le32(1 << 30),
238 NDIS_80211_ADDWEP_TRANSMIT_KEY = cpu_to_le32(1 << 31)
b4703a2e
JK
239};
240
40d70dd1
JK
241enum ndis_80211_power_mode {
242 NDIS_80211_POWER_MODE_CAM,
243 NDIS_80211_POWER_MODE_MAX_PSP,
244 NDIS_80211_POWER_MODE_FAST_PSP,
245};
246
1c706875
JK
247enum ndis_80211_pmkid_cand_list_flag_bits {
248 NDIS_80211_PMKID_CAND_PREAUTH = cpu_to_le32(1 << 0)
249};
250
030645ac
JK
251struct ndis_80211_auth_request {
252 __le32 length;
253 u8 bssid[6];
254 u8 padding[2];
255 __le32 flags;
ba2d3587 256} __packed;
030645ac
JK
257
258struct ndis_80211_pmkid_candidate {
259 u8 bssid[6];
260 u8 padding[2];
261 __le32 flags;
ba2d3587 262} __packed;
030645ac
JK
263
264struct ndis_80211_pmkid_cand_list {
265 __le32 version;
266 __le32 num_candidates;
267 struct ndis_80211_pmkid_candidate candidate_list[0];
ba2d3587 268} __packed;
030645ac
JK
269
270struct ndis_80211_status_indication {
271 __le32 status_type;
272 union {
53d27eaf
JK
273 __le32 media_stream_mode;
274 __le32 radio_status;
030645ac
JK
275 struct ndis_80211_auth_request auth_request[0];
276 struct ndis_80211_pmkid_cand_list cand_list;
277 } u;
ba2d3587 278} __packed;
030645ac 279
1e41e1d2 280struct ndis_80211_ssid {
461b3f2a
JK
281 __le32 length;
282 u8 essid[NDIS_802_11_LENGTH_SSID];
ba2d3587 283} __packed;
bf164cc0 284
1e41e1d2 285struct ndis_80211_conf_freq_hop {
461b3f2a
JK
286 __le32 length;
287 __le32 hop_pattern;
288 __le32 hop_set;
289 __le32 dwell_time;
ba2d3587 290} __packed;
bf164cc0 291
1e41e1d2 292struct ndis_80211_conf {
461b3f2a
JK
293 __le32 length;
294 __le32 beacon_period;
295 __le32 atim_window;
296 __le32 ds_config;
297 struct ndis_80211_conf_freq_hop fh_config;
ba2d3587 298} __packed;
bf164cc0 299
1e41e1d2 300struct ndis_80211_bssid_ex {
461b3f2a
JK
301 __le32 length;
302 u8 mac[6];
303 u8 padding[2];
304 struct ndis_80211_ssid ssid;
305 __le32 privacy;
306 __le32 rssi;
307 __le32 net_type;
308 struct ndis_80211_conf config;
309 __le32 net_infra;
310 u8 rates[NDIS_802_11_LENGTH_RATES_EX];
311 __le32 ie_length;
312 u8 ies[0];
ba2d3587 313} __packed;
bf164cc0 314
1e41e1d2 315struct ndis_80211_bssid_list_ex {
461b3f2a
JK
316 __le32 num_items;
317 struct ndis_80211_bssid_ex bssid[0];
ba2d3587 318} __packed;
bf164cc0 319
1e41e1d2 320struct ndis_80211_fixed_ies {
461b3f2a
JK
321 u8 timestamp[8];
322 __le16 beacon_interval;
323 __le16 capabilities;
ba2d3587 324} __packed;
bf164cc0 325
1e41e1d2 326struct ndis_80211_wep_key {
461b3f2a
JK
327 __le32 size;
328 __le32 index;
329 __le32 length;
330 u8 material[32];
ba2d3587 331} __packed;
bf164cc0 332
1e41e1d2 333struct ndis_80211_key {
461b3f2a
JK
334 __le32 size;
335 __le32 index;
336 __le32 length;
337 u8 bssid[6];
338 u8 padding[6];
339 u8 rsc[8];
340 u8 material[32];
ba2d3587 341} __packed;
bf164cc0 342
1e41e1d2 343struct ndis_80211_remove_key {
461b3f2a
JK
344 __le32 size;
345 __le32 index;
346 u8 bssid[6];
9d40934e 347 u8 padding[2];
ba2d3587 348} __packed;
bf164cc0 349
1e41e1d2 350struct ndis_config_param {
461b3f2a
JK
351 __le32 name_offs;
352 __le32 name_length;
353 __le32 type;
354 __le32 value_offs;
355 __le32 value_length;
ba2d3587 356} __packed;
bf164cc0 357
4364623c
SA
358struct ndis_80211_assoc_info {
359 __le32 length;
360 __le16 req_ies;
361 struct req_ie {
362 __le16 capa;
363 __le16 listen_interval;
364 u8 cur_ap_address[6];
365 } req_ie;
366 __le32 req_ie_length;
367 __le32 offset_req_ies;
368 __le16 resp_ies;
369 struct resp_ie {
370 __le16 capa;
371 __le16 status_code;
372 __le16 assoc_id;
373 } resp_ie;
374 __le32 resp_ie_length;
375 __le32 offset_resp_ies;
ba2d3587 376} __packed;
4364623c 377
0308383f
JK
378struct ndis_80211_auth_encr_pair {
379 __le32 auth_mode;
380 __le32 encr_mode;
ba2d3587 381} __packed;
0308383f
JK
382
383struct ndis_80211_capability {
384 __le32 length;
385 __le32 version;
386 __le32 num_pmkids;
387 __le32 num_auth_encr_pair;
388 struct ndis_80211_auth_encr_pair auth_encr_pair[0];
ba2d3587 389} __packed;
0308383f 390
5a7d0583
JK
391struct ndis_80211_bssid_info {
392 u8 bssid[6];
393 u8 pmkid[16];
30fd9073 394} __packed;
5a7d0583
JK
395
396struct ndis_80211_pmkid {
397 __le32 length;
398 __le32 bssid_info_count;
399 struct ndis_80211_bssid_info bssid_info[0];
30fd9073 400} __packed;
5a7d0583 401
bf164cc0
JK
402/*
403 * private data
404 */
bf164cc0
JK
405#define CAP_MODE_80211A 1
406#define CAP_MODE_80211B 2
407#define CAP_MODE_80211G 4
408#define CAP_MODE_MASK 7
bf164cc0 409
6010ce07
JK
410#define WORK_LINK_UP (1<<0)
411#define WORK_LINK_DOWN (1<<1)
412#define WORK_SET_MULTICAST_LIST (1<<2)
bf164cc0 413
5c52323e
JK
414#define RNDIS_WLAN_ALG_NONE 0
415#define RNDIS_WLAN_ALG_WEP (1<<0)
416#define RNDIS_WLAN_ALG_TKIP (1<<1)
417#define RNDIS_WLAN_ALG_CCMP (1<<2)
418
ec3cbb9c 419#define RNDIS_WLAN_NUM_KEYS 4
5c52323e
JK
420#define RNDIS_WLAN_KEY_MGMT_NONE 0
421#define RNDIS_WLAN_KEY_MGMT_802_1X (1<<0)
422#define RNDIS_WLAN_KEY_MGMT_PSK (1<<1)
423
90d07349
JK
424#define COMMAND_BUFFER_SIZE (CONTROL_BUFFER_SIZE + sizeof(struct rndis_set))
425
5c8fa4f7
JL
426static const struct ieee80211_channel rndis_channels[] = {
427 { .center_freq = 2412 },
428 { .center_freq = 2417 },
429 { .center_freq = 2422 },
430 { .center_freq = 2427 },
431 { .center_freq = 2432 },
432 { .center_freq = 2437 },
433 { .center_freq = 2442 },
434 { .center_freq = 2447 },
435 { .center_freq = 2452 },
436 { .center_freq = 2457 },
437 { .center_freq = 2462 },
438 { .center_freq = 2467 },
439 { .center_freq = 2472 },
440 { .center_freq = 2484 },
441};
442
443static const struct ieee80211_rate rndis_rates[] = {
444 { .bitrate = 10 },
445 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
446 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
447 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
448 { .bitrate = 60 },
449 { .bitrate = 90 },
450 { .bitrate = 120 },
451 { .bitrate = 180 },
452 { .bitrate = 240 },
453 { .bitrate = 360 },
454 { .bitrate = 480 },
455 { .bitrate = 540 }
456};
457
4a7f13ee
JK
458static const u32 rndis_cipher_suites[] = {
459 WLAN_CIPHER_SUITE_WEP40,
460 WLAN_CIPHER_SUITE_WEP104,
461 WLAN_CIPHER_SUITE_TKIP,
462 WLAN_CIPHER_SUITE_CCMP,
463};
464
b7cfc5b3
JK
465struct rndis_wlan_encr_key {
466 int len;
84bf8400 467 u32 cipher;
b7cfc5b3
JK
468 u8 material[32];
469 u8 bssid[ETH_ALEN];
470 bool pairwise;
471 bool tx_key;
472};
473
bf164cc0 474/* RNDIS device private data */
582241a0 475struct rndis_wlan_private {
bf164cc0
JK
476 struct usbnet *usbdev;
477
5c8fa4f7
JL
478 struct wireless_dev wdev;
479
71a7b26d
JK
480 struct cfg80211_scan_request *scan_request;
481
bf164cc0 482 struct workqueue_struct *workqueue;
305e243e 483 struct delayed_work dev_poller_work;
71a7b26d 484 struct delayed_work scan_work;
bf164cc0
JK
485 struct work_struct work;
486 struct mutex command_lock;
bf164cc0 487 unsigned long work_pending;
8b89a288 488 int last_qual;
49b35bd3
JK
489 s32 cqm_rssi_thold;
490 u32 cqm_rssi_hyst;
491 int last_cqm_event_rssi;
bf164cc0 492
5c8fa4f7
JL
493 struct ieee80211_supported_band band;
494 struct ieee80211_channel channels[ARRAY_SIZE(rndis_channels)];
495 struct ieee80211_rate rates[ARRAY_SIZE(rndis_rates)];
4a7f13ee 496 u32 cipher_suites[ARRAY_SIZE(rndis_cipher_suites)];
5c8fa4f7 497
5cb56af2 498 int device_type;
bf164cc0
JK
499 int caps;
500 int multicast_size;
501
502 /* module parameters */
503 char param_country[4];
504 int param_frameburst;
505 int param_afterburner;
506 int param_power_save;
507 int param_power_output;
508 int param_roamtrigger;
509 int param_roamdelta;
510 u32 param_workaround_interval;
511
512 /* hardware state */
051ae0bf 513 bool radio_on;
40d70dd1 514 int power_mode;
bf164cc0 515 int infra_mode;
5c52323e 516 bool connected;
8b89a288 517 u8 bssid[ETH_ALEN];
5f81ff5a 518 __le32 current_command_oid;
bf164cc0
JK
519
520 /* encryption stuff */
521 int encr_tx_key_index;
ec3cbb9c 522 struct rndis_wlan_encr_key encr_keys[RNDIS_WLAN_NUM_KEYS];
bf164cc0 523 int wpa_version;
90d07349
JK
524
525 u8 command_buffer[COMMAND_BUFFER_SIZE];
bf164cc0
JK
526};
527
964c1d41
JL
528/*
529 * cfg80211 ops
530 */
e36d56b6
JB
531static int rndis_change_virtual_intf(struct wiphy *wiphy,
532 struct net_device *dev,
964c1d41
JL
533 enum nl80211_iftype type, u32 *flags,
534 struct vif_params *params);
535
71a7b26d
JK
536static int rndis_scan(struct wiphy *wiphy, struct net_device *dev,
537 struct cfg80211_scan_request *request);
538
d75ec2b7
JK
539static int rndis_set_wiphy_params(struct wiphy *wiphy, u32 changed);
540
fa61cf70
JO
541static int rndis_set_tx_power(struct wiphy *wiphy,
542 enum nl80211_tx_power_setting type,
543 int mbm);
222ec50a
JK
544static int rndis_get_tx_power(struct wiphy *wiphy, int *dbm);
545
5c52323e
JK
546static int rndis_connect(struct wiphy *wiphy, struct net_device *dev,
547 struct cfg80211_connect_params *sme);
548
549static int rndis_disconnect(struct wiphy *wiphy, struct net_device *dev,
550 u16 reason_code);
551
552static int rndis_join_ibss(struct wiphy *wiphy, struct net_device *dev,
553 struct cfg80211_ibss_params *params);
554
555static int rndis_leave_ibss(struct wiphy *wiphy, struct net_device *dev);
556
f444de05 557static int rndis_set_channel(struct wiphy *wiphy, struct net_device *dev,
5554adbe
JK
558 struct ieee80211_channel *chan, enum nl80211_channel_type channel_type);
559
84bf8400 560static int rndis_add_key(struct wiphy *wiphy, struct net_device *netdev,
e31b8213
JB
561 u8 key_index, bool pairwise, const u8 *mac_addr,
562 struct key_params *params);
84bf8400
JK
563
564static int rndis_del_key(struct wiphy *wiphy, struct net_device *netdev,
e31b8213 565 u8 key_index, bool pairwise, const u8 *mac_addr);
84bf8400
JK
566
567static int rndis_set_default_key(struct wiphy *wiphy, struct net_device *netdev,
dbd2fd65 568 u8 key_index, bool unicast, bool multicast);
84bf8400 569
8b89a288
JK
570static int rndis_get_station(struct wiphy *wiphy, struct net_device *dev,
571 u8 *mac, struct station_info *sinfo);
572
d695df90
JK
573static int rndis_dump_station(struct wiphy *wiphy, struct net_device *dev,
574 int idx, u8 *mac, struct station_info *sinfo);
575
5a7d0583
JK
576static int rndis_set_pmksa(struct wiphy *wiphy, struct net_device *netdev,
577 struct cfg80211_pmksa *pmksa);
578
579static int rndis_del_pmksa(struct wiphy *wiphy, struct net_device *netdev,
580 struct cfg80211_pmksa *pmksa);
581
582static int rndis_flush_pmksa(struct wiphy *wiphy, struct net_device *netdev);
583
40d70dd1
JK
584static int rndis_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
585 bool enabled, int timeout);
586
49b35bd3
JK
587static int rndis_set_cqm_rssi_config(struct wiphy *wiphy,
588 struct net_device *dev,
589 s32 rssi_thold, u32 rssi_hyst);
590
c2aa4132 591static const struct cfg80211_ops rndis_config_ops = {
964c1d41 592 .change_virtual_intf = rndis_change_virtual_intf,
71a7b26d 593 .scan = rndis_scan,
d75ec2b7 594 .set_wiphy_params = rndis_set_wiphy_params,
222ec50a
JK
595 .set_tx_power = rndis_set_tx_power,
596 .get_tx_power = rndis_get_tx_power,
5c52323e
JK
597 .connect = rndis_connect,
598 .disconnect = rndis_disconnect,
599 .join_ibss = rndis_join_ibss,
600 .leave_ibss = rndis_leave_ibss,
5554adbe 601 .set_channel = rndis_set_channel,
84bf8400
JK
602 .add_key = rndis_add_key,
603 .del_key = rndis_del_key,
604 .set_default_key = rndis_set_default_key,
8b89a288 605 .get_station = rndis_get_station,
d695df90 606 .dump_station = rndis_dump_station,
5a7d0583
JK
607 .set_pmksa = rndis_set_pmksa,
608 .del_pmksa = rndis_del_pmksa,
609 .flush_pmksa = rndis_flush_pmksa,
40d70dd1 610 .set_power_mgmt = rndis_set_power_mgmt,
49b35bd3 611 .set_cqm_rssi_config = rndis_set_cqm_rssi_config,
964c1d41 612};
bf164cc0 613
caa6dfad 614static void *rndis_wiphy_privid = &rndis_wiphy_privid;
bf164cc0 615
bf164cc0 616
582241a0 617static struct rndis_wlan_private *get_rndis_wlan_priv(struct usbnet *dev)
bf164cc0 618{
582241a0 619 return (struct rndis_wlan_private *)dev->driver_priv;
bf164cc0
JK
620}
621
222ec50a 622static u32 get_bcm4320_power_dbm(struct rndis_wlan_private *priv)
bf164cc0 623{
222ec50a
JK
624 switch (priv->param_power_output) {
625 default:
626 case 3:
627 return BCM4320_DEFAULT_TXPOWER_DBM_100;
628 case 2:
629 return BCM4320_DEFAULT_TXPOWER_DBM_75;
630 case 1:
631 return BCM4320_DEFAULT_TXPOWER_DBM_50;
632 case 0:
633 return BCM4320_DEFAULT_TXPOWER_DBM_25;
634 }
bf164cc0
JK
635}
636
b7cfc5b3
JK
637static bool is_wpa_key(struct rndis_wlan_private *priv, int idx)
638{
639 int cipher = priv->encr_keys[idx].cipher;
640
641 return (cipher == WLAN_CIPHER_SUITE_CCMP ||
642 cipher == WLAN_CIPHER_SUITE_TKIP);
643}
644
5c52323e
JK
645static int rndis_cipher_to_alg(u32 cipher)
646{
647 switch (cipher) {
648 default:
649 return RNDIS_WLAN_ALG_NONE;
650 case WLAN_CIPHER_SUITE_WEP40:
651 case WLAN_CIPHER_SUITE_WEP104:
652 return RNDIS_WLAN_ALG_WEP;
653 case WLAN_CIPHER_SUITE_TKIP:
654 return RNDIS_WLAN_ALG_TKIP;
655 case WLAN_CIPHER_SUITE_CCMP:
656 return RNDIS_WLAN_ALG_CCMP;
657 }
658}
659
660static int rndis_akm_suite_to_key_mgmt(u32 akm_suite)
661{
662 switch (akm_suite) {
663 default:
664 return RNDIS_WLAN_KEY_MGMT_NONE;
665 case WLAN_AKM_SUITE_8021X:
666 return RNDIS_WLAN_KEY_MGMT_802_1X;
667 case WLAN_AKM_SUITE_PSK:
668 return RNDIS_WLAN_KEY_MGMT_PSK;
669 }
670}
671
27b7b5c1
JK
672#ifdef DEBUG
673static const char *oid_to_string(__le32 oid)
674{
675 switch (oid) {
676#define OID_STR(oid) case oid: return(#oid)
677 /* from rndis_host.h */
678 OID_STR(OID_802_3_PERMANENT_ADDRESS);
679 OID_STR(OID_GEN_MAXIMUM_FRAME_SIZE);
680 OID_STR(OID_GEN_CURRENT_PACKET_FILTER);
681 OID_STR(OID_GEN_PHYSICAL_MEDIUM);
682
683 /* from rndis_wlan.c */
684 OID_STR(OID_GEN_LINK_SPEED);
685 OID_STR(OID_GEN_RNDIS_CONFIG_PARAMETER);
686
687 OID_STR(OID_GEN_XMIT_OK);
688 OID_STR(OID_GEN_RCV_OK);
689 OID_STR(OID_GEN_XMIT_ERROR);
690 OID_STR(OID_GEN_RCV_ERROR);
691 OID_STR(OID_GEN_RCV_NO_BUFFER);
692
693 OID_STR(OID_802_3_CURRENT_ADDRESS);
694 OID_STR(OID_802_3_MULTICAST_LIST);
695 OID_STR(OID_802_3_MAXIMUM_LIST_SIZE);
696
697 OID_STR(OID_802_11_BSSID);
698 OID_STR(OID_802_11_SSID);
699 OID_STR(OID_802_11_INFRASTRUCTURE_MODE);
700 OID_STR(OID_802_11_ADD_WEP);
701 OID_STR(OID_802_11_REMOVE_WEP);
702 OID_STR(OID_802_11_DISASSOCIATE);
703 OID_STR(OID_802_11_AUTHENTICATION_MODE);
704 OID_STR(OID_802_11_PRIVACY_FILTER);
705 OID_STR(OID_802_11_BSSID_LIST_SCAN);
706 OID_STR(OID_802_11_ENCRYPTION_STATUS);
707 OID_STR(OID_802_11_ADD_KEY);
708 OID_STR(OID_802_11_REMOVE_KEY);
709 OID_STR(OID_802_11_ASSOCIATION_INFORMATION);
40d70dd1 710 OID_STR(OID_802_11_CAPABILITY);
27b7b5c1
JK
711 OID_STR(OID_802_11_PMKID);
712 OID_STR(OID_802_11_NETWORK_TYPES_SUPPORTED);
713 OID_STR(OID_802_11_NETWORK_TYPE_IN_USE);
714 OID_STR(OID_802_11_TX_POWER_LEVEL);
715 OID_STR(OID_802_11_RSSI);
716 OID_STR(OID_802_11_RSSI_TRIGGER);
717 OID_STR(OID_802_11_FRAGMENTATION_THRESHOLD);
718 OID_STR(OID_802_11_RTS_THRESHOLD);
719 OID_STR(OID_802_11_SUPPORTED_RATES);
720 OID_STR(OID_802_11_CONFIGURATION);
40d70dd1 721 OID_STR(OID_802_11_POWER_MODE);
27b7b5c1
JK
722 OID_STR(OID_802_11_BSSID_LIST);
723#undef OID_STR
724 }
725
726 return "?";
727}
728#else
729static const char *oid_to_string(__le32 oid)
730{
731 return "?";
732}
733#endif
734
bf164cc0
JK
735/* translate error code */
736static int rndis_error_status(__le32 rndis_status)
737{
738 int ret = -EINVAL;
739 switch (rndis_status) {
740 case RNDIS_STATUS_SUCCESS:
741 ret = 0;
742 break;
743 case RNDIS_STATUS_FAILURE:
744 case RNDIS_STATUS_INVALID_DATA:
745 ret = -EINVAL;
746 break;
747 case RNDIS_STATUS_NOT_SUPPORTED:
748 ret = -EOPNOTSUPP;
749 break;
750 case RNDIS_STATUS_ADAPTER_NOT_READY:
751 case RNDIS_STATUS_ADAPTER_NOT_OPEN:
752 ret = -EBUSY;
753 break;
754 }
755 return ret;
756}
757
bf164cc0
JK
758static int rndis_query_oid(struct usbnet *dev, __le32 oid, void *data, int *len)
759{
582241a0 760 struct rndis_wlan_private *priv = get_rndis_wlan_priv(dev);
bf164cc0
JK
761 union {
762 void *buf;
763 struct rndis_msg_hdr *header;
764 struct rndis_query *get;
765 struct rndis_query_c *get_c;
766 } u;
767 int ret, buflen;
80f8c5b4 768 int resplen, respoffs, copylen;
bf164cc0
JK
769
770 buflen = *len + sizeof(*u.get);
771 if (buflen < CONTROL_BUFFER_SIZE)
772 buflen = CONTROL_BUFFER_SIZE;
90d07349
JK
773
774 if (buflen > COMMAND_BUFFER_SIZE) {
775 u.buf = kmalloc(buflen, GFP_KERNEL);
776 if (!u.buf)
777 return -ENOMEM;
778 } else {
779 u.buf = priv->command_buffer;
780 }
781
782 mutex_lock(&priv->command_lock);
783
bf164cc0
JK
784 memset(u.get, 0, sizeof *u.get);
785 u.get->msg_type = RNDIS_MSG_QUERY;
35c26c2c 786 u.get->msg_len = cpu_to_le32(sizeof *u.get);
bf164cc0
JK
787 u.get->oid = oid;
788
5f81ff5a 789 priv->current_command_oid = oid;
818727ba 790 ret = rndis_command(dev, u.header, buflen);
5f81ff5a 791 priv->current_command_oid = 0;
27b7b5c1 792 if (ret < 0)
60b86755
JP
793 netdev_dbg(dev->net, "%s(%s): rndis_command() failed, %d (%08x)\n",
794 __func__, oid_to_string(oid), ret,
795 le32_to_cpu(u.get_c->status));
27b7b5c1 796
bf164cc0 797 if (ret == 0) {
80f8c5b4
JK
798 resplen = le32_to_cpu(u.get_c->len);
799 respoffs = le32_to_cpu(u.get_c->offset) + 8;
c1f8ca1d 800
80f8c5b4
JK
801 if (respoffs > buflen) {
802 /* Device returned data offset outside buffer, error. */
803 netdev_dbg(dev->net, "%s(%s): received invalid "
804 "data offset: %d > %d\n", __func__,
805 oid_to_string(oid), respoffs, buflen);
c1f8ca1d 806
80f8c5b4
JK
807 ret = -EINVAL;
808 goto exit_unlock;
809 }
810
811 if ((resplen + respoffs) > buflen) {
812 /* Device would have returned more data if buffer would
813 * have been big enough. Copy just the bits that we got.
814 */
815 copylen = buflen - respoffs;
816 } else {
817 copylen = resplen;
818 }
819
820 if (copylen > *len)
821 copylen = *len;
822
823 memcpy(data, u.buf + respoffs, copylen);
824
825 *len = resplen;
27b7b5c1 826
c1f8ca1d 827 ret = rndis_error_status(u.get_c->status);
27b7b5c1 828 if (ret < 0)
60b86755
JP
829 netdev_dbg(dev->net, "%s(%s): device returned error, 0x%08x (%d)\n",
830 __func__, oid_to_string(oid),
831 le32_to_cpu(u.get_c->status), ret);
bf164cc0
JK
832 }
833
80f8c5b4 834exit_unlock:
90d07349
JK
835 mutex_unlock(&priv->command_lock);
836
837 if (u.buf != priv->command_buffer)
838 kfree(u.buf);
bf164cc0
JK
839 return ret;
840}
841
22288a58
JP
842static int rndis_set_oid(struct usbnet *dev, __le32 oid, const void *data,
843 int len)
bf164cc0 844{
582241a0 845 struct rndis_wlan_private *priv = get_rndis_wlan_priv(dev);
bf164cc0
JK
846 union {
847 void *buf;
848 struct rndis_msg_hdr *header;
849 struct rndis_set *set;
850 struct rndis_set_c *set_c;
851 } u;
852 int ret, buflen;
853
854 buflen = len + sizeof(*u.set);
855 if (buflen < CONTROL_BUFFER_SIZE)
856 buflen = CONTROL_BUFFER_SIZE;
90d07349
JK
857
858 if (buflen > COMMAND_BUFFER_SIZE) {
859 u.buf = kmalloc(buflen, GFP_KERNEL);
860 if (!u.buf)
861 return -ENOMEM;
862 } else {
863 u.buf = priv->command_buffer;
864 }
865
866 mutex_lock(&priv->command_lock);
bf164cc0
JK
867
868 memset(u.set, 0, sizeof *u.set);
869 u.set->msg_type = RNDIS_MSG_SET;
870 u.set->msg_len = cpu_to_le32(sizeof(*u.set) + len);
871 u.set->oid = oid;
872 u.set->len = cpu_to_le32(len);
35c26c2c
HH
873 u.set->offset = cpu_to_le32(sizeof(*u.set) - 8);
874 u.set->handle = cpu_to_le32(0);
bf164cc0
JK
875 memcpy(u.buf + sizeof(*u.set), data, len);
876
5f81ff5a 877 priv->current_command_oid = oid;
818727ba 878 ret = rndis_command(dev, u.header, buflen);
5f81ff5a 879 priv->current_command_oid = 0;
27b7b5c1 880 if (ret < 0)
60b86755
JP
881 netdev_dbg(dev->net, "%s(%s): rndis_command() failed, %d (%08x)\n",
882 __func__, oid_to_string(oid), ret,
883 le32_to_cpu(u.set_c->status));
27b7b5c1
JK
884
885 if (ret == 0) {
bf164cc0
JK
886 ret = rndis_error_status(u.set_c->status);
887
27b7b5c1 888 if (ret < 0)
60b86755
JP
889 netdev_dbg(dev->net, "%s(%s): device returned error, 0x%08x (%d)\n",
890 __func__, oid_to_string(oid),
891 le32_to_cpu(u.set_c->status), ret);
27b7b5c1
JK
892 }
893
90d07349
JK
894 mutex_unlock(&priv->command_lock);
895
896 if (u.buf != priv->command_buffer)
897 kfree(u.buf);
bf164cc0
JK
898 return ret;
899}
900
7eaab708
JK
901static int rndis_reset(struct usbnet *usbdev)
902{
903 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
904 struct rndis_reset *reset;
905 int ret;
906
907 mutex_lock(&priv->command_lock);
908
909 reset = (void *)priv->command_buffer;
910 memset(reset, 0, sizeof(*reset));
911 reset->msg_type = RNDIS_MSG_RESET;
912 reset->msg_len = cpu_to_le32(sizeof(*reset));
5f81ff5a 913 priv->current_command_oid = 0;
7eaab708
JK
914 ret = rndis_command(usbdev, (void *)reset, CONTROL_BUFFER_SIZE);
915
916 mutex_unlock(&priv->command_lock);
917
918 if (ret < 0)
919 return ret;
920 return 0;
921}
922
bf164cc0
JK
923/*
924 * Specs say that we can only set config parameters only soon after device
925 * initialization.
926 * value_type: 0 = u32, 2 = unicode string
927 */
928static int rndis_set_config_parameter(struct usbnet *dev, char *param,
929 int value_type, void *value)
930{
1e41e1d2 931 struct ndis_config_param *infobuf;
bf164cc0
JK
932 int value_len, info_len, param_len, ret, i;
933 __le16 *unibuf;
934 __le32 *dst_value;
935
936 if (value_type == 0)
937 value_len = sizeof(__le32);
938 else if (value_type == 2)
939 value_len = strlen(value) * sizeof(__le16);
940 else
941 return -EINVAL;
942
943 param_len = strlen(param) * sizeof(__le16);
944 info_len = sizeof(*infobuf) + param_len + value_len;
945
946#ifdef DEBUG
947 info_len += 12;
948#endif
949 infobuf = kmalloc(info_len, GFP_KERNEL);
950 if (!infobuf)
951 return -ENOMEM;
952
953#ifdef DEBUG
954 info_len -= 12;
955 /* extra 12 bytes are for padding (debug output) */
956 memset(infobuf, 0xCC, info_len + 12);
957#endif
958
959 if (value_type == 2)
60b86755
JP
960 netdev_dbg(dev->net, "setting config parameter: %s, value: %s\n",
961 param, (u8 *)value);
bf164cc0 962 else
60b86755
JP
963 netdev_dbg(dev->net, "setting config parameter: %s, value: %d\n",
964 param, *(u32 *)value);
bf164cc0 965
461b3f2a
JK
966 infobuf->name_offs = cpu_to_le32(sizeof(*infobuf));
967 infobuf->name_length = cpu_to_le32(param_len);
968 infobuf->type = cpu_to_le32(value_type);
969 infobuf->value_offs = cpu_to_le32(sizeof(*infobuf) + param_len);
970 infobuf->value_length = cpu_to_le32(value_len);
bf164cc0
JK
971
972 /* simple string to unicode string conversion */
973 unibuf = (void *)infobuf + sizeof(*infobuf);
974 for (i = 0; i < param_len / sizeof(__le16); i++)
975 unibuf[i] = cpu_to_le16(param[i]);
976
977 if (value_type == 2) {
978 unibuf = (void *)infobuf + sizeof(*infobuf) + param_len;
979 for (i = 0; i < value_len / sizeof(__le16); i++)
980 unibuf[i] = cpu_to_le16(((u8 *)value)[i]);
981 } else {
982 dst_value = (void *)infobuf + sizeof(*infobuf) + param_len;
983 *dst_value = cpu_to_le32(*(u32 *)value);
984 }
985
986#ifdef DEBUG
60b86755 987 netdev_dbg(dev->net, "info buffer (len: %d)\n", info_len);
bf164cc0
JK
988 for (i = 0; i < info_len; i += 12) {
989 u32 *tmp = (u32 *)((u8 *)infobuf + i);
60b86755
JP
990 netdev_dbg(dev->net, "%08X:%08X:%08X\n",
991 cpu_to_be32(tmp[0]),
992 cpu_to_be32(tmp[1]),
993 cpu_to_be32(tmp[2]));
bf164cc0
JK
994 }
995#endif
996
997 ret = rndis_set_oid(dev, OID_GEN_RNDIS_CONFIG_PARAMETER,
998 infobuf, info_len);
999 if (ret != 0)
60b86755
JP
1000 netdev_dbg(dev->net, "setting rndis config parameter failed, %d\n",
1001 ret);
bf164cc0
JK
1002
1003 kfree(infobuf);
1004 return ret;
1005}
1006
1007static int rndis_set_config_parameter_str(struct usbnet *dev,
1008 char *param, char *value)
1009{
c5c4fe90 1010 return rndis_set_config_parameter(dev, param, 2, value);
bf164cc0
JK
1011}
1012
bf164cc0
JK
1013/*
1014 * data conversion functions
1015 */
1016static int level_to_qual(int level)
1017{
1018 int qual = 100 * (level - WL_NOISE) / (WL_SIGMAX - WL_NOISE);
1019 return qual >= 0 ? (qual <= 100 ? qual : 100) : 0;
1020}
1021
bf164cc0
JK
1022/*
1023 * common functions
1024 */
9f77ccab 1025static int set_infra_mode(struct usbnet *usbdev, int mode);
b7cfc5b3 1026static void restore_keys(struct usbnet *usbdev);
b5257c95
JK
1027static int rndis_check_bssid_list(struct usbnet *usbdev, u8 *match_bssid,
1028 bool *matched);
bf164cc0 1029
5cb56af2
JK
1030static int rndis_start_bssid_list_scan(struct usbnet *usbdev)
1031{
1032 __le32 tmp;
1033
1034 /* Note: OID_802_11_BSSID_LIST_SCAN clears internal BSS list. */
1035 tmp = cpu_to_le32(1);
1036 return rndis_set_oid(usbdev, OID_802_11_BSSID_LIST_SCAN, &tmp,
1037 sizeof(tmp));
1038}
1039
1e41e1d2 1040static int set_essid(struct usbnet *usbdev, struct ndis_80211_ssid *ssid)
bf164cc0 1041{
582241a0 1042 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0
JK
1043 int ret;
1044
1045 ret = rndis_set_oid(usbdev, OID_802_11_SSID, ssid, sizeof(*ssid));
5c52323e 1046 if (ret < 0) {
60b86755 1047 netdev_warn(usbdev->net, "setting SSID failed (%08X)\n", ret);
5c52323e
JK
1048 return ret;
1049 }
bf164cc0 1050 if (ret == 0) {
051ae0bf 1051 priv->radio_on = true;
60b86755 1052 netdev_dbg(usbdev->net, "%s(): radio_on = true\n", __func__);
bf164cc0
JK
1053 }
1054
1055 return ret;
1056}
1057
22288a58 1058static int set_bssid(struct usbnet *usbdev, const u8 *bssid)
5c52323e
JK
1059{
1060 int ret;
1061
1062 ret = rndis_set_oid(usbdev, OID_802_11_BSSID, bssid, ETH_ALEN);
1063 if (ret < 0) {
60b86755
JP
1064 netdev_warn(usbdev->net, "setting BSSID[%pM] failed (%08X)\n",
1065 bssid, ret);
5c52323e
JK
1066 return ret;
1067 }
1068
1069 return ret;
1070}
1071
1072static int clear_bssid(struct usbnet *usbdev)
1073{
22288a58
JP
1074 static const u8 broadcast_mac[ETH_ALEN] = {
1075 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
1076 };
5c52323e
JK
1077
1078 return set_bssid(usbdev, broadcast_mac);
1079}
bf164cc0
JK
1080
1081static int get_bssid(struct usbnet *usbdev, u8 bssid[ETH_ALEN])
1082{
1083 int ret, len;
1084
1085 len = ETH_ALEN;
1086 ret = rndis_query_oid(usbdev, OID_802_11_BSSID, bssid, &len);
1087
1088 if (ret != 0)
1089 memset(bssid, 0, ETH_ALEN);
1090
1091 return ret;
1092}
1093
4364623c
SA
1094static int get_association_info(struct usbnet *usbdev,
1095 struct ndis_80211_assoc_info *info, int len)
1096{
1097 return rndis_query_oid(usbdev, OID_802_11_ASSOCIATION_INFORMATION,
1098 info, &len);
1099}
bf164cc0 1100
5c52323e 1101static bool is_associated(struct usbnet *usbdev)
bf164cc0 1102{
5c52323e 1103 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0
JK
1104 u8 bssid[ETH_ALEN];
1105 int ret;
1106
5c52323e
JK
1107 if (!priv->radio_on)
1108 return false;
1109
bf164cc0
JK
1110 ret = get_bssid(usbdev, bssid);
1111
7b1fff99 1112 return (ret == 0 && !is_zero_ether_addr(bssid));
bf164cc0
JK
1113}
1114
051ae0bf 1115static int disassociate(struct usbnet *usbdev, bool reset_ssid)
bf164cc0 1116{
582241a0 1117 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
1e41e1d2 1118 struct ndis_80211_ssid ssid;
bf164cc0
JK
1119 int i, ret = 0;
1120
1121 if (priv->radio_on) {
1122 ret = rndis_set_oid(usbdev, OID_802_11_DISASSOCIATE, NULL, 0);
1123 if (ret == 0) {
051ae0bf 1124 priv->radio_on = false;
60b86755
JP
1125 netdev_dbg(usbdev->net, "%s(): radio_on = false\n",
1126 __func__);
bf164cc0
JK
1127
1128 if (reset_ssid)
1129 msleep(100);
1130 }
1131 }
1132
1133 /* disassociate causes radio to be turned off; if reset_ssid
1134 * is given, set random ssid to enable radio */
1135 if (reset_ssid) {
9f77ccab
JK
1136 /* Set device to infrastructure mode so we don't get ad-hoc
1137 * 'media connect' indications with the random ssid.
1138 */
1139 set_infra_mode(usbdev, NDIS_80211_INFRA_INFRA);
1140
461b3f2a
JK
1141 ssid.length = cpu_to_le32(sizeof(ssid.essid));
1142 get_random_bytes(&ssid.essid[2], sizeof(ssid.essid)-2);
1143 ssid.essid[0] = 0x1;
1144 ssid.essid[1] = 0xff;
1145 for (i = 2; i < sizeof(ssid.essid); i++)
1146 ssid.essid[i] = 0x1 + (ssid.essid[i] * 0xfe / 0xff);
bf164cc0
JK
1147 ret = set_essid(usbdev, &ssid);
1148 }
1149 return ret;
1150}
1151
5c52323e
JK
1152static int set_auth_mode(struct usbnet *usbdev, u32 wpa_version,
1153 enum nl80211_auth_type auth_type, int keymgmt)
bf164cc0 1154{
582241a0 1155 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0
JK
1156 __le32 tmp;
1157 int auth_mode, ret;
1158
60b86755
JP
1159 netdev_dbg(usbdev->net, "%s(): wpa_version=0x%x authalg=0x%x keymgmt=0x%x\n",
1160 __func__, wpa_version, auth_type, keymgmt);
bf164cc0 1161
5c52323e
JK
1162 if (wpa_version & NL80211_WPA_VERSION_2) {
1163 if (keymgmt & RNDIS_WLAN_KEY_MGMT_802_1X)
aa18294a 1164 auth_mode = NDIS_80211_AUTH_WPA2;
bf164cc0 1165 else
aa18294a 1166 auth_mode = NDIS_80211_AUTH_WPA2_PSK;
5c52323e
JK
1167 } else if (wpa_version & NL80211_WPA_VERSION_1) {
1168 if (keymgmt & RNDIS_WLAN_KEY_MGMT_802_1X)
aa18294a 1169 auth_mode = NDIS_80211_AUTH_WPA;
5c52323e 1170 else if (keymgmt & RNDIS_WLAN_KEY_MGMT_PSK)
aa18294a 1171 auth_mode = NDIS_80211_AUTH_WPA_PSK;
bf164cc0 1172 else
aa18294a 1173 auth_mode = NDIS_80211_AUTH_WPA_NONE;
5c52323e
JK
1174 } else if (auth_type == NL80211_AUTHTYPE_SHARED_KEY)
1175 auth_mode = NDIS_80211_AUTH_SHARED;
1176 else if (auth_type == NL80211_AUTHTYPE_OPEN_SYSTEM)
aa18294a 1177 auth_mode = NDIS_80211_AUTH_OPEN;
634a555c
JK
1178 else if (auth_type == NL80211_AUTHTYPE_AUTOMATIC)
1179 auth_mode = NDIS_80211_AUTH_AUTO_SWITCH;
5c52323e
JK
1180 else
1181 return -ENOTSUPP;
bf164cc0
JK
1182
1183 tmp = cpu_to_le32(auth_mode);
1184 ret = rndis_set_oid(usbdev, OID_802_11_AUTHENTICATION_MODE, &tmp,
1185 sizeof(tmp));
1186 if (ret != 0) {
60b86755
JP
1187 netdev_warn(usbdev->net, "setting auth mode failed (%08X)\n",
1188 ret);
bf164cc0
JK
1189 return ret;
1190 }
1191
1192 priv->wpa_version = wpa_version;
5c52323e 1193
bf164cc0
JK
1194 return 0;
1195}
1196
bf164cc0
JK
1197static int set_priv_filter(struct usbnet *usbdev)
1198{
582241a0 1199 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0
JK
1200 __le32 tmp;
1201
60b86755
JP
1202 netdev_dbg(usbdev->net, "%s(): wpa_version=0x%x\n",
1203 __func__, priv->wpa_version);
bf164cc0 1204
5c52323e
JK
1205 if (priv->wpa_version & NL80211_WPA_VERSION_2 ||
1206 priv->wpa_version & NL80211_WPA_VERSION_1)
aa18294a 1207 tmp = cpu_to_le32(NDIS_80211_PRIV_8021X_WEP);
bf164cc0 1208 else
aa18294a 1209 tmp = cpu_to_le32(NDIS_80211_PRIV_ACCEPT_ALL);
bf164cc0
JK
1210
1211 return rndis_set_oid(usbdev, OID_802_11_PRIVACY_FILTER, &tmp,
1212 sizeof(tmp));
1213}
1214
bf164cc0
JK
1215static int set_encr_mode(struct usbnet *usbdev, int pairwise, int groupwise)
1216{
bf164cc0
JK
1217 __le32 tmp;
1218 int encr_mode, ret;
1219
60b86755
JP
1220 netdev_dbg(usbdev->net, "%s(): cipher_pair=0x%x cipher_group=0x%x\n",
1221 __func__, pairwise, groupwise);
bf164cc0 1222
5c52323e 1223 if (pairwise & RNDIS_WLAN_ALG_CCMP)
aa18294a 1224 encr_mode = NDIS_80211_ENCR_CCMP_ENABLED;
5c52323e 1225 else if (pairwise & RNDIS_WLAN_ALG_TKIP)
aa18294a 1226 encr_mode = NDIS_80211_ENCR_TKIP_ENABLED;
5c52323e 1227 else if (pairwise & RNDIS_WLAN_ALG_WEP)
aa18294a 1228 encr_mode = NDIS_80211_ENCR_WEP_ENABLED;
5c52323e 1229 else if (groupwise & RNDIS_WLAN_ALG_CCMP)
aa18294a 1230 encr_mode = NDIS_80211_ENCR_CCMP_ENABLED;
5c52323e 1231 else if (groupwise & RNDIS_WLAN_ALG_TKIP)
aa18294a 1232 encr_mode = NDIS_80211_ENCR_TKIP_ENABLED;
bf164cc0 1233 else
aa18294a 1234 encr_mode = NDIS_80211_ENCR_DISABLED;
bf164cc0
JK
1235
1236 tmp = cpu_to_le32(encr_mode);
1237 ret = rndis_set_oid(usbdev, OID_802_11_ENCRYPTION_STATUS, &tmp,
1238 sizeof(tmp));
1239 if (ret != 0) {
60b86755
JP
1240 netdev_warn(usbdev->net, "setting encr mode failed (%08X)\n",
1241 ret);
bf164cc0
JK
1242 return ret;
1243 }
1244
bf164cc0
JK
1245 return 0;
1246}
1247
bf164cc0
JK
1248static int set_infra_mode(struct usbnet *usbdev, int mode)
1249{
582241a0 1250 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0 1251 __le32 tmp;
b7cfc5b3 1252 int ret;
bf164cc0 1253
60b86755
JP
1254 netdev_dbg(usbdev->net, "%s(): infra_mode=0x%x\n",
1255 __func__, priv->infra_mode);
bf164cc0
JK
1256
1257 tmp = cpu_to_le32(mode);
1258 ret = rndis_set_oid(usbdev, OID_802_11_INFRASTRUCTURE_MODE, &tmp,
1259 sizeof(tmp));
1260 if (ret != 0) {
60b86755
JP
1261 netdev_warn(usbdev->net, "setting infra mode failed (%08X)\n",
1262 ret);
bf164cc0
JK
1263 return ret;
1264 }
1265
1266 /* NDIS drivers clear keys when infrastructure mode is
1267 * changed. But Linux tools assume otherwise. So set the
1268 * keys */
b7cfc5b3 1269 restore_keys(usbdev);
bf164cc0
JK
1270
1271 priv->infra_mode = mode;
1272 return 0;
1273}
1274
d75ec2b7
JK
1275static int set_rts_threshold(struct usbnet *usbdev, u32 rts_threshold)
1276{
1277 __le32 tmp;
1278
60b86755 1279 netdev_dbg(usbdev->net, "%s(): %i\n", __func__, rts_threshold);
d75ec2b7
JK
1280
1281 if (rts_threshold < 0 || rts_threshold > 2347)
1282 rts_threshold = 2347;
1283
1284 tmp = cpu_to_le32(rts_threshold);
1285 return rndis_set_oid(usbdev, OID_802_11_RTS_THRESHOLD, &tmp,
1286 sizeof(tmp));
1287}
1288
d75ec2b7
JK
1289static int set_frag_threshold(struct usbnet *usbdev, u32 frag_threshold)
1290{
1291 __le32 tmp;
1292
60b86755 1293 netdev_dbg(usbdev->net, "%s(): %i\n", __func__, frag_threshold);
d75ec2b7
JK
1294
1295 if (frag_threshold < 256 || frag_threshold > 2346)
1296 frag_threshold = 2346;
1297
1298 tmp = cpu_to_le32(frag_threshold);
1299 return rndis_set_oid(usbdev, OID_802_11_FRAGMENTATION_THRESHOLD, &tmp,
1300 sizeof(tmp));
1301}
1302
bf164cc0
JK
1303static void set_default_iw_params(struct usbnet *usbdev)
1304{
aa18294a 1305 set_infra_mode(usbdev, NDIS_80211_INFRA_INFRA);
5c52323e
JK
1306 set_auth_mode(usbdev, 0, NL80211_AUTHTYPE_OPEN_SYSTEM,
1307 RNDIS_WLAN_KEY_MGMT_NONE);
bf164cc0 1308 set_priv_filter(usbdev);
5c52323e 1309 set_encr_mode(usbdev, RNDIS_WLAN_ALG_NONE, RNDIS_WLAN_ALG_NONE);
bf164cc0
JK
1310}
1311
bf164cc0
JK
1312static int deauthenticate(struct usbnet *usbdev)
1313{
1314 int ret;
1315
051ae0bf 1316 ret = disassociate(usbdev, true);
bf164cc0
JK
1317 set_default_iw_params(usbdev);
1318 return ret;
1319}
1320
5c52323e
JK
1321static int set_channel(struct usbnet *usbdev, int channel)
1322{
1323 struct ndis_80211_conf config;
1324 unsigned int dsconfig;
1325 int len, ret;
1326
60b86755 1327 netdev_dbg(usbdev->net, "%s(%d)\n", __func__, channel);
5c52323e
JK
1328
1329 /* this OID is valid only when not associated */
1330 if (is_associated(usbdev))
1331 return 0;
1332
1333 dsconfig = ieee80211_dsss_chan_to_freq(channel) * 1000;
1334
1335 len = sizeof(config);
1336 ret = rndis_query_oid(usbdev, OID_802_11_CONFIGURATION, &config, &len);
1337 if (ret < 0) {
60b86755
JP
1338 netdev_dbg(usbdev->net, "%s(): querying configuration failed\n",
1339 __func__);
5c52323e
JK
1340 return ret;
1341 }
1342
1343 config.ds_config = cpu_to_le32(dsconfig);
1344 ret = rndis_set_oid(usbdev, OID_802_11_CONFIGURATION, &config,
1345 sizeof(config));
1346
60b86755 1347 netdev_dbg(usbdev->net, "%s(): %d -> %d\n", __func__, channel, ret);
5c52323e
JK
1348
1349 return ret;
1350}
1351
cb82a66d
JK
1352static struct ieee80211_channel *get_current_channel(struct usbnet *usbdev,
1353 u16 *beacon_interval)
1354{
1355 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
1356 struct ieee80211_channel *channel;
1357 struct ndis_80211_conf config;
1358 int len, ret;
1359
1360 /* Get channel and beacon interval */
1361 len = sizeof(config);
1362 ret = rndis_query_oid(usbdev, OID_802_11_CONFIGURATION, &config, &len);
1363 netdev_dbg(usbdev->net, "%s(): OID_802_11_CONFIGURATION -> %d\n",
1364 __func__, ret);
1365 if (ret < 0)
1366 return NULL;
1367
1368 channel = ieee80211_get_channel(priv->wdev.wiphy,
1369 KHZ_TO_MHZ(le32_to_cpu(config.ds_config)));
1370 if (!channel)
1371 return NULL;
1372
1373 if (beacon_interval)
1374 *beacon_interval = le16_to_cpu(config.beacon_period);
1375 return channel;
1376}
1377
bf164cc0 1378/* index must be 0 - N, as per NDIS */
5c52323e
JK
1379static int add_wep_key(struct usbnet *usbdev, const u8 *key, int key_len,
1380 int index)
bf164cc0 1381{
582241a0 1382 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
1e41e1d2 1383 struct ndis_80211_wep_key ndis_key;
84bf8400
JK
1384 u32 cipher;
1385 int ret;
1386
60b86755
JP
1387 netdev_dbg(usbdev->net, "%s(idx: %d, len: %d)\n",
1388 __func__, index, key_len);
bf164cc0 1389
40ba60dd 1390 if ((key_len != 5 && key_len != 13) || index < 0 || index > 3)
bf164cc0
JK
1391 return -EINVAL;
1392
b7cfc5b3
JK
1393 if (key_len == 5)
1394 cipher = WLAN_CIPHER_SUITE_WEP40;
1395 else
1396 cipher = WLAN_CIPHER_SUITE_WEP104;
1397
bf164cc0
JK
1398 memset(&ndis_key, 0, sizeof(ndis_key));
1399
461b3f2a
JK
1400 ndis_key.size = cpu_to_le32(sizeof(ndis_key));
1401 ndis_key.length = cpu_to_le32(key_len);
1402 ndis_key.index = cpu_to_le32(index);
1403 memcpy(&ndis_key.material, key, key_len);
bf164cc0
JK
1404
1405 if (index == priv->encr_tx_key_index) {
aa18294a 1406 ndis_key.index |= NDIS_80211_ADDWEP_TRANSMIT_KEY;
5c52323e
JK
1407 ret = set_encr_mode(usbdev, RNDIS_WLAN_ALG_WEP,
1408 RNDIS_WLAN_ALG_NONE);
bf164cc0 1409 if (ret)
60b86755
JP
1410 netdev_warn(usbdev->net, "encryption couldn't be enabled (%08X)\n",
1411 ret);
bf164cc0
JK
1412 }
1413
1414 ret = rndis_set_oid(usbdev, OID_802_11_ADD_WEP, &ndis_key,
1415 sizeof(ndis_key));
1416 if (ret != 0) {
60b86755
JP
1417 netdev_warn(usbdev->net, "adding encryption key %d failed (%08X)\n",
1418 index + 1, ret);
bf164cc0
JK
1419 return ret;
1420 }
1421
b7cfc5b3
JK
1422 priv->encr_keys[index].len = key_len;
1423 priv->encr_keys[index].cipher = cipher;
1424 memcpy(&priv->encr_keys[index].material, key, key_len);
1425 memset(&priv->encr_keys[index].bssid, 0xff, ETH_ALEN);
bf164cc0
JK
1426
1427 return 0;
1428}
1429
b145ee0c 1430static int add_wpa_key(struct usbnet *usbdev, const u8 *key, int key_len,
84bf8400 1431 int index, const u8 *addr, const u8 *rx_seq,
53d27eaf 1432 int seq_len, u32 cipher, __le32 flags)
b145ee0c 1433{
582241a0 1434 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
b145ee0c 1435 struct ndis_80211_key ndis_key;
b7cfc5b3 1436 bool is_addr_ok;
b145ee0c
JK
1437 int ret;
1438
b7cfc5b3 1439 if (index < 0 || index >= 4) {
60b86755
JP
1440 netdev_dbg(usbdev->net, "%s(): index out of range (%i)\n",
1441 __func__, index);
b145ee0c 1442 return -EINVAL;
b7cfc5b3
JK
1443 }
1444 if (key_len > sizeof(ndis_key.material) || key_len < 0) {
60b86755
JP
1445 netdev_dbg(usbdev->net, "%s(): key length out of range (%i)\n",
1446 __func__, key_len);
b145ee0c 1447 return -EINVAL;
b7cfc5b3 1448 }
84bf8400
JK
1449 if (flags & NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ) {
1450 if (!rx_seq || seq_len <= 0) {
60b86755
JP
1451 netdev_dbg(usbdev->net, "%s(): recv seq flag without buffer\n",
1452 __func__);
84bf8400
JK
1453 return -EINVAL;
1454 }
1455 if (rx_seq && seq_len > sizeof(ndis_key.rsc)) {
60b86755 1456 netdev_dbg(usbdev->net, "%s(): too big recv seq buffer\n", __func__);
84bf8400
JK
1457 return -EINVAL;
1458 }
b7cfc5b3 1459 }
84bf8400 1460
7b1fff99
JK
1461 is_addr_ok = addr && !is_zero_ether_addr(addr) &&
1462 !is_broadcast_ether_addr(addr);
b7cfc5b3 1463 if ((flags & NDIS_80211_ADDKEY_PAIRWISE_KEY) && !is_addr_ok) {
60b86755
JP
1464 netdev_dbg(usbdev->net, "%s(): pairwise but bssid invalid (%pM)\n",
1465 __func__, addr);
b145ee0c 1466 return -EINVAL;
b7cfc5b3 1467 }
b145ee0c 1468
60b86755
JP
1469 netdev_dbg(usbdev->net, "%s(%i): flags:%i%i%i\n",
1470 __func__, index,
1471 !!(flags & NDIS_80211_ADDKEY_TRANSMIT_KEY),
1472 !!(flags & NDIS_80211_ADDKEY_PAIRWISE_KEY),
1473 !!(flags & NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ));
b145ee0c
JK
1474
1475 memset(&ndis_key, 0, sizeof(ndis_key));
1476
1477 ndis_key.size = cpu_to_le32(sizeof(ndis_key) -
1478 sizeof(ndis_key.material) + key_len);
1479 ndis_key.length = cpu_to_le32(key_len);
1480 ndis_key.index = cpu_to_le32(index) | flags;
1481
b7cfc5b3 1482 if (cipher == WLAN_CIPHER_SUITE_TKIP && key_len == 32) {
b145ee0c
JK
1483 /* wpa_supplicant gives us the Michael MIC RX/TX keys in
1484 * different order than NDIS spec, so swap the order here. */
1485 memcpy(ndis_key.material, key, 16);
1486 memcpy(ndis_key.material + 16, key + 24, 8);
1487 memcpy(ndis_key.material + 24, key + 16, 8);
1488 } else
1489 memcpy(ndis_key.material, key, key_len);
1490
aa18294a 1491 if (flags & NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ)
84bf8400 1492 memcpy(ndis_key.rsc, rx_seq, seq_len);
b145ee0c 1493
aa18294a 1494 if (flags & NDIS_80211_ADDKEY_PAIRWISE_KEY) {
b145ee0c 1495 /* pairwise key */
b7cfc5b3 1496 memcpy(ndis_key.bssid, addr, ETH_ALEN);
b145ee0c
JK
1497 } else {
1498 /* group key */
aa18294a 1499 if (priv->infra_mode == NDIS_80211_INFRA_ADHOC)
b145ee0c
JK
1500 memset(ndis_key.bssid, 0xff, ETH_ALEN);
1501 else
1502 get_bssid(usbdev, ndis_key.bssid);
1503 }
1504
1505 ret = rndis_set_oid(usbdev, OID_802_11_ADD_KEY, &ndis_key,
1506 le32_to_cpu(ndis_key.size));
60b86755
JP
1507 netdev_dbg(usbdev->net, "%s(): OID_802_11_ADD_KEY -> %08X\n",
1508 __func__, ret);
b145ee0c
JK
1509 if (ret != 0)
1510 return ret;
1511
b7cfc5b3
JK
1512 memset(&priv->encr_keys[index], 0, sizeof(priv->encr_keys[index]));
1513 priv->encr_keys[index].len = key_len;
1514 priv->encr_keys[index].cipher = cipher;
1515 memcpy(&priv->encr_keys[index].material, key, key_len);
1516 if (flags & NDIS_80211_ADDKEY_PAIRWISE_KEY)
1517 memcpy(&priv->encr_keys[index].bssid, ndis_key.bssid, ETH_ALEN);
1518 else
1519 memset(&priv->encr_keys[index].bssid, 0xff, ETH_ALEN);
9839178e 1520
aa18294a 1521 if (flags & NDIS_80211_ADDKEY_TRANSMIT_KEY)
b145ee0c
JK
1522 priv->encr_tx_key_index = index;
1523
1524 return 0;
1525}
1526
b7cfc5b3
JK
1527static int restore_key(struct usbnet *usbdev, int key_idx)
1528{
1529 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
1530 struct rndis_wlan_encr_key key;
84bf8400
JK
1531
1532 if (is_wpa_key(priv, key_idx))
1533 return 0;
b7cfc5b3
JK
1534
1535 key = priv->encr_keys[key_idx];
1536
60b86755 1537 netdev_dbg(usbdev->net, "%s(): %i:%i\n", __func__, key_idx, key.len);
b7cfc5b3
JK
1538
1539 if (key.len == 0)
1540 return 0;
1541
b7cfc5b3
JK
1542 return add_wep_key(usbdev, key.material, key.len, key_idx);
1543}
1544
b7cfc5b3
JK
1545static void restore_keys(struct usbnet *usbdev)
1546{
1547 int i;
1548
1549 for (i = 0; i < 4; i++)
1550 restore_key(usbdev, i);
1551}
1552
b7cfc5b3
JK
1553static void clear_key(struct rndis_wlan_private *priv, int idx)
1554{
1555 memset(&priv->encr_keys[idx], 0, sizeof(priv->encr_keys[idx]));
1556}
1557
bf164cc0 1558/* remove_key is for both wep and wpa */
84bf8400 1559static int remove_key(struct usbnet *usbdev, int index, const u8 *bssid)
bf164cc0 1560{
582241a0 1561 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
1e41e1d2 1562 struct ndis_80211_remove_key remove_key;
bf164cc0 1563 __le32 keyindex;
b7cfc5b3 1564 bool is_wpa;
bf164cc0
JK
1565 int ret;
1566
ec3cbb9c
DC
1567 if (index >= RNDIS_WLAN_NUM_KEYS)
1568 return -ENOENT;
1569
b7cfc5b3 1570 if (priv->encr_keys[index].len == 0)
bf164cc0
JK
1571 return 0;
1572
b7cfc5b3 1573 is_wpa = is_wpa_key(priv, index);
bf164cc0 1574
60b86755
JP
1575 netdev_dbg(usbdev->net, "%s(): %i:%s:%i\n",
1576 __func__, index, is_wpa ? "wpa" : "wep",
1577 priv->encr_keys[index].len);
b7cfc5b3
JK
1578
1579 clear_key(priv, index);
1580
1581 if (is_wpa) {
461b3f2a
JK
1582 remove_key.size = cpu_to_le32(sizeof(remove_key));
1583 remove_key.index = cpu_to_le32(index);
bf164cc0
JK
1584 if (bssid) {
1585 /* pairwise key */
7b1fff99 1586 if (!is_broadcast_ether_addr(bssid))
b4703a2e 1587 remove_key.index |=
aa18294a 1588 NDIS_80211_ADDKEY_PAIRWISE_KEY;
461b3f2a
JK
1589 memcpy(remove_key.bssid, bssid,
1590 sizeof(remove_key.bssid));
bf164cc0 1591 } else
461b3f2a
JK
1592 memset(remove_key.bssid, 0xff,
1593 sizeof(remove_key.bssid));
bf164cc0
JK
1594
1595 ret = rndis_set_oid(usbdev, OID_802_11_REMOVE_KEY, &remove_key,
1596 sizeof(remove_key));
1597 if (ret != 0)
1598 return ret;
1599 } else {
1600 keyindex = cpu_to_le32(index);
1601 ret = rndis_set_oid(usbdev, OID_802_11_REMOVE_WEP, &keyindex,
1602 sizeof(keyindex));
1603 if (ret != 0) {
60b86755
JP
1604 netdev_warn(usbdev->net,
1605 "removing encryption key %d failed (%08X)\n",
1606 index, ret);
bf164cc0
JK
1607 return ret;
1608 }
1609 }
1610
1611 /* if it is transmit key, disable encryption */
1612 if (index == priv->encr_tx_key_index)
5c52323e 1613 set_encr_mode(usbdev, RNDIS_WLAN_ALG_NONE, RNDIS_WLAN_ALG_NONE);
bf164cc0
JK
1614
1615 return 0;
1616}
1617
bf164cc0
JK
1618static void set_multicast_list(struct usbnet *usbdev)
1619{
582241a0 1620 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
22bedad3 1621 struct netdev_hw_addr *ha;
12c3400a
JP
1622 __le32 filter, basefilter;
1623 int ret;
1624 char *mc_addrs = NULL;
1625 int mc_count;
bf164cc0 1626
12c3400a
JP
1627 basefilter = filter = RNDIS_PACKET_TYPE_DIRECTED |
1628 RNDIS_PACKET_TYPE_BROADCAST;
bf164cc0
JK
1629
1630 if (usbdev->net->flags & IFF_PROMISC) {
1631 filter |= RNDIS_PACKET_TYPE_PROMISCUOUS |
1632 RNDIS_PACKET_TYPE_ALL_LOCAL;
12c3400a
JP
1633 } else if (usbdev->net->flags & IFF_ALLMULTI) {
1634 filter |= RNDIS_PACKET_TYPE_ALL_MULTICAST;
1635 }
1636
1637 if (filter != basefilter)
1638 goto set_filter;
1639
1640 /*
1641 * mc_list should be accessed holding the lock, so copy addresses to
1642 * local buffer first.
1643 */
1644 netif_addr_lock_bh(usbdev->net);
1645 mc_count = netdev_mc_count(usbdev->net);
1646 if (mc_count > priv->multicast_size) {
bf164cc0 1647 filter |= RNDIS_PACKET_TYPE_ALL_MULTICAST;
12c3400a
JP
1648 } else if (mc_count) {
1649 int i = 0;
1650
1651 mc_addrs = kmalloc(mc_count * ETH_ALEN, GFP_ATOMIC);
1652 if (!mc_addrs) {
60b86755
JP
1653 netdev_warn(usbdev->net,
1654 "couldn't alloc %d bytes of memory\n",
12c3400a 1655 mc_count * ETH_ALEN);
655ffee2 1656 netif_addr_unlock_bh(usbdev->net);
bf164cc0
JK
1657 return;
1658 }
1659
22bedad3 1660 netdev_for_each_mc_addr(ha, usbdev->net)
12c3400a 1661 memcpy(mc_addrs + i++ * ETH_ALEN,
22bedad3 1662 ha->addr, ETH_ALEN);
12c3400a
JP
1663 }
1664 netif_addr_unlock_bh(usbdev->net);
bf164cc0 1665
12c3400a
JP
1666 if (filter != basefilter)
1667 goto set_filter;
1668
1669 if (mc_count) {
1670 ret = rndis_set_oid(usbdev, OID_802_3_MULTICAST_LIST, mc_addrs,
1671 mc_count * ETH_ALEN);
1672 kfree(mc_addrs);
1673 if (ret == 0)
bf164cc0
JK
1674 filter |= RNDIS_PACKET_TYPE_MULTICAST;
1675 else
1676 filter |= RNDIS_PACKET_TYPE_ALL_MULTICAST;
1677
60b86755 1678 netdev_dbg(usbdev->net, "OID_802_3_MULTICAST_LIST(%d, max: %d) -> %d\n",
12c3400a 1679 mc_count, priv->multicast_size, ret);
bf164cc0
JK
1680 }
1681
12c3400a 1682set_filter:
bf164cc0
JK
1683 ret = rndis_set_oid(usbdev, OID_GEN_CURRENT_PACKET_FILTER, &filter,
1684 sizeof(filter));
1685 if (ret < 0) {
60b86755
JP
1686 netdev_warn(usbdev->net, "couldn't set packet filter: %08x\n",
1687 le32_to_cpu(filter));
bf164cc0
JK
1688 }
1689
60b86755
JP
1690 netdev_dbg(usbdev->net, "OID_GEN_CURRENT_PACKET_FILTER(%08x) -> %d\n",
1691 le32_to_cpu(filter), ret);
bf164cc0
JK
1692}
1693
5a7d0583
JK
1694#ifdef DEBUG
1695static void debug_print_pmkids(struct usbnet *usbdev,
1696 struct ndis_80211_pmkid *pmkids,
1697 const char *func_str)
1698{
1699 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
1700 int i, len, count, max_pmkids, entry_len;
1701
1702 max_pmkids = priv->wdev.wiphy->max_num_pmkids;
1703 len = le32_to_cpu(pmkids->length);
1704 count = le32_to_cpu(pmkids->bssid_info_count);
1705
1706 entry_len = (count > 0) ? (len - sizeof(*pmkids)) / count : -1;
1707
1708 netdev_dbg(usbdev->net, "%s(): %d PMKIDs (data len: %d, entry len: "
1709 "%d)\n", func_str, count, len, entry_len);
1710
1711 if (count > max_pmkids)
1712 count = max_pmkids;
1713
1714 for (i = 0; i < count; i++) {
1715 u32 *tmp = (u32 *)pmkids->bssid_info[i].pmkid;
1716
1717 netdev_dbg(usbdev->net, "%s(): bssid: %pM, "
1718 "pmkid: %08X:%08X:%08X:%08X\n",
1719 func_str, pmkids->bssid_info[i].bssid,
1720 cpu_to_be32(tmp[0]), cpu_to_be32(tmp[1]),
1721 cpu_to_be32(tmp[2]), cpu_to_be32(tmp[3]));
1722 }
1723}
1724#else
1725static void debug_print_pmkids(struct usbnet *usbdev,
1726 struct ndis_80211_pmkid *pmkids,
1727 const char *func_str)
1728{
1729 return;
1730}
1731#endif
1732
1733static struct ndis_80211_pmkid *get_device_pmkids(struct usbnet *usbdev)
1734{
1735 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
1736 struct ndis_80211_pmkid *pmkids;
1737 int len, ret, max_pmkids;
1738
1739 max_pmkids = priv->wdev.wiphy->max_num_pmkids;
1740 len = sizeof(*pmkids) + max_pmkids * sizeof(pmkids->bssid_info[0]);
1741
1742 pmkids = kzalloc(len, GFP_KERNEL);
1743 if (!pmkids)
1744 return ERR_PTR(-ENOMEM);
1745
1746 pmkids->length = cpu_to_le32(len);
1747 pmkids->bssid_info_count = cpu_to_le32(max_pmkids);
1748
1749 ret = rndis_query_oid(usbdev, OID_802_11_PMKID, pmkids, &len);
1750 if (ret < 0) {
1751 netdev_dbg(usbdev->net, "%s(): OID_802_11_PMKID(%d, %d)"
1752 " -> %d\n", __func__, len, max_pmkids, ret);
1753
1754 kfree(pmkids);
1755 return ERR_PTR(ret);
1756 }
1757
1758 if (le32_to_cpu(pmkids->bssid_info_count) > max_pmkids)
1759 pmkids->bssid_info_count = cpu_to_le32(max_pmkids);
1760
1761 debug_print_pmkids(usbdev, pmkids, __func__);
1762
1763 return pmkids;
1764}
1765
1766static int set_device_pmkids(struct usbnet *usbdev,
1767 struct ndis_80211_pmkid *pmkids)
1768{
1769 int ret, len, num_pmkids;
1770
1771 num_pmkids = le32_to_cpu(pmkids->bssid_info_count);
1772 len = sizeof(*pmkids) + num_pmkids * sizeof(pmkids->bssid_info[0]);
1773 pmkids->length = cpu_to_le32(len);
1774
1775 debug_print_pmkids(usbdev, pmkids, __func__);
1776
1777 ret = rndis_set_oid(usbdev, OID_802_11_PMKID, pmkids,
1778 le32_to_cpu(pmkids->length));
1779 if (ret < 0) {
1780 netdev_dbg(usbdev->net, "%s(): OID_802_11_PMKID(%d, %d) -> %d"
1781 "\n", __func__, len, num_pmkids, ret);
1782 }
1783
1784 kfree(pmkids);
1785 return ret;
1786}
1787
1788static struct ndis_80211_pmkid *remove_pmkid(struct usbnet *usbdev,
1789 struct ndis_80211_pmkid *pmkids,
1790 struct cfg80211_pmksa *pmksa,
1791 int max_pmkids)
1792{
1793 int i, len, count, newlen, err;
1794
1795 len = le32_to_cpu(pmkids->length);
1796 count = le32_to_cpu(pmkids->bssid_info_count);
1797
1798 if (count > max_pmkids)
1799 count = max_pmkids;
1800
1801 for (i = 0; i < count; i++)
1802 if (!compare_ether_addr(pmkids->bssid_info[i].bssid,
1803 pmksa->bssid))
1804 break;
1805
1806 /* pmkid not found */
1807 if (i == count) {
1808 netdev_dbg(usbdev->net, "%s(): bssid not found (%pM)\n",
1809 __func__, pmksa->bssid);
1810 err = -ENOENT;
1811 goto error;
1812 }
1813
1814 for (; i + 1 < count; i++)
1815 pmkids->bssid_info[i] = pmkids->bssid_info[i + 1];
1816
1817 count--;
1818 newlen = sizeof(*pmkids) + count * sizeof(pmkids->bssid_info[0]);
1819
1820 pmkids->length = cpu_to_le32(newlen);
1821 pmkids->bssid_info_count = cpu_to_le32(count);
1822
1823 return pmkids;
1824error:
1825 kfree(pmkids);
1826 return ERR_PTR(err);
1827}
1828
1829static struct ndis_80211_pmkid *update_pmkid(struct usbnet *usbdev,
1830 struct ndis_80211_pmkid *pmkids,
1831 struct cfg80211_pmksa *pmksa,
1832 int max_pmkids)
1833{
1834 int i, err, len, count, newlen;
1835
1836 len = le32_to_cpu(pmkids->length);
1837 count = le32_to_cpu(pmkids->bssid_info_count);
1838
1839 if (count > max_pmkids)
1840 count = max_pmkids;
1841
1842 /* update with new pmkid */
1843 for (i = 0; i < count; i++) {
1844 if (compare_ether_addr(pmkids->bssid_info[i].bssid,
1845 pmksa->bssid))
1846 continue;
1847
1848 memcpy(pmkids->bssid_info[i].pmkid, pmksa->pmkid,
1849 WLAN_PMKID_LEN);
1850
1851 return pmkids;
1852 }
1853
1854 /* out of space, return error */
1855 if (i == max_pmkids) {
1856 netdev_dbg(usbdev->net, "%s(): out of space\n", __func__);
1857 err = -ENOSPC;
1858 goto error;
1859 }
1860
1861 /* add new pmkid */
1862 newlen = sizeof(*pmkids) + (count + 1) * sizeof(pmkids->bssid_info[0]);
1863
1864 pmkids = krealloc(pmkids, newlen, GFP_KERNEL);
1865 if (!pmkids) {
1866 err = -ENOMEM;
1867 goto error;
1868 }
1869
1870 pmkids->length = cpu_to_le32(newlen);
1871 pmkids->bssid_info_count = cpu_to_le32(count + 1);
1872
1873 memcpy(pmkids->bssid_info[count].bssid, pmksa->bssid, ETH_ALEN);
1874 memcpy(pmkids->bssid_info[count].pmkid, pmksa->pmkid, WLAN_PMKID_LEN);
1875
1876 return pmkids;
1877error:
1878 kfree(pmkids);
1879 return ERR_PTR(err);
1880}
1881
964c1d41
JL
1882/*
1883 * cfg80211 ops
1884 */
e36d56b6
JB
1885static int rndis_change_virtual_intf(struct wiphy *wiphy,
1886 struct net_device *dev,
964c1d41
JL
1887 enum nl80211_iftype type, u32 *flags,
1888 struct vif_params *params)
1889{
16139172
JK
1890 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
1891 struct usbnet *usbdev = priv->usbdev;
964c1d41
JL
1892 int mode;
1893
964c1d41
JL
1894 switch (type) {
1895 case NL80211_IFTYPE_ADHOC:
aa18294a 1896 mode = NDIS_80211_INFRA_ADHOC;
964c1d41
JL
1897 break;
1898 case NL80211_IFTYPE_STATION:
aa18294a 1899 mode = NDIS_80211_INFRA_INFRA;
964c1d41
JL
1900 break;
1901 default:
1902 return -EINVAL;
1903 }
1904
16139172
JK
1905 priv->wdev.iftype = type;
1906
964c1d41
JL
1907 return set_infra_mode(usbdev, mode);
1908}
1909
d75ec2b7
JK
1910static int rndis_set_wiphy_params(struct wiphy *wiphy, u32 changed)
1911{
1912 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
1913 struct usbnet *usbdev = priv->usbdev;
1914 int err;
1915
1916 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
1917 err = set_frag_threshold(usbdev, wiphy->frag_threshold);
1918 if (err < 0)
1919 return err;
1920 }
1921
1922 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
1923 err = set_rts_threshold(usbdev, wiphy->rts_threshold);
1924 if (err < 0)
1925 return err;
1926 }
1927
1928 return 0;
1929}
1930
fa61cf70
JO
1931static int rndis_set_tx_power(struct wiphy *wiphy,
1932 enum nl80211_tx_power_setting type,
1933 int mbm)
222ec50a
JK
1934{
1935 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
1936 struct usbnet *usbdev = priv->usbdev;
1937
fa61cf70
JO
1938 netdev_dbg(usbdev->net, "%s(): type:0x%x mbm:%i\n",
1939 __func__, type, mbm);
1940
1941 if (mbm < 0 || (mbm % 100))
1942 return -ENOTSUPP;
222ec50a
JK
1943
1944 /* Device doesn't support changing txpower after initialization, only
1945 * turn off/on radio. Support 'auto' mode and setting same dBm that is
1946 * currently used.
1947 */
fa61cf70
JO
1948 if (type == NL80211_TX_POWER_AUTOMATIC ||
1949 MBM_TO_DBM(mbm) == get_bcm4320_power_dbm(priv)) {
222ec50a 1950 if (!priv->radio_on)
051ae0bf 1951 disassociate(usbdev, true); /* turn on radio */
222ec50a
JK
1952
1953 return 0;
1954 }
1955
1956 return -ENOTSUPP;
1957}
1958
222ec50a
JK
1959static int rndis_get_tx_power(struct wiphy *wiphy, int *dbm)
1960{
1961 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
1962 struct usbnet *usbdev = priv->usbdev;
1963
1964 *dbm = get_bcm4320_power_dbm(priv);
1965
60b86755 1966 netdev_dbg(usbdev->net, "%s(): dbm:%i\n", __func__, *dbm);
222ec50a
JK
1967
1968 return 0;
1969}
1970
b1d25a67 1971#define SCAN_DELAY_JIFFIES (6 * HZ)
71a7b26d
JK
1972static int rndis_scan(struct wiphy *wiphy, struct net_device *dev,
1973 struct cfg80211_scan_request *request)
1974{
1975 struct usbnet *usbdev = netdev_priv(dev);
582241a0 1976 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
71a7b26d 1977 int ret;
5cb56af2 1978 int delay = SCAN_DELAY_JIFFIES;
71a7b26d 1979
60b86755 1980 netdev_dbg(usbdev->net, "cfg80211.scan\n");
71a7b26d 1981
db0dd396
JK
1982 /* Get current bssid list from device before new scan, as new scan
1983 * clears internal bssid list.
1984 */
b5257c95 1985 rndis_check_bssid_list(usbdev, NULL, NULL);
db0dd396 1986
71a7b26d
JK
1987 if (!request)
1988 return -EINVAL;
1989
1990 if (priv->scan_request && priv->scan_request != request)
1991 return -EBUSY;
1992
1993 priv->scan_request = request;
1994
5cb56af2 1995 ret = rndis_start_bssid_list_scan(usbdev);
71a7b26d 1996 if (ret == 0) {
5cb56af2
JK
1997 if (priv->device_type == RNDIS_BCM4320A)
1998 delay = HZ;
1999
71a7b26d 2000 /* Wait before retrieving scan results from device */
5cb56af2 2001 queue_delayed_work(priv->workqueue, &priv->scan_work, delay);
71a7b26d
JK
2002 }
2003
2004 return ret;
2005}
2006
a64e2e23
JK
2007static bool rndis_bss_info_update(struct usbnet *usbdev,
2008 struct ndis_80211_bssid_ex *bssid)
71a7b26d 2009{
582241a0 2010 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
71a7b26d 2011 struct ieee80211_channel *channel;
a64e2e23 2012 struct cfg80211_bss *bss;
71a7b26d
JK
2013 s32 signal;
2014 u64 timestamp;
2015 u16 capability;
2016 u16 beacon_interval;
2017 struct ndis_80211_fixed_ies *fixed;
2018 int ie_len, bssid_len;
2019 u8 *ie;
2020
bfe3850b
JK
2021 netdev_dbg(usbdev->net, " found bssid: '%.32s' [%pM], len: %d\n",
2022 bssid->ssid.essid, bssid->mac, le32_to_cpu(bssid->length));
5fd8f250 2023
71a7b26d
JK
2024 /* parse bssid structure */
2025 bssid_len = le32_to_cpu(bssid->length);
2026
2027 if (bssid_len < sizeof(struct ndis_80211_bssid_ex) +
2028 sizeof(struct ndis_80211_fixed_ies))
2029 return NULL;
2030
2031 fixed = (struct ndis_80211_fixed_ies *)bssid->ies;
2032
2033 ie = (void *)(bssid->ies + sizeof(struct ndis_80211_fixed_ies));
2034 ie_len = min(bssid_len - (int)sizeof(*bssid),
2035 (int)le32_to_cpu(bssid->ie_length));
2036 ie_len -= sizeof(struct ndis_80211_fixed_ies);
2037 if (ie_len < 0)
2038 return NULL;
2039
2040 /* extract data for cfg80211_inform_bss */
2041 channel = ieee80211_get_channel(priv->wdev.wiphy,
2042 KHZ_TO_MHZ(le32_to_cpu(bssid->config.ds_config)));
2043 if (!channel)
2044 return NULL;
2045
2046 signal = level_to_qual(le32_to_cpu(bssid->rssi));
2047 timestamp = le64_to_cpu(*(__le64 *)fixed->timestamp);
2048 capability = le16_to_cpu(fixed->capabilities);
2049 beacon_interval = le16_to_cpu(fixed->beacon_interval);
2050
a64e2e23 2051 bss = cfg80211_inform_bss(priv->wdev.wiphy, channel, bssid->mac,
71a7b26d
JK
2052 timestamp, capability, beacon_interval, ie, ie_len, signal,
2053 GFP_KERNEL);
a64e2e23
JK
2054 cfg80211_put_bss(bss);
2055
2056 return (bss != NULL);
71a7b26d
JK
2057}
2058
bfe3850b
JK
2059static struct ndis_80211_bssid_ex *next_bssid_list_item(
2060 struct ndis_80211_bssid_ex *bssid,
2061 int *bssid_len, void *buf, int len)
2062{
2063 void *buf_end, *bssid_end;
2064
2065 buf_end = (char *)buf + len;
2066 bssid_end = (char *)bssid + *bssid_len;
2067
2068 if ((int)(buf_end - bssid_end) < sizeof(bssid->length)) {
2069 *bssid_len = 0;
2070 return NULL;
2071 } else {
2072 bssid = (void *)((char *)bssid + *bssid_len);
2073 *bssid_len = le32_to_cpu(bssid->length);
2074 return bssid;
2075 }
2076}
2077
2078static bool check_bssid_list_item(struct ndis_80211_bssid_ex *bssid,
2079 int bssid_len, void *buf, int len)
2080{
2081 void *buf_end, *bssid_end;
2082
2083 if (!bssid || bssid_len <= 0 || bssid_len > len)
2084 return false;
2085
2086 buf_end = (char *)buf + len;
2087 bssid_end = (char *)bssid + bssid_len;
2088
2089 return (int)(buf_end - bssid_end) >= 0 && (int)(bssid_end - buf) >= 0;
2090}
2091
b5257c95
JK
2092static int rndis_check_bssid_list(struct usbnet *usbdev, u8 *match_bssid,
2093 bool *matched)
71a7b26d
JK
2094{
2095 void *buf = NULL;
2096 struct ndis_80211_bssid_list_ex *bssid_list;
2097 struct ndis_80211_bssid_ex *bssid;
bfe3850b 2098 int ret = -EINVAL, len, count, bssid_len, real_count, new_len;
71a7b26d 2099
bfe3850b 2100 netdev_dbg(usbdev->net, "%s()\n", __func__);
71a7b26d
JK
2101
2102 len = CONTROL_BUFFER_SIZE;
5fd8f250 2103resize_buf:
bfe3850b 2104 buf = kzalloc(len, GFP_KERNEL);
71a7b26d
JK
2105 if (!buf) {
2106 ret = -ENOMEM;
2107 goto out;
2108 }
2109
bfe3850b
JK
2110 /* BSSID-list might have got bigger last time we checked, keep
2111 * resizing until it won't get any bigger.
2112 */
2113 new_len = len;
2114 ret = rndis_query_oid(usbdev, OID_802_11_BSSID_LIST, buf, &new_len);
2115 if (ret != 0 || new_len < sizeof(struct ndis_80211_bssid_list_ex))
71a7b26d
JK
2116 goto out;
2117
bfe3850b
JK
2118 if (new_len > len) {
2119 len = new_len;
5fd8f250
JK
2120 kfree(buf);
2121 goto resize_buf;
2122 }
2123
bfe3850b
JK
2124 len = new_len;
2125
71a7b26d 2126 bssid_list = buf;
71a7b26d 2127 count = le32_to_cpu(bssid_list->num_items);
bfe3850b
JK
2128 real_count = 0;
2129 netdev_dbg(usbdev->net, "%s(): buflen: %d\n", __func__, len);
2130
2131 bssid_len = 0;
2132 bssid = next_bssid_list_item(bssid_list->bssid, &bssid_len, buf, len);
71a7b26d 2133
bfe3850b
JK
2134 /* Device returns incorrect 'num_items'. Workaround by ignoring the
2135 * received 'num_items' and walking through full bssid buffer instead.
2136 */
2137 while (check_bssid_list_item(bssid, bssid_len, buf, len)) {
b5257c95
JK
2138 if (rndis_bss_info_update(usbdev, bssid) && match_bssid &&
2139 matched) {
2140 if (compare_ether_addr(bssid->mac, match_bssid))
2141 *matched = true;
2142 }
71a7b26d 2143
bfe3850b
JK
2144 real_count++;
2145 bssid = next_bssid_list_item(bssid, &bssid_len, buf, len);
71a7b26d
JK
2146 }
2147
bfe3850b
JK
2148 netdev_dbg(usbdev->net, "%s(): num_items from device: %d, really found:"
2149 " %d\n", __func__, count, real_count);
2150
71a7b26d
JK
2151out:
2152 kfree(buf);
2153 return ret;
2154}
2155
71a7b26d
JK
2156static void rndis_get_scan_results(struct work_struct *work)
2157{
582241a0
JK
2158 struct rndis_wlan_private *priv =
2159 container_of(work, struct rndis_wlan_private, scan_work.work);
71a7b26d
JK
2160 struct usbnet *usbdev = priv->usbdev;
2161 int ret;
2162
60b86755 2163 netdev_dbg(usbdev->net, "get_scan_results\n");
71a7b26d 2164
005ba2f1
JK
2165 if (!priv->scan_request)
2166 return;
2167
b5257c95 2168 ret = rndis_check_bssid_list(usbdev, NULL, NULL);
71a7b26d
JK
2169
2170 cfg80211_scan_done(priv->scan_request, ret < 0);
2171
2172 priv->scan_request = NULL;
2173}
2174
5c52323e
JK
2175static int rndis_connect(struct wiphy *wiphy, struct net_device *dev,
2176 struct cfg80211_connect_params *sme)
2177{
2178 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2179 struct usbnet *usbdev = priv->usbdev;
2180 struct ieee80211_channel *channel = sme->channel;
2181 struct ndis_80211_ssid ssid;
2182 int pairwise = RNDIS_WLAN_ALG_NONE;
2183 int groupwise = RNDIS_WLAN_ALG_NONE;
2184 int keymgmt = RNDIS_WLAN_KEY_MGMT_NONE;
2185 int length, i, ret, chan = -1;
2186
2187 if (channel)
2188 chan = ieee80211_frequency_to_channel(channel->center_freq);
2189
2190 groupwise = rndis_cipher_to_alg(sme->crypto.cipher_group);
2191 for (i = 0; i < sme->crypto.n_ciphers_pairwise; i++)
2192 pairwise |=
2193 rndis_cipher_to_alg(sme->crypto.ciphers_pairwise[i]);
2194
2195 if (sme->crypto.n_ciphers_pairwise > 0 &&
2196 pairwise == RNDIS_WLAN_ALG_NONE) {
60b86755 2197 netdev_err(usbdev->net, "Unsupported pairwise cipher\n");
5c52323e
JK
2198 return -ENOTSUPP;
2199 }
2200
2201 for (i = 0; i < sme->crypto.n_akm_suites; i++)
2202 keymgmt |=
2203 rndis_akm_suite_to_key_mgmt(sme->crypto.akm_suites[i]);
2204
2205 if (sme->crypto.n_akm_suites > 0 &&
2206 keymgmt == RNDIS_WLAN_KEY_MGMT_NONE) {
60b86755 2207 netdev_err(usbdev->net, "Invalid keymgmt\n");
5c52323e
JK
2208 return -ENOTSUPP;
2209 }
2210
60b86755
JP
2211 netdev_dbg(usbdev->net, "cfg80211.connect('%.32s':[%pM]:%d:[%d,0x%x:0x%x]:[0x%x:0x%x]:0x%x)\n",
2212 sme->ssid, sme->bssid, chan,
2213 sme->privacy, sme->crypto.wpa_versions, sme->auth_type,
2214 groupwise, pairwise, keymgmt);
5c52323e
JK
2215
2216 if (is_associated(usbdev))
2217 disassociate(usbdev, false);
2218
2219 ret = set_infra_mode(usbdev, NDIS_80211_INFRA_INFRA);
2220 if (ret < 0) {
60b86755
JP
2221 netdev_dbg(usbdev->net, "connect: set_infra_mode failed, %d\n",
2222 ret);
5c52323e
JK
2223 goto err_turn_radio_on;
2224 }
2225
2226 ret = set_auth_mode(usbdev, sme->crypto.wpa_versions, sme->auth_type,
2227 keymgmt);
2228 if (ret < 0) {
60b86755
JP
2229 netdev_dbg(usbdev->net, "connect: set_auth_mode failed, %d\n",
2230 ret);
5c52323e
JK
2231 goto err_turn_radio_on;
2232 }
2233
2234 set_priv_filter(usbdev);
2235
2236 ret = set_encr_mode(usbdev, pairwise, groupwise);
2237 if (ret < 0) {
60b86755
JP
2238 netdev_dbg(usbdev->net, "connect: set_encr_mode failed, %d\n",
2239 ret);
5c52323e
JK
2240 goto err_turn_radio_on;
2241 }
2242
2243 if (channel) {
2244 ret = set_channel(usbdev, chan);
2245 if (ret < 0) {
60b86755
JP
2246 netdev_dbg(usbdev->net, "connect: set_channel failed, %d\n",
2247 ret);
5c52323e
JK
2248 goto err_turn_radio_on;
2249 }
2250 }
2251
2252 if (sme->key && ((groupwise | pairwise) & RNDIS_WLAN_ALG_WEP)) {
2253 priv->encr_tx_key_index = sme->key_idx;
2254 ret = add_wep_key(usbdev, sme->key, sme->key_len, sme->key_idx);
2255 if (ret < 0) {
60b86755
JP
2256 netdev_dbg(usbdev->net, "connect: add_wep_key failed, %d (%d, %d)\n",
2257 ret, sme->key_len, sme->key_idx);
5c52323e
JK
2258 goto err_turn_radio_on;
2259 }
2260 }
2261
2262 if (sme->bssid && !is_zero_ether_addr(sme->bssid) &&
2263 !is_broadcast_ether_addr(sme->bssid)) {
2264 ret = set_bssid(usbdev, sme->bssid);
2265 if (ret < 0) {
60b86755
JP
2266 netdev_dbg(usbdev->net, "connect: set_bssid failed, %d\n",
2267 ret);
5c52323e
JK
2268 goto err_turn_radio_on;
2269 }
2270 } else
2271 clear_bssid(usbdev);
2272
2273 length = sme->ssid_len;
2274 if (length > NDIS_802_11_LENGTH_SSID)
2275 length = NDIS_802_11_LENGTH_SSID;
2276
2277 memset(&ssid, 0, sizeof(ssid));
2278 ssid.length = cpu_to_le32(length);
2279 memcpy(ssid.essid, sme->ssid, length);
2280
2281 /* Pause and purge rx queue, so we don't pass packets before
2282 * 'media connect'-indication.
2283 */
2284 usbnet_pause_rx(usbdev);
2285 usbnet_purge_paused_rxq(usbdev);
2286
2287 ret = set_essid(usbdev, &ssid);
2288 if (ret < 0)
60b86755 2289 netdev_dbg(usbdev->net, "connect: set_essid failed, %d\n", ret);
5c52323e
JK
2290 return ret;
2291
2292err_turn_radio_on:
051ae0bf 2293 disassociate(usbdev, true);
5c52323e
JK
2294
2295 return ret;
2296}
2297
2298static int rndis_disconnect(struct wiphy *wiphy, struct net_device *dev,
2299 u16 reason_code)
2300{
2301 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2302 struct usbnet *usbdev = priv->usbdev;
2303
60b86755 2304 netdev_dbg(usbdev->net, "cfg80211.disconnect(%d)\n", reason_code);
5c52323e
JK
2305
2306 priv->connected = false;
8b89a288 2307 memset(priv->bssid, 0, ETH_ALEN);
5c52323e
JK
2308
2309 return deauthenticate(usbdev);
2310}
2311
2312static int rndis_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2313 struct cfg80211_ibss_params *params)
2314{
2315 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2316 struct usbnet *usbdev = priv->usbdev;
2317 struct ieee80211_channel *channel = params->channel;
2318 struct ndis_80211_ssid ssid;
2319 enum nl80211_auth_type auth_type;
2320 int ret, alg, length, chan = -1;
2321
2322 if (channel)
2323 chan = ieee80211_frequency_to_channel(channel->center_freq);
2324
2325 /* TODO: How to handle ad-hoc encryption?
2326 * connect() has *key, join_ibss() doesn't. RNDIS requires key to be
2327 * pre-shared for encryption (open/shared/wpa), is key set before
2328 * join_ibss? Which auth_type to use (not in params)? What about WPA?
2329 */
2330 if (params->privacy) {
2331 auth_type = NL80211_AUTHTYPE_SHARED_KEY;
2332 alg = RNDIS_WLAN_ALG_WEP;
2333 } else {
2334 auth_type = NL80211_AUTHTYPE_OPEN_SYSTEM;
2335 alg = RNDIS_WLAN_ALG_NONE;
2336 }
2337
60b86755
JP
2338 netdev_dbg(usbdev->net, "cfg80211.join_ibss('%.32s':[%pM]:%d:%d)\n",
2339 params->ssid, params->bssid, chan, params->privacy);
5c52323e
JK
2340
2341 if (is_associated(usbdev))
2342 disassociate(usbdev, false);
2343
2344 ret = set_infra_mode(usbdev, NDIS_80211_INFRA_ADHOC);
2345 if (ret < 0) {
60b86755
JP
2346 netdev_dbg(usbdev->net, "join_ibss: set_infra_mode failed, %d\n",
2347 ret);
5c52323e
JK
2348 goto err_turn_radio_on;
2349 }
2350
2351 ret = set_auth_mode(usbdev, 0, auth_type, RNDIS_WLAN_KEY_MGMT_NONE);
2352 if (ret < 0) {
60b86755
JP
2353 netdev_dbg(usbdev->net, "join_ibss: set_auth_mode failed, %d\n",
2354 ret);
5c52323e
JK
2355 goto err_turn_radio_on;
2356 }
2357
2358 set_priv_filter(usbdev);
2359
2360 ret = set_encr_mode(usbdev, alg, RNDIS_WLAN_ALG_NONE);
2361 if (ret < 0) {
60b86755
JP
2362 netdev_dbg(usbdev->net, "join_ibss: set_encr_mode failed, %d\n",
2363 ret);
5c52323e
JK
2364 goto err_turn_radio_on;
2365 }
2366
2367 if (channel) {
2368 ret = set_channel(usbdev, chan);
2369 if (ret < 0) {
60b86755
JP
2370 netdev_dbg(usbdev->net, "join_ibss: set_channel failed, %d\n",
2371 ret);
5c52323e
JK
2372 goto err_turn_radio_on;
2373 }
2374 }
2375
2376 if (params->bssid && !is_zero_ether_addr(params->bssid) &&
2377 !is_broadcast_ether_addr(params->bssid)) {
2378 ret = set_bssid(usbdev, params->bssid);
2379 if (ret < 0) {
60b86755
JP
2380 netdev_dbg(usbdev->net, "join_ibss: set_bssid failed, %d\n",
2381 ret);
5c52323e
JK
2382 goto err_turn_radio_on;
2383 }
2384 } else
2385 clear_bssid(usbdev);
2386
2387 length = params->ssid_len;
2388 if (length > NDIS_802_11_LENGTH_SSID)
2389 length = NDIS_802_11_LENGTH_SSID;
2390
2391 memset(&ssid, 0, sizeof(ssid));
2392 ssid.length = cpu_to_le32(length);
2393 memcpy(ssid.essid, params->ssid, length);
2394
2395 /* Don't need to pause rx queue for ad-hoc. */
2396 usbnet_purge_paused_rxq(usbdev);
2397 usbnet_resume_rx(usbdev);
2398
2399 ret = set_essid(usbdev, &ssid);
2400 if (ret < 0)
60b86755
JP
2401 netdev_dbg(usbdev->net, "join_ibss: set_essid failed, %d\n",
2402 ret);
5c52323e
JK
2403 return ret;
2404
2405err_turn_radio_on:
051ae0bf 2406 disassociate(usbdev, true);
5c52323e
JK
2407
2408 return ret;
2409}
2410
2411static int rndis_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2412{
2413 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2414 struct usbnet *usbdev = priv->usbdev;
2415
60b86755 2416 netdev_dbg(usbdev->net, "cfg80211.leave_ibss()\n");
5c52323e
JK
2417
2418 priv->connected = false;
8b89a288 2419 memset(priv->bssid, 0, ETH_ALEN);
5c52323e
JK
2420
2421 return deauthenticate(usbdev);
2422}
2423
f444de05 2424static int rndis_set_channel(struct wiphy *wiphy, struct net_device *netdev,
5554adbe
JK
2425 struct ieee80211_channel *chan, enum nl80211_channel_type channel_type)
2426{
2427 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2428 struct usbnet *usbdev = priv->usbdev;
2429
2430 return set_channel(usbdev,
2431 ieee80211_frequency_to_channel(chan->center_freq));
2432}
71a7b26d 2433
84bf8400 2434static int rndis_add_key(struct wiphy *wiphy, struct net_device *netdev,
e31b8213
JB
2435 u8 key_index, bool pairwise, const u8 *mac_addr,
2436 struct key_params *params)
84bf8400
JK
2437{
2438 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2439 struct usbnet *usbdev = priv->usbdev;
53d27eaf 2440 __le32 flags;
84bf8400 2441
60b86755
JP
2442 netdev_dbg(usbdev->net, "%s(%i, %pM, %08x)\n",
2443 __func__, key_index, mac_addr, params->cipher);
84bf8400
JK
2444
2445 switch (params->cipher) {
2446 case WLAN_CIPHER_SUITE_WEP40:
2447 case WLAN_CIPHER_SUITE_WEP104:
2448 return add_wep_key(usbdev, params->key, params->key_len,
2449 key_index);
2450 case WLAN_CIPHER_SUITE_TKIP:
2451 case WLAN_CIPHER_SUITE_CCMP:
2452 flags = 0;
2453
2454 if (params->seq && params->seq_len > 0)
2455 flags |= NDIS_80211_ADDKEY_SET_INIT_RECV_SEQ;
2456 if (mac_addr)
2457 flags |= NDIS_80211_ADDKEY_PAIRWISE_KEY |
2458 NDIS_80211_ADDKEY_TRANSMIT_KEY;
2459
2460 return add_wpa_key(usbdev, params->key, params->key_len,
2461 key_index, mac_addr, params->seq,
2462 params->seq_len, params->cipher, flags);
2463 default:
60b86755
JP
2464 netdev_dbg(usbdev->net, "%s(): unsupported cipher %08x\n",
2465 __func__, params->cipher);
84bf8400
JK
2466 return -ENOTSUPP;
2467 }
2468}
2469
2470static int rndis_del_key(struct wiphy *wiphy, struct net_device *netdev,
e31b8213 2471 u8 key_index, bool pairwise, const u8 *mac_addr)
84bf8400
JK
2472{
2473 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2474 struct usbnet *usbdev = priv->usbdev;
2475
60b86755 2476 netdev_dbg(usbdev->net, "%s(%i, %pM)\n", __func__, key_index, mac_addr);
84bf8400
JK
2477
2478 return remove_key(usbdev, key_index, mac_addr);
2479}
2480
2481static int rndis_set_default_key(struct wiphy *wiphy, struct net_device *netdev,
dbd2fd65 2482 u8 key_index, bool unicast, bool multicast)
84bf8400
JK
2483{
2484 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2485 struct usbnet *usbdev = priv->usbdev;
2486 struct rndis_wlan_encr_key key;
2487
60b86755 2488 netdev_dbg(usbdev->net, "%s(%i)\n", __func__, key_index);
84bf8400 2489
ec3cbb9c
DC
2490 if (key_index >= RNDIS_WLAN_NUM_KEYS)
2491 return -ENOENT;
2492
84bf8400
JK
2493 priv->encr_tx_key_index = key_index;
2494
0b578021
JK
2495 if (is_wpa_key(priv, key_index))
2496 return 0;
2497
84bf8400
JK
2498 key = priv->encr_keys[key_index];
2499
2500 return add_wep_key(usbdev, key.material, key.len, key_index);
2501}
2502
8b89a288
JK
2503static void rndis_fill_station_info(struct usbnet *usbdev,
2504 struct station_info *sinfo)
2505{
2506 __le32 linkspeed, rssi;
2507 int ret, len;
2508
2509 memset(sinfo, 0, sizeof(*sinfo));
2510
2511 len = sizeof(linkspeed);
2512 ret = rndis_query_oid(usbdev, OID_GEN_LINK_SPEED, &linkspeed, &len);
2513 if (ret == 0) {
2514 sinfo->txrate.legacy = le32_to_cpu(linkspeed) / 1000;
2515 sinfo->filled |= STATION_INFO_TX_BITRATE;
2516 }
2517
2518 len = sizeof(rssi);
2519 ret = rndis_query_oid(usbdev, OID_802_11_RSSI, &rssi, &len);
2520 if (ret == 0) {
2521 sinfo->signal = level_to_qual(le32_to_cpu(rssi));
2522 sinfo->filled |= STATION_INFO_SIGNAL;
2523 }
2524}
2525
2526static int rndis_get_station(struct wiphy *wiphy, struct net_device *dev,
2527 u8 *mac, struct station_info *sinfo)
2528{
2529 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2530 struct usbnet *usbdev = priv->usbdev;
2531
2532 if (compare_ether_addr(priv->bssid, mac))
2533 return -ENOENT;
2534
2535 rndis_fill_station_info(usbdev, sinfo);
2536
2537 return 0;
2538}
2539
d695df90
JK
2540static int rndis_dump_station(struct wiphy *wiphy, struct net_device *dev,
2541 int idx, u8 *mac, struct station_info *sinfo)
2542{
2543 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2544 struct usbnet *usbdev = priv->usbdev;
2545
2546 if (idx != 0)
2547 return -ENOENT;
2548
2549 memcpy(mac, priv->bssid, ETH_ALEN);
2550
2551 rndis_fill_station_info(usbdev, sinfo);
2552
2553 return 0;
2554}
2555
5a7d0583
JK
2556static int rndis_set_pmksa(struct wiphy *wiphy, struct net_device *netdev,
2557 struct cfg80211_pmksa *pmksa)
2558{
2559 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2560 struct usbnet *usbdev = priv->usbdev;
2561 struct ndis_80211_pmkid *pmkids;
2562 u32 *tmp = (u32 *)pmksa->pmkid;
2563
2564 netdev_dbg(usbdev->net, "%s(%pM, %08X:%08X:%08X:%08X)\n", __func__,
2565 pmksa->bssid,
2566 cpu_to_be32(tmp[0]), cpu_to_be32(tmp[1]),
2567 cpu_to_be32(tmp[2]), cpu_to_be32(tmp[3]));
2568
2569 pmkids = get_device_pmkids(usbdev);
2570 if (IS_ERR(pmkids)) {
2571 /* couldn't read PMKID cache from device */
2572 return PTR_ERR(pmkids);
2573 }
2574
2575 pmkids = update_pmkid(usbdev, pmkids, pmksa, wiphy->max_num_pmkids);
2576 if (IS_ERR(pmkids)) {
2577 /* not found, list full, etc */
2578 return PTR_ERR(pmkids);
2579 }
2580
2581 return set_device_pmkids(usbdev, pmkids);
2582}
2583
2584static int rndis_del_pmksa(struct wiphy *wiphy, struct net_device *netdev,
2585 struct cfg80211_pmksa *pmksa)
2586{
2587 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2588 struct usbnet *usbdev = priv->usbdev;
2589 struct ndis_80211_pmkid *pmkids;
2590 u32 *tmp = (u32 *)pmksa->pmkid;
2591
2592 netdev_dbg(usbdev->net, "%s(%pM, %08X:%08X:%08X:%08X)\n", __func__,
2593 pmksa->bssid,
2594 cpu_to_be32(tmp[0]), cpu_to_be32(tmp[1]),
2595 cpu_to_be32(tmp[2]), cpu_to_be32(tmp[3]));
2596
2597 pmkids = get_device_pmkids(usbdev);
2598 if (IS_ERR(pmkids)) {
2599 /* Couldn't read PMKID cache from device */
2600 return PTR_ERR(pmkids);
2601 }
2602
2603 pmkids = remove_pmkid(usbdev, pmkids, pmksa, wiphy->max_num_pmkids);
2604 if (IS_ERR(pmkids)) {
2605 /* not found, etc */
2606 return PTR_ERR(pmkids);
2607 }
2608
2609 return set_device_pmkids(usbdev, pmkids);
2610}
2611
2612static int rndis_flush_pmksa(struct wiphy *wiphy, struct net_device *netdev)
2613{
2614 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2615 struct usbnet *usbdev = priv->usbdev;
2616 struct ndis_80211_pmkid pmkid;
2617
2618 netdev_dbg(usbdev->net, "%s()\n", __func__);
2619
2620 memset(&pmkid, 0, sizeof(pmkid));
2621
2622 pmkid.length = cpu_to_le32(sizeof(pmkid));
2623 pmkid.bssid_info_count = cpu_to_le32(0);
2624
2625 return rndis_set_oid(usbdev, OID_802_11_PMKID, &pmkid, sizeof(pmkid));
2626}
2627
40d70dd1
JK
2628static int rndis_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2629 bool enabled, int timeout)
2630{
2631 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2632 struct usbnet *usbdev = priv->usbdev;
2633 int power_mode;
2634 __le32 mode;
2635 int ret;
2636
63453c05
JK
2637 if (priv->device_type != RNDIS_BCM4320B)
2638 return -ENOTSUPP;
2639
40d70dd1
JK
2640 netdev_dbg(usbdev->net, "%s(): %s, %d\n", __func__,
2641 enabled ? "enabled" : "disabled",
2642 timeout);
2643
2644 if (enabled)
2645 power_mode = NDIS_80211_POWER_MODE_FAST_PSP;
2646 else
2647 power_mode = NDIS_80211_POWER_MODE_CAM;
2648
2649 if (power_mode == priv->power_mode)
2650 return 0;
2651
2652 priv->power_mode = power_mode;
2653
2654 mode = cpu_to_le32(power_mode);
2655 ret = rndis_set_oid(usbdev, OID_802_11_POWER_MODE, &mode, sizeof(mode));
2656
2657 netdev_dbg(usbdev->net, "%s(): OID_802_11_POWER_MODE -> %d\n",
2658 __func__, ret);
2659
2660 return ret;
2661}
2662
49b35bd3
JK
2663static int rndis_set_cqm_rssi_config(struct wiphy *wiphy,
2664 struct net_device *dev,
2665 s32 rssi_thold, u32 rssi_hyst)
2666{
2667 struct rndis_wlan_private *priv = wiphy_priv(wiphy);
2668
2669 priv->cqm_rssi_thold = rssi_thold;
2670 priv->cqm_rssi_hyst = rssi_hyst;
2671 priv->last_cqm_event_rssi = 0;
2672
2673 return 0;
2674}
2675
b5257c95
JK
2676static void rndis_wlan_craft_connected_bss(struct usbnet *usbdev, u8 *bssid,
2677 struct ndis_80211_assoc_info *info)
2678{
2679 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
2680 struct ieee80211_channel *channel;
b5257c95 2681 struct ndis_80211_ssid ssid;
a64e2e23 2682 struct cfg80211_bss *bss;
b5257c95
JK
2683 s32 signal;
2684 u64 timestamp;
2685 u16 capability;
cb82a66d 2686 u16 beacon_interval = 0;
b5257c95
JK
2687 __le32 rssi;
2688 u8 ie_buf[34];
2689 int len, ret, ie_len;
2690
2691 /* Get signal quality, in case of error use rssi=0 and ignore error. */
2692 len = sizeof(rssi);
2693 rssi = 0;
458fafdd 2694 ret = rndis_query_oid(usbdev, OID_802_11_RSSI, &rssi, &len);
b5257c95
JK
2695 signal = level_to_qual(le32_to_cpu(rssi));
2696
2697 netdev_dbg(usbdev->net, "%s(): OID_802_11_RSSI -> %d, "
2698 "rssi:%d, qual: %d\n", __func__, ret, le32_to_cpu(rssi),
2699 level_to_qual(le32_to_cpu(rssi)));
2700
2701 /* Get AP capabilities */
2702 if (info) {
2703 capability = le16_to_cpu(info->resp_ie.capa);
2704 } else {
2705 /* Set atleast ESS/IBSS capability */
2706 capability = (priv->infra_mode == NDIS_80211_INFRA_INFRA) ?
2707 WLAN_CAPABILITY_ESS : WLAN_CAPABILITY_IBSS;
2708 }
2709
2710 /* Get channel and beacon interval */
cb82a66d
JK
2711 channel = get_current_channel(usbdev, &beacon_interval);
2712 if (!channel) {
2713 netdev_warn(usbdev->net, "%s(): could not get channel.\n",
2714 __func__);
b5257c95
JK
2715 return;
2716 }
2717
2718 /* Get SSID, in case of error, use zero length SSID and ignore error. */
2719 len = sizeof(ssid);
2720 memset(&ssid, 0, sizeof(ssid));
2721 ret = rndis_query_oid(usbdev, OID_802_11_SSID, &ssid, &len);
2722 netdev_dbg(usbdev->net, "%s(): OID_802_11_SSID -> %d, len: %d, ssid: "
2723 "'%.32s'\n", __func__, ret,
2724 le32_to_cpu(ssid.length), ssid.essid);
2725
2726 if (le32_to_cpu(ssid.length) > 32)
2727 ssid.length = cpu_to_le32(32);
2728
2729 ie_buf[0] = WLAN_EID_SSID;
2730 ie_buf[1] = le32_to_cpu(ssid.length);
2731 memcpy(&ie_buf[2], ssid.essid, le32_to_cpu(ssid.length));
2732
2733 ie_len = le32_to_cpu(ssid.length) + 2;
2734
2735 /* no tsf */
2736 timestamp = 0;
2737
2738 netdev_dbg(usbdev->net, "%s(): channel:%d(freq), bssid:[%pM], tsf:%d, "
2739 "capa:%x, beacon int:%d, resp_ie(len:%d, essid:'%.32s'), "
2740 "signal:%d\n", __func__, (channel ? channel->center_freq : -1),
2741 bssid, (u32)timestamp, capability, beacon_interval, ie_len,
2742 ssid.essid, signal);
2743
a64e2e23 2744 bss = cfg80211_inform_bss(priv->wdev.wiphy, channel, bssid,
b5257c95
JK
2745 timestamp, capability, beacon_interval, ie_buf, ie_len,
2746 signal, GFP_KERNEL);
a64e2e23 2747 cfg80211_put_bss(bss);
b5257c95
JK
2748}
2749
c5c4fe90
JK
2750/*
2751 * workers, indication handlers, device poller
2752 */
0848e6c6 2753static void rndis_wlan_do_link_up_work(struct usbnet *usbdev)
bf164cc0 2754{
5c52323e 2755 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
3d1ca47e 2756 struct ndis_80211_assoc_info *info = NULL;
0848e6c6 2757 u8 bssid[ETH_ALEN];
41eedf39
DC
2758 unsigned int resp_ie_len, req_ie_len;
2759 unsigned int offset;
5c52323e 2760 u8 *req_ie, *resp_ie;
41eedf39 2761 int ret;
5c52323e 2762 bool roamed = false;
b5257c95 2763 bool match_bss;
bf164cc0 2764
5c52323e
JK
2765 if (priv->infra_mode == NDIS_80211_INFRA_INFRA && priv->connected) {
2766 /* received media connect indication while connected, either
2767 * device reassociated with same AP or roamed to new. */
2768 roamed = true;
2769 }
0848e6c6 2770
5c52323e
JK
2771 req_ie_len = 0;
2772 resp_ie_len = 0;
2773 req_ie = NULL;
2774 resp_ie = NULL;
2775
2776 if (priv->infra_mode == NDIS_80211_INFRA_INFRA) {
3d1ca47e
JK
2777 info = kzalloc(CONTROL_BUFFER_SIZE, GFP_KERNEL);
2778 if (!info) {
2779 /* No memory? Try resume work later */
2780 set_bit(WORK_LINK_UP, &priv->work_pending);
2781 queue_work(priv->workqueue, &priv->work);
2782 return;
2783 }
5c52323e 2784
3d1ca47e
JK
2785 /* Get association info IEs from device. */
2786 ret = get_association_info(usbdev, info, CONTROL_BUFFER_SIZE);
5c52323e
JK
2787 if (!ret) {
2788 req_ie_len = le32_to_cpu(info->req_ie_length);
41eedf39
DC
2789 if (req_ie_len > CONTROL_BUFFER_SIZE)
2790 req_ie_len = CONTROL_BUFFER_SIZE;
2791 if (req_ie_len != 0) {
5c52323e 2792 offset = le32_to_cpu(info->offset_req_ies);
3d1ca47e
JK
2793
2794 if (offset > CONTROL_BUFFER_SIZE)
2795 offset = CONTROL_BUFFER_SIZE;
2796
5c52323e 2797 req_ie = (u8 *)info + offset;
3d1ca47e
JK
2798
2799 if (offset + req_ie_len > CONTROL_BUFFER_SIZE)
2800 req_ie_len =
2801 CONTROL_BUFFER_SIZE - offset;
5c52323e
JK
2802 }
2803
2804 resp_ie_len = le32_to_cpu(info->resp_ie_length);
41eedf39
DC
2805 if (resp_ie_len > CONTROL_BUFFER_SIZE)
2806 resp_ie_len = CONTROL_BUFFER_SIZE;
2807 if (resp_ie_len != 0) {
5c52323e 2808 offset = le32_to_cpu(info->offset_resp_ies);
3d1ca47e
JK
2809
2810 if (offset > CONTROL_BUFFER_SIZE)
2811 offset = CONTROL_BUFFER_SIZE;
2812
5c52323e 2813 resp_ie = (u8 *)info + offset;
3d1ca47e
JK
2814
2815 if (offset + resp_ie_len > CONTROL_BUFFER_SIZE)
2816 resp_ie_len =
2817 CONTROL_BUFFER_SIZE - offset;
5c52323e 2818 }
b5257c95
JK
2819 } else {
2820 /* Since rndis_wlan_craft_connected_bss() might use info
2821 * later and expects info to contain valid data if
2822 * non-null, free info and set NULL here.
2823 */
2824 kfree(info);
2825 info = NULL;
4364623c 2826 }
5c52323e
JK
2827 } else if (WARN_ON(priv->infra_mode != NDIS_80211_INFRA_ADHOC))
2828 return;
4364623c 2829
5c52323e
JK
2830 ret = get_bssid(usbdev, bssid);
2831 if (ret < 0)
2832 memset(bssid, 0, sizeof(bssid));
7834ddbc 2833
60b86755
JP
2834 netdev_dbg(usbdev->net, "link up work: [%pM]%s\n",
2835 bssid, roamed ? " roamed" : "");
bf164cc0 2836
b5257c95 2837 /* Internal bss list in device should contain at least the currently
5c52323e
JK
2838 * connected bss and we can get it to cfg80211 with
2839 * rndis_check_bssid_list().
b5257c95
JK
2840 *
2841 * NDIS spec says: "If the device is associated, but the associated
2842 * BSSID is not in its BSSID scan list, then the driver must add an
2843 * entry for the BSSID at the end of the data that it returns in
2844 * response to query of OID_802_11_BSSID_LIST."
2845 *
2846 * NOTE: Seems to be true for BCM4320b variant, but not BCM4320a.
5c52323e 2847 */
b5257c95
JK
2848 match_bss = false;
2849 rndis_check_bssid_list(usbdev, bssid, &match_bss);
2850
2851 if (!is_zero_ether_addr(bssid) && !match_bss) {
2852 /* Couldn't get bss from device, we need to manually craft bss
2853 * for cfg80211.
2854 */
2855 rndis_wlan_craft_connected_bss(usbdev, bssid, info);
2856 }
5c52323e
JK
2857
2858 if (priv->infra_mode == NDIS_80211_INFRA_INFRA) {
2859 if (!roamed)
2860 cfg80211_connect_result(usbdev->net, bssid, req_ie,
2861 req_ie_len, resp_ie,
2862 resp_ie_len, 0, GFP_KERNEL);
2863 else
6f104a08
JK
2864 cfg80211_roamed(usbdev->net,
2865 get_current_channel(usbdev, NULL),
2866 bssid, req_ie, req_ie_len,
5c52323e
JK
2867 resp_ie, resp_ie_len, GFP_KERNEL);
2868 } else if (priv->infra_mode == NDIS_80211_INFRA_ADHOC)
2869 cfg80211_ibss_joined(usbdev->net, bssid, GFP_KERNEL);
2870
3d1ca47e
JK
2871 if (info != NULL)
2872 kfree(info);
2873
5c52323e 2874 priv->connected = true;
8b89a288 2875 memcpy(priv->bssid, bssid, ETH_ALEN);
6010ce07 2876
0848e6c6 2877 usbnet_resume_rx(usbdev);
5c52323e 2878 netif_carrier_on(usbdev->net);
0848e6c6
JK
2879}
2880
2881static void rndis_wlan_do_link_down_work(struct usbnet *usbdev)
2882{
b6411fc2 2883 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
0848e6c6 2884
b6411fc2
JK
2885 if (priv->connected) {
2886 priv->connected = false;
2887 memset(priv->bssid, 0, ETH_ALEN);
2888
2889 deauthenticate(usbdev);
0848e6c6 2890
b6411fc2
JK
2891 cfg80211_disconnected(usbdev->net, 0, NULL, 0, GFP_KERNEL);
2892 }
2893
2894 netif_carrier_off(usbdev->net);
0848e6c6
JK
2895}
2896
2897static void rndis_wlan_worker(struct work_struct *work)
2898{
2899 struct rndis_wlan_private *priv =
2900 container_of(work, struct rndis_wlan_private, work);
2901 struct usbnet *usbdev = priv->usbdev;
2902
2903 if (test_and_clear_bit(WORK_LINK_UP, &priv->work_pending))
2904 rndis_wlan_do_link_up_work(usbdev);
2905
2906 if (test_and_clear_bit(WORK_LINK_DOWN, &priv->work_pending))
2907 rndis_wlan_do_link_down_work(usbdev);
2908
bf164cc0
JK
2909 if (test_and_clear_bit(WORK_SET_MULTICAST_LIST, &priv->work_pending))
2910 set_multicast_list(usbdev);
2911}
2912
582241a0 2913static void rndis_wlan_set_multicast_list(struct net_device *dev)
bf164cc0 2914{
524ad0a7 2915 struct usbnet *usbdev = netdev_priv(dev);
582241a0 2916 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0 2917
a67edb9e
JK
2918 if (test_bit(WORK_SET_MULTICAST_LIST, &priv->work_pending))
2919 return;
2920
bf164cc0
JK
2921 set_bit(WORK_SET_MULTICAST_LIST, &priv->work_pending);
2922 queue_work(priv->workqueue, &priv->work);
2923}
2924
030645ac
JK
2925static void rndis_wlan_auth_indication(struct usbnet *usbdev,
2926 struct ndis_80211_status_indication *indication,
2927 int len)
2928{
2929 u8 *buf;
2930 const char *type;
a0f9ce2a 2931 int flags, buflen, key_id;
030645ac
JK
2932 bool pairwise_error, group_error;
2933 struct ndis_80211_auth_request *auth_req;
a0f9ce2a 2934 enum nl80211_key_type key_type;
030645ac
JK
2935
2936 /* must have at least one array entry */
2937 if (len < offsetof(struct ndis_80211_status_indication, u) +
2938 sizeof(struct ndis_80211_auth_request)) {
60b86755
JP
2939 netdev_info(usbdev->net, "authentication indication: too short message (%i)\n",
2940 len);
030645ac
JK
2941 return;
2942 }
2943
2944 buf = (void *)&indication->u.auth_request[0];
2945 buflen = len - offsetof(struct ndis_80211_status_indication, u);
2946
2947 while (buflen >= sizeof(*auth_req)) {
2948 auth_req = (void *)buf;
2949 type = "unknown";
2950 flags = le32_to_cpu(auth_req->flags);
2951 pairwise_error = false;
2952 group_error = false;
2953
2954 if (flags & 0x1)
2955 type = "reauth request";
2956 if (flags & 0x2)
2957 type = "key update request";
2958 if (flags & 0x6) {
2959 pairwise_error = true;
2960 type = "pairwise_error";
2961 }
2962 if (flags & 0xe) {
2963 group_error = true;
2964 type = "group_error";
2965 }
2966
60b86755
JP
2967 netdev_info(usbdev->net, "authentication indication: %s (0x%08x)\n",
2968 type, le32_to_cpu(auth_req->flags));
030645ac 2969
a0f9ce2a
JK
2970 if (pairwise_error) {
2971 key_type = NL80211_KEYTYPE_PAIRWISE;
2972 key_id = -1;
030645ac 2973
a0f9ce2a
JK
2974 cfg80211_michael_mic_failure(usbdev->net,
2975 auth_req->bssid,
2976 key_type, key_id, NULL,
2977 GFP_KERNEL);
2978 }
030645ac 2979
a0f9ce2a
JK
2980 if (group_error) {
2981 key_type = NL80211_KEYTYPE_GROUP;
2982 key_id = -1;
030645ac 2983
a0f9ce2a
JK
2984 cfg80211_michael_mic_failure(usbdev->net,
2985 auth_req->bssid,
2986 key_type, key_id, NULL,
2987 GFP_KERNEL);
030645ac
JK
2988 }
2989
2990 buflen -= le32_to_cpu(auth_req->length);
2991 buf += le32_to_cpu(auth_req->length);
2992 }
2993}
2994
2995static void rndis_wlan_pmkid_cand_list_indication(struct usbnet *usbdev,
2996 struct ndis_80211_status_indication *indication,
2997 int len)
2998{
2999 struct ndis_80211_pmkid_cand_list *cand_list;
3000 int list_len, expected_len, i;
3001
3002 if (len < offsetof(struct ndis_80211_status_indication, u) +
3003 sizeof(struct ndis_80211_pmkid_cand_list)) {
60b86755
JP
3004 netdev_info(usbdev->net, "pmkid candidate list indication: too short message (%i)\n",
3005 len);
030645ac
JK
3006 return;
3007 }
3008
3009 list_len = le32_to_cpu(indication->u.cand_list.num_candidates) *
3010 sizeof(struct ndis_80211_pmkid_candidate);
3011 expected_len = sizeof(struct ndis_80211_pmkid_cand_list) + list_len +
3012 offsetof(struct ndis_80211_status_indication, u);
3013
3014 if (len < expected_len) {
60b86755
JP
3015 netdev_info(usbdev->net, "pmkid candidate list indication: list larger than buffer (%i < %i)\n",
3016 len, expected_len);
030645ac
JK
3017 return;
3018 }
3019
3020 cand_list = &indication->u.cand_list;
3021
60b86755
JP
3022 netdev_info(usbdev->net, "pmkid candidate list indication: version %i, candidates %i\n",
3023 le32_to_cpu(cand_list->version),
3024 le32_to_cpu(cand_list->num_candidates));
030645ac
JK
3025
3026 if (le32_to_cpu(cand_list->version) != 1)
3027 return;
3028
3029 for (i = 0; i < le32_to_cpu(cand_list->num_candidates); i++) {
030645ac
JK
3030 struct ndis_80211_pmkid_candidate *cand =
3031 &cand_list->candidate_list[i];
1c706875 3032 bool preauth = !!(cand->flags & NDIS_80211_PMKID_CAND_PREAUTH);
030645ac 3033
1c706875
JK
3034 netdev_dbg(usbdev->net, "cand[%i]: flags: 0x%08x, preauth: %d, bssid: %pM\n",
3035 i, le32_to_cpu(cand->flags), preauth, cand->bssid);
21ec2d8d 3036
1c706875
JK
3037 cfg80211_pmksa_candidate_notify(usbdev->net, i, cand->bssid,
3038 preauth, GFP_ATOMIC);
030645ac
JK
3039 }
3040}
3041
3042static void rndis_wlan_media_specific_indication(struct usbnet *usbdev,
3043 struct rndis_indicate *msg, int buflen)
3044{
3045 struct ndis_80211_status_indication *indication;
3046 int len, offset;
3047
3048 offset = offsetof(struct rndis_indicate, status) +
3049 le32_to_cpu(msg->offset);
3050 len = le32_to_cpu(msg->length);
3051
3052 if (len < 8) {
60b86755
JP
3053 netdev_info(usbdev->net, "media specific indication, ignore too short message (%i < 8)\n",
3054 len);
030645ac
JK
3055 return;
3056 }
3057
3058 if (offset + len > buflen) {
60b86755
JP
3059 netdev_info(usbdev->net, "media specific indication, too large to fit to buffer (%i > %i)\n",
3060 offset + len, buflen);
030645ac
JK
3061 return;
3062 }
3063
3064 indication = (void *)((u8 *)msg + offset);
3065
3066 switch (le32_to_cpu(indication->status_type)) {
3067 case NDIS_80211_STATUSTYPE_RADIOSTATE:
60b86755
JP
3068 netdev_info(usbdev->net, "radio state indication: %i\n",
3069 le32_to_cpu(indication->u.radio_status));
030645ac
JK
3070 return;
3071
3072 case NDIS_80211_STATUSTYPE_MEDIASTREAMMODE:
60b86755
JP
3073 netdev_info(usbdev->net, "media stream mode indication: %i\n",
3074 le32_to_cpu(indication->u.media_stream_mode));
030645ac
JK
3075 return;
3076
3077 case NDIS_80211_STATUSTYPE_AUTHENTICATION:
3078 rndis_wlan_auth_indication(usbdev, indication, len);
3079 return;
3080
3081 case NDIS_80211_STATUSTYPE_PMKID_CANDIDATELIST:
3082 rndis_wlan_pmkid_cand_list_indication(usbdev, indication, len);
3083 return;
3084
3085 default:
60b86755
JP
3086 netdev_info(usbdev->net, "media specific indication: unknown status type 0x%08x\n",
3087 le32_to_cpu(indication->status_type));
030645ac
JK
3088 }
3089}
3090
2a4901bc 3091static void rndis_wlan_indication(struct usbnet *usbdev, void *ind, int buflen)
bf164cc0 3092{
582241a0 3093 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
2a4901bc 3094 struct rndis_indicate *msg = ind;
bf164cc0 3095
2a4901bc
JK
3096 switch (msg->status) {
3097 case RNDIS_STATUS_MEDIA_CONNECT:
5f81ff5a
JK
3098 if (priv->current_command_oid == OID_802_11_ADD_KEY) {
3099 /* OID_802_11_ADD_KEY causes sometimes extra
3100 * "media connect" indications which confuses driver
3101 * and userspace to think that device is
3102 * roaming/reassociating when it isn't.
3103 */
60b86755 3104 netdev_dbg(usbdev->net, "ignored OID_802_11_ADD_KEY triggered 'media connect'\n");
5f81ff5a
JK
3105 return;
3106 }
3107
7834ddbc
JK
3108 usbnet_pause_rx(usbdev);
3109
60b86755 3110 netdev_info(usbdev->net, "media connect\n");
2a4901bc 3111
030645ac 3112 /* queue work to avoid recursive calls into rndis_command */
2a4901bc
JK
3113 set_bit(WORK_LINK_UP, &priv->work_pending);
3114 queue_work(priv->workqueue, &priv->work);
3115 break;
3116
3117 case RNDIS_STATUS_MEDIA_DISCONNECT:
60b86755 3118 netdev_info(usbdev->net, "media disconnect\n");
2a4901bc 3119
030645ac 3120 /* queue work to avoid recursive calls into rndis_command */
2a4901bc
JK
3121 set_bit(WORK_LINK_DOWN, &priv->work_pending);
3122 queue_work(priv->workqueue, &priv->work);
3123 break;
3124
030645ac
JK
3125 case RNDIS_STATUS_MEDIA_SPECIFIC_INDICATION:
3126 rndis_wlan_media_specific_indication(usbdev, msg, buflen);
3127 break;
3128
2a4901bc 3129 default:
60b86755
JP
3130 netdev_info(usbdev->net, "indication: 0x%08x\n",
3131 le32_to_cpu(msg->status));
2a4901bc
JK
3132 break;
3133 }
bf164cc0
JK
3134}
3135
0308383f 3136static int rndis_wlan_get_caps(struct usbnet *usbdev, struct wiphy *wiphy)
bf164cc0
JK
3137{
3138 struct {
3139 __le32 num_items;
3140 __le32 items[8];
3141 } networks_supported;
0308383f
JK
3142 struct ndis_80211_capability *caps;
3143 u8 caps_buf[sizeof(*caps) + sizeof(caps->auth_encr_pair) * 16];
bf164cc0 3144 int len, retval, i, n;
582241a0 3145 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0 3146
bf164cc0
JK
3147 /* determine supported modes */
3148 len = sizeof(networks_supported);
a19d7292 3149 retval = rndis_query_oid(usbdev, OID_802_11_NETWORK_TYPES_SUPPORTED,
bf164cc0
JK
3150 &networks_supported, &len);
3151 if (retval >= 0) {
3152 n = le32_to_cpu(networks_supported.num_items);
3153 if (n > 8)
3154 n = 8;
3155 for (i = 0; i < n; i++) {
3156 switch (le32_to_cpu(networks_supported.items[i])) {
aa18294a
JK
3157 case NDIS_80211_TYPE_FREQ_HOP:
3158 case NDIS_80211_TYPE_DIRECT_SEQ:
bf164cc0
JK
3159 priv->caps |= CAP_MODE_80211B;
3160 break;
aa18294a 3161 case NDIS_80211_TYPE_OFDM_A:
bf164cc0
JK
3162 priv->caps |= CAP_MODE_80211A;
3163 break;
aa18294a 3164 case NDIS_80211_TYPE_OFDM_G:
bf164cc0
JK
3165 priv->caps |= CAP_MODE_80211G;
3166 break;
3167 }
3168 }
bf164cc0
JK
3169 }
3170
0308383f
JK
3171 /* get device 802.11 capabilities, number of PMKIDs */
3172 caps = (struct ndis_80211_capability *)caps_buf;
3173 len = sizeof(caps_buf);
3174 retval = rndis_query_oid(usbdev, OID_802_11_CAPABILITY, caps, &len);
3175 if (retval >= 0) {
3176 netdev_dbg(usbdev->net, "OID_802_11_CAPABILITY -> len %d, "
3177 "ver %d, pmkids %d, auth-encr-pairs %d\n",
3178 le32_to_cpu(caps->length),
3179 le32_to_cpu(caps->version),
3180 le32_to_cpu(caps->num_pmkids),
3181 le32_to_cpu(caps->num_auth_encr_pair));
3182 wiphy->max_num_pmkids = le32_to_cpu(caps->num_pmkids);
3183 } else
3184 wiphy->max_num_pmkids = 0;
3185
bf164cc0
JK
3186 return retval;
3187}
3188
49b35bd3
JK
3189static void rndis_do_cqm(struct usbnet *usbdev, s32 rssi)
3190{
3191 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
3192 enum nl80211_cqm_rssi_threshold_event event;
3193 int thold, hyst, last_event;
3194
3195 if (priv->cqm_rssi_thold >= 0 || rssi >= 0)
3196 return;
3197 if (priv->infra_mode != NDIS_80211_INFRA_INFRA)
3198 return;
3199
3200 last_event = priv->last_cqm_event_rssi;
3201 thold = priv->cqm_rssi_thold;
3202 hyst = priv->cqm_rssi_hyst;
3203
3204 if (rssi < thold && (last_event == 0 || rssi < last_event - hyst))
3205 event = NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW;
3206 else if (rssi > thold && (last_event == 0 || rssi > last_event + hyst))
3207 event = NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH;
3208 else
3209 return;
3210
3211 priv->last_cqm_event_rssi = rssi;
3212 cfg80211_cqm_rssi_notify(usbdev->net, event, GFP_KERNEL);
3213}
3214
305e243e
JK
3215#define DEVICE_POLLER_JIFFIES (HZ)
3216static void rndis_device_poller(struct work_struct *work)
bf164cc0 3217{
582241a0 3218 struct rndis_wlan_private *priv =
305e243e
JK
3219 container_of(work, struct rndis_wlan_private,
3220 dev_poller_work.work);
bf164cc0 3221 struct usbnet *usbdev = priv->usbdev;
bf164cc0 3222 __le32 rssi, tmp;
a97b1f3d 3223 int len, ret, j;
305e243e 3224 int update_jiffies = DEVICE_POLLER_JIFFIES;
bf164cc0
JK
3225 void *buf;
3226
8b89a288
JK
3227 /* Only check/do workaround when connected. Calling is_associated()
3228 * also polls device with rndis_command() and catches for media link
3229 * indications.
3230 */
5cb56af2
JK
3231 if (!is_associated(usbdev)) {
3232 /* Workaround bad scanning in BCM4320a devices with active
3233 * background scanning when not associated.
3234 */
3235 if (priv->device_type == RNDIS_BCM4320A && priv->radio_on &&
3236 !priv->scan_request) {
3237 /* Get previous scan results */
3238 rndis_check_bssid_list(usbdev, NULL, NULL);
3239
3240 /* Initiate new scan */
3241 rndis_start_bssid_list_scan(usbdev);
3242 }
3243
bf164cc0 3244 goto end;
5cb56af2 3245 }
bf164cc0
JK
3246
3247 len = sizeof(rssi);
3248 ret = rndis_query_oid(usbdev, OID_802_11_RSSI, &rssi, &len);
49b35bd3 3249 if (ret == 0) {
8b89a288 3250 priv->last_qual = level_to_qual(le32_to_cpu(rssi));
49b35bd3
JK
3251 rndis_do_cqm(usbdev, le32_to_cpu(rssi));
3252 }
bf164cc0 3253
60b86755
JP
3254 netdev_dbg(usbdev->net, "dev-poller: OID_802_11_RSSI -> %d, rssi:%d, qual: %d\n",
3255 ret, le32_to_cpu(rssi), level_to_qual(le32_to_cpu(rssi)));
bf164cc0 3256
a97b1f3d
JK
3257 /* Workaround transfer stalls on poor quality links.
3258 * TODO: find right way to fix these stalls (as stalls do not happen
3259 * with ndiswrapper/windows driver). */
77593ae2 3260 if (priv->param_workaround_interval > 0 && priv->last_qual <= 25) {
bf164cc0
JK
3261 /* Decrease stats worker interval to catch stalls.
3262 * faster. Faster than 400-500ms causes packet loss,
3263 * Slower doesn't catch stalls fast enough.
3264 */
3265 j = msecs_to_jiffies(priv->param_workaround_interval);
305e243e
JK
3266 if (j > DEVICE_POLLER_JIFFIES)
3267 j = DEVICE_POLLER_JIFFIES;
bf164cc0
JK
3268 else if (j <= 0)
3269 j = 1;
3270 update_jiffies = j;
3271
3272 /* Send scan OID. Use of both OIDs is required to get device
3273 * working.
3274 */
35c26c2c 3275 tmp = cpu_to_le32(1);
bf164cc0
JK
3276 rndis_set_oid(usbdev, OID_802_11_BSSID_LIST_SCAN, &tmp,
3277 sizeof(tmp));
3278
3279 len = CONTROL_BUFFER_SIZE;
3280 buf = kmalloc(len, GFP_KERNEL);
3281 if (!buf)
3282 goto end;
3283
3284 rndis_query_oid(usbdev, OID_802_11_BSSID_LIST, buf, &len);
3285 kfree(buf);
3286 }
bf164cc0 3287
305e243e 3288end:
bf164cc0
JK
3289 if (update_jiffies >= HZ)
3290 update_jiffies = round_jiffies_relative(update_jiffies);
3291 else {
3292 j = round_jiffies_relative(update_jiffies);
3293 if (abs(j - update_jiffies) <= 10)
3294 update_jiffies = j;
3295 }
3296
305e243e
JK
3297 queue_delayed_work(priv->workqueue, &priv->dev_poller_work,
3298 update_jiffies);
bf164cc0
JK
3299}
3300
c5c4fe90
JK
3301/*
3302 * driver/device initialization
3303 */
5cb56af2 3304static void rndis_copy_module_params(struct usbnet *usbdev, int device_type)
bf164cc0 3305{
582241a0 3306 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0 3307
5cb56af2
JK
3308 priv->device_type = device_type;
3309
bf164cc0
JK
3310 priv->param_country[0] = modparam_country[0];
3311 priv->param_country[1] = modparam_country[1];
3312 priv->param_country[2] = 0;
3313 priv->param_frameburst = modparam_frameburst;
3314 priv->param_afterburner = modparam_afterburner;
3315 priv->param_power_save = modparam_power_save;
3316 priv->param_power_output = modparam_power_output;
3317 priv->param_roamtrigger = modparam_roamtrigger;
3318 priv->param_roamdelta = modparam_roamdelta;
bf164cc0
JK
3319
3320 priv->param_country[0] = toupper(priv->param_country[0]);
3321 priv->param_country[1] = toupper(priv->param_country[1]);
3322 /* doesn't support EU as country code, use FI instead */
3323 if (!strcmp(priv->param_country, "EU"))
3324 strcpy(priv->param_country, "FI");
3325
3326 if (priv->param_power_save < 0)
3327 priv->param_power_save = 0;
3328 else if (priv->param_power_save > 2)
3329 priv->param_power_save = 2;
3330
a7624837
JK
3331 if (priv->param_power_output < 0)
3332 priv->param_power_output = 0;
3333 else if (priv->param_power_output > 3)
3334 priv->param_power_output = 3;
3335
bf164cc0
JK
3336 if (priv->param_roamtrigger < -80)
3337 priv->param_roamtrigger = -80;
3338 else if (priv->param_roamtrigger > -60)
3339 priv->param_roamtrigger = -60;
3340
3341 if (priv->param_roamdelta < 0)
3342 priv->param_roamdelta = 0;
3343 else if (priv->param_roamdelta > 2)
3344 priv->param_roamdelta = 2;
3345
4d381ffb 3346 if (modparam_workaround_interval < 0)
bf164cc0 3347 priv->param_workaround_interval = 500;
4d381ffb
RK
3348 else
3349 priv->param_workaround_interval = modparam_workaround_interval;
cef6e912
JK
3350}
3351
5cb56af2
JK
3352static int unknown_early_init(struct usbnet *usbdev)
3353{
3354 /* copy module parameters for unknown so that iwconfig reports txpower
3355 * and workaround parameter is copied to private structure correctly.
3356 */
3357 rndis_copy_module_params(usbdev, RNDIS_UNKNOWN);
3358
3359 /* This is unknown device, so do not try set configuration parameters.
3360 */
3361
3362 return 0;
3363}
3364
cef6e912
JK
3365static int bcm4320a_early_init(struct usbnet *usbdev)
3366{
6e850af5
JK
3367 /* copy module parameters for bcm4320a so that iwconfig reports txpower
3368 * and workaround parameter is copied to private structure correctly.
3369 */
5cb56af2 3370 rndis_copy_module_params(usbdev, RNDIS_BCM4320A);
6e850af5 3371
cef6e912
JK
3372 /* bcm4320a doesn't handle configuration parameters well. Try
3373 * set any and you get partially zeroed mac and broken device.
3374 */
3375
3376 return 0;
3377}
3378
3379static int bcm4320b_early_init(struct usbnet *usbdev)
3380{
3381 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
3382 char buf[8];
3383
5cb56af2 3384 rndis_copy_module_params(usbdev, RNDIS_BCM4320B);
cef6e912
JK
3385
3386 /* Early initialization settings, setting these won't have effect
3387 * if called after generic_rndis_bind().
3388 */
bf164cc0 3389
a19d7292
JK
3390 rndis_set_config_parameter_str(usbdev, "Country", priv->param_country);
3391 rndis_set_config_parameter_str(usbdev, "FrameBursting",
bf164cc0 3392 priv->param_frameburst ? "1" : "0");
a19d7292 3393 rndis_set_config_parameter_str(usbdev, "Afterburner",
bf164cc0
JK
3394 priv->param_afterburner ? "1" : "0");
3395 sprintf(buf, "%d", priv->param_power_save);
a19d7292 3396 rndis_set_config_parameter_str(usbdev, "PowerSaveMode", buf);
bf164cc0 3397 sprintf(buf, "%d", priv->param_power_output);
a19d7292 3398 rndis_set_config_parameter_str(usbdev, "PwrOut", buf);
bf164cc0 3399 sprintf(buf, "%d", priv->param_roamtrigger);
a19d7292 3400 rndis_set_config_parameter_str(usbdev, "RoamTrigger", buf);
bf164cc0 3401 sprintf(buf, "%d", priv->param_roamdelta);
a19d7292 3402 rndis_set_config_parameter_str(usbdev, "RoamDelta", buf);
bf164cc0
JK
3403
3404 return 0;
3405}
3406
23d12e2b 3407/* same as rndis_netdev_ops but with local multicast handler */
582241a0 3408static const struct net_device_ops rndis_wlan_netdev_ops = {
23d12e2b
DM
3409 .ndo_open = usbnet_open,
3410 .ndo_stop = usbnet_stop,
3411 .ndo_start_xmit = usbnet_start_xmit,
3412 .ndo_tx_timeout = usbnet_tx_timeout,
3413 .ndo_set_mac_address = eth_mac_addr,
3414 .ndo_validate_addr = eth_validate_addr,
afc4b13d 3415 .ndo_set_rx_mode = rndis_wlan_set_multicast_list,
23d12e2b
DM
3416};
3417
582241a0 3418static int rndis_wlan_bind(struct usbnet *usbdev, struct usb_interface *intf)
bf164cc0 3419{
5c8fa4f7 3420 struct wiphy *wiphy;
582241a0 3421 struct rndis_wlan_private *priv;
bf164cc0
JK
3422 int retval, len;
3423 __le32 tmp;
3424
5c8fa4f7
JL
3425 /* allocate wiphy and rndis private data
3426 * NOTE: We only support a single virtual interface, so wiphy
3427 * and wireless_dev are somewhat synonymous for this device.
3428 */
582241a0 3429 wiphy = wiphy_new(&rndis_config_ops, sizeof(struct rndis_wlan_private));
5c8fa4f7 3430 if (!wiphy)
bf164cc0
JK
3431 return -ENOMEM;
3432
5c8fa4f7
JL
3433 priv = wiphy_priv(wiphy);
3434 usbdev->net->ieee80211_ptr = &priv->wdev;
3435 priv->wdev.wiphy = wiphy;
3436 priv->wdev.iftype = NL80211_IFTYPE_STATION;
3437
bf164cc0 3438 /* These have to be initialized before calling generic_rndis_bind().
582241a0 3439 * Otherwise we'll be in big trouble in rndis_wlan_early_init().
bf164cc0 3440 */
a19d7292 3441 usbdev->driver_priv = priv;
a19d7292 3442 priv->usbdev = usbdev;
bf164cc0
JK
3443
3444 mutex_init(&priv->command_lock);
bf164cc0 3445
8d4d99ae
JK
3446 /* because rndis_command() sleeps we need to use workqueue */
3447 priv->workqueue = create_singlethread_workqueue("rndis_wlan");
582241a0 3448 INIT_WORK(&priv->work, rndis_wlan_worker);
305e243e 3449 INIT_DELAYED_WORK(&priv->dev_poller_work, rndis_device_poller);
8d4d99ae
JK
3450 INIT_DELAYED_WORK(&priv->scan_work, rndis_get_scan_results);
3451
bf164cc0 3452 /* try bind rndis_host */
a19d7292 3453 retval = generic_rndis_bind(usbdev, intf, FLAG_RNDIS_PHYM_WIRELESS);
bf164cc0
JK
3454 if (retval < 0)
3455 goto fail;
3456
3457 /* generic_rndis_bind set packet filter to multicast_all+
3458 * promisc mode which doesn't work well for our devices (device
3459 * picks up rssi to closest station instead of to access point).
3460 *
3461 * rndis_host wants to avoid all OID as much as possible
582241a0 3462 * so do promisc/multicast handling in rndis_wlan.
bf164cc0 3463 */
582241a0 3464 usbdev->net->netdev_ops = &rndis_wlan_netdev_ops;
23d12e2b 3465
bf164cc0 3466 tmp = RNDIS_PACKET_TYPE_DIRECTED | RNDIS_PACKET_TYPE_BROADCAST;
a19d7292 3467 retval = rndis_set_oid(usbdev, OID_GEN_CURRENT_PACKET_FILTER, &tmp,
bf164cc0
JK
3468 sizeof(tmp));
3469
3470 len = sizeof(tmp);
a19d7292
JK
3471 retval = rndis_query_oid(usbdev, OID_802_3_MAXIMUM_LIST_SIZE, &tmp,
3472 &len);
bf164cc0
JK
3473 priv->multicast_size = le32_to_cpu(tmp);
3474 if (retval < 0 || priv->multicast_size < 0)
3475 priv->multicast_size = 0;
3476 if (priv->multicast_size > 0)
a19d7292 3477 usbdev->net->flags |= IFF_MULTICAST;
bf164cc0 3478 else
a19d7292 3479 usbdev->net->flags &= ~IFF_MULTICAST;
bf164cc0 3480
5c8fa4f7
JL
3481 /* fill-out wiphy structure and register w/ cfg80211 */
3482 memcpy(wiphy->perm_addr, usbdev->net->dev_addr, ETH_ALEN);
3483 wiphy->privid = rndis_wiphy_privid;
3484 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION)
3485 | BIT(NL80211_IFTYPE_ADHOC);
3486 wiphy->max_scan_ssids = 1;
3487
4a7f13ee 3488 /* TODO: fill-out band/encr information based on priv->caps */
0308383f 3489 rndis_wlan_get_caps(usbdev, wiphy);
5c8fa4f7
JL
3490
3491 memcpy(priv->channels, rndis_channels, sizeof(rndis_channels));
3492 memcpy(priv->rates, rndis_rates, sizeof(rndis_rates));
3493 priv->band.channels = priv->channels;
3494 priv->band.n_channels = ARRAY_SIZE(rndis_channels);
3495 priv->band.bitrates = priv->rates;
3496 priv->band.n_bitrates = ARRAY_SIZE(rndis_rates);
3497 wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band;
4d2a369e 3498 wiphy->signal_type = CFG80211_SIGNAL_TYPE_UNSPEC;
5c8fa4f7 3499
4a7f13ee
JK
3500 memcpy(priv->cipher_suites, rndis_cipher_suites,
3501 sizeof(rndis_cipher_suites));
3502 wiphy->cipher_suites = priv->cipher_suites;
3503 wiphy->n_cipher_suites = ARRAY_SIZE(rndis_cipher_suites);
3504
5c8fa4f7
JL
3505 set_wiphy_dev(wiphy, &usbdev->udev->dev);
3506
3507 if (wiphy_register(wiphy)) {
eb1a685e
JK
3508 retval = -ENODEV;
3509 goto fail;
5c8fa4f7
JL
3510 }
3511
a19d7292 3512 set_default_iw_params(usbdev);
bf164cc0 3513
40d70dd1
JK
3514 priv->power_mode = -1;
3515
d75ec2b7
JK
3516 /* set default rts/frag */
3517 rndis_set_wiphy_params(wiphy,
3518 WIPHY_PARAM_FRAG_THRESHOLD | WIPHY_PARAM_RTS_THRESHOLD);
3519
21b27bec
JK
3520 /* turn radio off on init */
3521 priv->radio_on = false;
3522 disassociate(usbdev, false);
a19d7292 3523 netif_carrier_off(usbdev->net);
bf164cc0 3524
bf164cc0
JK
3525 return 0;
3526
3527fail:
305e243e 3528 cancel_delayed_work_sync(&priv->dev_poller_work);
8d4d99ae
JK
3529 cancel_delayed_work_sync(&priv->scan_work);
3530 cancel_work_sync(&priv->work);
3531 flush_workqueue(priv->workqueue);
3532 destroy_workqueue(priv->workqueue);
3533
eb1a685e 3534 wiphy_free(wiphy);
bf164cc0
JK
3535 return retval;
3536}
3537
582241a0 3538static void rndis_wlan_unbind(struct usbnet *usbdev, struct usb_interface *intf)
bf164cc0 3539{
582241a0 3540 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0
JK
3541
3542 /* turn radio off */
051ae0bf 3543 disassociate(usbdev, false);
bf164cc0 3544
305e243e 3545 cancel_delayed_work_sync(&priv->dev_poller_work);
71a7b26d 3546 cancel_delayed_work_sync(&priv->scan_work);
bf164cc0
JK
3547 cancel_work_sync(&priv->work);
3548 flush_workqueue(priv->workqueue);
3549 destroy_workqueue(priv->workqueue);
3550
a19d7292 3551 rndis_unbind(usbdev, intf);
5c8fa4f7
JL
3552
3553 wiphy_unregister(priv->wdev.wiphy);
3554 wiphy_free(priv->wdev.wiphy);
bf164cc0
JK
3555}
3556
582241a0 3557static int rndis_wlan_reset(struct usbnet *usbdev)
bf164cc0 3558{
110736de 3559 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
7eaab708 3560 int retval;
110736de 3561
60b86755 3562 netdev_dbg(usbdev->net, "%s()\n", __func__);
110736de 3563
7eaab708
JK
3564 retval = rndis_reset(usbdev);
3565 if (retval)
60b86755 3566 netdev_warn(usbdev->net, "rndis_reset failed: %d\n", retval);
7eaab708 3567
e5a11a82
JK
3568 /* rndis_reset cleared multicast list, so restore here.
3569 (set_multicast_list() also turns on current packet filter) */
7eaab708
JK
3570 set_multicast_list(usbdev);
3571
305e243e
JK
3572 queue_delayed_work(priv->workqueue, &priv->dev_poller_work,
3573 round_jiffies_relative(DEVICE_POLLER_JIFFIES));
110736de 3574
a19d7292 3575 return deauthenticate(usbdev);
bf164cc0
JK
3576}
3577
222ec50a
JK
3578static int rndis_wlan_stop(struct usbnet *usbdev)
3579{
110736de
JK
3580 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
3581 int retval;
e5a11a82 3582 __le32 filter;
110736de 3583
60b86755 3584 netdev_dbg(usbdev->net, "%s()\n", __func__);
110736de 3585
051ae0bf 3586 retval = disassociate(usbdev, false);
110736de
JK
3587
3588 priv->work_pending = 0;
305e243e 3589 cancel_delayed_work_sync(&priv->dev_poller_work);
110736de
JK
3590 cancel_delayed_work_sync(&priv->scan_work);
3591 cancel_work_sync(&priv->work);
3592 flush_workqueue(priv->workqueue);
3593
005ba2f1
JK
3594 if (priv->scan_request) {
3595 cfg80211_scan_done(priv->scan_request, true);
3596 priv->scan_request = NULL;
3597 }
3598
e5a11a82
JK
3599 /* Set current packet filter zero to block receiving data packets from
3600 device. */
3601 filter = 0;
3602 rndis_set_oid(usbdev, OID_GEN_CURRENT_PACKET_FILTER, &filter,
3603 sizeof(filter));
3604
110736de 3605 return retval;
222ec50a
JK
3606}
3607
bf164cc0
JK
3608static const struct driver_info bcm4320b_info = {
3609 .description = "Wireless RNDIS device, BCM4320b based",
1487cd5e
JK
3610 .flags = FLAG_WLAN | FLAG_FRAMING_RN | FLAG_NO_SETINT |
3611 FLAG_AVOID_UNLINK_URBS,
582241a0
JK
3612 .bind = rndis_wlan_bind,
3613 .unbind = rndis_wlan_unbind,
bf164cc0
JK
3614 .status = rndis_status,
3615 .rx_fixup = rndis_rx_fixup,
3616 .tx_fixup = rndis_tx_fixup,
582241a0 3617 .reset = rndis_wlan_reset,
222ec50a 3618 .stop = rndis_wlan_stop,
59620e9f 3619 .early_init = bcm4320b_early_init,
2a4901bc 3620 .indication = rndis_wlan_indication,
bf164cc0
JK
3621};
3622
3623static const struct driver_info bcm4320a_info = {
3624 .description = "Wireless RNDIS device, BCM4320a based",
1487cd5e
JK
3625 .flags = FLAG_WLAN | FLAG_FRAMING_RN | FLAG_NO_SETINT |
3626 FLAG_AVOID_UNLINK_URBS,
582241a0
JK
3627 .bind = rndis_wlan_bind,
3628 .unbind = rndis_wlan_unbind,
bf164cc0
JK
3629 .status = rndis_status,
3630 .rx_fixup = rndis_rx_fixup,
3631 .tx_fixup = rndis_tx_fixup,
582241a0 3632 .reset = rndis_wlan_reset,
222ec50a 3633 .stop = rndis_wlan_stop,
59620e9f 3634 .early_init = bcm4320a_early_init,
2a4901bc 3635 .indication = rndis_wlan_indication,
bf164cc0
JK
3636};
3637
582241a0 3638static const struct driver_info rndis_wlan_info = {
bf164cc0 3639 .description = "Wireless RNDIS device",
1487cd5e
JK
3640 .flags = FLAG_WLAN | FLAG_FRAMING_RN | FLAG_NO_SETINT |
3641 FLAG_AVOID_UNLINK_URBS,
582241a0
JK
3642 .bind = rndis_wlan_bind,
3643 .unbind = rndis_wlan_unbind,
bf164cc0
JK
3644 .status = rndis_status,
3645 .rx_fixup = rndis_rx_fixup,
3646 .tx_fixup = rndis_tx_fixup,
582241a0 3647 .reset = rndis_wlan_reset,
222ec50a 3648 .stop = rndis_wlan_stop,
5cb56af2 3649 .early_init = unknown_early_init,
2a4901bc 3650 .indication = rndis_wlan_indication,
bf164cc0
JK
3651};
3652
3653/*-------------------------------------------------------------------------*/
3654
3655static const struct usb_device_id products [] = {
3656#define RNDIS_MASTER_INTERFACE \
3657 .bInterfaceClass = USB_CLASS_COMM, \
3658 .bInterfaceSubClass = 2 /* ACM */, \
3659 .bInterfaceProtocol = 0x0ff
3660
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.
3663 */
3664{
3665 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3666 | USB_DEVICE_ID_MATCH_DEVICE,
3667 .idVendor = 0x0411,
3668 .idProduct = 0x00bc, /* Buffalo WLI-U2-KG125S */
3669 RNDIS_MASTER_INTERFACE,
3670 .driver_info = (unsigned long) &bcm4320b_info,
3671}, {
3672 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3673 | USB_DEVICE_ID_MATCH_DEVICE,
3674 .idVendor = 0x0baf,
3675 .idProduct = 0x011b, /* U.S. Robotics USR5421 */
3676 RNDIS_MASTER_INTERFACE,
3677 .driver_info = (unsigned long) &bcm4320b_info,
3678}, {
3679 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3680 | USB_DEVICE_ID_MATCH_DEVICE,
3681 .idVendor = 0x050d,
3682 .idProduct = 0x011b, /* Belkin F5D7051 */
3683 RNDIS_MASTER_INTERFACE,
3684 .driver_info = (unsigned long) &bcm4320b_info,
3685}, {
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,
3692}, {
3693 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3694 | USB_DEVICE_ID_MATCH_DEVICE,
3695 .idVendor = 0x13b1,
3696 .idProduct = 0x0014, /* Linksys WUSB54GSv2 */
3697 RNDIS_MASTER_INTERFACE,
3698 .driver_info = (unsigned long) &bcm4320b_info,
3699}, {
3700 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3701 | USB_DEVICE_ID_MATCH_DEVICE,
3702 .idVendor = 0x13b1,
3703 .idProduct = 0x0026, /* Linksys WUSB54GSC */
3704 RNDIS_MASTER_INTERFACE,
3705 .driver_info = (unsigned long) &bcm4320b_info,
3706}, {
3707 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3708 | USB_DEVICE_ID_MATCH_DEVICE,
3709 .idVendor = 0x0b05,
3710 .idProduct = 0x1717, /* Asus WL169gE */
3711 RNDIS_MASTER_INTERFACE,
3712 .driver_info = (unsigned long) &bcm4320b_info,
3713}, {
3714 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3715 | USB_DEVICE_ID_MATCH_DEVICE,
3716 .idVendor = 0x0a5c,
3717 .idProduct = 0xd11b, /* Eminent EM4045 */
3718 RNDIS_MASTER_INTERFACE,
3719 .driver_info = (unsigned long) &bcm4320b_info,
3720}, {
3721 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3722 | USB_DEVICE_ID_MATCH_DEVICE,
3723 .idVendor = 0x1690,
3724 .idProduct = 0x0715, /* BT Voyager 1055 */
3725 RNDIS_MASTER_INTERFACE,
3726 .driver_info = (unsigned long) &bcm4320b_info,
3727},
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.
3731 */
3732{
3733 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3734 | USB_DEVICE_ID_MATCH_DEVICE,
3735 .idVendor = 0x13b1,
3736 .idProduct = 0x000e, /* Linksys WUSB54GSv1 */
3737 RNDIS_MASTER_INTERFACE,
3738 .driver_info = (unsigned long) &bcm4320a_info,
3739}, {
3740 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3741 | USB_DEVICE_ID_MATCH_DEVICE,
3742 .idVendor = 0x0baf,
3743 .idProduct = 0x0111, /* U.S. Robotics USR5420 */
3744 RNDIS_MASTER_INTERFACE,
3745 .driver_info = (unsigned long) &bcm4320a_info,
3746}, {
3747 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3748 | USB_DEVICE_ID_MATCH_DEVICE,
3749 .idVendor = 0x0411,
3750 .idProduct = 0x004b, /* BUFFALO WLI-USB-G54 */
3751 RNDIS_MASTER_INTERFACE,
3752 .driver_info = (unsigned long) &bcm4320a_info,
3753},
3754/* Generic Wireless RNDIS devices that we don't have exact
3755 * idVendor/idProduct/chip yet.
3756 */
3757{
3758 /* RNDIS is MSFT's un-official variant of CDC ACM */
3759 USB_INTERFACE_INFO(USB_CLASS_COMM, 2 /* ACM */, 0x0ff),
582241a0 3760 .driver_info = (unsigned long) &rndis_wlan_info,
bf164cc0
JK
3761}, {
3762 /* "ActiveSync" is an undocumented variant of RNDIS, used in WM5 */
3763 USB_INTERFACE_INFO(USB_CLASS_MISC, 1, 1),
582241a0 3764 .driver_info = (unsigned long) &rndis_wlan_info,
bf164cc0
JK
3765},
3766 { }, // END
3767};
3768MODULE_DEVICE_TABLE(usb, products);
3769
3770static 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};
3778
d632eb1b 3779module_usb_driver(rndis_wlan_driver);
bf164cc0
JK
3780
3781MODULE_AUTHOR("Bjorge Dijkstra");
3782MODULE_AUTHOR("Jussi Kivilinna");
3783MODULE_DESCRIPTION("Driver for RNDIS based USB Wireless adapters");
3784MODULE_LICENSE("GPL");
3785