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 "ieee80211_led.h"
25 #include "ieee80211_rate.h"
30 static int ieee80211_set_encryption(struct net_device
*dev
, u8
*sta_addr
,
31 int idx
, int alg
, int remove
,
32 int set_tx_key
, const u8
*_key
,
35 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
38 struct ieee80211_key
*key
;
39 struct ieee80211_sub_if_data
*sdata
;
41 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
43 if (idx
< 0 || idx
>= NUM_DEFAULT_KEYS
) {
44 printk(KERN_DEBUG
"%s: set_encrypt - invalid idx=%d\n",
49 if (is_broadcast_ether_addr(sta_addr
)) {
51 key
= sdata
->keys
[idx
];
55 * According to the standard, the key index of a pairwise
56 * key must be zero. However, some AP are broken when it
57 * comes to WEP key indices, so we work around this.
59 if (idx
!= 0 && alg
!= ALG_WEP
) {
60 printk(KERN_DEBUG
"%s: set_encrypt - non-zero idx for "
61 "individual key\n", dev
->name
);
65 sta
= sta_info_get(local
, sta_addr
);
67 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
69 printk(KERN_DEBUG
"%s: set_encrypt - unknown addr "
71 dev
->name
, print_mac(mac
, sta_addr
));
72 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
81 ieee80211_key_free(key
);
85 * Automatically frees any old key if present.
87 key
= ieee80211_key_alloc(sdata
, sta
, alg
, idx
, key_len
, _key
);
94 if (set_tx_key
|| (!sta
&& !sdata
->default_key
&& key
))
95 ieee80211_set_default_key(sdata
, idx
);
104 static int ieee80211_ioctl_siwgenie(struct net_device
*dev
,
105 struct iw_request_info
*info
,
106 struct iw_point
*data
, char *extra
)
108 struct ieee80211_sub_if_data
*sdata
;
110 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
112 if (sdata
->flags
& IEEE80211_SDATA_USERSPACE_MLME
)
115 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
116 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
117 int ret
= ieee80211_sta_set_extra_ie(dev
, extra
, data
->length
);
120 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_AUTO_BSSID_SEL
;
121 ieee80211_sta_req_auth(dev
, &sdata
->u
.sta
);
128 static int ieee80211_ioctl_giwname(struct net_device
*dev
,
129 struct iw_request_info
*info
,
130 char *name
, char *extra
)
132 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
134 switch (local
->hw
.conf
.phymode
) {
135 case MODE_IEEE80211A
:
136 strcpy(name
, "IEEE 802.11a");
138 case MODE_IEEE80211B
:
139 strcpy(name
, "IEEE 802.11b");
141 case MODE_IEEE80211G
:
142 strcpy(name
, "IEEE 802.11g");
145 strcpy(name
, "IEEE 802.11");
153 static int ieee80211_ioctl_giwrange(struct net_device
*dev
,
154 struct iw_request_info
*info
,
155 struct iw_point
*data
, char *extra
)
157 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
158 struct iw_range
*range
= (struct iw_range
*) extra
;
159 struct ieee80211_hw_mode
*mode
= NULL
;
162 data
->length
= sizeof(struct iw_range
);
163 memset(range
, 0, sizeof(struct iw_range
));
165 range
->we_version_compiled
= WIRELESS_EXT
;
166 range
->we_version_source
= 21;
167 range
->retry_capa
= IW_RETRY_LIMIT
;
168 range
->retry_flags
= IW_RETRY_LIMIT
;
169 range
->min_retry
= 0;
170 range
->max_retry
= 255;
172 range
->max_rts
= 2347;
173 range
->min_frag
= 256;
174 range
->max_frag
= 2346;
176 range
->encoding_size
[0] = 5;
177 range
->encoding_size
[1] = 13;
178 range
->num_encoding_sizes
= 2;
179 range
->max_encoding_tokens
= NUM_DEFAULT_KEYS
;
181 range
->max_qual
.qual
= local
->hw
.max_signal
;
182 range
->max_qual
.level
= local
->hw
.max_rssi
;
183 range
->max_qual
.noise
= local
->hw
.max_noise
;
184 range
->max_qual
.updated
= local
->wstats_flags
;
186 range
->avg_qual
.qual
= local
->hw
.max_signal
/2;
187 range
->avg_qual
.level
= 0;
188 range
->avg_qual
.noise
= 0;
189 range
->avg_qual
.updated
= local
->wstats_flags
;
191 range
->enc_capa
= IW_ENC_CAPA_WPA
| IW_ENC_CAPA_WPA2
|
192 IW_ENC_CAPA_CIPHER_TKIP
| IW_ENC_CAPA_CIPHER_CCMP
;
194 list_for_each_entry(mode
, &local
->modes_list
, list
) {
197 if (!(local
->enabled_modes
& (1 << mode
->mode
)) ||
198 (local
->hw_modes
& local
->enabled_modes
&
199 (1 << MODE_IEEE80211G
) && mode
->mode
== MODE_IEEE80211B
))
202 while (i
< mode
->num_channels
&& c
< IW_MAX_FREQUENCIES
) {
203 struct ieee80211_channel
*chan
= &mode
->channels
[i
];
205 if (chan
->flag
& IEEE80211_CHAN_W_SCAN
) {
206 range
->freq
[c
].i
= chan
->chan
;
207 range
->freq
[c
].m
= chan
->freq
* 100000;
208 range
->freq
[c
].e
= 1;
214 range
->num_channels
= c
;
215 range
->num_frequency
= c
;
217 IW_EVENT_CAPA_SET_KERNEL(range
->event_capa
);
218 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWTHRSPY
);
219 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWAP
);
220 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWSCAN
);
222 range
->scan_capa
|= IW_SCAN_CAPA_ESSID
;
228 static int ieee80211_ioctl_siwmode(struct net_device
*dev
,
229 struct iw_request_info
*info
,
230 __u32
*mode
, char *extra
)
232 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
235 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_VLAN
)
240 type
= IEEE80211_IF_TYPE_STA
;
243 type
= IEEE80211_IF_TYPE_IBSS
;
245 case IW_MODE_MONITOR
:
246 type
= IEEE80211_IF_TYPE_MNTR
;
252 if (type
== sdata
->vif
.type
)
254 if (netif_running(dev
))
257 ieee80211_if_reinit(dev
);
258 ieee80211_if_set_type(dev
, type
);
264 static int ieee80211_ioctl_giwmode(struct net_device
*dev
,
265 struct iw_request_info
*info
,
266 __u32
*mode
, char *extra
)
268 struct ieee80211_sub_if_data
*sdata
;
270 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
271 switch (sdata
->vif
.type
) {
272 case IEEE80211_IF_TYPE_AP
:
273 *mode
= IW_MODE_MASTER
;
275 case IEEE80211_IF_TYPE_STA
:
276 *mode
= IW_MODE_INFRA
;
278 case IEEE80211_IF_TYPE_IBSS
:
279 *mode
= IW_MODE_ADHOC
;
281 case IEEE80211_IF_TYPE_MNTR
:
282 *mode
= IW_MODE_MONITOR
;
284 case IEEE80211_IF_TYPE_WDS
:
285 *mode
= IW_MODE_REPEAT
;
287 case IEEE80211_IF_TYPE_VLAN
:
288 *mode
= IW_MODE_SECOND
; /* FIXME */
291 *mode
= IW_MODE_AUTO
;
297 int ieee80211_set_channel(struct ieee80211_local
*local
, int channel
, int freq
)
299 struct ieee80211_hw_mode
*mode
;
303 list_for_each_entry(mode
, &local
->modes_list
, list
) {
304 if (!(local
->enabled_modes
& (1 << mode
->mode
)))
306 for (c
= 0; c
< mode
->num_channels
; c
++) {
307 struct ieee80211_channel
*chan
= &mode
->channels
[c
];
308 if (chan
->flag
& IEEE80211_CHAN_W_SCAN
&&
309 ((chan
->chan
== channel
) || (chan
->freq
== freq
))) {
310 local
->oper_channel
= chan
;
311 local
->oper_hw_mode
= mode
;
321 if (local
->sta_sw_scanning
)
324 ret
= ieee80211_hw_config(local
);
326 rate_control_clear(local
);
332 static int ieee80211_ioctl_siwfreq(struct net_device
*dev
,
333 struct iw_request_info
*info
,
334 struct iw_freq
*freq
, char *extra
)
336 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
337 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
339 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
)
340 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_AUTO_CHANNEL_SEL
;
342 /* freq->e == 0: freq->m = channel; otherwise freq = m * 10^e */
345 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
)
346 sdata
->u
.sta
.flags
|=
347 IEEE80211_STA_AUTO_CHANNEL_SEL
;
350 return ieee80211_set_channel(local
, freq
->m
, -1);
352 int i
, div
= 1000000;
353 for (i
= 0; i
< freq
->e
; i
++)
356 return ieee80211_set_channel(local
, -1, freq
->m
/ div
);
363 static int ieee80211_ioctl_giwfreq(struct net_device
*dev
,
364 struct iw_request_info
*info
,
365 struct iw_freq
*freq
, char *extra
)
367 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
369 /* TODO: in station mode (Managed/Ad-hoc) might need to poll low-level
370 * driver for the current channel with firmware-based management */
372 freq
->m
= local
->hw
.conf
.freq
;
379 static int ieee80211_ioctl_siwessid(struct net_device
*dev
,
380 struct iw_request_info
*info
,
381 struct iw_point
*data
, char *ssid
)
383 struct ieee80211_sub_if_data
*sdata
;
384 size_t len
= data
->length
;
386 /* iwconfig uses nul termination in SSID.. */
387 if (len
> 0 && ssid
[len
- 1] == '\0')
390 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
391 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
392 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
394 if (sdata
->flags
& IEEE80211_SDATA_USERSPACE_MLME
) {
395 if (len
> IEEE80211_MAX_SSID_LEN
)
397 memcpy(sdata
->u
.sta
.ssid
, ssid
, len
);
398 sdata
->u
.sta
.ssid_len
= len
;
402 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_AUTO_SSID_SEL
;
404 sdata
->u
.sta
.flags
|= IEEE80211_STA_AUTO_SSID_SEL
;
405 ret
= ieee80211_sta_set_ssid(dev
, ssid
, len
);
408 ieee80211_sta_req_auth(dev
, &sdata
->u
.sta
);
412 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_AP
) {
413 memcpy(sdata
->u
.ap
.ssid
, ssid
, len
);
414 memset(sdata
->u
.ap
.ssid
+ len
, 0,
415 IEEE80211_MAX_SSID_LEN
- len
);
416 sdata
->u
.ap
.ssid_len
= len
;
417 return ieee80211_if_config(dev
);
423 static int ieee80211_ioctl_giwessid(struct net_device
*dev
,
424 struct iw_request_info
*info
,
425 struct iw_point
*data
, char *ssid
)
429 struct ieee80211_sub_if_data
*sdata
;
430 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
431 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
432 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
433 int res
= ieee80211_sta_get_ssid(dev
, ssid
, &len
);
442 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_AP
) {
443 len
= sdata
->u
.ap
.ssid_len
;
444 if (len
> IW_ESSID_MAX_SIZE
)
445 len
= IW_ESSID_MAX_SIZE
;
446 memcpy(ssid
, sdata
->u
.ap
.ssid
, len
);
455 static int ieee80211_ioctl_siwap(struct net_device
*dev
,
456 struct iw_request_info
*info
,
457 struct sockaddr
*ap_addr
, char *extra
)
459 struct ieee80211_sub_if_data
*sdata
;
461 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
462 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
463 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
465 if (sdata
->flags
& IEEE80211_SDATA_USERSPACE_MLME
) {
466 memcpy(sdata
->u
.sta
.bssid
, (u8
*) &ap_addr
->sa_data
,
470 if (is_zero_ether_addr((u8
*) &ap_addr
->sa_data
))
471 sdata
->u
.sta
.flags
|= IEEE80211_STA_AUTO_BSSID_SEL
|
472 IEEE80211_STA_AUTO_CHANNEL_SEL
;
473 else if (is_broadcast_ether_addr((u8
*) &ap_addr
->sa_data
))
474 sdata
->u
.sta
.flags
|= IEEE80211_STA_AUTO_BSSID_SEL
;
476 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_AUTO_BSSID_SEL
;
477 ret
= ieee80211_sta_set_bssid(dev
, (u8
*) &ap_addr
->sa_data
);
480 ieee80211_sta_req_auth(dev
, &sdata
->u
.sta
);
482 } else if (sdata
->vif
.type
== IEEE80211_IF_TYPE_WDS
) {
483 if (memcmp(sdata
->u
.wds
.remote_addr
, (u8
*) &ap_addr
->sa_data
,
486 return ieee80211_if_update_wds(dev
, (u8
*) &ap_addr
->sa_data
);
493 static int ieee80211_ioctl_giwap(struct net_device
*dev
,
494 struct iw_request_info
*info
,
495 struct sockaddr
*ap_addr
, char *extra
)
497 struct ieee80211_sub_if_data
*sdata
;
499 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
500 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
501 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
502 ap_addr
->sa_family
= ARPHRD_ETHER
;
503 memcpy(&ap_addr
->sa_data
, sdata
->u
.sta
.bssid
, ETH_ALEN
);
505 } else if (sdata
->vif
.type
== IEEE80211_IF_TYPE_WDS
) {
506 ap_addr
->sa_family
= ARPHRD_ETHER
;
507 memcpy(&ap_addr
->sa_data
, sdata
->u
.wds
.remote_addr
, ETH_ALEN
);
515 static int ieee80211_ioctl_siwscan(struct net_device
*dev
,
516 struct iw_request_info
*info
,
517 union iwreq_data
*wrqu
, char *extra
)
519 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
520 struct iw_scan_req
*req
= NULL
;
524 if (!netif_running(dev
))
527 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
&&
528 sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
&&
529 sdata
->vif
.type
!= IEEE80211_IF_TYPE_AP
)
532 /* if SSID was specified explicitly then use that */
533 if (wrqu
->data
.length
== sizeof(struct iw_scan_req
) &&
534 wrqu
->data
.flags
& IW_SCAN_THIS_ESSID
) {
535 req
= (struct iw_scan_req
*)extra
;
537 ssid_len
= req
->essid_len
;
540 return ieee80211_sta_req_scan(dev
, ssid
, ssid_len
);
544 static int ieee80211_ioctl_giwscan(struct net_device
*dev
,
545 struct iw_request_info
*info
,
546 struct iw_point
*data
, char *extra
)
549 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
551 if (local
->sta_sw_scanning
|| local
->sta_hw_scanning
)
554 res
= ieee80211_sta_scan_results(dev
, extra
, data
->length
);
564 static int ieee80211_ioctl_siwrate(struct net_device
*dev
,
565 struct iw_request_info
*info
,
566 struct iw_param
*rate
, char *extra
)
568 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
569 struct ieee80211_hw_mode
*mode
;
571 u32 target_rate
= rate
->value
/ 100000;
572 struct ieee80211_sub_if_data
*sdata
;
574 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
577 mode
= local
->oper_hw_mode
;
578 /* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
579 * target_rate = X, rate->fixed = 1 means only rate X
580 * target_rate = X, rate->fixed = 0 means all rates <= X */
581 sdata
->bss
->max_ratectrl_rateidx
= -1;
582 sdata
->bss
->force_unicast_rateidx
= -1;
585 for (i
=0; i
< mode
->num_rates
; i
++) {
586 struct ieee80211_rate
*rates
= &mode
->rates
[i
];
587 int this_rate
= rates
->rate
;
589 if (target_rate
== this_rate
) {
590 sdata
->bss
->max_ratectrl_rateidx
= i
;
592 sdata
->bss
->force_unicast_rateidx
= i
;
599 static int ieee80211_ioctl_giwrate(struct net_device
*dev
,
600 struct iw_request_info
*info
,
601 struct iw_param
*rate
, char *extra
)
603 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
604 struct sta_info
*sta
;
605 struct ieee80211_sub_if_data
*sdata
;
607 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
608 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
)
609 sta
= sta_info_get(local
, sdata
->u
.sta
.bssid
);
614 if (sta
->txrate
< local
->oper_hw_mode
->num_rates
)
615 rate
->value
= local
->oper_hw_mode
->rates
[sta
->txrate
].rate
* 100000;
622 static int ieee80211_ioctl_siwtxpower(struct net_device
*dev
,
623 struct iw_request_info
*info
,
624 union iwreq_data
*data
, char *extra
)
626 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
627 bool need_reconfig
= 0;
630 if ((data
->txpower
.flags
& IW_TXPOW_TYPE
) != IW_TXPOW_DBM
)
632 if (data
->txpower
.flags
& IW_TXPOW_RANGE
)
635 if (data
->txpower
.fixed
) {
636 new_power_level
= data
->txpower
.value
;
638 /* Automatic power level. Get the px power from the current
640 struct ieee80211_channel
* chan
= local
->oper_channel
;
644 new_power_level
= chan
->power_level
;
647 if (local
->hw
.conf
.power_level
!= new_power_level
) {
648 local
->hw
.conf
.power_level
= new_power_level
;
652 if (local
->hw
.conf
.radio_enabled
!= !(data
->txpower
.disabled
)) {
653 local
->hw
.conf
.radio_enabled
= !(data
->txpower
.disabled
);
655 ieee80211_led_radio(local
, local
->hw
.conf
.radio_enabled
);
659 ieee80211_hw_config(local
);
660 /* The return value of hw_config is not of big interest here,
661 * as it doesn't say that it failed because of _this_ config
662 * change or something else. Ignore it. */
668 static int ieee80211_ioctl_giwtxpower(struct net_device
*dev
,
669 struct iw_request_info
*info
,
670 union iwreq_data
*data
, char *extra
)
672 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
674 data
->txpower
.fixed
= 1;
675 data
->txpower
.disabled
= !(local
->hw
.conf
.radio_enabled
);
676 data
->txpower
.value
= local
->hw
.conf
.power_level
;
677 data
->txpower
.flags
= IW_TXPOW_DBM
;
682 static int ieee80211_ioctl_siwrts(struct net_device
*dev
,
683 struct iw_request_info
*info
,
684 struct iw_param
*rts
, char *extra
)
686 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
689 local
->rts_threshold
= IEEE80211_MAX_RTS_THRESHOLD
;
690 else if (rts
->value
< 0 || rts
->value
> IEEE80211_MAX_RTS_THRESHOLD
)
693 local
->rts_threshold
= rts
->value
;
695 /* If the wlan card performs RTS/CTS in hardware/firmware,
696 * configure it here */
698 if (local
->ops
->set_rts_threshold
)
699 local
->ops
->set_rts_threshold(local_to_hw(local
),
700 local
->rts_threshold
);
705 static int ieee80211_ioctl_giwrts(struct net_device
*dev
,
706 struct iw_request_info
*info
,
707 struct iw_param
*rts
, char *extra
)
709 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
711 rts
->value
= local
->rts_threshold
;
712 rts
->disabled
= (rts
->value
>= IEEE80211_MAX_RTS_THRESHOLD
);
719 static int ieee80211_ioctl_siwfrag(struct net_device
*dev
,
720 struct iw_request_info
*info
,
721 struct iw_param
*frag
, char *extra
)
723 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
726 local
->fragmentation_threshold
= IEEE80211_MAX_FRAG_THRESHOLD
;
727 else if (frag
->value
< 256 ||
728 frag
->value
> IEEE80211_MAX_FRAG_THRESHOLD
)
731 /* Fragment length must be even, so strip LSB. */
732 local
->fragmentation_threshold
= frag
->value
& ~0x1;
735 /* If the wlan card performs fragmentation in hardware/firmware,
736 * configure it here */
738 if (local
->ops
->set_frag_threshold
)
739 local
->ops
->set_frag_threshold(
741 local
->fragmentation_threshold
);
746 static int ieee80211_ioctl_giwfrag(struct net_device
*dev
,
747 struct iw_request_info
*info
,
748 struct iw_param
*frag
, char *extra
)
750 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
752 frag
->value
= local
->fragmentation_threshold
;
753 frag
->disabled
= (frag
->value
>= IEEE80211_MAX_RTS_THRESHOLD
);
760 static int ieee80211_ioctl_siwretry(struct net_device
*dev
,
761 struct iw_request_info
*info
,
762 struct iw_param
*retry
, char *extra
)
764 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
766 if (retry
->disabled
||
767 (retry
->flags
& IW_RETRY_TYPE
) != IW_RETRY_LIMIT
)
770 if (retry
->flags
& IW_RETRY_MAX
)
771 local
->long_retry_limit
= retry
->value
;
772 else if (retry
->flags
& IW_RETRY_MIN
)
773 local
->short_retry_limit
= retry
->value
;
775 local
->long_retry_limit
= retry
->value
;
776 local
->short_retry_limit
= retry
->value
;
779 if (local
->ops
->set_retry_limit
) {
780 return local
->ops
->set_retry_limit(
782 local
->short_retry_limit
,
783 local
->long_retry_limit
);
790 static int ieee80211_ioctl_giwretry(struct net_device
*dev
,
791 struct iw_request_info
*info
,
792 struct iw_param
*retry
, char *extra
)
794 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
797 if (retry
->flags
== 0 || retry
->flags
& IW_RETRY_MIN
) {
798 /* first return min value, iwconfig will ask max value
800 retry
->flags
|= IW_RETRY_LIMIT
;
801 retry
->value
= local
->short_retry_limit
;
802 if (local
->long_retry_limit
!= local
->short_retry_limit
)
803 retry
->flags
|= IW_RETRY_MIN
;
806 if (retry
->flags
& IW_RETRY_MAX
) {
807 retry
->flags
= IW_RETRY_LIMIT
| IW_RETRY_MAX
;
808 retry
->value
= local
->long_retry_limit
;
814 static int ieee80211_ioctl_siwmlme(struct net_device
*dev
,
815 struct iw_request_info
*info
,
816 struct iw_point
*data
, char *extra
)
818 struct ieee80211_sub_if_data
*sdata
;
819 struct iw_mlme
*mlme
= (struct iw_mlme
*) extra
;
821 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
822 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
&&
823 sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
)
828 /* TODO: mlme->addr.sa_data */
829 return ieee80211_sta_deauthenticate(dev
, mlme
->reason_code
);
830 case IW_MLME_DISASSOC
:
831 /* TODO: mlme->addr.sa_data */
832 return ieee80211_sta_disassociate(dev
, mlme
->reason_code
);
839 static int ieee80211_ioctl_siwencode(struct net_device
*dev
,
840 struct iw_request_info
*info
,
841 struct iw_point
*erq
, char *keybuf
)
843 struct ieee80211_sub_if_data
*sdata
;
844 int idx
, i
, alg
= ALG_WEP
;
845 u8 bcaddr
[ETH_ALEN
] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
848 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
850 idx
= erq
->flags
& IW_ENCODE_INDEX
;
852 if (sdata
->default_key
)
853 for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
854 if (sdata
->default_key
== sdata
->keys
[i
]) {
859 } else if (idx
< 1 || idx
> 4)
864 if (erq
->flags
& IW_ENCODE_DISABLED
)
866 else if (erq
->length
== 0) {
867 /* No key data - just set the default TX key index */
868 ieee80211_set_default_key(sdata
, idx
);
872 return ieee80211_set_encryption(
876 keybuf
, erq
->length
);
880 static int ieee80211_ioctl_giwencode(struct net_device
*dev
,
881 struct iw_request_info
*info
,
882 struct iw_point
*erq
, char *key
)
884 struct ieee80211_sub_if_data
*sdata
;
887 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
889 idx
= erq
->flags
& IW_ENCODE_INDEX
;
890 if (idx
< 1 || idx
> 4) {
892 if (!sdata
->default_key
)
894 else for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
895 if (sdata
->default_key
== sdata
->keys
[i
]) {
905 erq
->flags
= idx
+ 1;
907 if (!sdata
->keys
[idx
]) {
909 erq
->flags
|= IW_ENCODE_DISABLED
;
913 memcpy(key
, sdata
->keys
[idx
]->conf
.key
,
914 min_t(int, erq
->length
, sdata
->keys
[idx
]->conf
.keylen
));
915 erq
->length
= sdata
->keys
[idx
]->conf
.keylen
;
916 erq
->flags
|= IW_ENCODE_ENABLED
;
921 static int ieee80211_ioctl_siwauth(struct net_device
*dev
,
922 struct iw_request_info
*info
,
923 struct iw_param
*data
, char *extra
)
925 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
928 switch (data
->flags
& IW_AUTH_INDEX
) {
929 case IW_AUTH_WPA_VERSION
:
930 case IW_AUTH_CIPHER_PAIRWISE
:
931 case IW_AUTH_CIPHER_GROUP
:
932 case IW_AUTH_WPA_ENABLED
:
933 case IW_AUTH_RX_UNENCRYPTED_EAPOL
:
934 case IW_AUTH_KEY_MGMT
:
936 case IW_AUTH_DROP_UNENCRYPTED
:
937 sdata
->drop_unencrypted
= !!data
->value
;
939 case IW_AUTH_PRIVACY_INVOKED
:
940 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
)
943 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_PRIVACY_INVOKED
;
945 * Privacy invoked by wpa_supplicant, store the
946 * value and allow associating to a protected
947 * network without having a key up front.
950 sdata
->u
.sta
.flags
|=
951 IEEE80211_STA_PRIVACY_INVOKED
;
954 case IW_AUTH_80211_AUTH_ALG
:
955 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
956 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
)
957 sdata
->u
.sta
.auth_algs
= data
->value
;
968 /* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
969 static struct iw_statistics
*ieee80211_get_wireless_stats(struct net_device
*dev
)
971 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
972 struct iw_statistics
*wstats
= &local
->wstats
;
973 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
974 struct sta_info
*sta
= NULL
;
976 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
977 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
)
978 sta
= sta_info_get(local
, sdata
->u
.sta
.bssid
);
980 wstats
->discard
.fragment
= 0;
981 wstats
->discard
.misc
= 0;
982 wstats
->qual
.qual
= 0;
983 wstats
->qual
.level
= 0;
984 wstats
->qual
.noise
= 0;
985 wstats
->qual
.updated
= IW_QUAL_ALL_INVALID
;
987 wstats
->qual
.level
= sta
->last_rssi
;
988 wstats
->qual
.qual
= sta
->last_signal
;
989 wstats
->qual
.noise
= sta
->last_noise
;
990 wstats
->qual
.updated
= local
->wstats_flags
;
996 static int ieee80211_ioctl_giwauth(struct net_device
*dev
,
997 struct iw_request_info
*info
,
998 struct iw_param
*data
, char *extra
)
1000 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1003 switch (data
->flags
& IW_AUTH_INDEX
) {
1004 case IW_AUTH_80211_AUTH_ALG
:
1005 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
1006 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
)
1007 data
->value
= sdata
->u
.sta
.auth_algs
;
1019 static int ieee80211_ioctl_siwencodeext(struct net_device
*dev
,
1020 struct iw_request_info
*info
,
1021 struct iw_point
*erq
, char *extra
)
1023 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1024 struct iw_encode_ext
*ext
= (struct iw_encode_ext
*) extra
;
1025 int uninitialized_var(alg
), idx
, i
, remove
= 0;
1028 case IW_ENCODE_ALG_NONE
:
1031 case IW_ENCODE_ALG_WEP
:
1034 case IW_ENCODE_ALG_TKIP
:
1037 case IW_ENCODE_ALG_CCMP
:
1044 if (erq
->flags
& IW_ENCODE_DISABLED
)
1047 idx
= erq
->flags
& IW_ENCODE_INDEX
;
1048 if (idx
< 1 || idx
> 4) {
1050 if (!sdata
->default_key
)
1052 else for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
1053 if (sdata
->default_key
== sdata
->keys
[i
]) {
1063 return ieee80211_set_encryption(dev
, ext
->addr
.sa_data
, idx
, alg
,
1066 IW_ENCODE_EXT_SET_TX_KEY
,
1067 ext
->key
, ext
->key_len
);
1071 /* Structures to export the Wireless Handlers */
1073 static const iw_handler ieee80211_handler
[] =
1075 (iw_handler
) NULL
, /* SIOCSIWCOMMIT */
1076 (iw_handler
) ieee80211_ioctl_giwname
, /* SIOCGIWNAME */
1077 (iw_handler
) NULL
, /* SIOCSIWNWID */
1078 (iw_handler
) NULL
, /* SIOCGIWNWID */
1079 (iw_handler
) ieee80211_ioctl_siwfreq
, /* SIOCSIWFREQ */
1080 (iw_handler
) ieee80211_ioctl_giwfreq
, /* SIOCGIWFREQ */
1081 (iw_handler
) ieee80211_ioctl_siwmode
, /* SIOCSIWMODE */
1082 (iw_handler
) ieee80211_ioctl_giwmode
, /* SIOCGIWMODE */
1083 (iw_handler
) NULL
, /* SIOCSIWSENS */
1084 (iw_handler
) NULL
, /* SIOCGIWSENS */
1085 (iw_handler
) NULL
/* not used */, /* SIOCSIWRANGE */
1086 (iw_handler
) ieee80211_ioctl_giwrange
, /* SIOCGIWRANGE */
1087 (iw_handler
) NULL
/* not used */, /* SIOCSIWPRIV */
1088 (iw_handler
) NULL
/* kernel code */, /* SIOCGIWPRIV */
1089 (iw_handler
) NULL
/* not used */, /* SIOCSIWSTATS */
1090 (iw_handler
) NULL
/* kernel code */, /* SIOCGIWSTATS */
1091 (iw_handler
) NULL
, /* SIOCSIWSPY */
1092 (iw_handler
) NULL
, /* SIOCGIWSPY */
1093 (iw_handler
) NULL
, /* SIOCSIWTHRSPY */
1094 (iw_handler
) NULL
, /* SIOCGIWTHRSPY */
1095 (iw_handler
) ieee80211_ioctl_siwap
, /* SIOCSIWAP */
1096 (iw_handler
) ieee80211_ioctl_giwap
, /* SIOCGIWAP */
1097 (iw_handler
) ieee80211_ioctl_siwmlme
, /* SIOCSIWMLME */
1098 (iw_handler
) NULL
, /* SIOCGIWAPLIST */
1099 (iw_handler
) ieee80211_ioctl_siwscan
, /* SIOCSIWSCAN */
1100 (iw_handler
) ieee80211_ioctl_giwscan
, /* SIOCGIWSCAN */
1101 (iw_handler
) ieee80211_ioctl_siwessid
, /* SIOCSIWESSID */
1102 (iw_handler
) ieee80211_ioctl_giwessid
, /* SIOCGIWESSID */
1103 (iw_handler
) NULL
, /* SIOCSIWNICKN */
1104 (iw_handler
) NULL
, /* SIOCGIWNICKN */
1105 (iw_handler
) NULL
, /* -- hole -- */
1106 (iw_handler
) NULL
, /* -- hole -- */
1107 (iw_handler
) ieee80211_ioctl_siwrate
, /* SIOCSIWRATE */
1108 (iw_handler
) ieee80211_ioctl_giwrate
, /* SIOCGIWRATE */
1109 (iw_handler
) ieee80211_ioctl_siwrts
, /* SIOCSIWRTS */
1110 (iw_handler
) ieee80211_ioctl_giwrts
, /* SIOCGIWRTS */
1111 (iw_handler
) ieee80211_ioctl_siwfrag
, /* SIOCSIWFRAG */
1112 (iw_handler
) ieee80211_ioctl_giwfrag
, /* SIOCGIWFRAG */
1113 (iw_handler
) ieee80211_ioctl_siwtxpower
, /* SIOCSIWTXPOW */
1114 (iw_handler
) ieee80211_ioctl_giwtxpower
, /* SIOCGIWTXPOW */
1115 (iw_handler
) ieee80211_ioctl_siwretry
, /* SIOCSIWRETRY */
1116 (iw_handler
) ieee80211_ioctl_giwretry
, /* SIOCGIWRETRY */
1117 (iw_handler
) ieee80211_ioctl_siwencode
, /* SIOCSIWENCODE */
1118 (iw_handler
) ieee80211_ioctl_giwencode
, /* SIOCGIWENCODE */
1119 (iw_handler
) NULL
, /* SIOCSIWPOWER */
1120 (iw_handler
) NULL
, /* SIOCGIWPOWER */
1121 (iw_handler
) NULL
, /* -- hole -- */
1122 (iw_handler
) NULL
, /* -- hole -- */
1123 (iw_handler
) ieee80211_ioctl_siwgenie
, /* SIOCSIWGENIE */
1124 (iw_handler
) NULL
, /* SIOCGIWGENIE */
1125 (iw_handler
) ieee80211_ioctl_siwauth
, /* SIOCSIWAUTH */
1126 (iw_handler
) ieee80211_ioctl_giwauth
, /* SIOCGIWAUTH */
1127 (iw_handler
) ieee80211_ioctl_siwencodeext
, /* SIOCSIWENCODEEXT */
1128 (iw_handler
) NULL
, /* SIOCGIWENCODEEXT */
1129 (iw_handler
) NULL
, /* SIOCSIWPMKSA */
1130 (iw_handler
) NULL
, /* -- hole -- */
1133 const struct iw_handler_def ieee80211_iw_handler_def
=
1135 .num_standard
= ARRAY_SIZE(ieee80211_handler
),
1136 .standard
= (iw_handler
*) ieee80211_handler
,
1137 .get_wireless_stats
= ieee80211_get_wireless_stats
,