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"
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
);
37 struct ieee80211_key
*key
;
38 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",
54 if (is_broadcast_ether_addr(sta_addr
)) {
55 key
= sdata
->keys
[idx
];
57 sta
= sta_info_get(local
, sta_addr
);
65 ieee80211_key_free(key
);
67 key
= ieee80211_key_alloc(alg
, idx
, key_len
, _key
);
76 if (!is_broadcast_ether_addr(sta_addr
)) {
79 * According to the standard, the key index of a
80 * pairwise key must be zero. However, some AP are
81 * broken when it comes to WEP key indices, so we
84 if (idx
!= 0 && alg
!= ALG_WEP
) {
85 ieee80211_key_free(key
);
90 sta
= sta_info_get(local
, sta_addr
);
92 ieee80211_key_free(key
);
98 ieee80211_key_link(key
, sdata
, sta
);
100 if (set_tx_key
|| (!sta
&& !sdata
->default_key
&& key
))
101 ieee80211_set_default_key(sdata
, idx
);
110 static int ieee80211_ioctl_siwgenie(struct net_device
*dev
,
111 struct iw_request_info
*info
,
112 struct iw_point
*data
, char *extra
)
114 struct ieee80211_sub_if_data
*sdata
;
116 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
118 if (sdata
->flags
& IEEE80211_SDATA_USERSPACE_MLME
)
121 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
122 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
123 int ret
= ieee80211_sta_set_extra_ie(dev
, extra
, data
->length
);
126 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_AUTO_BSSID_SEL
;
127 ieee80211_sta_req_auth(dev
, &sdata
->u
.sta
);
134 static int ieee80211_ioctl_giwname(struct net_device
*dev
,
135 struct iw_request_info
*info
,
136 char *name
, char *extra
)
138 strcpy(name
, "IEEE 802.11");
144 static int ieee80211_ioctl_giwrange(struct net_device
*dev
,
145 struct iw_request_info
*info
,
146 struct iw_point
*data
, char *extra
)
148 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
149 struct iw_range
*range
= (struct iw_range
*) extra
;
150 enum ieee80211_band band
;
153 data
->length
= sizeof(struct iw_range
);
154 memset(range
, 0, sizeof(struct iw_range
));
156 range
->we_version_compiled
= WIRELESS_EXT
;
157 range
->we_version_source
= 21;
158 range
->retry_capa
= IW_RETRY_LIMIT
;
159 range
->retry_flags
= IW_RETRY_LIMIT
;
160 range
->min_retry
= 0;
161 range
->max_retry
= 255;
163 range
->max_rts
= 2347;
164 range
->min_frag
= 256;
165 range
->max_frag
= 2346;
167 range
->encoding_size
[0] = 5;
168 range
->encoding_size
[1] = 13;
169 range
->num_encoding_sizes
= 2;
170 range
->max_encoding_tokens
= NUM_DEFAULT_KEYS
;
172 range
->max_qual
.qual
= local
->hw
.max_signal
;
173 range
->max_qual
.level
= local
->hw
.max_rssi
;
174 range
->max_qual
.noise
= local
->hw
.max_noise
;
175 range
->max_qual
.updated
= local
->wstats_flags
;
177 range
->avg_qual
.qual
= local
->hw
.max_signal
/2;
178 range
->avg_qual
.level
= 0;
179 range
->avg_qual
.noise
= 0;
180 range
->avg_qual
.updated
= local
->wstats_flags
;
182 range
->enc_capa
= IW_ENC_CAPA_WPA
| IW_ENC_CAPA_WPA2
|
183 IW_ENC_CAPA_CIPHER_TKIP
| IW_ENC_CAPA_CIPHER_CCMP
;
186 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
188 struct ieee80211_supported_band
*sband
;
190 sband
= local
->hw
.wiphy
->bands
[band
];
195 for (i
= 0; i
< sband
->n_channels
&& c
< IW_MAX_FREQUENCIES
; i
++) {
196 struct ieee80211_channel
*chan
= &sband
->channels
[i
];
198 if (!(chan
->flags
& IEEE80211_CHAN_DISABLED
)) {
200 ieee80211_frequency_to_channel(
202 range
->freq
[c
].m
= chan
->center_freq
;
203 range
->freq
[c
].e
= 6;
208 range
->num_channels
= c
;
209 range
->num_frequency
= c
;
211 IW_EVENT_CAPA_SET_KERNEL(range
->event_capa
);
212 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWTHRSPY
);
213 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWAP
);
214 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWSCAN
);
216 range
->scan_capa
|= IW_SCAN_CAPA_ESSID
;
222 static int ieee80211_ioctl_siwmode(struct net_device
*dev
,
223 struct iw_request_info
*info
,
224 __u32
*mode
, char *extra
)
226 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
229 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_VLAN
)
234 type
= IEEE80211_IF_TYPE_STA
;
237 type
= IEEE80211_IF_TYPE_IBSS
;
240 type
= IEEE80211_IF_TYPE_WDS
;
242 case IW_MODE_MONITOR
:
243 type
= IEEE80211_IF_TYPE_MNTR
;
249 if (type
== sdata
->vif
.type
)
251 if (netif_running(dev
))
254 ieee80211_if_reinit(dev
);
255 ieee80211_if_set_type(dev
, type
);
261 static int ieee80211_ioctl_giwmode(struct net_device
*dev
,
262 struct iw_request_info
*info
,
263 __u32
*mode
, char *extra
)
265 struct ieee80211_sub_if_data
*sdata
;
267 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
268 switch (sdata
->vif
.type
) {
269 case IEEE80211_IF_TYPE_AP
:
270 *mode
= IW_MODE_MASTER
;
272 case IEEE80211_IF_TYPE_STA
:
273 *mode
= IW_MODE_INFRA
;
275 case IEEE80211_IF_TYPE_IBSS
:
276 *mode
= IW_MODE_ADHOC
;
278 case IEEE80211_IF_TYPE_MNTR
:
279 *mode
= IW_MODE_MONITOR
;
281 case IEEE80211_IF_TYPE_WDS
:
282 *mode
= IW_MODE_REPEAT
;
284 case IEEE80211_IF_TYPE_VLAN
:
285 *mode
= IW_MODE_SECOND
; /* FIXME */
288 *mode
= IW_MODE_AUTO
;
294 int ieee80211_set_freq(struct ieee80211_local
*local
, int freqMHz
)
297 struct ieee80211_channel
*chan
;
299 chan
= ieee80211_get_channel(local
->hw
.wiphy
, freqMHz
);
301 if (chan
&& !(chan
->flags
& IEEE80211_CHAN_DISABLED
)) {
302 local
->oper_channel
= chan
;
304 if (local
->sta_sw_scanning
|| local
->sta_hw_scanning
)
307 ret
= ieee80211_hw_config(local
);
309 rate_control_clear(local
);
315 static int ieee80211_ioctl_siwfreq(struct net_device
*dev
,
316 struct iw_request_info
*info
,
317 struct iw_freq
*freq
, char *extra
)
319 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
320 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
322 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
)
323 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_AUTO_CHANNEL_SEL
;
325 /* freq->e == 0: freq->m = channel; otherwise freq = m * 10^e */
328 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
)
329 sdata
->u
.sta
.flags
|=
330 IEEE80211_STA_AUTO_CHANNEL_SEL
;
333 return ieee80211_set_freq(local
,
334 ieee80211_channel_to_frequency(freq
->m
));
336 int i
, div
= 1000000;
337 for (i
= 0; i
< freq
->e
; i
++)
340 return ieee80211_set_freq(local
, freq
->m
/ div
);
347 static int ieee80211_ioctl_giwfreq(struct net_device
*dev
,
348 struct iw_request_info
*info
,
349 struct iw_freq
*freq
, char *extra
)
351 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
353 freq
->m
= local
->hw
.conf
.channel
->center_freq
;
360 static int ieee80211_ioctl_siwessid(struct net_device
*dev
,
361 struct iw_request_info
*info
,
362 struct iw_point
*data
, char *ssid
)
364 struct ieee80211_sub_if_data
*sdata
;
365 size_t len
= data
->length
;
367 /* iwconfig uses nul termination in SSID.. */
368 if (len
> 0 && ssid
[len
- 1] == '\0')
371 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
372 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
373 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
375 if (sdata
->flags
& IEEE80211_SDATA_USERSPACE_MLME
) {
376 if (len
> IEEE80211_MAX_SSID_LEN
)
378 memcpy(sdata
->u
.sta
.ssid
, ssid
, len
);
379 sdata
->u
.sta
.ssid_len
= len
;
383 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_AUTO_SSID_SEL
;
385 sdata
->u
.sta
.flags
|= IEEE80211_STA_AUTO_SSID_SEL
;
386 ret
= ieee80211_sta_set_ssid(dev
, ssid
, len
);
389 ieee80211_sta_req_auth(dev
, &sdata
->u
.sta
);
393 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_AP
) {
394 memcpy(sdata
->u
.ap
.ssid
, ssid
, len
);
395 memset(sdata
->u
.ap
.ssid
+ len
, 0,
396 IEEE80211_MAX_SSID_LEN
- len
);
397 sdata
->u
.ap
.ssid_len
= len
;
398 return ieee80211_if_config(dev
);
404 static int ieee80211_ioctl_giwessid(struct net_device
*dev
,
405 struct iw_request_info
*info
,
406 struct iw_point
*data
, char *ssid
)
410 struct ieee80211_sub_if_data
*sdata
;
411 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
412 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
413 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
414 int res
= ieee80211_sta_get_ssid(dev
, ssid
, &len
);
423 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_AP
) {
424 len
= sdata
->u
.ap
.ssid_len
;
425 if (len
> IW_ESSID_MAX_SIZE
)
426 len
= IW_ESSID_MAX_SIZE
;
427 memcpy(ssid
, sdata
->u
.ap
.ssid
, len
);
436 static int ieee80211_ioctl_siwap(struct net_device
*dev
,
437 struct iw_request_info
*info
,
438 struct sockaddr
*ap_addr
, char *extra
)
440 struct ieee80211_sub_if_data
*sdata
;
442 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
443 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
444 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
446 if (sdata
->flags
& IEEE80211_SDATA_USERSPACE_MLME
) {
447 memcpy(sdata
->u
.sta
.bssid
, (u8
*) &ap_addr
->sa_data
,
451 if (is_zero_ether_addr((u8
*) &ap_addr
->sa_data
))
452 sdata
->u
.sta
.flags
|= IEEE80211_STA_AUTO_BSSID_SEL
|
453 IEEE80211_STA_AUTO_CHANNEL_SEL
;
454 else if (is_broadcast_ether_addr((u8
*) &ap_addr
->sa_data
))
455 sdata
->u
.sta
.flags
|= IEEE80211_STA_AUTO_BSSID_SEL
;
457 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_AUTO_BSSID_SEL
;
458 ret
= ieee80211_sta_set_bssid(dev
, (u8
*) &ap_addr
->sa_data
);
461 ieee80211_sta_req_auth(dev
, &sdata
->u
.sta
);
463 } else if (sdata
->vif
.type
== IEEE80211_IF_TYPE_WDS
) {
465 * If it is necessary to update the WDS peer address
466 * while the interface is running, then we need to do
467 * more work here, namely if it is running we need to
468 * add a new and remove the old STA entry, this is
469 * normally handled by _open() and _stop().
471 if (netif_running(dev
))
474 memcpy(&sdata
->u
.wds
.remote_addr
, (u8
*) &ap_addr
->sa_data
,
484 static int ieee80211_ioctl_giwap(struct net_device
*dev
,
485 struct iw_request_info
*info
,
486 struct sockaddr
*ap_addr
, char *extra
)
488 struct ieee80211_sub_if_data
*sdata
;
490 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
491 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
492 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
493 ap_addr
->sa_family
= ARPHRD_ETHER
;
494 memcpy(&ap_addr
->sa_data
, sdata
->u
.sta
.bssid
, ETH_ALEN
);
496 } else if (sdata
->vif
.type
== IEEE80211_IF_TYPE_WDS
) {
497 ap_addr
->sa_family
= ARPHRD_ETHER
;
498 memcpy(&ap_addr
->sa_data
, sdata
->u
.wds
.remote_addr
, ETH_ALEN
);
506 static int ieee80211_ioctl_siwscan(struct net_device
*dev
,
507 struct iw_request_info
*info
,
508 union iwreq_data
*wrqu
, char *extra
)
510 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
511 struct iw_scan_req
*req
= NULL
;
515 if (!netif_running(dev
))
518 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
&&
519 sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
&&
520 sdata
->vif
.type
!= IEEE80211_IF_TYPE_MESH_POINT
&&
521 sdata
->vif
.type
!= IEEE80211_IF_TYPE_AP
)
524 /* if SSID was specified explicitly then use that */
525 if (wrqu
->data
.length
== sizeof(struct iw_scan_req
) &&
526 wrqu
->data
.flags
& IW_SCAN_THIS_ESSID
) {
527 req
= (struct iw_scan_req
*)extra
;
529 ssid_len
= req
->essid_len
;
532 return ieee80211_sta_req_scan(dev
, ssid
, ssid_len
);
536 static int ieee80211_ioctl_giwscan(struct net_device
*dev
,
537 struct iw_request_info
*info
,
538 struct iw_point
*data
, char *extra
)
541 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
543 if (local
->sta_sw_scanning
|| local
->sta_hw_scanning
)
546 res
= ieee80211_sta_scan_results(dev
, extra
, data
->length
);
556 static int ieee80211_ioctl_siwrate(struct net_device
*dev
,
557 struct iw_request_info
*info
,
558 struct iw_param
*rate
, char *extra
)
560 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
561 int i
, err
= -EINVAL
;
562 u32 target_rate
= rate
->value
/ 100000;
563 struct ieee80211_sub_if_data
*sdata
;
564 struct ieee80211_supported_band
*sband
;
566 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
570 sband
= local
->hw
.wiphy
->bands
[local
->hw
.conf
.channel
->band
];
572 /* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
573 * target_rate = X, rate->fixed = 1 means only rate X
574 * target_rate = X, rate->fixed = 0 means all rates <= X */
575 sdata
->bss
->max_ratectrl_rateidx
= -1;
576 sdata
->bss
->force_unicast_rateidx
= -1;
580 for (i
=0; i
< sband
->n_bitrates
; i
++) {
581 struct ieee80211_rate
*brate
= &sband
->bitrates
[i
];
582 int this_rate
= brate
->bitrate
;
584 if (target_rate
== this_rate
) {
585 sdata
->bss
->max_ratectrl_rateidx
= i
;
587 sdata
->bss
->force_unicast_rateidx
= i
;
595 static int ieee80211_ioctl_giwrate(struct net_device
*dev
,
596 struct iw_request_info
*info
,
597 struct iw_param
*rate
, char *extra
)
599 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
600 struct sta_info
*sta
;
601 struct ieee80211_sub_if_data
*sdata
;
602 struct ieee80211_supported_band
*sband
;
604 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
606 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
)
609 sband
= local
->hw
.wiphy
->bands
[local
->hw
.conf
.channel
->band
];
613 sta
= sta_info_get(local
, sdata
->u
.sta
.bssid
);
615 if (sta
&& sta
->txrate_idx
< sband
->n_bitrates
)
616 rate
->value
= sband
->bitrates
[sta
->txrate_idx
].bitrate
;
625 rate
->value
*= 100000;
630 static int ieee80211_ioctl_siwtxpower(struct net_device
*dev
,
631 struct iw_request_info
*info
,
632 union iwreq_data
*data
, char *extra
)
634 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
635 bool need_reconfig
= 0;
638 if ((data
->txpower
.flags
& IW_TXPOW_TYPE
) != IW_TXPOW_DBM
)
640 if (data
->txpower
.flags
& IW_TXPOW_RANGE
)
643 if (data
->txpower
.fixed
) {
644 new_power_level
= data
->txpower
.value
;
647 * Automatic power level. Use maximum power for the current
648 * channel. Should be part of rate control.
650 struct ieee80211_channel
* chan
= local
->hw
.conf
.channel
;
654 new_power_level
= chan
->max_power
;
657 if (local
->hw
.conf
.power_level
!= new_power_level
) {
658 local
->hw
.conf
.power_level
= new_power_level
;
662 if (local
->hw
.conf
.radio_enabled
!= !(data
->txpower
.disabled
)) {
663 local
->hw
.conf
.radio_enabled
= !(data
->txpower
.disabled
);
665 ieee80211_led_radio(local
, local
->hw
.conf
.radio_enabled
);
669 ieee80211_hw_config(local
);
670 /* The return value of hw_config is not of big interest here,
671 * as it doesn't say that it failed because of _this_ config
672 * change or something else. Ignore it. */
678 static int ieee80211_ioctl_giwtxpower(struct net_device
*dev
,
679 struct iw_request_info
*info
,
680 union iwreq_data
*data
, char *extra
)
682 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
684 data
->txpower
.fixed
= 1;
685 data
->txpower
.disabled
= !(local
->hw
.conf
.radio_enabled
);
686 data
->txpower
.value
= local
->hw
.conf
.power_level
;
687 data
->txpower
.flags
= IW_TXPOW_DBM
;
692 static int ieee80211_ioctl_siwrts(struct net_device
*dev
,
693 struct iw_request_info
*info
,
694 struct iw_param
*rts
, char *extra
)
696 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
699 local
->rts_threshold
= IEEE80211_MAX_RTS_THRESHOLD
;
700 else if (rts
->value
< 0 || rts
->value
> IEEE80211_MAX_RTS_THRESHOLD
)
703 local
->rts_threshold
= rts
->value
;
705 /* If the wlan card performs RTS/CTS in hardware/firmware,
706 * configure it here */
708 if (local
->ops
->set_rts_threshold
)
709 local
->ops
->set_rts_threshold(local_to_hw(local
),
710 local
->rts_threshold
);
715 static int ieee80211_ioctl_giwrts(struct net_device
*dev
,
716 struct iw_request_info
*info
,
717 struct iw_param
*rts
, char *extra
)
719 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
721 rts
->value
= local
->rts_threshold
;
722 rts
->disabled
= (rts
->value
>= IEEE80211_MAX_RTS_THRESHOLD
);
729 static int ieee80211_ioctl_siwfrag(struct net_device
*dev
,
730 struct iw_request_info
*info
,
731 struct iw_param
*frag
, char *extra
)
733 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
736 local
->fragmentation_threshold
= IEEE80211_MAX_FRAG_THRESHOLD
;
737 else if (frag
->value
< 256 ||
738 frag
->value
> IEEE80211_MAX_FRAG_THRESHOLD
)
741 /* Fragment length must be even, so strip LSB. */
742 local
->fragmentation_threshold
= frag
->value
& ~0x1;
745 /* If the wlan card performs fragmentation in hardware/firmware,
746 * configure it here */
748 if (local
->ops
->set_frag_threshold
)
749 local
->ops
->set_frag_threshold(
751 local
->fragmentation_threshold
);
756 static int ieee80211_ioctl_giwfrag(struct net_device
*dev
,
757 struct iw_request_info
*info
,
758 struct iw_param
*frag
, char *extra
)
760 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
762 frag
->value
= local
->fragmentation_threshold
;
763 frag
->disabled
= (frag
->value
>= IEEE80211_MAX_RTS_THRESHOLD
);
770 static int ieee80211_ioctl_siwretry(struct net_device
*dev
,
771 struct iw_request_info
*info
,
772 struct iw_param
*retry
, char *extra
)
774 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
776 if (retry
->disabled
||
777 (retry
->flags
& IW_RETRY_TYPE
) != IW_RETRY_LIMIT
)
780 if (retry
->flags
& IW_RETRY_MAX
)
781 local
->long_retry_limit
= retry
->value
;
782 else if (retry
->flags
& IW_RETRY_MIN
)
783 local
->short_retry_limit
= retry
->value
;
785 local
->long_retry_limit
= retry
->value
;
786 local
->short_retry_limit
= retry
->value
;
789 if (local
->ops
->set_retry_limit
) {
790 return local
->ops
->set_retry_limit(
792 local
->short_retry_limit
,
793 local
->long_retry_limit
);
800 static int ieee80211_ioctl_giwretry(struct net_device
*dev
,
801 struct iw_request_info
*info
,
802 struct iw_param
*retry
, char *extra
)
804 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
807 if (retry
->flags
== 0 || retry
->flags
& IW_RETRY_MIN
) {
808 /* first return min value, iwconfig will ask max value
810 retry
->flags
|= IW_RETRY_LIMIT
;
811 retry
->value
= local
->short_retry_limit
;
812 if (local
->long_retry_limit
!= local
->short_retry_limit
)
813 retry
->flags
|= IW_RETRY_MIN
;
816 if (retry
->flags
& IW_RETRY_MAX
) {
817 retry
->flags
= IW_RETRY_LIMIT
| IW_RETRY_MAX
;
818 retry
->value
= local
->long_retry_limit
;
824 static int ieee80211_ioctl_siwmlme(struct net_device
*dev
,
825 struct iw_request_info
*info
,
826 struct iw_point
*data
, char *extra
)
828 struct ieee80211_sub_if_data
*sdata
;
829 struct iw_mlme
*mlme
= (struct iw_mlme
*) extra
;
831 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
832 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
&&
833 sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
)
838 /* TODO: mlme->addr.sa_data */
839 return ieee80211_sta_deauthenticate(dev
, mlme
->reason_code
);
840 case IW_MLME_DISASSOC
:
841 /* TODO: mlme->addr.sa_data */
842 return ieee80211_sta_disassociate(dev
, mlme
->reason_code
);
849 static int ieee80211_ioctl_siwencode(struct net_device
*dev
,
850 struct iw_request_info
*info
,
851 struct iw_point
*erq
, char *keybuf
)
853 struct ieee80211_sub_if_data
*sdata
;
854 int idx
, i
, alg
= ALG_WEP
;
855 u8 bcaddr
[ETH_ALEN
] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
858 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
860 idx
= erq
->flags
& IW_ENCODE_INDEX
;
862 if (sdata
->default_key
)
863 for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
864 if (sdata
->default_key
== sdata
->keys
[i
]) {
869 } else if (idx
< 1 || idx
> 4)
874 if (erq
->flags
& IW_ENCODE_DISABLED
)
876 else if (erq
->length
== 0) {
877 /* No key data - just set the default TX key index */
878 ieee80211_set_default_key(sdata
, idx
);
882 return ieee80211_set_encryption(
886 keybuf
, erq
->length
);
890 static int ieee80211_ioctl_giwencode(struct net_device
*dev
,
891 struct iw_request_info
*info
,
892 struct iw_point
*erq
, char *key
)
894 struct ieee80211_sub_if_data
*sdata
;
897 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
899 idx
= erq
->flags
& IW_ENCODE_INDEX
;
900 if (idx
< 1 || idx
> 4) {
902 if (!sdata
->default_key
)
904 else for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
905 if (sdata
->default_key
== sdata
->keys
[i
]) {
915 erq
->flags
= idx
+ 1;
917 if (!sdata
->keys
[idx
]) {
919 erq
->flags
|= IW_ENCODE_DISABLED
;
923 memcpy(key
, sdata
->keys
[idx
]->conf
.key
,
924 min_t(int, erq
->length
, sdata
->keys
[idx
]->conf
.keylen
));
925 erq
->length
= sdata
->keys
[idx
]->conf
.keylen
;
926 erq
->flags
|= IW_ENCODE_ENABLED
;
931 static int ieee80211_ioctl_siwauth(struct net_device
*dev
,
932 struct iw_request_info
*info
,
933 struct iw_param
*data
, char *extra
)
935 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
938 switch (data
->flags
& IW_AUTH_INDEX
) {
939 case IW_AUTH_WPA_VERSION
:
940 case IW_AUTH_CIPHER_PAIRWISE
:
941 case IW_AUTH_CIPHER_GROUP
:
942 case IW_AUTH_WPA_ENABLED
:
943 case IW_AUTH_RX_UNENCRYPTED_EAPOL
:
944 case IW_AUTH_KEY_MGMT
:
946 case IW_AUTH_DROP_UNENCRYPTED
:
947 sdata
->drop_unencrypted
= !!data
->value
;
949 case IW_AUTH_PRIVACY_INVOKED
:
950 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
)
953 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_PRIVACY_INVOKED
;
955 * Privacy invoked by wpa_supplicant, store the
956 * value and allow associating to a protected
957 * network without having a key up front.
960 sdata
->u
.sta
.flags
|=
961 IEEE80211_STA_PRIVACY_INVOKED
;
964 case IW_AUTH_80211_AUTH_ALG
:
965 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
966 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
)
967 sdata
->u
.sta
.auth_algs
= data
->value
;
978 /* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
979 static struct iw_statistics
*ieee80211_get_wireless_stats(struct net_device
*dev
)
981 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
982 struct iw_statistics
*wstats
= &local
->wstats
;
983 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
984 struct sta_info
*sta
= NULL
;
988 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
989 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
)
990 sta
= sta_info_get(local
, sdata
->u
.sta
.bssid
);
992 wstats
->discard
.fragment
= 0;
993 wstats
->discard
.misc
= 0;
994 wstats
->qual
.qual
= 0;
995 wstats
->qual
.level
= 0;
996 wstats
->qual
.noise
= 0;
997 wstats
->qual
.updated
= IW_QUAL_ALL_INVALID
;
999 wstats
->qual
.level
= sta
->last_rssi
;
1000 wstats
->qual
.qual
= sta
->last_signal
;
1001 wstats
->qual
.noise
= sta
->last_noise
;
1002 wstats
->qual
.updated
= local
->wstats_flags
;
1010 static int ieee80211_ioctl_giwauth(struct net_device
*dev
,
1011 struct iw_request_info
*info
,
1012 struct iw_param
*data
, char *extra
)
1014 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1017 switch (data
->flags
& IW_AUTH_INDEX
) {
1018 case IW_AUTH_80211_AUTH_ALG
:
1019 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
1020 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
)
1021 data
->value
= sdata
->u
.sta
.auth_algs
;
1033 static int ieee80211_ioctl_siwencodeext(struct net_device
*dev
,
1034 struct iw_request_info
*info
,
1035 struct iw_point
*erq
, char *extra
)
1037 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1038 struct iw_encode_ext
*ext
= (struct iw_encode_ext
*) extra
;
1039 int uninitialized_var(alg
), idx
, i
, remove
= 0;
1042 case IW_ENCODE_ALG_NONE
:
1045 case IW_ENCODE_ALG_WEP
:
1048 case IW_ENCODE_ALG_TKIP
:
1051 case IW_ENCODE_ALG_CCMP
:
1058 if (erq
->flags
& IW_ENCODE_DISABLED
)
1061 idx
= erq
->flags
& IW_ENCODE_INDEX
;
1062 if (idx
< 1 || idx
> 4) {
1064 if (!sdata
->default_key
)
1066 else for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
1067 if (sdata
->default_key
== sdata
->keys
[i
]) {
1077 return ieee80211_set_encryption(dev
, ext
->addr
.sa_data
, idx
, alg
,
1080 IW_ENCODE_EXT_SET_TX_KEY
,
1081 ext
->key
, ext
->key_len
);
1085 /* Structures to export the Wireless Handlers */
1087 static const iw_handler ieee80211_handler
[] =
1089 (iw_handler
) NULL
, /* SIOCSIWCOMMIT */
1090 (iw_handler
) ieee80211_ioctl_giwname
, /* SIOCGIWNAME */
1091 (iw_handler
) NULL
, /* SIOCSIWNWID */
1092 (iw_handler
) NULL
, /* SIOCGIWNWID */
1093 (iw_handler
) ieee80211_ioctl_siwfreq
, /* SIOCSIWFREQ */
1094 (iw_handler
) ieee80211_ioctl_giwfreq
, /* SIOCGIWFREQ */
1095 (iw_handler
) ieee80211_ioctl_siwmode
, /* SIOCSIWMODE */
1096 (iw_handler
) ieee80211_ioctl_giwmode
, /* SIOCGIWMODE */
1097 (iw_handler
) NULL
, /* SIOCSIWSENS */
1098 (iw_handler
) NULL
, /* SIOCGIWSENS */
1099 (iw_handler
) NULL
/* not used */, /* SIOCSIWRANGE */
1100 (iw_handler
) ieee80211_ioctl_giwrange
, /* SIOCGIWRANGE */
1101 (iw_handler
) NULL
/* not used */, /* SIOCSIWPRIV */
1102 (iw_handler
) NULL
/* kernel code */, /* SIOCGIWPRIV */
1103 (iw_handler
) NULL
/* not used */, /* SIOCSIWSTATS */
1104 (iw_handler
) NULL
/* kernel code */, /* SIOCGIWSTATS */
1105 (iw_handler
) NULL
, /* SIOCSIWSPY */
1106 (iw_handler
) NULL
, /* SIOCGIWSPY */
1107 (iw_handler
) NULL
, /* SIOCSIWTHRSPY */
1108 (iw_handler
) NULL
, /* SIOCGIWTHRSPY */
1109 (iw_handler
) ieee80211_ioctl_siwap
, /* SIOCSIWAP */
1110 (iw_handler
) ieee80211_ioctl_giwap
, /* SIOCGIWAP */
1111 (iw_handler
) ieee80211_ioctl_siwmlme
, /* SIOCSIWMLME */
1112 (iw_handler
) NULL
, /* SIOCGIWAPLIST */
1113 (iw_handler
) ieee80211_ioctl_siwscan
, /* SIOCSIWSCAN */
1114 (iw_handler
) ieee80211_ioctl_giwscan
, /* SIOCGIWSCAN */
1115 (iw_handler
) ieee80211_ioctl_siwessid
, /* SIOCSIWESSID */
1116 (iw_handler
) ieee80211_ioctl_giwessid
, /* SIOCGIWESSID */
1117 (iw_handler
) NULL
, /* SIOCSIWNICKN */
1118 (iw_handler
) NULL
, /* SIOCGIWNICKN */
1119 (iw_handler
) NULL
, /* -- hole -- */
1120 (iw_handler
) NULL
, /* -- hole -- */
1121 (iw_handler
) ieee80211_ioctl_siwrate
, /* SIOCSIWRATE */
1122 (iw_handler
) ieee80211_ioctl_giwrate
, /* SIOCGIWRATE */
1123 (iw_handler
) ieee80211_ioctl_siwrts
, /* SIOCSIWRTS */
1124 (iw_handler
) ieee80211_ioctl_giwrts
, /* SIOCGIWRTS */
1125 (iw_handler
) ieee80211_ioctl_siwfrag
, /* SIOCSIWFRAG */
1126 (iw_handler
) ieee80211_ioctl_giwfrag
, /* SIOCGIWFRAG */
1127 (iw_handler
) ieee80211_ioctl_siwtxpower
, /* SIOCSIWTXPOW */
1128 (iw_handler
) ieee80211_ioctl_giwtxpower
, /* SIOCGIWTXPOW */
1129 (iw_handler
) ieee80211_ioctl_siwretry
, /* SIOCSIWRETRY */
1130 (iw_handler
) ieee80211_ioctl_giwretry
, /* SIOCGIWRETRY */
1131 (iw_handler
) ieee80211_ioctl_siwencode
, /* SIOCSIWENCODE */
1132 (iw_handler
) ieee80211_ioctl_giwencode
, /* SIOCGIWENCODE */
1133 (iw_handler
) NULL
, /* SIOCSIWPOWER */
1134 (iw_handler
) NULL
, /* SIOCGIWPOWER */
1135 (iw_handler
) NULL
, /* -- hole -- */
1136 (iw_handler
) NULL
, /* -- hole -- */
1137 (iw_handler
) ieee80211_ioctl_siwgenie
, /* SIOCSIWGENIE */
1138 (iw_handler
) NULL
, /* SIOCGIWGENIE */
1139 (iw_handler
) ieee80211_ioctl_siwauth
, /* SIOCSIWAUTH */
1140 (iw_handler
) ieee80211_ioctl_giwauth
, /* SIOCGIWAUTH */
1141 (iw_handler
) ieee80211_ioctl_siwencodeext
, /* SIOCSIWENCODEEXT */
1142 (iw_handler
) NULL
, /* SIOCGIWENCODEEXT */
1143 (iw_handler
) NULL
, /* SIOCSIWPMKSA */
1144 (iw_handler
) NULL
, /* -- hole -- */
1147 const struct iw_handler_def ieee80211_iw_handler_def
=
1149 .num_standard
= ARRAY_SIZE(ieee80211_handler
),
1150 .standard
= (iw_handler
*) ieee80211_handler
,
1151 .get_wireless_stats
= ieee80211_get_wireless_stats
,