2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/netdevice.h>
13 #include <linux/types.h>
14 #include <linux/slab.h>
15 #include <linux/skbuff.h>
16 #include <linux/etherdevice.h>
17 #include <linux/if_arp.h>
18 #include <linux/wireless.h>
19 #include <net/iw_handler.h>
20 #include <asm/uaccess.h>
22 #include <net/mac80211.h>
23 #include "ieee80211_i.h"
24 #include "hostapd_ioctl.h"
25 #include "ieee80211_rate.h"
28 #include "debugfs_key.h"
30 static int ieee80211_regdom
= 0x10; /* FCC */
31 module_param(ieee80211_regdom
, int, 0444);
32 MODULE_PARM_DESC(ieee80211_regdom
, "IEEE 802.11 regulatory domain; 64=MKK");
35 * If firmware is upgraded by the vendor, additional channels can be used based
36 * on the new Japanese regulatory rules. This is indicated by setting
37 * ieee80211_japan_5ghz module parameter to one when loading the 80211 kernel
40 static int ieee80211_japan_5ghz
/* = 0 */;
41 module_param(ieee80211_japan_5ghz
, int, 0444);
42 MODULE_PARM_DESC(ieee80211_japan_5ghz
, "Vendor-updated firmware for 5 GHz");
44 static void ieee80211_set_hw_encryption(struct net_device
*dev
,
45 struct sta_info
*sta
, u8 addr
[ETH_ALEN
],
46 struct ieee80211_key
*key
)
48 struct ieee80211_key_conf
*keyconf
= NULL
;
49 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
51 /* default to sw encryption; this will be cleared by low-level
52 * driver if the hw supports requested encryption */
54 key
->force_sw_encrypt
= 1;
56 if (key
&& local
->ops
->set_key
&&
57 (keyconf
= ieee80211_key_data2conf(local
, key
))) {
58 if (local
->ops
->set_key(local_to_hw(local
), SET_KEY
, addr
,
59 keyconf
, sta
? sta
->aid
: 0)) {
60 key
->force_sw_encrypt
= 1;
61 key
->hw_key_idx
= HW_KEY_IDX_INVALID
;
63 key
->force_sw_encrypt
=
64 !!(keyconf
->flags
& IEEE80211_KEY_FORCE_SW_ENCRYPT
);
74 static int ieee80211_set_encryption(struct net_device
*dev
, u8
*sta_addr
,
75 int idx
, int alg
, int set_tx_key
,
76 const u8
*_key
, size_t key_len
)
78 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
81 struct ieee80211_key
*key
, *old_key
;
83 struct ieee80211_key_conf
*keyconf
;
84 struct ieee80211_sub_if_data
*sdata
;
86 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
88 if (is_broadcast_ether_addr(sta_addr
)) {
90 if (idx
>= NUM_DEFAULT_KEYS
) {
91 printk(KERN_DEBUG
"%s: set_encrypt - invalid idx=%d\n",
95 key
= sdata
->keys
[idx
];
97 /* TODO: consider adding hwaccel support for these; at least
98 * Atheros key cache should be able to handle this since AP is
99 * only transmitting frames with default keys. */
100 /* FIX: hw key cache can be used when only one virtual
101 * STA is associated with each AP. If more than one STA
102 * is associated to the same AP, software encryption
103 * must be used. This should be done automatically
104 * based on configured station devices. For the time
105 * being, this can be only set at compile time. */
109 printk(KERN_DEBUG
"%s: set_encrypt - non-zero idx for "
110 "individual key\n", dev
->name
);
114 sta
= sta_info_get(local
, sta_addr
);
116 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
117 printk(KERN_DEBUG
"%s: set_encrypt - unknown addr "
119 dev
->name
, MAC_ARG(sta_addr
));
120 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
129 * Cannot configure default hwaccel keys with WEP algorithm, if
130 * any of the virtual interfaces is using static WEP
131 * configuration because hwaccel would otherwise try to decrypt
134 * For now, just disable WEP hwaccel for broadcast when there is
135 * possibility of conflict with default keys. This can maybe later be
136 * optimized by using non-default keys (at least with Atheros ar521x).
138 if (!sta
&& alg
== ALG_WEP
&& !local
->default_wep_only
&&
139 sdata
->type
!= IEEE80211_IF_TYPE_IBSS
&&
140 sdata
->type
!= IEEE80211_IF_TYPE_AP
) {
144 if (local
->hw
.flags
& IEEE80211_HW_DEVICE_HIDES_WEP
) {
145 /* Software encryption cannot be used with devices that hide
146 * encryption from the host system, so always try to use
147 * hardware acceleration with such devices. */
151 if ((local
->hw
.flags
& IEEE80211_HW_NO_TKIP_WMM_HWACCEL
) &&
153 if (sta
&& (sta
->flags
& WLAN_STA_WME
)) {
154 /* Hardware does not support hwaccel with TKIP when using WMM.
158 else if (sdata
->type
== IEEE80211_IF_TYPE_STA
) {
159 sta
= sta_info_get(local
, sdata
->u
.sta
.bssid
);
161 if (sta
->flags
& WLAN_STA_WME
) {
170 if (alg
== ALG_NONE
) {
172 if (try_hwaccel
&& key
&&
173 key
->hw_key_idx
!= HW_KEY_IDX_INVALID
&&
174 local
->ops
->set_key
&&
175 (keyconf
= ieee80211_key_data2conf(local
, key
)) != NULL
&&
176 local
->ops
->set_key(local_to_hw(local
), DISABLE_KEY
,
177 sta_addr
, keyconf
, sta
? sta
->aid
: 0)) {
178 printk(KERN_DEBUG
"%s: set_encrypt - low-level disable"
179 " failed\n", dev
->name
);
184 if (set_tx_key
|| sdata
->default_key
== key
) {
185 ieee80211_debugfs_key_remove_default(sdata
);
186 sdata
->default_key
= NULL
;
188 ieee80211_debugfs_key_remove(key
);
192 sdata
->keys
[idx
] = NULL
;
193 ieee80211_key_free(key
);
197 key
= ieee80211_key_alloc(sta
? NULL
: sdata
, idx
, key_len
,
204 /* default to sw encryption; low-level driver sets these if the
205 * requested encryption is supported */
206 key
->hw_key_idx
= HW_KEY_IDX_INVALID
;
207 key
->force_sw_encrypt
= 1;
211 key
->keylen
= key_len
;
212 memcpy(key
->key
, _key
, key_len
);
214 key
->default_tx_key
= 1;
216 if (alg
== ALG_CCMP
) {
217 /* Initialize AES key state here as an optimization
218 * so that it does not need to be initialized for every
220 key
->u
.ccmp
.tfm
= ieee80211_aes_key_setup_encrypt(
222 if (!key
->u
.ccmp
.tfm
) {
228 if (set_tx_key
|| sdata
->default_key
== old_key
) {
229 ieee80211_debugfs_key_remove_default(sdata
);
230 sdata
->default_key
= NULL
;
232 ieee80211_debugfs_key_remove(old_key
);
236 sdata
->keys
[idx
] = key
;
237 ieee80211_key_free(old_key
);
238 ieee80211_debugfs_key_add(local
, key
);
240 ieee80211_debugfs_key_sta_link(key
, sta
);
243 (alg
== ALG_WEP
|| alg
== ALG_TKIP
|| alg
== ALG_CCMP
))
244 ieee80211_set_hw_encryption(dev
, sta
, sta_addr
, key
);
247 if (set_tx_key
|| (!sta
&& !sdata
->default_key
&& key
)) {
248 sdata
->default_key
= key
;
250 ieee80211_debugfs_key_add_default(sdata
);
252 if (local
->ops
->set_key_idx
&&
253 local
->ops
->set_key_idx(local_to_hw(local
), idx
))
254 printk(KERN_DEBUG
"%s: failed to set TX key idx for "
255 "low-level driver\n", dev
->name
);
264 ieee80211_key_free(key
);
271 static int ieee80211_ioctl_siwgenie(struct net_device
*dev
,
272 struct iw_request_info
*info
,
273 struct iw_point
*data
, char *extra
)
275 struct ieee80211_sub_if_data
*sdata
;
276 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
278 if (local
->user_space_mlme
)
281 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
282 if (sdata
->type
== IEEE80211_IF_TYPE_STA
||
283 sdata
->type
== IEEE80211_IF_TYPE_IBSS
) {
284 int ret
= ieee80211_sta_set_extra_ie(dev
, extra
, data
->length
);
287 sdata
->u
.sta
.auto_bssid_sel
= 0;
288 ieee80211_sta_req_auth(dev
, &sdata
->u
.sta
);
292 if (sdata
->type
== IEEE80211_IF_TYPE_AP
) {
293 kfree(sdata
->u
.ap
.generic_elem
);
294 sdata
->u
.ap
.generic_elem
= kmalloc(data
->length
, GFP_KERNEL
);
295 if (!sdata
->u
.ap
.generic_elem
)
297 memcpy(sdata
->u
.ap
.generic_elem
, extra
, data
->length
);
298 sdata
->u
.ap
.generic_elem_len
= data
->length
;
299 return ieee80211_if_config(dev
);
304 static int ieee80211_ioctl_set_radio_enabled(struct net_device
*dev
,
307 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
308 struct ieee80211_conf
*conf
= &local
->hw
.conf
;
310 conf
->radio_enabled
= val
;
311 return ieee80211_hw_config(wdev_priv(dev
->ieee80211_ptr
));
314 static int ieee80211_ioctl_giwname(struct net_device
*dev
,
315 struct iw_request_info
*info
,
316 char *name
, char *extra
)
318 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
320 switch (local
->hw
.conf
.phymode
) {
321 case MODE_IEEE80211A
:
322 strcpy(name
, "IEEE 802.11a");
324 case MODE_IEEE80211B
:
325 strcpy(name
, "IEEE 802.11b");
327 case MODE_IEEE80211G
:
328 strcpy(name
, "IEEE 802.11g");
330 case MODE_ATHEROS_TURBO
:
331 strcpy(name
, "5GHz Turbo");
334 strcpy(name
, "IEEE 802.11");
342 static int ieee80211_ioctl_giwrange(struct net_device
*dev
,
343 struct iw_request_info
*info
,
344 struct iw_point
*data
, char *extra
)
346 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
347 struct iw_range
*range
= (struct iw_range
*) extra
;
349 data
->length
= sizeof(struct iw_range
);
350 memset(range
, 0, sizeof(struct iw_range
));
352 range
->we_version_compiled
= WIRELESS_EXT
;
353 range
->we_version_source
= 21;
354 range
->retry_capa
= IW_RETRY_LIMIT
;
355 range
->retry_flags
= IW_RETRY_LIMIT
;
356 range
->min_retry
= 0;
357 range
->max_retry
= 255;
359 range
->max_rts
= 2347;
360 range
->min_frag
= 256;
361 range
->max_frag
= 2346;
363 range
->encoding_size
[0] = 5;
364 range
->encoding_size
[1] = 13;
365 range
->num_encoding_sizes
= 2;
366 range
->max_encoding_tokens
= NUM_DEFAULT_KEYS
;
368 range
->max_qual
.qual
= local
->hw
.max_signal
;
369 range
->max_qual
.level
= local
->hw
.max_rssi
;
370 range
->max_qual
.noise
= local
->hw
.max_noise
;
371 range
->max_qual
.updated
= local
->wstats_flags
;
373 range
->avg_qual
.qual
= local
->hw
.max_signal
/2;
374 range
->avg_qual
.level
= 0;
375 range
->avg_qual
.noise
= 0;
376 range
->avg_qual
.updated
= local
->wstats_flags
;
378 range
->enc_capa
= IW_ENC_CAPA_WPA
| IW_ENC_CAPA_WPA2
|
379 IW_ENC_CAPA_CIPHER_TKIP
| IW_ENC_CAPA_CIPHER_CCMP
;
381 IW_EVENT_CAPA_SET_KERNEL(range
->event_capa
);
382 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWTHRSPY
);
383 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWAP
);
384 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWSCAN
);
390 struct ieee80211_channel_range
{
393 unsigned char power_level
;
394 unsigned char antenna_max
;
397 static const struct ieee80211_channel_range ieee80211_fcc_channels
[] = {
398 { 2412, 2462, 27, 6 } /* IEEE 802.11b/g, channels 1..11 */,
399 { 5180, 5240, 17, 6 } /* IEEE 802.11a, channels 36..48 */,
400 { 5260, 5320, 23, 6 } /* IEEE 802.11a, channels 52..64 */,
401 { 5745, 5825, 30, 6 } /* IEEE 802.11a, channels 149..165, outdoor */,
405 static const struct ieee80211_channel_range ieee80211_mkk_channels
[] = {
406 { 2412, 2472, 20, 6 } /* IEEE 802.11b/g, channels 1..13 */,
407 { 5170, 5240, 20, 6 } /* IEEE 802.11a, channels 34..48 */,
408 { 5260, 5320, 20, 6 } /* IEEE 802.11a, channels 52..64 */,
413 static const struct ieee80211_channel_range
*channel_range
=
414 ieee80211_fcc_channels
;
417 static void ieee80211_unmask_channel(struct net_device
*dev
, int mode
,
418 struct ieee80211_channel
*chan
)
424 if (ieee80211_regdom
== 64 &&
425 (mode
== MODE_ATHEROS_TURBO
|| mode
== MODE_ATHEROS_TURBOG
)) {
426 /* Do not allow Turbo modes in Japan. */
430 for (i
= 0; channel_range
[i
].start_freq
; i
++) {
431 const struct ieee80211_channel_range
*r
= &channel_range
[i
];
432 if (r
->start_freq
<= chan
->freq
&& r
->end_freq
>= chan
->freq
) {
433 if (ieee80211_regdom
== 64 && !ieee80211_japan_5ghz
&&
434 chan
->freq
>= 5260 && chan
->freq
<= 5320) {
436 * Skip new channels in Japan since the
437 * firmware was not marked having been upgraded
443 if (ieee80211_regdom
== 0x10 &&
444 (chan
->freq
== 5190 || chan
->freq
== 5210 ||
445 chan
->freq
== 5230)) {
446 /* Skip MKK channels when in FCC domain. */
450 chan
->flag
|= IEEE80211_CHAN_W_SCAN
|
451 IEEE80211_CHAN_W_ACTIVE_SCAN
|
452 IEEE80211_CHAN_W_IBSS
;
453 chan
->power_level
= r
->power_level
;
454 chan
->antenna_max
= r
->antenna_max
;
456 if (ieee80211_regdom
== 64 &&
457 (chan
->freq
== 5170 || chan
->freq
== 5190 ||
458 chan
->freq
== 5210 || chan
->freq
== 5230)) {
460 * New regulatory rules in Japan have backwards
461 * compatibility with old channels in 5.15-5.25
462 * GHz band, but the station is not allowed to
463 * use active scan on these old channels.
465 chan
->flag
&= ~IEEE80211_CHAN_W_ACTIVE_SCAN
;
468 if (ieee80211_regdom
== 64 &&
469 (chan
->freq
== 5260 || chan
->freq
== 5280 ||
470 chan
->freq
== 5300 || chan
->freq
== 5320)) {
472 * IBSS is not allowed on 5.25-5.35 GHz band
473 * due to radar detection requirements.
475 chan
->flag
&= ~IEEE80211_CHAN_W_IBSS
;
484 static int ieee80211_unmask_channels(struct net_device
*dev
)
486 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
487 struct ieee80211_hw_mode
*mode
;
490 list_for_each_entry(mode
, &local
->modes_list
, list
) {
491 for (c
= 0; c
< mode
->num_channels
; c
++) {
492 ieee80211_unmask_channel(dev
, mode
->mode
,
500 int ieee80211_init_client(struct net_device
*dev
)
502 if (ieee80211_regdom
== 0x40)
503 channel_range
= ieee80211_mkk_channels
;
504 ieee80211_unmask_channels(dev
);
509 static int ieee80211_ioctl_siwmode(struct net_device
*dev
,
510 struct iw_request_info
*info
,
511 __u32
*mode
, char *extra
)
513 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
516 if (sdata
->type
== IEEE80211_IF_TYPE_VLAN
)
521 type
= IEEE80211_IF_TYPE_STA
;
524 type
= IEEE80211_IF_TYPE_IBSS
;
526 case IW_MODE_MONITOR
:
527 type
= IEEE80211_IF_TYPE_MNTR
;
533 if (type
== sdata
->type
)
535 if (netif_running(dev
))
538 ieee80211_if_reinit(dev
);
539 ieee80211_if_set_type(dev
, type
);
545 static int ieee80211_ioctl_giwmode(struct net_device
*dev
,
546 struct iw_request_info
*info
,
547 __u32
*mode
, char *extra
)
549 struct ieee80211_sub_if_data
*sdata
;
551 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
552 switch (sdata
->type
) {
553 case IEEE80211_IF_TYPE_AP
:
554 *mode
= IW_MODE_MASTER
;
556 case IEEE80211_IF_TYPE_STA
:
557 *mode
= IW_MODE_INFRA
;
559 case IEEE80211_IF_TYPE_IBSS
:
560 *mode
= IW_MODE_ADHOC
;
562 case IEEE80211_IF_TYPE_MNTR
:
563 *mode
= IW_MODE_MONITOR
;
565 case IEEE80211_IF_TYPE_WDS
:
566 *mode
= IW_MODE_REPEAT
;
568 case IEEE80211_IF_TYPE_VLAN
:
569 *mode
= IW_MODE_SECOND
; /* FIXME */
572 *mode
= IW_MODE_AUTO
;
578 int ieee80211_set_channel(struct ieee80211_local
*local
, int channel
, int freq
)
580 struct ieee80211_hw_mode
*mode
;
584 list_for_each_entry(mode
, &local
->modes_list
, list
) {
585 if (!(local
->enabled_modes
& (1 << mode
->mode
)))
587 for (c
= 0; c
< mode
->num_channels
; c
++) {
588 struct ieee80211_channel
*chan
= &mode
->channels
[c
];
589 if (chan
->flag
& IEEE80211_CHAN_W_SCAN
&&
590 ((chan
->chan
== channel
) || (chan
->freq
== freq
))) {
591 /* Use next_mode as the mode preference to
592 * resolve non-unique channel numbers. */
593 if (set
&& mode
->mode
!= local
->next_mode
)
596 local
->oper_channel
= chan
;
597 local
->oper_hw_mode
= mode
;
604 if (local
->sta_scanning
)
607 ret
= ieee80211_hw_config(local
);
609 rate_control_clear(local
);
615 static int ieee80211_ioctl_siwfreq(struct net_device
*dev
,
616 struct iw_request_info
*info
,
617 struct iw_freq
*freq
, char *extra
)
619 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
620 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
622 if (sdata
->type
== IEEE80211_IF_TYPE_STA
)
623 sdata
->u
.sta
.auto_channel_sel
= 0;
625 /* freq->e == 0: freq->m = channel; otherwise freq = m * 10^e */
628 if (sdata
->type
== IEEE80211_IF_TYPE_STA
)
629 sdata
->u
.sta
.auto_channel_sel
= 1;
632 return ieee80211_set_channel(local
, freq
->m
, -1);
634 int i
, div
= 1000000;
635 for (i
= 0; i
< freq
->e
; i
++)
638 return ieee80211_set_channel(local
, -1, freq
->m
/ div
);
645 static int ieee80211_ioctl_giwfreq(struct net_device
*dev
,
646 struct iw_request_info
*info
,
647 struct iw_freq
*freq
, char *extra
)
649 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
651 /* TODO: in station mode (Managed/Ad-hoc) might need to poll low-level
652 * driver for the current channel with firmware-based management */
654 freq
->m
= local
->hw
.conf
.freq
;
661 static int ieee80211_ioctl_siwessid(struct net_device
*dev
,
662 struct iw_request_info
*info
,
663 struct iw_point
*data
, char *ssid
)
665 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
666 struct ieee80211_sub_if_data
*sdata
;
667 size_t len
= data
->length
;
669 /* iwconfig uses nul termination in SSID.. */
670 if (len
> 0 && ssid
[len
- 1] == '\0')
673 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
674 if (sdata
->type
== IEEE80211_IF_TYPE_STA
||
675 sdata
->type
== IEEE80211_IF_TYPE_IBSS
) {
677 if (local
->user_space_mlme
) {
678 if (len
> IEEE80211_MAX_SSID_LEN
)
680 memcpy(sdata
->u
.sta
.ssid
, ssid
, len
);
681 sdata
->u
.sta
.ssid_len
= len
;
684 sdata
->u
.sta
.auto_ssid_sel
= !data
->flags
;
685 ret
= ieee80211_sta_set_ssid(dev
, ssid
, len
);
688 ieee80211_sta_req_auth(dev
, &sdata
->u
.sta
);
692 if (sdata
->type
== IEEE80211_IF_TYPE_AP
) {
693 memcpy(sdata
->u
.ap
.ssid
, ssid
, len
);
694 memset(sdata
->u
.ap
.ssid
+ len
, 0,
695 IEEE80211_MAX_SSID_LEN
- len
);
696 sdata
->u
.ap
.ssid_len
= len
;
697 return ieee80211_if_config(dev
);
703 static int ieee80211_ioctl_giwessid(struct net_device
*dev
,
704 struct iw_request_info
*info
,
705 struct iw_point
*data
, char *ssid
)
709 struct ieee80211_sub_if_data
*sdata
;
710 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
711 if (sdata
->type
== IEEE80211_IF_TYPE_STA
||
712 sdata
->type
== IEEE80211_IF_TYPE_IBSS
) {
713 int res
= ieee80211_sta_get_ssid(dev
, ssid
, &len
);
722 if (sdata
->type
== IEEE80211_IF_TYPE_AP
) {
723 len
= sdata
->u
.ap
.ssid_len
;
724 if (len
> IW_ESSID_MAX_SIZE
)
725 len
= IW_ESSID_MAX_SIZE
;
726 memcpy(ssid
, sdata
->u
.ap
.ssid
, len
);
735 static int ieee80211_ioctl_siwap(struct net_device
*dev
,
736 struct iw_request_info
*info
,
737 struct sockaddr
*ap_addr
, char *extra
)
739 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
740 struct ieee80211_sub_if_data
*sdata
;
742 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
743 if (sdata
->type
== IEEE80211_IF_TYPE_STA
||
744 sdata
->type
== IEEE80211_IF_TYPE_IBSS
) {
746 if (local
->user_space_mlme
) {
747 memcpy(sdata
->u
.sta
.bssid
, (u8
*) &ap_addr
->sa_data
,
751 if (is_zero_ether_addr((u8
*) &ap_addr
->sa_data
)) {
752 sdata
->u
.sta
.auto_bssid_sel
= 1;
753 sdata
->u
.sta
.auto_channel_sel
= 1;
754 } else if (is_broadcast_ether_addr((u8
*) &ap_addr
->sa_data
))
755 sdata
->u
.sta
.auto_bssid_sel
= 1;
757 sdata
->u
.sta
.auto_bssid_sel
= 0;
758 ret
= ieee80211_sta_set_bssid(dev
, (u8
*) &ap_addr
->sa_data
);
761 ieee80211_sta_req_auth(dev
, &sdata
->u
.sta
);
763 } else if (sdata
->type
== IEEE80211_IF_TYPE_WDS
) {
764 if (memcmp(sdata
->u
.wds
.remote_addr
, (u8
*) &ap_addr
->sa_data
,
767 return ieee80211_if_update_wds(dev
, (u8
*) &ap_addr
->sa_data
);
774 static int ieee80211_ioctl_giwap(struct net_device
*dev
,
775 struct iw_request_info
*info
,
776 struct sockaddr
*ap_addr
, char *extra
)
778 struct ieee80211_sub_if_data
*sdata
;
780 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
781 if (sdata
->type
== IEEE80211_IF_TYPE_STA
||
782 sdata
->type
== IEEE80211_IF_TYPE_IBSS
) {
783 ap_addr
->sa_family
= ARPHRD_ETHER
;
784 memcpy(&ap_addr
->sa_data
, sdata
->u
.sta
.bssid
, ETH_ALEN
);
786 } else if (sdata
->type
== IEEE80211_IF_TYPE_WDS
) {
787 ap_addr
->sa_family
= ARPHRD_ETHER
;
788 memcpy(&ap_addr
->sa_data
, sdata
->u
.wds
.remote_addr
, ETH_ALEN
);
796 static int ieee80211_ioctl_siwscan(struct net_device
*dev
,
797 struct iw_request_info
*info
,
798 struct iw_point
*data
, char *extra
)
800 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
801 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
805 if (!netif_running(dev
))
808 if (local
->scan_flags
& IEEE80211_SCAN_MATCH_SSID
) {
809 if (sdata
->type
== IEEE80211_IF_TYPE_STA
||
810 sdata
->type
== IEEE80211_IF_TYPE_IBSS
) {
811 ssid
= sdata
->u
.sta
.ssid
;
812 ssid_len
= sdata
->u
.sta
.ssid_len
;
813 } else if (sdata
->type
== IEEE80211_IF_TYPE_AP
) {
814 ssid
= sdata
->u
.ap
.ssid
;
815 ssid_len
= sdata
->u
.ap
.ssid_len
;
819 return ieee80211_sta_req_scan(dev
, ssid
, ssid_len
);
823 static int ieee80211_ioctl_giwscan(struct net_device
*dev
,
824 struct iw_request_info
*info
,
825 struct iw_point
*data
, char *extra
)
828 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
829 if (local
->sta_scanning
)
831 res
= ieee80211_sta_scan_results(dev
, extra
, data
->length
);
841 static int ieee80211_ioctl_siwrts(struct net_device
*dev
,
842 struct iw_request_info
*info
,
843 struct iw_param
*rts
, char *extra
)
845 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
848 local
->rts_threshold
= IEEE80211_MAX_RTS_THRESHOLD
;
849 else if (rts
->value
< 0 || rts
->value
> IEEE80211_MAX_RTS_THRESHOLD
)
852 local
->rts_threshold
= rts
->value
;
854 /* If the wlan card performs RTS/CTS in hardware/firmware,
855 * configure it here */
857 if (local
->ops
->set_rts_threshold
)
858 local
->ops
->set_rts_threshold(local_to_hw(local
),
859 local
->rts_threshold
);
864 static int ieee80211_ioctl_giwrts(struct net_device
*dev
,
865 struct iw_request_info
*info
,
866 struct iw_param
*rts
, char *extra
)
868 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
870 rts
->value
= local
->rts_threshold
;
871 rts
->disabled
= (rts
->value
>= IEEE80211_MAX_RTS_THRESHOLD
);
878 static int ieee80211_ioctl_siwfrag(struct net_device
*dev
,
879 struct iw_request_info
*info
,
880 struct iw_param
*frag
, char *extra
)
882 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
885 local
->fragmentation_threshold
= IEEE80211_MAX_FRAG_THRESHOLD
;
886 else if (frag
->value
< 256 ||
887 frag
->value
> IEEE80211_MAX_FRAG_THRESHOLD
)
890 /* Fragment length must be even, so strip LSB. */
891 local
->fragmentation_threshold
= frag
->value
& ~0x1;
894 /* If the wlan card performs fragmentation in hardware/firmware,
895 * configure it here */
897 if (local
->ops
->set_frag_threshold
)
898 local
->ops
->set_frag_threshold(
900 local
->fragmentation_threshold
);
905 static int ieee80211_ioctl_giwfrag(struct net_device
*dev
,
906 struct iw_request_info
*info
,
907 struct iw_param
*frag
, char *extra
)
909 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
911 frag
->value
= local
->fragmentation_threshold
;
912 frag
->disabled
= (frag
->value
>= IEEE80211_MAX_RTS_THRESHOLD
);
919 static int ieee80211_ioctl_siwretry(struct net_device
*dev
,
920 struct iw_request_info
*info
,
921 struct iw_param
*retry
, char *extra
)
923 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
925 if (retry
->disabled
||
926 (retry
->flags
& IW_RETRY_TYPE
) != IW_RETRY_LIMIT
)
929 if (retry
->flags
& IW_RETRY_MAX
)
930 local
->long_retry_limit
= retry
->value
;
931 else if (retry
->flags
& IW_RETRY_MIN
)
932 local
->short_retry_limit
= retry
->value
;
934 local
->long_retry_limit
= retry
->value
;
935 local
->short_retry_limit
= retry
->value
;
938 if (local
->ops
->set_retry_limit
) {
939 return local
->ops
->set_retry_limit(
941 local
->short_retry_limit
,
942 local
->long_retry_limit
);
949 static int ieee80211_ioctl_giwretry(struct net_device
*dev
,
950 struct iw_request_info
*info
,
951 struct iw_param
*retry
, char *extra
)
953 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
956 if (retry
->flags
== 0 || retry
->flags
& IW_RETRY_MIN
) {
957 /* first return min value, iwconfig will ask max value
959 retry
->flags
|= IW_RETRY_LIMIT
;
960 retry
->value
= local
->short_retry_limit
;
961 if (local
->long_retry_limit
!= local
->short_retry_limit
)
962 retry
->flags
|= IW_RETRY_MIN
;
965 if (retry
->flags
& IW_RETRY_MAX
) {
966 retry
->flags
= IW_RETRY_LIMIT
| IW_RETRY_MAX
;
967 retry
->value
= local
->long_retry_limit
;
973 static int ieee80211_ioctl_clear_keys(struct net_device
*dev
)
975 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
976 struct ieee80211_key_conf key
;
979 struct ieee80211_key_conf
*keyconf
;
980 struct ieee80211_sub_if_data
*sdata
;
981 struct sta_info
*sta
;
983 memset(addr
, 0xff, ETH_ALEN
);
984 read_lock(&local
->sub_if_lock
);
985 list_for_each_entry(sdata
, &local
->sub_if_list
, list
) {
986 for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
988 if (sdata
->keys
[i
] &&
989 !sdata
->keys
[i
]->force_sw_encrypt
&&
990 local
->ops
->set_key
&&
991 (keyconf
= ieee80211_key_data2conf(local
,
993 local
->ops
->set_key(local_to_hw(local
),
997 ieee80211_key_free(sdata
->keys
[i
]);
998 sdata
->keys
[i
] = NULL
;
1000 sdata
->default_key
= NULL
;
1002 read_unlock(&local
->sub_if_lock
);
1004 spin_lock_bh(&local
->sta_lock
);
1005 list_for_each_entry(sta
, &local
->sta_list
, list
) {
1007 if (sta
->key
&& !sta
->key
->force_sw_encrypt
&&
1008 local
->ops
->set_key
&&
1009 (keyconf
= ieee80211_key_data2conf(local
, sta
->key
)))
1010 local
->ops
->set_key(local_to_hw(local
), DISABLE_KEY
,
1011 sta
->addr
, keyconf
, sta
->aid
);
1013 ieee80211_key_free(sta
->key
);
1016 spin_unlock_bh(&local
->sta_lock
);
1018 memset(&key
, 0, sizeof(key
));
1019 if (local
->ops
->set_key
&&
1020 local
->ops
->set_key(local_to_hw(local
), REMOVE_ALL_KEYS
,
1022 printk(KERN_DEBUG
"%s: failed to remove hwaccel keys\n",
1030 ieee80211_ioctl_force_unicast_rate(struct net_device
*dev
,
1031 struct ieee80211_sub_if_data
*sdata
,
1034 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1035 struct ieee80211_hw_mode
*mode
;
1038 if (sdata
->type
!= IEEE80211_IF_TYPE_AP
)
1042 sdata
->u
.ap
.force_unicast_rateidx
= -1;
1046 mode
= local
->oper_hw_mode
;
1047 for (i
= 0; i
< mode
->num_rates
; i
++) {
1048 if (mode
->rates
[i
].rate
== rate
) {
1049 sdata
->u
.ap
.force_unicast_rateidx
= i
;
1058 ieee80211_ioctl_max_ratectrl_rate(struct net_device
*dev
,
1059 struct ieee80211_sub_if_data
*sdata
,
1062 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1063 struct ieee80211_hw_mode
*mode
;
1066 if (sdata
->type
!= IEEE80211_IF_TYPE_AP
)
1070 sdata
->u
.ap
.max_ratectrl_rateidx
= -1;
1074 mode
= local
->oper_hw_mode
;
1075 for (i
= 0; i
< mode
->num_rates
; i
++) {
1076 if (mode
->rates
[i
].rate
== rate
) {
1077 sdata
->u
.ap
.max_ratectrl_rateidx
= i
;
1085 static void ieee80211_key_enable_hwaccel(struct ieee80211_local
*local
,
1086 struct ieee80211_key
*key
)
1088 struct ieee80211_key_conf
*keyconf
;
1091 if (!key
|| key
->alg
!= ALG_WEP
|| !key
->force_sw_encrypt
||
1092 (local
->hw
.flags
& IEEE80211_HW_DEVICE_HIDES_WEP
))
1095 memset(addr
, 0xff, ETH_ALEN
);
1096 keyconf
= ieee80211_key_data2conf(local
, key
);
1097 if (keyconf
&& local
->ops
->set_key
&&
1098 local
->ops
->set_key(local_to_hw(local
),
1099 SET_KEY
, addr
, keyconf
, 0) == 0) {
1100 key
->force_sw_encrypt
=
1101 !!(keyconf
->flags
& IEEE80211_KEY_FORCE_SW_ENCRYPT
);
1102 key
->hw_key_idx
= keyconf
->hw_key_idx
;
1108 static void ieee80211_key_disable_hwaccel(struct ieee80211_local
*local
,
1109 struct ieee80211_key
*key
)
1111 struct ieee80211_key_conf
*keyconf
;
1114 if (!key
|| key
->alg
!= ALG_WEP
|| key
->force_sw_encrypt
||
1115 (local
->hw
.flags
& IEEE80211_HW_DEVICE_HIDES_WEP
))
1118 memset(addr
, 0xff, ETH_ALEN
);
1119 keyconf
= ieee80211_key_data2conf(local
, key
);
1120 if (keyconf
&& local
->ops
->set_key
)
1121 local
->ops
->set_key(local_to_hw(local
), DISABLE_KEY
,
1124 key
->force_sw_encrypt
= 1;
1128 static int ieee80211_ioctl_default_wep_only(struct ieee80211_local
*local
,
1132 struct ieee80211_sub_if_data
*sdata
;
1134 local
->default_wep_only
= value
;
1135 read_lock(&local
->sub_if_lock
);
1136 list_for_each_entry(sdata
, &local
->sub_if_list
, list
)
1137 for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++)
1139 ieee80211_key_enable_hwaccel(local
,
1142 ieee80211_key_disable_hwaccel(local
,
1144 read_unlock(&local
->sub_if_lock
);
1150 void ieee80211_update_default_wep_only(struct ieee80211_local
*local
)
1153 struct ieee80211_sub_if_data
*sdata
;
1155 read_lock(&local
->sub_if_lock
);
1156 list_for_each_entry(sdata
, &local
->sub_if_list
, list
) {
1158 if (sdata
->dev
== local
->mdev
)
1161 /* If there is an AP interface then depend on userspace to
1162 set default_wep_only correctly. */
1163 if (sdata
->type
== IEEE80211_IF_TYPE_AP
) {
1164 read_unlock(&local
->sub_if_lock
);
1171 read_unlock(&local
->sub_if_lock
);
1174 ieee80211_ioctl_default_wep_only(local
, 1);
1176 ieee80211_ioctl_default_wep_only(local
, 0);
1180 static int ieee80211_ioctl_prism2_param(struct net_device
*dev
,
1181 struct iw_request_info
*info
,
1182 void *wrqu
, char *extra
)
1184 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1185 struct ieee80211_sub_if_data
*sdata
;
1186 int *i
= (int *) extra
;
1188 int value
= *(i
+ 1);
1191 if (!capable(CAP_NET_ADMIN
))
1194 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1197 case PRISM2_PARAM_IEEE_802_1X
:
1198 if (local
->ops
->set_ieee8021x
)
1199 ret
= local
->ops
->set_ieee8021x(local_to_hw(local
),
1202 printk(KERN_DEBUG
"%s: failed to set IEEE 802.1X (%d) "
1203 "for low-level driver\n", dev
->name
, value
);
1205 sdata
->ieee802_1x
= value
;
1208 case PRISM2_PARAM_ANTSEL_TX
:
1209 local
->hw
.conf
.antenna_sel_tx
= value
;
1210 if (ieee80211_hw_config(local
))
1214 case PRISM2_PARAM_ANTSEL_RX
:
1215 local
->hw
.conf
.antenna_sel_rx
= value
;
1216 if (ieee80211_hw_config(local
))
1220 case PRISM2_PARAM_CTS_PROTECT_ERP_FRAMES
:
1221 local
->cts_protect_erp_frames
= value
;
1224 case PRISM2_PARAM_DROP_UNENCRYPTED
:
1225 sdata
->drop_unencrypted
= value
;
1228 case PRISM2_PARAM_PREAMBLE
:
1229 local
->short_preamble
= value
;
1232 case PRISM2_PARAM_STAT_TIME
:
1233 if (!local
->stat_time
&& value
) {
1234 local
->stat_timer
.expires
= jiffies
+ HZ
* value
/ 100;
1235 add_timer(&local
->stat_timer
);
1236 } else if (local
->stat_time
&& !value
) {
1237 del_timer_sync(&local
->stat_timer
);
1239 local
->stat_time
= value
;
1241 case PRISM2_PARAM_SHORT_SLOT_TIME
:
1243 local
->hw
.conf
.flags
|= IEEE80211_CONF_SHORT_SLOT_TIME
;
1245 local
->hw
.conf
.flags
&= ~IEEE80211_CONF_SHORT_SLOT_TIME
;
1246 if (ieee80211_hw_config(local
))
1250 case PRISM2_PARAM_NEXT_MODE
:
1251 local
->next_mode
= value
;
1254 case PRISM2_PARAM_CLEAR_KEYS
:
1255 ret
= ieee80211_ioctl_clear_keys(dev
);
1258 case PRISM2_PARAM_RADIO_ENABLED
:
1259 ret
= ieee80211_ioctl_set_radio_enabled(dev
, value
);
1262 case PRISM2_PARAM_ANTENNA_MODE
:
1263 local
->hw
.conf
.antenna_mode
= value
;
1264 if (ieee80211_hw_config(local
))
1268 case PRISM2_PARAM_STA_ANTENNA_SEL
:
1269 local
->sta_antenna_sel
= value
;
1272 case PRISM2_PARAM_FORCE_UNICAST_RATE
:
1273 ret
= ieee80211_ioctl_force_unicast_rate(dev
, sdata
, value
);
1276 case PRISM2_PARAM_MAX_RATECTRL_RATE
:
1277 ret
= ieee80211_ioctl_max_ratectrl_rate(dev
, sdata
, value
);
1280 case PRISM2_PARAM_RATE_CTRL_NUM_UP
:
1281 local
->rate_ctrl_num_up
= value
;
1284 case PRISM2_PARAM_RATE_CTRL_NUM_DOWN
:
1285 local
->rate_ctrl_num_down
= value
;
1288 case PRISM2_PARAM_TX_POWER_REDUCTION
:
1292 local
->hw
.conf
.tx_power_reduction
= value
;
1295 case PRISM2_PARAM_KEY_TX_RX_THRESHOLD
:
1296 local
->key_tx_rx_threshold
= value
;
1299 case PRISM2_PARAM_DEFAULT_WEP_ONLY
:
1300 ret
= ieee80211_ioctl_default_wep_only(local
, value
);
1303 case PRISM2_PARAM_WIFI_WME_NOACK_TEST
:
1304 local
->wifi_wme_noack_test
= value
;
1307 case PRISM2_PARAM_SCAN_FLAGS
:
1308 local
->scan_flags
= value
;
1311 case PRISM2_PARAM_MIXED_CELL
:
1312 if (sdata
->type
!= IEEE80211_IF_TYPE_STA
&&
1313 sdata
->type
!= IEEE80211_IF_TYPE_IBSS
)
1316 sdata
->u
.sta
.mixed_cell
= !!value
;
1319 case PRISM2_PARAM_HW_MODES
:
1320 local
->enabled_modes
= value
;
1323 case PRISM2_PARAM_CREATE_IBSS
:
1324 if (sdata
->type
!= IEEE80211_IF_TYPE_IBSS
)
1327 sdata
->u
.sta
.create_ibss
= !!value
;
1329 case PRISM2_PARAM_WMM_ENABLED
:
1330 if (sdata
->type
!= IEEE80211_IF_TYPE_STA
&&
1331 sdata
->type
!= IEEE80211_IF_TYPE_IBSS
)
1334 sdata
->u
.sta
.wmm_enabled
= !!value
;
1336 case PRISM2_PARAM_RADAR_DETECT
:
1337 local
->hw
.conf
.radar_detect
= value
;
1339 case PRISM2_PARAM_SPECTRUM_MGMT
:
1340 local
->hw
.conf
.spect_mgmt
= value
;
1351 static int ieee80211_ioctl_get_prism2_param(struct net_device
*dev
,
1352 struct iw_request_info
*info
,
1353 void *wrqu
, char *extra
)
1355 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1356 struct ieee80211_sub_if_data
*sdata
;
1357 int *param
= (int *) extra
;
1360 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1363 case PRISM2_PARAM_IEEE_802_1X
:
1364 *param
= sdata
->ieee802_1x
;
1367 case PRISM2_PARAM_ANTSEL_TX
:
1368 *param
= local
->hw
.conf
.antenna_sel_tx
;
1371 case PRISM2_PARAM_ANTSEL_RX
:
1372 *param
= local
->hw
.conf
.antenna_sel_rx
;
1375 case PRISM2_PARAM_CTS_PROTECT_ERP_FRAMES
:
1376 *param
= local
->cts_protect_erp_frames
;
1379 case PRISM2_PARAM_DROP_UNENCRYPTED
:
1380 *param
= sdata
->drop_unencrypted
;
1383 case PRISM2_PARAM_PREAMBLE
:
1384 *param
= local
->short_preamble
;
1387 case PRISM2_PARAM_STAT_TIME
:
1388 *param
= local
->stat_time
;
1390 case PRISM2_PARAM_SHORT_SLOT_TIME
:
1391 *param
= !!(local
->hw
.conf
.flags
& IEEE80211_CONF_SHORT_SLOT_TIME
);
1394 case PRISM2_PARAM_NEXT_MODE
:
1395 *param
= local
->next_mode
;
1398 case PRISM2_PARAM_ANTENNA_MODE
:
1399 *param
= local
->hw
.conf
.antenna_mode
;
1402 case PRISM2_PARAM_STA_ANTENNA_SEL
:
1403 *param
= local
->sta_antenna_sel
;
1406 case PRISM2_PARAM_RATE_CTRL_NUM_UP
:
1407 *param
= local
->rate_ctrl_num_up
;
1410 case PRISM2_PARAM_RATE_CTRL_NUM_DOWN
:
1411 *param
= local
->rate_ctrl_num_down
;
1414 case PRISM2_PARAM_TX_POWER_REDUCTION
:
1415 *param
= local
->hw
.conf
.tx_power_reduction
;
1418 case PRISM2_PARAM_KEY_TX_RX_THRESHOLD
:
1419 *param
= local
->key_tx_rx_threshold
;
1422 case PRISM2_PARAM_DEFAULT_WEP_ONLY
:
1423 *param
= local
->default_wep_only
;
1426 case PRISM2_PARAM_WIFI_WME_NOACK_TEST
:
1427 *param
= local
->wifi_wme_noack_test
;
1430 case PRISM2_PARAM_SCAN_FLAGS
:
1431 *param
= local
->scan_flags
;
1434 case PRISM2_PARAM_HW_MODES
:
1435 *param
= local
->enabled_modes
;
1438 case PRISM2_PARAM_CREATE_IBSS
:
1439 if (sdata
->type
!= IEEE80211_IF_TYPE_IBSS
)
1442 *param
= !!sdata
->u
.sta
.create_ibss
;
1445 case PRISM2_PARAM_MIXED_CELL
:
1446 if (sdata
->type
!= IEEE80211_IF_TYPE_STA
&&
1447 sdata
->type
!= IEEE80211_IF_TYPE_IBSS
)
1450 *param
= !!sdata
->u
.sta
.mixed_cell
;
1452 case PRISM2_PARAM_WMM_ENABLED
:
1453 if (sdata
->type
!= IEEE80211_IF_TYPE_STA
&&
1454 sdata
->type
!= IEEE80211_IF_TYPE_IBSS
)
1457 *param
= !!sdata
->u
.sta
.wmm_enabled
;
1467 static int ieee80211_ioctl_siwmlme(struct net_device
*dev
,
1468 struct iw_request_info
*info
,
1469 struct iw_point
*data
, char *extra
)
1471 struct ieee80211_sub_if_data
*sdata
;
1472 struct iw_mlme
*mlme
= (struct iw_mlme
*) extra
;
1474 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1475 if (sdata
->type
!= IEEE80211_IF_TYPE_STA
&&
1476 sdata
->type
!= IEEE80211_IF_TYPE_IBSS
)
1479 switch (mlme
->cmd
) {
1480 case IW_MLME_DEAUTH
:
1481 /* TODO: mlme->addr.sa_data */
1482 return ieee80211_sta_deauthenticate(dev
, mlme
->reason_code
);
1483 case IW_MLME_DISASSOC
:
1484 /* TODO: mlme->addr.sa_data */
1485 return ieee80211_sta_disassociate(dev
, mlme
->reason_code
);
1492 static int ieee80211_ioctl_siwencode(struct net_device
*dev
,
1493 struct iw_request_info
*info
,
1494 struct iw_point
*erq
, char *keybuf
)
1496 struct ieee80211_sub_if_data
*sdata
;
1497 int idx
, i
, alg
= ALG_WEP
;
1498 u8 bcaddr
[ETH_ALEN
] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
1500 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1502 idx
= erq
->flags
& IW_ENCODE_INDEX
;
1504 if (sdata
->default_key
)
1505 for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
1506 if (sdata
->default_key
== sdata
->keys
[i
]) {
1511 } else if (idx
< 1 || idx
> 4)
1516 if (erq
->flags
& IW_ENCODE_DISABLED
)
1518 else if (erq
->length
== 0) {
1519 /* No key data - just set the default TX key index */
1520 if (sdata
->default_key
!= sdata
->keys
[idx
]) {
1521 ieee80211_debugfs_key_remove_default(sdata
);
1522 sdata
->default_key
= sdata
->keys
[idx
];
1523 if (sdata
->default_key
)
1524 ieee80211_debugfs_key_add_default(sdata
);
1529 return ieee80211_set_encryption(
1532 !sdata
->default_key
,
1533 keybuf
, erq
->length
);
1537 static int ieee80211_ioctl_giwencode(struct net_device
*dev
,
1538 struct iw_request_info
*info
,
1539 struct iw_point
*erq
, char *key
)
1541 struct ieee80211_sub_if_data
*sdata
;
1544 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1546 idx
= erq
->flags
& IW_ENCODE_INDEX
;
1547 if (idx
< 1 || idx
> 4) {
1549 if (!sdata
->default_key
)
1551 else for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
1552 if (sdata
->default_key
== sdata
->keys
[i
]) {
1562 erq
->flags
= idx
+ 1;
1564 if (!sdata
->keys
[idx
]) {
1566 erq
->flags
|= IW_ENCODE_DISABLED
;
1570 memcpy(key
, sdata
->keys
[idx
]->key
,
1571 min((int)erq
->length
, sdata
->keys
[idx
]->keylen
));
1572 erq
->length
= sdata
->keys
[idx
]->keylen
;
1573 erq
->flags
|= IW_ENCODE_ENABLED
;
1578 static int ieee80211_ioctl_siwauth(struct net_device
*dev
,
1579 struct iw_request_info
*info
,
1580 struct iw_param
*data
, char *extra
)
1582 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1583 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1586 switch (data
->flags
& IW_AUTH_INDEX
) {
1587 case IW_AUTH_WPA_VERSION
:
1588 case IW_AUTH_CIPHER_PAIRWISE
:
1589 case IW_AUTH_CIPHER_GROUP
:
1590 case IW_AUTH_WPA_ENABLED
:
1591 case IW_AUTH_RX_UNENCRYPTED_EAPOL
:
1593 case IW_AUTH_KEY_MGMT
:
1594 if (sdata
->type
!= IEEE80211_IF_TYPE_STA
)
1598 * TODO: sdata->u.sta.key_mgmt does not match with WE18
1599 * value completely; could consider modifying this to
1600 * be closer to WE18. For now, this value is not really
1601 * used for anything else than Privacy matching, so the
1602 * current code here should be more or less OK.
1604 if (data
->value
& IW_AUTH_KEY_MGMT_802_1X
) {
1605 sdata
->u
.sta
.key_mgmt
=
1606 IEEE80211_KEY_MGMT_WPA_EAP
;
1607 } else if (data
->value
& IW_AUTH_KEY_MGMT_PSK
) {
1608 sdata
->u
.sta
.key_mgmt
=
1609 IEEE80211_KEY_MGMT_WPA_PSK
;
1611 sdata
->u
.sta
.key_mgmt
=
1612 IEEE80211_KEY_MGMT_NONE
;
1616 case IW_AUTH_80211_AUTH_ALG
:
1617 if (sdata
->type
== IEEE80211_IF_TYPE_STA
||
1618 sdata
->type
== IEEE80211_IF_TYPE_IBSS
)
1619 sdata
->u
.sta
.auth_algs
= data
->value
;
1623 case IW_AUTH_PRIVACY_INVOKED
:
1624 if (local
->ops
->set_privacy_invoked
)
1625 ret
= local
->ops
->set_privacy_invoked(
1626 local_to_hw(local
), data
->value
);
1635 /* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
1636 static struct iw_statistics
*ieee80211_get_wireless_stats(struct net_device
*dev
)
1638 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1639 struct iw_statistics
*wstats
= &local
->wstats
;
1640 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1641 struct sta_info
*sta
= NULL
;
1643 if (sdata
->type
== IEEE80211_IF_TYPE_STA
||
1644 sdata
->type
== IEEE80211_IF_TYPE_IBSS
)
1645 sta
= sta_info_get(local
, sdata
->u
.sta
.bssid
);
1647 wstats
->discard
.fragment
= 0;
1648 wstats
->discard
.misc
= 0;
1649 wstats
->qual
.qual
= 0;
1650 wstats
->qual
.level
= 0;
1651 wstats
->qual
.noise
= 0;
1652 wstats
->qual
.updated
= IW_QUAL_ALL_INVALID
;
1654 wstats
->qual
.level
= sta
->last_rssi
;
1655 wstats
->qual
.qual
= sta
->last_signal
;
1656 wstats
->qual
.noise
= sta
->last_noise
;
1657 wstats
->qual
.updated
= local
->wstats_flags
;
1663 static int ieee80211_ioctl_giwauth(struct net_device
*dev
,
1664 struct iw_request_info
*info
,
1665 struct iw_param
*data
, char *extra
)
1667 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1670 switch (data
->flags
& IW_AUTH_INDEX
) {
1671 case IW_AUTH_80211_AUTH_ALG
:
1672 if (sdata
->type
== IEEE80211_IF_TYPE_STA
||
1673 sdata
->type
== IEEE80211_IF_TYPE_IBSS
)
1674 data
->value
= sdata
->u
.sta
.auth_algs
;
1686 static int ieee80211_ioctl_siwencodeext(struct net_device
*dev
,
1687 struct iw_request_info
*info
,
1688 struct iw_point
*erq
, char *extra
)
1690 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1691 struct iw_encode_ext
*ext
= (struct iw_encode_ext
*) extra
;
1695 case IW_ENCODE_ALG_NONE
:
1698 case IW_ENCODE_ALG_WEP
:
1701 case IW_ENCODE_ALG_TKIP
:
1704 case IW_ENCODE_ALG_CCMP
:
1711 if (erq
->flags
& IW_ENCODE_DISABLED
)
1714 idx
= erq
->flags
& IW_ENCODE_INDEX
;
1715 if (idx
< 1 || idx
> 4) {
1717 if (!sdata
->default_key
)
1719 else for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
1720 if (sdata
->default_key
== sdata
->keys
[i
]) {
1730 return ieee80211_set_encryption(dev
, ext
->addr
.sa_data
, idx
, alg
,
1732 IW_ENCODE_EXT_SET_TX_KEY
,
1733 ext
->key
, ext
->key_len
);
1737 static const struct iw_priv_args ieee80211_ioctl_priv
[] = {
1738 { PRISM2_IOCTL_PRISM2_PARAM
,
1739 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 2, 0, "param" },
1740 { PRISM2_IOCTL_GET_PRISM2_PARAM
,
1741 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
1742 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "get_param" },
1745 /* Structures to export the Wireless Handlers */
1747 static const iw_handler ieee80211_handler
[] =
1749 (iw_handler
) NULL
, /* SIOCSIWCOMMIT */
1750 (iw_handler
) ieee80211_ioctl_giwname
, /* SIOCGIWNAME */
1751 (iw_handler
) NULL
, /* SIOCSIWNWID */
1752 (iw_handler
) NULL
, /* SIOCGIWNWID */
1753 (iw_handler
) ieee80211_ioctl_siwfreq
, /* SIOCSIWFREQ */
1754 (iw_handler
) ieee80211_ioctl_giwfreq
, /* SIOCGIWFREQ */
1755 (iw_handler
) ieee80211_ioctl_siwmode
, /* SIOCSIWMODE */
1756 (iw_handler
) ieee80211_ioctl_giwmode
, /* SIOCGIWMODE */
1757 (iw_handler
) NULL
, /* SIOCSIWSENS */
1758 (iw_handler
) NULL
, /* SIOCGIWSENS */
1759 (iw_handler
) NULL
/* not used */, /* SIOCSIWRANGE */
1760 (iw_handler
) ieee80211_ioctl_giwrange
, /* SIOCGIWRANGE */
1761 (iw_handler
) NULL
/* not used */, /* SIOCSIWPRIV */
1762 (iw_handler
) NULL
/* kernel code */, /* SIOCGIWPRIV */
1763 (iw_handler
) NULL
/* not used */, /* SIOCSIWSTATS */
1764 (iw_handler
) NULL
/* kernel code */, /* SIOCGIWSTATS */
1765 iw_handler_set_spy
, /* SIOCSIWSPY */
1766 iw_handler_get_spy
, /* SIOCGIWSPY */
1767 iw_handler_set_thrspy
, /* SIOCSIWTHRSPY */
1768 iw_handler_get_thrspy
, /* SIOCGIWTHRSPY */
1769 (iw_handler
) ieee80211_ioctl_siwap
, /* SIOCSIWAP */
1770 (iw_handler
) ieee80211_ioctl_giwap
, /* SIOCGIWAP */
1771 (iw_handler
) ieee80211_ioctl_siwmlme
, /* SIOCSIWMLME */
1772 (iw_handler
) NULL
, /* SIOCGIWAPLIST */
1773 (iw_handler
) ieee80211_ioctl_siwscan
, /* SIOCSIWSCAN */
1774 (iw_handler
) ieee80211_ioctl_giwscan
, /* SIOCGIWSCAN */
1775 (iw_handler
) ieee80211_ioctl_siwessid
, /* SIOCSIWESSID */
1776 (iw_handler
) ieee80211_ioctl_giwessid
, /* SIOCGIWESSID */
1777 (iw_handler
) NULL
, /* SIOCSIWNICKN */
1778 (iw_handler
) NULL
, /* SIOCGIWNICKN */
1779 (iw_handler
) NULL
, /* -- hole -- */
1780 (iw_handler
) NULL
, /* -- hole -- */
1781 (iw_handler
) NULL
, /* SIOCSIWRATE */
1782 (iw_handler
) NULL
, /* SIOCGIWRATE */
1783 (iw_handler
) ieee80211_ioctl_siwrts
, /* SIOCSIWRTS */
1784 (iw_handler
) ieee80211_ioctl_giwrts
, /* SIOCGIWRTS */
1785 (iw_handler
) ieee80211_ioctl_siwfrag
, /* SIOCSIWFRAG */
1786 (iw_handler
) ieee80211_ioctl_giwfrag
, /* SIOCGIWFRAG */
1787 (iw_handler
) NULL
, /* SIOCSIWTXPOW */
1788 (iw_handler
) NULL
, /* SIOCGIWTXPOW */
1789 (iw_handler
) ieee80211_ioctl_siwretry
, /* SIOCSIWRETRY */
1790 (iw_handler
) ieee80211_ioctl_giwretry
, /* SIOCGIWRETRY */
1791 (iw_handler
) ieee80211_ioctl_siwencode
, /* SIOCSIWENCODE */
1792 (iw_handler
) ieee80211_ioctl_giwencode
, /* SIOCGIWENCODE */
1793 (iw_handler
) NULL
, /* SIOCSIWPOWER */
1794 (iw_handler
) NULL
, /* SIOCGIWPOWER */
1795 (iw_handler
) NULL
, /* -- hole -- */
1796 (iw_handler
) NULL
, /* -- hole -- */
1797 (iw_handler
) ieee80211_ioctl_siwgenie
, /* SIOCSIWGENIE */
1798 (iw_handler
) NULL
, /* SIOCGIWGENIE */
1799 (iw_handler
) ieee80211_ioctl_siwauth
, /* SIOCSIWAUTH */
1800 (iw_handler
) ieee80211_ioctl_giwauth
, /* SIOCGIWAUTH */
1801 (iw_handler
) ieee80211_ioctl_siwencodeext
, /* SIOCSIWENCODEEXT */
1802 (iw_handler
) NULL
, /* SIOCGIWENCODEEXT */
1803 (iw_handler
) NULL
, /* SIOCSIWPMKSA */
1804 (iw_handler
) NULL
, /* -- hole -- */
1807 static const iw_handler ieee80211_private_handler
[] =
1808 { /* SIOCIWFIRSTPRIV + */
1809 (iw_handler
) ieee80211_ioctl_prism2_param
, /* 0 */
1810 (iw_handler
) ieee80211_ioctl_get_prism2_param
, /* 1 */
1813 const struct iw_handler_def ieee80211_iw_handler_def
=
1815 .num_standard
= ARRAY_SIZE(ieee80211_handler
),
1816 .num_private
= ARRAY_SIZE(ieee80211_private_handler
),
1817 .num_private_args
= ARRAY_SIZE(ieee80211_ioctl_priv
),
1818 .standard
= (iw_handler
*) ieee80211_handler
,
1819 .private = (iw_handler
*) ieee80211_private_handler
,
1820 .private_args
= (struct iw_priv_args
*) ieee80211_ioctl_priv
,
1821 .get_wireless_stats
= ieee80211_get_wireless_stats
,