]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/wireless/rndis_wlan.c
{nl,cfg,mac}80211: Implement RSSI threshold for mesh peering
[mirror_ubuntu-artful-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];
5c52323e
JK
2758 int resp_ie_len, req_ie_len;
2759 u8 *req_ie, *resp_ie;
4364623c 2760 int ret, offset;
5c52323e 2761 bool roamed = false;
b5257c95 2762 bool match_bss;
bf164cc0 2763
5c52323e
JK
2764 if (priv->infra_mode == NDIS_80211_INFRA_INFRA && priv->connected) {
2765 /* received media connect indication while connected, either
2766 * device reassociated with same AP or roamed to new. */
2767 roamed = true;
2768 }
0848e6c6 2769
5c52323e
JK
2770 req_ie_len = 0;
2771 resp_ie_len = 0;
2772 req_ie = NULL;
2773 resp_ie = NULL;
2774
2775 if (priv->infra_mode == NDIS_80211_INFRA_INFRA) {
3d1ca47e
JK
2776 info = kzalloc(CONTROL_BUFFER_SIZE, GFP_KERNEL);
2777 if (!info) {
2778 /* No memory? Try resume work later */
2779 set_bit(WORK_LINK_UP, &priv->work_pending);
2780 queue_work(priv->workqueue, &priv->work);
2781 return;
2782 }
5c52323e 2783
3d1ca47e
JK
2784 /* Get association info IEs from device. */
2785 ret = get_association_info(usbdev, info, CONTROL_BUFFER_SIZE);
5c52323e
JK
2786 if (!ret) {
2787 req_ie_len = le32_to_cpu(info->req_ie_length);
2788 if (req_ie_len > 0) {
2789 offset = le32_to_cpu(info->offset_req_ies);
3d1ca47e
JK
2790
2791 if (offset > CONTROL_BUFFER_SIZE)
2792 offset = CONTROL_BUFFER_SIZE;
2793
5c52323e 2794 req_ie = (u8 *)info + offset;
3d1ca47e
JK
2795
2796 if (offset + req_ie_len > CONTROL_BUFFER_SIZE)
2797 req_ie_len =
2798 CONTROL_BUFFER_SIZE - offset;
5c52323e
JK
2799 }
2800
2801 resp_ie_len = le32_to_cpu(info->resp_ie_length);
2802 if (resp_ie_len > 0) {
2803 offset = le32_to_cpu(info->offset_resp_ies);
3d1ca47e
JK
2804
2805 if (offset > CONTROL_BUFFER_SIZE)
2806 offset = CONTROL_BUFFER_SIZE;
2807
5c52323e 2808 resp_ie = (u8 *)info + offset;
3d1ca47e
JK
2809
2810 if (offset + resp_ie_len > CONTROL_BUFFER_SIZE)
2811 resp_ie_len =
2812 CONTROL_BUFFER_SIZE - offset;
5c52323e 2813 }
b5257c95
JK
2814 } else {
2815 /* Since rndis_wlan_craft_connected_bss() might use info
2816 * later and expects info to contain valid data if
2817 * non-null, free info and set NULL here.
2818 */
2819 kfree(info);
2820 info = NULL;
4364623c 2821 }
5c52323e
JK
2822 } else if (WARN_ON(priv->infra_mode != NDIS_80211_INFRA_ADHOC))
2823 return;
4364623c 2824
5c52323e
JK
2825 ret = get_bssid(usbdev, bssid);
2826 if (ret < 0)
2827 memset(bssid, 0, sizeof(bssid));
7834ddbc 2828
60b86755
JP
2829 netdev_dbg(usbdev->net, "link up work: [%pM]%s\n",
2830 bssid, roamed ? " roamed" : "");
bf164cc0 2831
b5257c95 2832 /* Internal bss list in device should contain at least the currently
5c52323e
JK
2833 * connected bss and we can get it to cfg80211 with
2834 * rndis_check_bssid_list().
b5257c95
JK
2835 *
2836 * NDIS spec says: "If the device is associated, but the associated
2837 * BSSID is not in its BSSID scan list, then the driver must add an
2838 * entry for the BSSID at the end of the data that it returns in
2839 * response to query of OID_802_11_BSSID_LIST."
2840 *
2841 * NOTE: Seems to be true for BCM4320b variant, but not BCM4320a.
5c52323e 2842 */
b5257c95
JK
2843 match_bss = false;
2844 rndis_check_bssid_list(usbdev, bssid, &match_bss);
2845
2846 if (!is_zero_ether_addr(bssid) && !match_bss) {
2847 /* Couldn't get bss from device, we need to manually craft bss
2848 * for cfg80211.
2849 */
2850 rndis_wlan_craft_connected_bss(usbdev, bssid, info);
2851 }
5c52323e
JK
2852
2853 if (priv->infra_mode == NDIS_80211_INFRA_INFRA) {
2854 if (!roamed)
2855 cfg80211_connect_result(usbdev->net, bssid, req_ie,
2856 req_ie_len, resp_ie,
2857 resp_ie_len, 0, GFP_KERNEL);
2858 else
6f104a08
JK
2859 cfg80211_roamed(usbdev->net,
2860 get_current_channel(usbdev, NULL),
2861 bssid, req_ie, req_ie_len,
5c52323e
JK
2862 resp_ie, resp_ie_len, GFP_KERNEL);
2863 } else if (priv->infra_mode == NDIS_80211_INFRA_ADHOC)
2864 cfg80211_ibss_joined(usbdev->net, bssid, GFP_KERNEL);
2865
3d1ca47e
JK
2866 if (info != NULL)
2867 kfree(info);
2868
5c52323e 2869 priv->connected = true;
8b89a288 2870 memcpy(priv->bssid, bssid, ETH_ALEN);
6010ce07 2871
0848e6c6 2872 usbnet_resume_rx(usbdev);
5c52323e 2873 netif_carrier_on(usbdev->net);
0848e6c6
JK
2874}
2875
2876static void rndis_wlan_do_link_down_work(struct usbnet *usbdev)
2877{
b6411fc2 2878 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
0848e6c6 2879
b6411fc2
JK
2880 if (priv->connected) {
2881 priv->connected = false;
2882 memset(priv->bssid, 0, ETH_ALEN);
2883
2884 deauthenticate(usbdev);
0848e6c6 2885
b6411fc2
JK
2886 cfg80211_disconnected(usbdev->net, 0, NULL, 0, GFP_KERNEL);
2887 }
2888
2889 netif_carrier_off(usbdev->net);
0848e6c6
JK
2890}
2891
2892static void rndis_wlan_worker(struct work_struct *work)
2893{
2894 struct rndis_wlan_private *priv =
2895 container_of(work, struct rndis_wlan_private, work);
2896 struct usbnet *usbdev = priv->usbdev;
2897
2898 if (test_and_clear_bit(WORK_LINK_UP, &priv->work_pending))
2899 rndis_wlan_do_link_up_work(usbdev);
2900
2901 if (test_and_clear_bit(WORK_LINK_DOWN, &priv->work_pending))
2902 rndis_wlan_do_link_down_work(usbdev);
2903
bf164cc0
JK
2904 if (test_and_clear_bit(WORK_SET_MULTICAST_LIST, &priv->work_pending))
2905 set_multicast_list(usbdev);
2906}
2907
582241a0 2908static void rndis_wlan_set_multicast_list(struct net_device *dev)
bf164cc0 2909{
524ad0a7 2910 struct usbnet *usbdev = netdev_priv(dev);
582241a0 2911 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0 2912
a67edb9e
JK
2913 if (test_bit(WORK_SET_MULTICAST_LIST, &priv->work_pending))
2914 return;
2915
bf164cc0
JK
2916 set_bit(WORK_SET_MULTICAST_LIST, &priv->work_pending);
2917 queue_work(priv->workqueue, &priv->work);
2918}
2919
030645ac
JK
2920static void rndis_wlan_auth_indication(struct usbnet *usbdev,
2921 struct ndis_80211_status_indication *indication,
2922 int len)
2923{
2924 u8 *buf;
2925 const char *type;
a0f9ce2a 2926 int flags, buflen, key_id;
030645ac
JK
2927 bool pairwise_error, group_error;
2928 struct ndis_80211_auth_request *auth_req;
a0f9ce2a 2929 enum nl80211_key_type key_type;
030645ac
JK
2930
2931 /* must have at least one array entry */
2932 if (len < offsetof(struct ndis_80211_status_indication, u) +
2933 sizeof(struct ndis_80211_auth_request)) {
60b86755
JP
2934 netdev_info(usbdev->net, "authentication indication: too short message (%i)\n",
2935 len);
030645ac
JK
2936 return;
2937 }
2938
2939 buf = (void *)&indication->u.auth_request[0];
2940 buflen = len - offsetof(struct ndis_80211_status_indication, u);
2941
2942 while (buflen >= sizeof(*auth_req)) {
2943 auth_req = (void *)buf;
2944 type = "unknown";
2945 flags = le32_to_cpu(auth_req->flags);
2946 pairwise_error = false;
2947 group_error = false;
2948
2949 if (flags & 0x1)
2950 type = "reauth request";
2951 if (flags & 0x2)
2952 type = "key update request";
2953 if (flags & 0x6) {
2954 pairwise_error = true;
2955 type = "pairwise_error";
2956 }
2957 if (flags & 0xe) {
2958 group_error = true;
2959 type = "group_error";
2960 }
2961
60b86755
JP
2962 netdev_info(usbdev->net, "authentication indication: %s (0x%08x)\n",
2963 type, le32_to_cpu(auth_req->flags));
030645ac 2964
a0f9ce2a
JK
2965 if (pairwise_error) {
2966 key_type = NL80211_KEYTYPE_PAIRWISE;
2967 key_id = -1;
030645ac 2968
a0f9ce2a
JK
2969 cfg80211_michael_mic_failure(usbdev->net,
2970 auth_req->bssid,
2971 key_type, key_id, NULL,
2972 GFP_KERNEL);
2973 }
030645ac 2974
a0f9ce2a
JK
2975 if (group_error) {
2976 key_type = NL80211_KEYTYPE_GROUP;
2977 key_id = -1;
030645ac 2978
a0f9ce2a
JK
2979 cfg80211_michael_mic_failure(usbdev->net,
2980 auth_req->bssid,
2981 key_type, key_id, NULL,
2982 GFP_KERNEL);
030645ac
JK
2983 }
2984
2985 buflen -= le32_to_cpu(auth_req->length);
2986 buf += le32_to_cpu(auth_req->length);
2987 }
2988}
2989
2990static void rndis_wlan_pmkid_cand_list_indication(struct usbnet *usbdev,
2991 struct ndis_80211_status_indication *indication,
2992 int len)
2993{
2994 struct ndis_80211_pmkid_cand_list *cand_list;
2995 int list_len, expected_len, i;
2996
2997 if (len < offsetof(struct ndis_80211_status_indication, u) +
2998 sizeof(struct ndis_80211_pmkid_cand_list)) {
60b86755
JP
2999 netdev_info(usbdev->net, "pmkid candidate list indication: too short message (%i)\n",
3000 len);
030645ac
JK
3001 return;
3002 }
3003
3004 list_len = le32_to_cpu(indication->u.cand_list.num_candidates) *
3005 sizeof(struct ndis_80211_pmkid_candidate);
3006 expected_len = sizeof(struct ndis_80211_pmkid_cand_list) + list_len +
3007 offsetof(struct ndis_80211_status_indication, u);
3008
3009 if (len < expected_len) {
60b86755
JP
3010 netdev_info(usbdev->net, "pmkid candidate list indication: list larger than buffer (%i < %i)\n",
3011 len, expected_len);
030645ac
JK
3012 return;
3013 }
3014
3015 cand_list = &indication->u.cand_list;
3016
60b86755
JP
3017 netdev_info(usbdev->net, "pmkid candidate list indication: version %i, candidates %i\n",
3018 le32_to_cpu(cand_list->version),
3019 le32_to_cpu(cand_list->num_candidates));
030645ac
JK
3020
3021 if (le32_to_cpu(cand_list->version) != 1)
3022 return;
3023
3024 for (i = 0; i < le32_to_cpu(cand_list->num_candidates); i++) {
030645ac
JK
3025 struct ndis_80211_pmkid_candidate *cand =
3026 &cand_list->candidate_list[i];
1c706875 3027 bool preauth = !!(cand->flags & NDIS_80211_PMKID_CAND_PREAUTH);
030645ac 3028
1c706875
JK
3029 netdev_dbg(usbdev->net, "cand[%i]: flags: 0x%08x, preauth: %d, bssid: %pM\n",
3030 i, le32_to_cpu(cand->flags), preauth, cand->bssid);
21ec2d8d 3031
1c706875
JK
3032 cfg80211_pmksa_candidate_notify(usbdev->net, i, cand->bssid,
3033 preauth, GFP_ATOMIC);
030645ac
JK
3034 }
3035}
3036
3037static void rndis_wlan_media_specific_indication(struct usbnet *usbdev,
3038 struct rndis_indicate *msg, int buflen)
3039{
3040 struct ndis_80211_status_indication *indication;
3041 int len, offset;
3042
3043 offset = offsetof(struct rndis_indicate, status) +
3044 le32_to_cpu(msg->offset);
3045 len = le32_to_cpu(msg->length);
3046
3047 if (len < 8) {
60b86755
JP
3048 netdev_info(usbdev->net, "media specific indication, ignore too short message (%i < 8)\n",
3049 len);
030645ac
JK
3050 return;
3051 }
3052
3053 if (offset + len > buflen) {
60b86755
JP
3054 netdev_info(usbdev->net, "media specific indication, too large to fit to buffer (%i > %i)\n",
3055 offset + len, buflen);
030645ac
JK
3056 return;
3057 }
3058
3059 indication = (void *)((u8 *)msg + offset);
3060
3061 switch (le32_to_cpu(indication->status_type)) {
3062 case NDIS_80211_STATUSTYPE_RADIOSTATE:
60b86755
JP
3063 netdev_info(usbdev->net, "radio state indication: %i\n",
3064 le32_to_cpu(indication->u.radio_status));
030645ac
JK
3065 return;
3066
3067 case NDIS_80211_STATUSTYPE_MEDIASTREAMMODE:
60b86755
JP
3068 netdev_info(usbdev->net, "media stream mode indication: %i\n",
3069 le32_to_cpu(indication->u.media_stream_mode));
030645ac
JK
3070 return;
3071
3072 case NDIS_80211_STATUSTYPE_AUTHENTICATION:
3073 rndis_wlan_auth_indication(usbdev, indication, len);
3074 return;
3075
3076 case NDIS_80211_STATUSTYPE_PMKID_CANDIDATELIST:
3077 rndis_wlan_pmkid_cand_list_indication(usbdev, indication, len);
3078 return;
3079
3080 default:
60b86755
JP
3081 netdev_info(usbdev->net, "media specific indication: unknown status type 0x%08x\n",
3082 le32_to_cpu(indication->status_type));
030645ac
JK
3083 }
3084}
3085
2a4901bc 3086static void rndis_wlan_indication(struct usbnet *usbdev, void *ind, int buflen)
bf164cc0 3087{
582241a0 3088 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
2a4901bc 3089 struct rndis_indicate *msg = ind;
bf164cc0 3090
2a4901bc
JK
3091 switch (msg->status) {
3092 case RNDIS_STATUS_MEDIA_CONNECT:
5f81ff5a
JK
3093 if (priv->current_command_oid == OID_802_11_ADD_KEY) {
3094 /* OID_802_11_ADD_KEY causes sometimes extra
3095 * "media connect" indications which confuses driver
3096 * and userspace to think that device is
3097 * roaming/reassociating when it isn't.
3098 */
60b86755 3099 netdev_dbg(usbdev->net, "ignored OID_802_11_ADD_KEY triggered 'media connect'\n");
5f81ff5a
JK
3100 return;
3101 }
3102
7834ddbc
JK
3103 usbnet_pause_rx(usbdev);
3104
60b86755 3105 netdev_info(usbdev->net, "media connect\n");
2a4901bc 3106
030645ac 3107 /* queue work to avoid recursive calls into rndis_command */
2a4901bc
JK
3108 set_bit(WORK_LINK_UP, &priv->work_pending);
3109 queue_work(priv->workqueue, &priv->work);
3110 break;
3111
3112 case RNDIS_STATUS_MEDIA_DISCONNECT:
60b86755 3113 netdev_info(usbdev->net, "media disconnect\n");
2a4901bc 3114
030645ac 3115 /* queue work to avoid recursive calls into rndis_command */
2a4901bc
JK
3116 set_bit(WORK_LINK_DOWN, &priv->work_pending);
3117 queue_work(priv->workqueue, &priv->work);
3118 break;
3119
030645ac
JK
3120 case RNDIS_STATUS_MEDIA_SPECIFIC_INDICATION:
3121 rndis_wlan_media_specific_indication(usbdev, msg, buflen);
3122 break;
3123
2a4901bc 3124 default:
60b86755
JP
3125 netdev_info(usbdev->net, "indication: 0x%08x\n",
3126 le32_to_cpu(msg->status));
2a4901bc
JK
3127 break;
3128 }
bf164cc0
JK
3129}
3130
0308383f 3131static int rndis_wlan_get_caps(struct usbnet *usbdev, struct wiphy *wiphy)
bf164cc0
JK
3132{
3133 struct {
3134 __le32 num_items;
3135 __le32 items[8];
3136 } networks_supported;
0308383f
JK
3137 struct ndis_80211_capability *caps;
3138 u8 caps_buf[sizeof(*caps) + sizeof(caps->auth_encr_pair) * 16];
bf164cc0 3139 int len, retval, i, n;
582241a0 3140 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0 3141
bf164cc0
JK
3142 /* determine supported modes */
3143 len = sizeof(networks_supported);
a19d7292 3144 retval = rndis_query_oid(usbdev, OID_802_11_NETWORK_TYPES_SUPPORTED,
bf164cc0
JK
3145 &networks_supported, &len);
3146 if (retval >= 0) {
3147 n = le32_to_cpu(networks_supported.num_items);
3148 if (n > 8)
3149 n = 8;
3150 for (i = 0; i < n; i++) {
3151 switch (le32_to_cpu(networks_supported.items[i])) {
aa18294a
JK
3152 case NDIS_80211_TYPE_FREQ_HOP:
3153 case NDIS_80211_TYPE_DIRECT_SEQ:
bf164cc0
JK
3154 priv->caps |= CAP_MODE_80211B;
3155 break;
aa18294a 3156 case NDIS_80211_TYPE_OFDM_A:
bf164cc0
JK
3157 priv->caps |= CAP_MODE_80211A;
3158 break;
aa18294a 3159 case NDIS_80211_TYPE_OFDM_G:
bf164cc0
JK
3160 priv->caps |= CAP_MODE_80211G;
3161 break;
3162 }
3163 }
bf164cc0
JK
3164 }
3165
0308383f
JK
3166 /* get device 802.11 capabilities, number of PMKIDs */
3167 caps = (struct ndis_80211_capability *)caps_buf;
3168 len = sizeof(caps_buf);
3169 retval = rndis_query_oid(usbdev, OID_802_11_CAPABILITY, caps, &len);
3170 if (retval >= 0) {
3171 netdev_dbg(usbdev->net, "OID_802_11_CAPABILITY -> len %d, "
3172 "ver %d, pmkids %d, auth-encr-pairs %d\n",
3173 le32_to_cpu(caps->length),
3174 le32_to_cpu(caps->version),
3175 le32_to_cpu(caps->num_pmkids),
3176 le32_to_cpu(caps->num_auth_encr_pair));
3177 wiphy->max_num_pmkids = le32_to_cpu(caps->num_pmkids);
3178 } else
3179 wiphy->max_num_pmkids = 0;
3180
bf164cc0
JK
3181 return retval;
3182}
3183
49b35bd3
JK
3184static void rndis_do_cqm(struct usbnet *usbdev, s32 rssi)
3185{
3186 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
3187 enum nl80211_cqm_rssi_threshold_event event;
3188 int thold, hyst, last_event;
3189
3190 if (priv->cqm_rssi_thold >= 0 || rssi >= 0)
3191 return;
3192 if (priv->infra_mode != NDIS_80211_INFRA_INFRA)
3193 return;
3194
3195 last_event = priv->last_cqm_event_rssi;
3196 thold = priv->cqm_rssi_thold;
3197 hyst = priv->cqm_rssi_hyst;
3198
3199 if (rssi < thold && (last_event == 0 || rssi < last_event - hyst))
3200 event = NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW;
3201 else if (rssi > thold && (last_event == 0 || rssi > last_event + hyst))
3202 event = NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH;
3203 else
3204 return;
3205
3206 priv->last_cqm_event_rssi = rssi;
3207 cfg80211_cqm_rssi_notify(usbdev->net, event, GFP_KERNEL);
3208}
3209
305e243e
JK
3210#define DEVICE_POLLER_JIFFIES (HZ)
3211static void rndis_device_poller(struct work_struct *work)
bf164cc0 3212{
582241a0 3213 struct rndis_wlan_private *priv =
305e243e
JK
3214 container_of(work, struct rndis_wlan_private,
3215 dev_poller_work.work);
bf164cc0 3216 struct usbnet *usbdev = priv->usbdev;
bf164cc0 3217 __le32 rssi, tmp;
a97b1f3d 3218 int len, ret, j;
305e243e 3219 int update_jiffies = DEVICE_POLLER_JIFFIES;
bf164cc0
JK
3220 void *buf;
3221
8b89a288
JK
3222 /* Only check/do workaround when connected. Calling is_associated()
3223 * also polls device with rndis_command() and catches for media link
3224 * indications.
3225 */
5cb56af2
JK
3226 if (!is_associated(usbdev)) {
3227 /* Workaround bad scanning in BCM4320a devices with active
3228 * background scanning when not associated.
3229 */
3230 if (priv->device_type == RNDIS_BCM4320A && priv->radio_on &&
3231 !priv->scan_request) {
3232 /* Get previous scan results */
3233 rndis_check_bssid_list(usbdev, NULL, NULL);
3234
3235 /* Initiate new scan */
3236 rndis_start_bssid_list_scan(usbdev);
3237 }
3238
bf164cc0 3239 goto end;
5cb56af2 3240 }
bf164cc0
JK
3241
3242 len = sizeof(rssi);
3243 ret = rndis_query_oid(usbdev, OID_802_11_RSSI, &rssi, &len);
49b35bd3 3244 if (ret == 0) {
8b89a288 3245 priv->last_qual = level_to_qual(le32_to_cpu(rssi));
49b35bd3
JK
3246 rndis_do_cqm(usbdev, le32_to_cpu(rssi));
3247 }
bf164cc0 3248
60b86755
JP
3249 netdev_dbg(usbdev->net, "dev-poller: OID_802_11_RSSI -> %d, rssi:%d, qual: %d\n",
3250 ret, le32_to_cpu(rssi), level_to_qual(le32_to_cpu(rssi)));
bf164cc0 3251
a97b1f3d
JK
3252 /* Workaround transfer stalls on poor quality links.
3253 * TODO: find right way to fix these stalls (as stalls do not happen
3254 * with ndiswrapper/windows driver). */
77593ae2 3255 if (priv->param_workaround_interval > 0 && priv->last_qual <= 25) {
bf164cc0
JK
3256 /* Decrease stats worker interval to catch stalls.
3257 * faster. Faster than 400-500ms causes packet loss,
3258 * Slower doesn't catch stalls fast enough.
3259 */
3260 j = msecs_to_jiffies(priv->param_workaround_interval);
305e243e
JK
3261 if (j > DEVICE_POLLER_JIFFIES)
3262 j = DEVICE_POLLER_JIFFIES;
bf164cc0
JK
3263 else if (j <= 0)
3264 j = 1;
3265 update_jiffies = j;
3266
3267 /* Send scan OID. Use of both OIDs is required to get device
3268 * working.
3269 */
35c26c2c 3270 tmp = cpu_to_le32(1);
bf164cc0
JK
3271 rndis_set_oid(usbdev, OID_802_11_BSSID_LIST_SCAN, &tmp,
3272 sizeof(tmp));
3273
3274 len = CONTROL_BUFFER_SIZE;
3275 buf = kmalloc(len, GFP_KERNEL);
3276 if (!buf)
3277 goto end;
3278
3279 rndis_query_oid(usbdev, OID_802_11_BSSID_LIST, buf, &len);
3280 kfree(buf);
3281 }
bf164cc0 3282
305e243e 3283end:
bf164cc0
JK
3284 if (update_jiffies >= HZ)
3285 update_jiffies = round_jiffies_relative(update_jiffies);
3286 else {
3287 j = round_jiffies_relative(update_jiffies);
3288 if (abs(j - update_jiffies) <= 10)
3289 update_jiffies = j;
3290 }
3291
305e243e
JK
3292 queue_delayed_work(priv->workqueue, &priv->dev_poller_work,
3293 update_jiffies);
bf164cc0
JK
3294}
3295
c5c4fe90
JK
3296/*
3297 * driver/device initialization
3298 */
5cb56af2 3299static void rndis_copy_module_params(struct usbnet *usbdev, int device_type)
bf164cc0 3300{
582241a0 3301 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0 3302
5cb56af2
JK
3303 priv->device_type = device_type;
3304
bf164cc0
JK
3305 priv->param_country[0] = modparam_country[0];
3306 priv->param_country[1] = modparam_country[1];
3307 priv->param_country[2] = 0;
3308 priv->param_frameburst = modparam_frameburst;
3309 priv->param_afterburner = modparam_afterburner;
3310 priv->param_power_save = modparam_power_save;
3311 priv->param_power_output = modparam_power_output;
3312 priv->param_roamtrigger = modparam_roamtrigger;
3313 priv->param_roamdelta = modparam_roamdelta;
bf164cc0
JK
3314
3315 priv->param_country[0] = toupper(priv->param_country[0]);
3316 priv->param_country[1] = toupper(priv->param_country[1]);
3317 /* doesn't support EU as country code, use FI instead */
3318 if (!strcmp(priv->param_country, "EU"))
3319 strcpy(priv->param_country, "FI");
3320
3321 if (priv->param_power_save < 0)
3322 priv->param_power_save = 0;
3323 else if (priv->param_power_save > 2)
3324 priv->param_power_save = 2;
3325
a7624837
JK
3326 if (priv->param_power_output < 0)
3327 priv->param_power_output = 0;
3328 else if (priv->param_power_output > 3)
3329 priv->param_power_output = 3;
3330
bf164cc0
JK
3331 if (priv->param_roamtrigger < -80)
3332 priv->param_roamtrigger = -80;
3333 else if (priv->param_roamtrigger > -60)
3334 priv->param_roamtrigger = -60;
3335
3336 if (priv->param_roamdelta < 0)
3337 priv->param_roamdelta = 0;
3338 else if (priv->param_roamdelta > 2)
3339 priv->param_roamdelta = 2;
3340
4d381ffb 3341 if (modparam_workaround_interval < 0)
bf164cc0 3342 priv->param_workaround_interval = 500;
4d381ffb
RK
3343 else
3344 priv->param_workaround_interval = modparam_workaround_interval;
cef6e912
JK
3345}
3346
5cb56af2
JK
3347static int unknown_early_init(struct usbnet *usbdev)
3348{
3349 /* copy module parameters for unknown so that iwconfig reports txpower
3350 * and workaround parameter is copied to private structure correctly.
3351 */
3352 rndis_copy_module_params(usbdev, RNDIS_UNKNOWN);
3353
3354 /* This is unknown device, so do not try set configuration parameters.
3355 */
3356
3357 return 0;
3358}
3359
cef6e912
JK
3360static int bcm4320a_early_init(struct usbnet *usbdev)
3361{
6e850af5
JK
3362 /* copy module parameters for bcm4320a so that iwconfig reports txpower
3363 * and workaround parameter is copied to private structure correctly.
3364 */
5cb56af2 3365 rndis_copy_module_params(usbdev, RNDIS_BCM4320A);
6e850af5 3366
cef6e912
JK
3367 /* bcm4320a doesn't handle configuration parameters well. Try
3368 * set any and you get partially zeroed mac and broken device.
3369 */
3370
3371 return 0;
3372}
3373
3374static int bcm4320b_early_init(struct usbnet *usbdev)
3375{
3376 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
3377 char buf[8];
3378
5cb56af2 3379 rndis_copy_module_params(usbdev, RNDIS_BCM4320B);
cef6e912
JK
3380
3381 /* Early initialization settings, setting these won't have effect
3382 * if called after generic_rndis_bind().
3383 */
bf164cc0 3384
a19d7292
JK
3385 rndis_set_config_parameter_str(usbdev, "Country", priv->param_country);
3386 rndis_set_config_parameter_str(usbdev, "FrameBursting",
bf164cc0 3387 priv->param_frameburst ? "1" : "0");
a19d7292 3388 rndis_set_config_parameter_str(usbdev, "Afterburner",
bf164cc0
JK
3389 priv->param_afterburner ? "1" : "0");
3390 sprintf(buf, "%d", priv->param_power_save);
a19d7292 3391 rndis_set_config_parameter_str(usbdev, "PowerSaveMode", buf);
bf164cc0 3392 sprintf(buf, "%d", priv->param_power_output);
a19d7292 3393 rndis_set_config_parameter_str(usbdev, "PwrOut", buf);
bf164cc0 3394 sprintf(buf, "%d", priv->param_roamtrigger);
a19d7292 3395 rndis_set_config_parameter_str(usbdev, "RoamTrigger", buf);
bf164cc0 3396 sprintf(buf, "%d", priv->param_roamdelta);
a19d7292 3397 rndis_set_config_parameter_str(usbdev, "RoamDelta", buf);
bf164cc0
JK
3398
3399 return 0;
3400}
3401
23d12e2b 3402/* same as rndis_netdev_ops but with local multicast handler */
582241a0 3403static const struct net_device_ops rndis_wlan_netdev_ops = {
23d12e2b
DM
3404 .ndo_open = usbnet_open,
3405 .ndo_stop = usbnet_stop,
3406 .ndo_start_xmit = usbnet_start_xmit,
3407 .ndo_tx_timeout = usbnet_tx_timeout,
3408 .ndo_set_mac_address = eth_mac_addr,
3409 .ndo_validate_addr = eth_validate_addr,
afc4b13d 3410 .ndo_set_rx_mode = rndis_wlan_set_multicast_list,
23d12e2b
DM
3411};
3412
582241a0 3413static int rndis_wlan_bind(struct usbnet *usbdev, struct usb_interface *intf)
bf164cc0 3414{
5c8fa4f7 3415 struct wiphy *wiphy;
582241a0 3416 struct rndis_wlan_private *priv;
bf164cc0
JK
3417 int retval, len;
3418 __le32 tmp;
3419
5c8fa4f7
JL
3420 /* allocate wiphy and rndis private data
3421 * NOTE: We only support a single virtual interface, so wiphy
3422 * and wireless_dev are somewhat synonymous for this device.
3423 */
582241a0 3424 wiphy = wiphy_new(&rndis_config_ops, sizeof(struct rndis_wlan_private));
5c8fa4f7 3425 if (!wiphy)
bf164cc0
JK
3426 return -ENOMEM;
3427
5c8fa4f7
JL
3428 priv = wiphy_priv(wiphy);
3429 usbdev->net->ieee80211_ptr = &priv->wdev;
3430 priv->wdev.wiphy = wiphy;
3431 priv->wdev.iftype = NL80211_IFTYPE_STATION;
3432
bf164cc0 3433 /* These have to be initialized before calling generic_rndis_bind().
582241a0 3434 * Otherwise we'll be in big trouble in rndis_wlan_early_init().
bf164cc0 3435 */
a19d7292 3436 usbdev->driver_priv = priv;
a19d7292 3437 priv->usbdev = usbdev;
bf164cc0
JK
3438
3439 mutex_init(&priv->command_lock);
bf164cc0 3440
8d4d99ae
JK
3441 /* because rndis_command() sleeps we need to use workqueue */
3442 priv->workqueue = create_singlethread_workqueue("rndis_wlan");
582241a0 3443 INIT_WORK(&priv->work, rndis_wlan_worker);
305e243e 3444 INIT_DELAYED_WORK(&priv->dev_poller_work, rndis_device_poller);
8d4d99ae
JK
3445 INIT_DELAYED_WORK(&priv->scan_work, rndis_get_scan_results);
3446
bf164cc0 3447 /* try bind rndis_host */
a19d7292 3448 retval = generic_rndis_bind(usbdev, intf, FLAG_RNDIS_PHYM_WIRELESS);
bf164cc0
JK
3449 if (retval < 0)
3450 goto fail;
3451
3452 /* generic_rndis_bind set packet filter to multicast_all+
3453 * promisc mode which doesn't work well for our devices (device
3454 * picks up rssi to closest station instead of to access point).
3455 *
3456 * rndis_host wants to avoid all OID as much as possible
582241a0 3457 * so do promisc/multicast handling in rndis_wlan.
bf164cc0 3458 */
582241a0 3459 usbdev->net->netdev_ops = &rndis_wlan_netdev_ops;
23d12e2b 3460
bf164cc0 3461 tmp = RNDIS_PACKET_TYPE_DIRECTED | RNDIS_PACKET_TYPE_BROADCAST;
a19d7292 3462 retval = rndis_set_oid(usbdev, OID_GEN_CURRENT_PACKET_FILTER, &tmp,
bf164cc0
JK
3463 sizeof(tmp));
3464
3465 len = sizeof(tmp);
a19d7292
JK
3466 retval = rndis_query_oid(usbdev, OID_802_3_MAXIMUM_LIST_SIZE, &tmp,
3467 &len);
bf164cc0
JK
3468 priv->multicast_size = le32_to_cpu(tmp);
3469 if (retval < 0 || priv->multicast_size < 0)
3470 priv->multicast_size = 0;
3471 if (priv->multicast_size > 0)
a19d7292 3472 usbdev->net->flags |= IFF_MULTICAST;
bf164cc0 3473 else
a19d7292 3474 usbdev->net->flags &= ~IFF_MULTICAST;
bf164cc0 3475
5c8fa4f7
JL
3476 /* fill-out wiphy structure and register w/ cfg80211 */
3477 memcpy(wiphy->perm_addr, usbdev->net->dev_addr, ETH_ALEN);
3478 wiphy->privid = rndis_wiphy_privid;
3479 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION)
3480 | BIT(NL80211_IFTYPE_ADHOC);
3481 wiphy->max_scan_ssids = 1;
3482
4a7f13ee 3483 /* TODO: fill-out band/encr information based on priv->caps */
0308383f 3484 rndis_wlan_get_caps(usbdev, wiphy);
5c8fa4f7
JL
3485
3486 memcpy(priv->channels, rndis_channels, sizeof(rndis_channels));
3487 memcpy(priv->rates, rndis_rates, sizeof(rndis_rates));
3488 priv->band.channels = priv->channels;
3489 priv->band.n_channels = ARRAY_SIZE(rndis_channels);
3490 priv->band.bitrates = priv->rates;
3491 priv->band.n_bitrates = ARRAY_SIZE(rndis_rates);
3492 wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band;
4d2a369e 3493 wiphy->signal_type = CFG80211_SIGNAL_TYPE_UNSPEC;
5c8fa4f7 3494
4a7f13ee
JK
3495 memcpy(priv->cipher_suites, rndis_cipher_suites,
3496 sizeof(rndis_cipher_suites));
3497 wiphy->cipher_suites = priv->cipher_suites;
3498 wiphy->n_cipher_suites = ARRAY_SIZE(rndis_cipher_suites);
3499
5c8fa4f7
JL
3500 set_wiphy_dev(wiphy, &usbdev->udev->dev);
3501
3502 if (wiphy_register(wiphy)) {
eb1a685e
JK
3503 retval = -ENODEV;
3504 goto fail;
5c8fa4f7
JL
3505 }
3506
a19d7292 3507 set_default_iw_params(usbdev);
bf164cc0 3508
40d70dd1
JK
3509 priv->power_mode = -1;
3510
d75ec2b7
JK
3511 /* set default rts/frag */
3512 rndis_set_wiphy_params(wiphy,
3513 WIPHY_PARAM_FRAG_THRESHOLD | WIPHY_PARAM_RTS_THRESHOLD);
3514
21b27bec
JK
3515 /* turn radio off on init */
3516 priv->radio_on = false;
3517 disassociate(usbdev, false);
a19d7292 3518 netif_carrier_off(usbdev->net);
bf164cc0 3519
bf164cc0
JK
3520 return 0;
3521
3522fail:
305e243e 3523 cancel_delayed_work_sync(&priv->dev_poller_work);
8d4d99ae
JK
3524 cancel_delayed_work_sync(&priv->scan_work);
3525 cancel_work_sync(&priv->work);
3526 flush_workqueue(priv->workqueue);
3527 destroy_workqueue(priv->workqueue);
3528
eb1a685e 3529 wiphy_free(wiphy);
bf164cc0
JK
3530 return retval;
3531}
3532
582241a0 3533static void rndis_wlan_unbind(struct usbnet *usbdev, struct usb_interface *intf)
bf164cc0 3534{
582241a0 3535 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
bf164cc0
JK
3536
3537 /* turn radio off */
051ae0bf 3538 disassociate(usbdev, false);
bf164cc0 3539
305e243e 3540 cancel_delayed_work_sync(&priv->dev_poller_work);
71a7b26d 3541 cancel_delayed_work_sync(&priv->scan_work);
bf164cc0
JK
3542 cancel_work_sync(&priv->work);
3543 flush_workqueue(priv->workqueue);
3544 destroy_workqueue(priv->workqueue);
3545
a19d7292 3546 rndis_unbind(usbdev, intf);
5c8fa4f7
JL
3547
3548 wiphy_unregister(priv->wdev.wiphy);
3549 wiphy_free(priv->wdev.wiphy);
bf164cc0
JK
3550}
3551
582241a0 3552static int rndis_wlan_reset(struct usbnet *usbdev)
bf164cc0 3553{
110736de 3554 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
7eaab708 3555 int retval;
110736de 3556
60b86755 3557 netdev_dbg(usbdev->net, "%s()\n", __func__);
110736de 3558
7eaab708
JK
3559 retval = rndis_reset(usbdev);
3560 if (retval)
60b86755 3561 netdev_warn(usbdev->net, "rndis_reset failed: %d\n", retval);
7eaab708 3562
e5a11a82
JK
3563 /* rndis_reset cleared multicast list, so restore here.
3564 (set_multicast_list() also turns on current packet filter) */
7eaab708
JK
3565 set_multicast_list(usbdev);
3566
305e243e
JK
3567 queue_delayed_work(priv->workqueue, &priv->dev_poller_work,
3568 round_jiffies_relative(DEVICE_POLLER_JIFFIES));
110736de 3569
a19d7292 3570 return deauthenticate(usbdev);
bf164cc0
JK
3571}
3572
222ec50a
JK
3573static int rndis_wlan_stop(struct usbnet *usbdev)
3574{
110736de
JK
3575 struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev);
3576 int retval;
e5a11a82 3577 __le32 filter;
110736de 3578
60b86755 3579 netdev_dbg(usbdev->net, "%s()\n", __func__);
110736de 3580
051ae0bf 3581 retval = disassociate(usbdev, false);
110736de
JK
3582
3583 priv->work_pending = 0;
305e243e 3584 cancel_delayed_work_sync(&priv->dev_poller_work);
110736de
JK
3585 cancel_delayed_work_sync(&priv->scan_work);
3586 cancel_work_sync(&priv->work);
3587 flush_workqueue(priv->workqueue);
3588
005ba2f1
JK
3589 if (priv->scan_request) {
3590 cfg80211_scan_done(priv->scan_request, true);
3591 priv->scan_request = NULL;
3592 }
3593
e5a11a82
JK
3594 /* Set current packet filter zero to block receiving data packets from
3595 device. */
3596 filter = 0;
3597 rndis_set_oid(usbdev, OID_GEN_CURRENT_PACKET_FILTER, &filter,
3598 sizeof(filter));
3599
110736de 3600 return retval;
222ec50a
JK
3601}
3602
bf164cc0
JK
3603static const struct driver_info bcm4320b_info = {
3604 .description = "Wireless RNDIS device, BCM4320b based",
1487cd5e
JK
3605 .flags = FLAG_WLAN | FLAG_FRAMING_RN | FLAG_NO_SETINT |
3606 FLAG_AVOID_UNLINK_URBS,
582241a0
JK
3607 .bind = rndis_wlan_bind,
3608 .unbind = rndis_wlan_unbind,
bf164cc0
JK
3609 .status = rndis_status,
3610 .rx_fixup = rndis_rx_fixup,
3611 .tx_fixup = rndis_tx_fixup,
582241a0 3612 .reset = rndis_wlan_reset,
222ec50a 3613 .stop = rndis_wlan_stop,
59620e9f 3614 .early_init = bcm4320b_early_init,
2a4901bc 3615 .indication = rndis_wlan_indication,
bf164cc0
JK
3616};
3617
3618static const struct driver_info bcm4320a_info = {
3619 .description = "Wireless RNDIS device, BCM4320a based",
1487cd5e
JK
3620 .flags = FLAG_WLAN | FLAG_FRAMING_RN | FLAG_NO_SETINT |
3621 FLAG_AVOID_UNLINK_URBS,
582241a0
JK
3622 .bind = rndis_wlan_bind,
3623 .unbind = rndis_wlan_unbind,
bf164cc0
JK
3624 .status = rndis_status,
3625 .rx_fixup = rndis_rx_fixup,
3626 .tx_fixup = rndis_tx_fixup,
582241a0 3627 .reset = rndis_wlan_reset,
222ec50a 3628 .stop = rndis_wlan_stop,
59620e9f 3629 .early_init = bcm4320a_early_init,
2a4901bc 3630 .indication = rndis_wlan_indication,
bf164cc0
JK
3631};
3632
582241a0 3633static const struct driver_info rndis_wlan_info = {
bf164cc0 3634 .description = "Wireless RNDIS device",
1487cd5e
JK
3635 .flags = FLAG_WLAN | FLAG_FRAMING_RN | FLAG_NO_SETINT |
3636 FLAG_AVOID_UNLINK_URBS,
582241a0
JK
3637 .bind = rndis_wlan_bind,
3638 .unbind = rndis_wlan_unbind,
bf164cc0
JK
3639 .status = rndis_status,
3640 .rx_fixup = rndis_rx_fixup,
3641 .tx_fixup = rndis_tx_fixup,
582241a0 3642 .reset = rndis_wlan_reset,
222ec50a 3643 .stop = rndis_wlan_stop,
5cb56af2 3644 .early_init = unknown_early_init,
2a4901bc 3645 .indication = rndis_wlan_indication,
bf164cc0
JK
3646};
3647
3648/*-------------------------------------------------------------------------*/
3649
3650static const struct usb_device_id products [] = {
3651#define RNDIS_MASTER_INTERFACE \
3652 .bInterfaceClass = USB_CLASS_COMM, \
3653 .bInterfaceSubClass = 2 /* ACM */, \
3654 .bInterfaceProtocol = 0x0ff
3655
3656/* INF driver for these devices have DriverVer >= 4.xx.xx.xx and many custom
3657 * parameters available. Chipset marked as 'BCM4320SKFBG' in NDISwrapper-wiki.
3658 */
3659{
3660 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3661 | USB_DEVICE_ID_MATCH_DEVICE,
3662 .idVendor = 0x0411,
3663 .idProduct = 0x00bc, /* Buffalo WLI-U2-KG125S */
3664 RNDIS_MASTER_INTERFACE,
3665 .driver_info = (unsigned long) &bcm4320b_info,
3666}, {
3667 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3668 | USB_DEVICE_ID_MATCH_DEVICE,
3669 .idVendor = 0x0baf,
3670 .idProduct = 0x011b, /* U.S. Robotics USR5421 */
3671 RNDIS_MASTER_INTERFACE,
3672 .driver_info = (unsigned long) &bcm4320b_info,
3673}, {
3674 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3675 | USB_DEVICE_ID_MATCH_DEVICE,
3676 .idVendor = 0x050d,
3677 .idProduct = 0x011b, /* Belkin F5D7051 */
3678 RNDIS_MASTER_INTERFACE,
3679 .driver_info = (unsigned long) &bcm4320b_info,
3680}, {
3681 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3682 | USB_DEVICE_ID_MATCH_DEVICE,
3683 .idVendor = 0x1799, /* Belkin has two vendor ids */
3684 .idProduct = 0x011b, /* Belkin F5D7051 */
3685 RNDIS_MASTER_INTERFACE,
3686 .driver_info = (unsigned long) &bcm4320b_info,
3687}, {
3688 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3689 | USB_DEVICE_ID_MATCH_DEVICE,
3690 .idVendor = 0x13b1,
3691 .idProduct = 0x0014, /* Linksys WUSB54GSv2 */
3692 RNDIS_MASTER_INTERFACE,
3693 .driver_info = (unsigned long) &bcm4320b_info,
3694}, {
3695 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3696 | USB_DEVICE_ID_MATCH_DEVICE,
3697 .idVendor = 0x13b1,
3698 .idProduct = 0x0026, /* Linksys WUSB54GSC */
3699 RNDIS_MASTER_INTERFACE,
3700 .driver_info = (unsigned long) &bcm4320b_info,
3701}, {
3702 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3703 | USB_DEVICE_ID_MATCH_DEVICE,
3704 .idVendor = 0x0b05,
3705 .idProduct = 0x1717, /* Asus WL169gE */
3706 RNDIS_MASTER_INTERFACE,
3707 .driver_info = (unsigned long) &bcm4320b_info,
3708}, {
3709 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3710 | USB_DEVICE_ID_MATCH_DEVICE,
3711 .idVendor = 0x0a5c,
3712 .idProduct = 0xd11b, /* Eminent EM4045 */
3713 RNDIS_MASTER_INTERFACE,
3714 .driver_info = (unsigned long) &bcm4320b_info,
3715}, {
3716 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3717 | USB_DEVICE_ID_MATCH_DEVICE,
3718 .idVendor = 0x1690,
3719 .idProduct = 0x0715, /* BT Voyager 1055 */
3720 RNDIS_MASTER_INTERFACE,
3721 .driver_info = (unsigned long) &bcm4320b_info,
3722},
3723/* These devices have DriverVer < 4.xx.xx.xx and do not have any custom
3724 * parameters available, hardware probably contain older firmware version with
3725 * no way of updating. Chipset marked as 'BCM4320????' in NDISwrapper-wiki.
3726 */
3727{
3728 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3729 | USB_DEVICE_ID_MATCH_DEVICE,
3730 .idVendor = 0x13b1,
3731 .idProduct = 0x000e, /* Linksys WUSB54GSv1 */
3732 RNDIS_MASTER_INTERFACE,
3733 .driver_info = (unsigned long) &bcm4320a_info,
3734}, {
3735 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3736 | USB_DEVICE_ID_MATCH_DEVICE,
3737 .idVendor = 0x0baf,
3738 .idProduct = 0x0111, /* U.S. Robotics USR5420 */
3739 RNDIS_MASTER_INTERFACE,
3740 .driver_info = (unsigned long) &bcm4320a_info,
3741}, {
3742 .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
3743 | USB_DEVICE_ID_MATCH_DEVICE,
3744 .idVendor = 0x0411,
3745 .idProduct = 0x004b, /* BUFFALO WLI-USB-G54 */
3746 RNDIS_MASTER_INTERFACE,
3747 .driver_info = (unsigned long) &bcm4320a_info,
3748},
3749/* Generic Wireless RNDIS devices that we don't have exact
3750 * idVendor/idProduct/chip yet.
3751 */
3752{
3753 /* RNDIS is MSFT's un-official variant of CDC ACM */
3754 USB_INTERFACE_INFO(USB_CLASS_COMM, 2 /* ACM */, 0x0ff),
582241a0 3755 .driver_info = (unsigned long) &rndis_wlan_info,
bf164cc0
JK
3756}, {
3757 /* "ActiveSync" is an undocumented variant of RNDIS, used in WM5 */
3758 USB_INTERFACE_INFO(USB_CLASS_MISC, 1, 1),
582241a0 3759 .driver_info = (unsigned long) &rndis_wlan_info,
bf164cc0
JK
3760},
3761 { }, // END
3762};
3763MODULE_DEVICE_TABLE(usb, products);
3764
3765static struct usb_driver rndis_wlan_driver = {
3766 .name = "rndis_wlan",
3767 .id_table = products,
3768 .probe = usbnet_probe,
3769 .disconnect = usbnet_disconnect,
3770 .suspend = usbnet_suspend,
3771 .resume = usbnet_resume,
3772};
3773
d632eb1b 3774module_usb_driver(rndis_wlan_driver);
bf164cc0
JK
3775
3776MODULE_AUTHOR("Bjorge Dijkstra");
3777MODULE_AUTHOR("Jussi Kivilinna");
3778MODULE_DESCRIPTION("Driver for RNDIS based USB Wireless adapters");
3779MODULE_LICENSE("GPL");
3780