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
);
99 key_len
!= LEN_WEP40
&& key_len
!= LEN_WEP104
) {
100 ieee80211_key_free(key
);
105 ieee80211_key_link(key
, sdata
, sta
);
107 if (set_tx_key
|| (!sta
&& !sdata
->default_key
&& key
))
108 ieee80211_set_default_key(sdata
, idx
);
117 static int ieee80211_ioctl_siwgenie(struct net_device
*dev
,
118 struct iw_request_info
*info
,
119 struct iw_point
*data
, char *extra
)
121 struct ieee80211_sub_if_data
*sdata
;
123 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
125 if (sdata
->flags
& IEEE80211_SDATA_USERSPACE_MLME
)
128 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
129 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
130 int ret
= ieee80211_sta_set_extra_ie(dev
, extra
, data
->length
);
133 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_AUTO_BSSID_SEL
;
134 ieee80211_sta_req_auth(dev
, &sdata
->u
.sta
);
141 static int ieee80211_ioctl_giwname(struct net_device
*dev
,
142 struct iw_request_info
*info
,
143 char *name
, char *extra
)
145 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
146 struct ieee80211_supported_band
*sband
;
147 u8 is_ht
= 0, is_a
= 0, is_b
= 0, is_g
= 0;
150 sband
= local
->hw
.wiphy
->bands
[IEEE80211_BAND_5GHZ
];
153 is_ht
|= sband
->ht_info
.ht_supported
;
156 sband
= local
->hw
.wiphy
->bands
[IEEE80211_BAND_2GHZ
];
159 /* Check for mandatory rates */
160 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
161 if (sband
->bitrates
[i
].bitrate
== 10)
163 if (sband
->bitrates
[i
].bitrate
== 60)
166 is_ht
|= sband
->ht_info
.ht_supported
;
169 strcpy(name
, "IEEE 802.11");
183 static int ieee80211_ioctl_giwrange(struct net_device
*dev
,
184 struct iw_request_info
*info
,
185 struct iw_point
*data
, char *extra
)
187 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
188 struct iw_range
*range
= (struct iw_range
*) extra
;
189 enum ieee80211_band band
;
192 data
->length
= sizeof(struct iw_range
);
193 memset(range
, 0, sizeof(struct iw_range
));
195 range
->we_version_compiled
= WIRELESS_EXT
;
196 range
->we_version_source
= 21;
197 range
->retry_capa
= IW_RETRY_LIMIT
;
198 range
->retry_flags
= IW_RETRY_LIMIT
;
199 range
->min_retry
= 0;
200 range
->max_retry
= 255;
202 range
->max_rts
= 2347;
203 range
->min_frag
= 256;
204 range
->max_frag
= 2346;
206 range
->encoding_size
[0] = 5;
207 range
->encoding_size
[1] = 13;
208 range
->num_encoding_sizes
= 2;
209 range
->max_encoding_tokens
= NUM_DEFAULT_KEYS
;
211 if (local
->hw
.flags
& IEEE80211_HW_SIGNAL_UNSPEC
||
212 local
->hw
.flags
& IEEE80211_HW_SIGNAL_DB
)
213 range
->max_qual
.level
= local
->hw
.max_signal
;
214 else if (local
->hw
.flags
& IEEE80211_HW_SIGNAL_DBM
)
215 range
->max_qual
.level
= -110;
217 range
->max_qual
.level
= 0;
219 if (local
->hw
.flags
& IEEE80211_HW_NOISE_DBM
)
220 range
->max_qual
.noise
= -110;
222 range
->max_qual
.noise
= 0;
224 range
->max_qual
.qual
= 100;
225 range
->max_qual
.updated
= local
->wstats_flags
;
227 range
->avg_qual
.qual
= 50;
228 /* not always true but better than nothing */
229 range
->avg_qual
.level
= range
->max_qual
.level
/ 2;
230 range
->avg_qual
.noise
= range
->max_qual
.noise
/ 2;
231 range
->avg_qual
.updated
= local
->wstats_flags
;
233 range
->enc_capa
= IW_ENC_CAPA_WPA
| IW_ENC_CAPA_WPA2
|
234 IW_ENC_CAPA_CIPHER_TKIP
| IW_ENC_CAPA_CIPHER_CCMP
;
237 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
239 struct ieee80211_supported_band
*sband
;
241 sband
= local
->hw
.wiphy
->bands
[band
];
246 for (i
= 0; i
< sband
->n_channels
&& c
< IW_MAX_FREQUENCIES
; i
++) {
247 struct ieee80211_channel
*chan
= &sband
->channels
[i
];
249 if (!(chan
->flags
& IEEE80211_CHAN_DISABLED
)) {
251 ieee80211_frequency_to_channel(
253 range
->freq
[c
].m
= chan
->center_freq
;
254 range
->freq
[c
].e
= 6;
259 range
->num_channels
= c
;
260 range
->num_frequency
= c
;
262 IW_EVENT_CAPA_SET_KERNEL(range
->event_capa
);
263 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWAP
);
264 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWSCAN
);
266 range
->scan_capa
|= IW_SCAN_CAPA_ESSID
;
272 static int ieee80211_ioctl_siwmode(struct net_device
*dev
,
273 struct iw_request_info
*info
,
274 __u32
*mode
, char *extra
)
276 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
279 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_VLAN
)
284 type
= IEEE80211_IF_TYPE_STA
;
287 type
= IEEE80211_IF_TYPE_IBSS
;
290 type
= IEEE80211_IF_TYPE_WDS
;
292 case IW_MODE_MONITOR
:
293 type
= IEEE80211_IF_TYPE_MNTR
;
299 return ieee80211_if_change_type(sdata
, type
);
303 static int ieee80211_ioctl_giwmode(struct net_device
*dev
,
304 struct iw_request_info
*info
,
305 __u32
*mode
, char *extra
)
307 struct ieee80211_sub_if_data
*sdata
;
309 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
310 switch (sdata
->vif
.type
) {
311 case IEEE80211_IF_TYPE_AP
:
312 *mode
= IW_MODE_MASTER
;
314 case IEEE80211_IF_TYPE_STA
:
315 *mode
= IW_MODE_INFRA
;
317 case IEEE80211_IF_TYPE_IBSS
:
318 *mode
= IW_MODE_ADHOC
;
320 case IEEE80211_IF_TYPE_MNTR
:
321 *mode
= IW_MODE_MONITOR
;
323 case IEEE80211_IF_TYPE_WDS
:
324 *mode
= IW_MODE_REPEAT
;
326 case IEEE80211_IF_TYPE_VLAN
:
327 *mode
= IW_MODE_SECOND
; /* FIXME */
330 *mode
= IW_MODE_AUTO
;
336 int ieee80211_set_freq(struct net_device
*dev
, int freqMHz
)
339 struct ieee80211_channel
*chan
;
340 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
341 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
343 chan
= ieee80211_get_channel(local
->hw
.wiphy
, freqMHz
);
345 if (chan
&& !(chan
->flags
& IEEE80211_CHAN_DISABLED
)) {
346 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
&&
347 chan
->flags
& IEEE80211_CHAN_NO_IBSS
) {
348 printk(KERN_DEBUG
"%s: IBSS not allowed on frequency "
349 "%d MHz\n", dev
->name
, chan
->center_freq
);
352 local
->oper_channel
= chan
;
354 if (local
->sta_sw_scanning
|| local
->sta_hw_scanning
)
357 ret
= ieee80211_hw_config(local
);
359 rate_control_clear(local
);
365 static int ieee80211_ioctl_siwfreq(struct net_device
*dev
,
366 struct iw_request_info
*info
,
367 struct iw_freq
*freq
, char *extra
)
369 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
371 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
)
372 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_AUTO_CHANNEL_SEL
;
374 /* freq->e == 0: freq->m = channel; otherwise freq = m * 10^e */
377 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
)
378 sdata
->u
.sta
.flags
|=
379 IEEE80211_STA_AUTO_CHANNEL_SEL
;
382 return ieee80211_set_freq(dev
,
383 ieee80211_channel_to_frequency(freq
->m
));
385 int i
, div
= 1000000;
386 for (i
= 0; i
< freq
->e
; i
++)
389 return ieee80211_set_freq(dev
, freq
->m
/ div
);
396 static int ieee80211_ioctl_giwfreq(struct net_device
*dev
,
397 struct iw_request_info
*info
,
398 struct iw_freq
*freq
, char *extra
)
400 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
402 freq
->m
= local
->hw
.conf
.channel
->center_freq
;
409 static int ieee80211_ioctl_siwessid(struct net_device
*dev
,
410 struct iw_request_info
*info
,
411 struct iw_point
*data
, char *ssid
)
413 struct ieee80211_sub_if_data
*sdata
;
414 size_t len
= data
->length
;
416 /* iwconfig uses nul termination in SSID.. */
417 if (len
> 0 && ssid
[len
- 1] == '\0')
420 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
421 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
422 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
424 if (sdata
->flags
& IEEE80211_SDATA_USERSPACE_MLME
) {
425 if (len
> IEEE80211_MAX_SSID_LEN
)
427 memcpy(sdata
->u
.sta
.ssid
, ssid
, len
);
428 sdata
->u
.sta
.ssid_len
= len
;
432 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_AUTO_SSID_SEL
;
434 sdata
->u
.sta
.flags
|= IEEE80211_STA_AUTO_SSID_SEL
;
435 ret
= ieee80211_sta_set_ssid(dev
, ssid
, len
);
438 ieee80211_sta_req_auth(dev
, &sdata
->u
.sta
);
442 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_AP
) {
443 memcpy(sdata
->u
.ap
.ssid
, ssid
, len
);
444 memset(sdata
->u
.ap
.ssid
+ len
, 0,
445 IEEE80211_MAX_SSID_LEN
- len
);
446 sdata
->u
.ap
.ssid_len
= len
;
447 return ieee80211_if_config(sdata
, IEEE80211_IFCC_SSID
);
453 static int ieee80211_ioctl_giwessid(struct net_device
*dev
,
454 struct iw_request_info
*info
,
455 struct iw_point
*data
, char *ssid
)
459 struct ieee80211_sub_if_data
*sdata
;
460 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
461 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
462 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
463 int res
= ieee80211_sta_get_ssid(dev
, ssid
, &len
);
472 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_AP
) {
473 len
= sdata
->u
.ap
.ssid_len
;
474 if (len
> IW_ESSID_MAX_SIZE
)
475 len
= IW_ESSID_MAX_SIZE
;
476 memcpy(ssid
, sdata
->u
.ap
.ssid
, len
);
485 static int ieee80211_ioctl_siwap(struct net_device
*dev
,
486 struct iw_request_info
*info
,
487 struct sockaddr
*ap_addr
, char *extra
)
489 struct ieee80211_sub_if_data
*sdata
;
491 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
492 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
493 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
495 if (sdata
->flags
& IEEE80211_SDATA_USERSPACE_MLME
) {
496 memcpy(sdata
->u
.sta
.bssid
, (u8
*) &ap_addr
->sa_data
,
500 if (is_zero_ether_addr((u8
*) &ap_addr
->sa_data
))
501 sdata
->u
.sta
.flags
|= IEEE80211_STA_AUTO_BSSID_SEL
|
502 IEEE80211_STA_AUTO_CHANNEL_SEL
;
503 else if (is_broadcast_ether_addr((u8
*) &ap_addr
->sa_data
))
504 sdata
->u
.sta
.flags
|= IEEE80211_STA_AUTO_BSSID_SEL
;
506 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_AUTO_BSSID_SEL
;
507 ret
= ieee80211_sta_set_bssid(dev
, (u8
*) &ap_addr
->sa_data
);
510 ieee80211_sta_req_auth(dev
, &sdata
->u
.sta
);
512 } else if (sdata
->vif
.type
== IEEE80211_IF_TYPE_WDS
) {
514 * If it is necessary to update the WDS peer address
515 * while the interface is running, then we need to do
516 * more work here, namely if it is running we need to
517 * add a new and remove the old STA entry, this is
518 * normally handled by _open() and _stop().
520 if (netif_running(dev
))
523 memcpy(&sdata
->u
.wds
.remote_addr
, (u8
*) &ap_addr
->sa_data
,
533 static int ieee80211_ioctl_giwap(struct net_device
*dev
,
534 struct iw_request_info
*info
,
535 struct sockaddr
*ap_addr
, char *extra
)
537 struct ieee80211_sub_if_data
*sdata
;
539 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
540 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
541 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
542 if (sdata
->u
.sta
.state
== IEEE80211_ASSOCIATED
||
543 sdata
->u
.sta
.state
== IEEE80211_IBSS_JOINED
) {
544 ap_addr
->sa_family
= ARPHRD_ETHER
;
545 memcpy(&ap_addr
->sa_data
, sdata
->u
.sta
.bssid
, ETH_ALEN
);
548 memset(&ap_addr
->sa_data
, 0, ETH_ALEN
);
551 } else if (sdata
->vif
.type
== IEEE80211_IF_TYPE_WDS
) {
552 ap_addr
->sa_family
= ARPHRD_ETHER
;
553 memcpy(&ap_addr
->sa_data
, sdata
->u
.wds
.remote_addr
, ETH_ALEN
);
561 static int ieee80211_ioctl_siwscan(struct net_device
*dev
,
562 struct iw_request_info
*info
,
563 union iwreq_data
*wrqu
, char *extra
)
565 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
566 struct iw_scan_req
*req
= NULL
;
570 if (!netif_running(dev
))
573 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
&&
574 sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
&&
575 sdata
->vif
.type
!= IEEE80211_IF_TYPE_MESH_POINT
&&
576 sdata
->vif
.type
!= IEEE80211_IF_TYPE_AP
)
579 /* if SSID was specified explicitly then use that */
580 if (wrqu
->data
.length
== sizeof(struct iw_scan_req
) &&
581 wrqu
->data
.flags
& IW_SCAN_THIS_ESSID
) {
582 req
= (struct iw_scan_req
*)extra
;
584 ssid_len
= req
->essid_len
;
587 return ieee80211_sta_req_scan(dev
, ssid
, ssid_len
);
591 static int ieee80211_ioctl_giwscan(struct net_device
*dev
,
592 struct iw_request_info
*info
,
593 struct iw_point
*data
, char *extra
)
596 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
598 if (local
->sta_sw_scanning
|| local
->sta_hw_scanning
)
601 res
= ieee80211_sta_scan_results(dev
, info
, extra
, data
->length
);
611 static int ieee80211_ioctl_siwrate(struct net_device
*dev
,
612 struct iw_request_info
*info
,
613 struct iw_param
*rate
, char *extra
)
615 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
616 int i
, err
= -EINVAL
;
617 u32 target_rate
= rate
->value
/ 100000;
618 struct ieee80211_sub_if_data
*sdata
;
619 struct ieee80211_supported_band
*sband
;
621 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
623 sband
= local
->hw
.wiphy
->bands
[local
->hw
.conf
.channel
->band
];
625 /* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
626 * target_rate = X, rate->fixed = 1 means only rate X
627 * target_rate = X, rate->fixed = 0 means all rates <= X */
628 sdata
->max_ratectrl_rateidx
= -1;
629 sdata
->force_unicast_rateidx
= -1;
633 for (i
=0; i
< sband
->n_bitrates
; i
++) {
634 struct ieee80211_rate
*brate
= &sband
->bitrates
[i
];
635 int this_rate
= brate
->bitrate
;
637 if (target_rate
== this_rate
) {
638 sdata
->max_ratectrl_rateidx
= i
;
640 sdata
->force_unicast_rateidx
= i
;
648 static int ieee80211_ioctl_giwrate(struct net_device
*dev
,
649 struct iw_request_info
*info
,
650 struct iw_param
*rate
, char *extra
)
652 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
653 struct sta_info
*sta
;
654 struct ieee80211_sub_if_data
*sdata
;
655 struct ieee80211_supported_band
*sband
;
657 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
659 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
)
662 sband
= local
->hw
.wiphy
->bands
[local
->hw
.conf
.channel
->band
];
666 sta
= sta_info_get(local
, sdata
->u
.sta
.bssid
);
668 if (sta
&& sta
->txrate_idx
< sband
->n_bitrates
)
669 rate
->value
= sband
->bitrates
[sta
->txrate_idx
].bitrate
;
678 rate
->value
*= 100000;
683 static int ieee80211_ioctl_siwtxpower(struct net_device
*dev
,
684 struct iw_request_info
*info
,
685 union iwreq_data
*data
, char *extra
)
687 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
688 bool need_reconfig
= 0;
691 if ((data
->txpower
.flags
& IW_TXPOW_TYPE
) != IW_TXPOW_DBM
)
693 if (data
->txpower
.flags
& IW_TXPOW_RANGE
)
696 if (data
->txpower
.fixed
) {
697 new_power_level
= data
->txpower
.value
;
700 * Automatic power level. Use maximum power for the current
701 * channel. Should be part of rate control.
703 struct ieee80211_channel
* chan
= local
->hw
.conf
.channel
;
707 new_power_level
= chan
->max_power
;
710 if (local
->hw
.conf
.power_level
!= new_power_level
) {
711 local
->hw
.conf
.power_level
= new_power_level
;
715 if (local
->hw
.conf
.radio_enabled
!= !(data
->txpower
.disabled
)) {
716 local
->hw
.conf
.radio_enabled
= !(data
->txpower
.disabled
);
718 ieee80211_led_radio(local
, local
->hw
.conf
.radio_enabled
);
722 ieee80211_hw_config(local
);
723 /* The return value of hw_config is not of big interest here,
724 * as it doesn't say that it failed because of _this_ config
725 * change or something else. Ignore it. */
731 static int ieee80211_ioctl_giwtxpower(struct net_device
*dev
,
732 struct iw_request_info
*info
,
733 union iwreq_data
*data
, char *extra
)
735 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
737 data
->txpower
.fixed
= 1;
738 data
->txpower
.disabled
= !(local
->hw
.conf
.radio_enabled
);
739 data
->txpower
.value
= local
->hw
.conf
.power_level
;
740 data
->txpower
.flags
= IW_TXPOW_DBM
;
745 static int ieee80211_ioctl_siwrts(struct net_device
*dev
,
746 struct iw_request_info
*info
,
747 struct iw_param
*rts
, char *extra
)
749 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
752 local
->rts_threshold
= IEEE80211_MAX_RTS_THRESHOLD
;
753 else if (!rts
->fixed
)
754 /* if the rts value is not fixed, then take default */
755 local
->rts_threshold
= IEEE80211_MAX_RTS_THRESHOLD
;
756 else if (rts
->value
< 0 || rts
->value
> IEEE80211_MAX_RTS_THRESHOLD
)
759 local
->rts_threshold
= rts
->value
;
761 /* If the wlan card performs RTS/CTS in hardware/firmware,
762 * configure it here */
764 if (local
->ops
->set_rts_threshold
)
765 local
->ops
->set_rts_threshold(local_to_hw(local
),
766 local
->rts_threshold
);
771 static int ieee80211_ioctl_giwrts(struct net_device
*dev
,
772 struct iw_request_info
*info
,
773 struct iw_param
*rts
, char *extra
)
775 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
777 rts
->value
= local
->rts_threshold
;
778 rts
->disabled
= (rts
->value
>= IEEE80211_MAX_RTS_THRESHOLD
);
785 static int ieee80211_ioctl_siwfrag(struct net_device
*dev
,
786 struct iw_request_info
*info
,
787 struct iw_param
*frag
, char *extra
)
789 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
792 local
->fragmentation_threshold
= IEEE80211_MAX_FRAG_THRESHOLD
;
793 else if (!frag
->fixed
)
794 local
->fragmentation_threshold
= IEEE80211_MAX_FRAG_THRESHOLD
;
795 else if (frag
->value
< 256 ||
796 frag
->value
> IEEE80211_MAX_FRAG_THRESHOLD
)
799 /* Fragment length must be even, so strip LSB. */
800 local
->fragmentation_threshold
= frag
->value
& ~0x1;
803 /* If the wlan card performs fragmentation in hardware/firmware,
804 * configure it here */
806 if (local
->ops
->set_frag_threshold
)
807 local
->ops
->set_frag_threshold(
809 local
->fragmentation_threshold
);
814 static int ieee80211_ioctl_giwfrag(struct net_device
*dev
,
815 struct iw_request_info
*info
,
816 struct iw_param
*frag
, char *extra
)
818 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
820 frag
->value
= local
->fragmentation_threshold
;
821 frag
->disabled
= (frag
->value
>= IEEE80211_MAX_RTS_THRESHOLD
);
828 static int ieee80211_ioctl_siwretry(struct net_device
*dev
,
829 struct iw_request_info
*info
,
830 struct iw_param
*retry
, char *extra
)
832 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
834 if (retry
->disabled
||
835 (retry
->flags
& IW_RETRY_TYPE
) != IW_RETRY_LIMIT
)
838 if (retry
->flags
& IW_RETRY_MAX
)
839 local
->long_retry_limit
= retry
->value
;
840 else if (retry
->flags
& IW_RETRY_MIN
)
841 local
->short_retry_limit
= retry
->value
;
843 local
->long_retry_limit
= retry
->value
;
844 local
->short_retry_limit
= retry
->value
;
847 if (local
->ops
->set_retry_limit
) {
848 return local
->ops
->set_retry_limit(
850 local
->short_retry_limit
,
851 local
->long_retry_limit
);
858 static int ieee80211_ioctl_giwretry(struct net_device
*dev
,
859 struct iw_request_info
*info
,
860 struct iw_param
*retry
, char *extra
)
862 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
865 if (retry
->flags
== 0 || retry
->flags
& IW_RETRY_MIN
) {
866 /* first return min value, iwconfig will ask max value
868 retry
->flags
|= IW_RETRY_LIMIT
;
869 retry
->value
= local
->short_retry_limit
;
870 if (local
->long_retry_limit
!= local
->short_retry_limit
)
871 retry
->flags
|= IW_RETRY_MIN
;
874 if (retry
->flags
& IW_RETRY_MAX
) {
875 retry
->flags
= IW_RETRY_LIMIT
| IW_RETRY_MAX
;
876 retry
->value
= local
->long_retry_limit
;
882 static int ieee80211_ioctl_siwmlme(struct net_device
*dev
,
883 struct iw_request_info
*info
,
884 struct iw_point
*data
, char *extra
)
886 struct ieee80211_sub_if_data
*sdata
;
887 struct iw_mlme
*mlme
= (struct iw_mlme
*) extra
;
889 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
890 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
&&
891 sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
)
896 /* TODO: mlme->addr.sa_data */
897 return ieee80211_sta_deauthenticate(dev
, mlme
->reason_code
);
898 case IW_MLME_DISASSOC
:
899 /* TODO: mlme->addr.sa_data */
900 return ieee80211_sta_disassociate(dev
, mlme
->reason_code
);
907 static int ieee80211_ioctl_siwencode(struct net_device
*dev
,
908 struct iw_request_info
*info
,
909 struct iw_point
*erq
, char *keybuf
)
911 struct ieee80211_sub_if_data
*sdata
;
912 int idx
, i
, alg
= ALG_WEP
;
913 u8 bcaddr
[ETH_ALEN
] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
916 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
918 idx
= erq
->flags
& IW_ENCODE_INDEX
;
920 if (sdata
->default_key
)
921 for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
922 if (sdata
->default_key
== sdata
->keys
[i
]) {
927 } else if (idx
< 1 || idx
> 4)
932 if (erq
->flags
& IW_ENCODE_DISABLED
)
934 else if (erq
->length
== 0) {
935 /* No key data - just set the default TX key index */
936 ieee80211_set_default_key(sdata
, idx
);
940 return ieee80211_set_encryption(
944 keybuf
, erq
->length
);
948 static int ieee80211_ioctl_giwencode(struct net_device
*dev
,
949 struct iw_request_info
*info
,
950 struct iw_point
*erq
, char *key
)
952 struct ieee80211_sub_if_data
*sdata
;
955 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
957 idx
= erq
->flags
& IW_ENCODE_INDEX
;
958 if (idx
< 1 || idx
> 4) {
960 if (!sdata
->default_key
)
962 else for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
963 if (sdata
->default_key
== sdata
->keys
[i
]) {
973 erq
->flags
= idx
+ 1;
975 if (!sdata
->keys
[idx
]) {
977 erq
->flags
|= IW_ENCODE_DISABLED
;
981 memcpy(key
, sdata
->keys
[idx
]->conf
.key
,
982 min_t(int, erq
->length
, sdata
->keys
[idx
]->conf
.keylen
));
983 erq
->length
= sdata
->keys
[idx
]->conf
.keylen
;
984 erq
->flags
|= IW_ENCODE_ENABLED
;
986 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
) {
987 struct ieee80211_if_sta
*ifsta
= &sdata
->u
.sta
;
988 switch (ifsta
->auth_alg
) {
991 erq
->flags
|= IW_ENCODE_OPEN
;
993 case WLAN_AUTH_SHARED_KEY
:
994 erq
->flags
|= IW_ENCODE_RESTRICTED
;
1002 static int ieee80211_ioctl_siwpower(struct net_device
*dev
,
1003 struct iw_request_info
*info
,
1004 struct iw_param
*wrq
,
1007 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1008 struct ieee80211_conf
*conf
= &local
->hw
.conf
;
1010 if (wrq
->disabled
) {
1011 conf
->flags
&= ~IEEE80211_CONF_PS
;
1012 return ieee80211_hw_config(local
);
1015 switch (wrq
->flags
& IW_POWER_MODE
) {
1016 case IW_POWER_ON
: /* If not specified */
1017 case IW_POWER_MODE
: /* If set all mask */
1018 case IW_POWER_ALL_R
: /* If explicitely state all */
1019 conf
->flags
|= IEEE80211_CONF_PS
;
1021 default: /* Otherwise we don't support it */
1025 return ieee80211_hw_config(local
);
1028 static int ieee80211_ioctl_giwpower(struct net_device
*dev
,
1029 struct iw_request_info
*info
,
1030 union iwreq_data
*wrqu
,
1033 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1034 struct ieee80211_conf
*conf
= &local
->hw
.conf
;
1036 wrqu
->power
.disabled
= !(conf
->flags
& IEEE80211_CONF_PS
);
1041 static int ieee80211_ioctl_siwauth(struct net_device
*dev
,
1042 struct iw_request_info
*info
,
1043 struct iw_param
*data
, char *extra
)
1045 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1048 switch (data
->flags
& IW_AUTH_INDEX
) {
1049 case IW_AUTH_WPA_VERSION
:
1050 case IW_AUTH_CIPHER_PAIRWISE
:
1051 case IW_AUTH_CIPHER_GROUP
:
1052 case IW_AUTH_WPA_ENABLED
:
1053 case IW_AUTH_RX_UNENCRYPTED_EAPOL
:
1054 case IW_AUTH_KEY_MGMT
:
1056 case IW_AUTH_DROP_UNENCRYPTED
:
1057 sdata
->drop_unencrypted
= !!data
->value
;
1059 case IW_AUTH_PRIVACY_INVOKED
:
1060 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
)
1063 sdata
->u
.sta
.flags
&= ~IEEE80211_STA_PRIVACY_INVOKED
;
1065 * Privacy invoked by wpa_supplicant, store the
1066 * value and allow associating to a protected
1067 * network without having a key up front.
1070 sdata
->u
.sta
.flags
|=
1071 IEEE80211_STA_PRIVACY_INVOKED
;
1074 case IW_AUTH_80211_AUTH_ALG
:
1075 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
1076 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
)
1077 sdata
->u
.sta
.auth_algs
= data
->value
;
1088 /* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
1089 static struct iw_statistics
*ieee80211_get_wireless_stats(struct net_device
*dev
)
1091 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1092 struct iw_statistics
*wstats
= &local
->wstats
;
1093 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1094 struct sta_info
*sta
= NULL
;
1098 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
1099 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
)
1100 sta
= sta_info_get(local
, sdata
->u
.sta
.bssid
);
1102 wstats
->discard
.fragment
= 0;
1103 wstats
->discard
.misc
= 0;
1104 wstats
->qual
.qual
= 0;
1105 wstats
->qual
.level
= 0;
1106 wstats
->qual
.noise
= 0;
1107 wstats
->qual
.updated
= IW_QUAL_ALL_INVALID
;
1109 wstats
->qual
.level
= sta
->last_signal
;
1110 wstats
->qual
.qual
= sta
->last_qual
;
1111 wstats
->qual
.noise
= sta
->last_noise
;
1112 wstats
->qual
.updated
= local
->wstats_flags
;
1120 static int ieee80211_ioctl_giwauth(struct net_device
*dev
,
1121 struct iw_request_info
*info
,
1122 struct iw_param
*data
, char *extra
)
1124 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1127 switch (data
->flags
& IW_AUTH_INDEX
) {
1128 case IW_AUTH_80211_AUTH_ALG
:
1129 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
1130 sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
)
1131 data
->value
= sdata
->u
.sta
.auth_algs
;
1143 static int ieee80211_ioctl_siwencodeext(struct net_device
*dev
,
1144 struct iw_request_info
*info
,
1145 struct iw_point
*erq
, char *extra
)
1147 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1148 struct iw_encode_ext
*ext
= (struct iw_encode_ext
*) extra
;
1149 int uninitialized_var(alg
), idx
, i
, remove
= 0;
1152 case IW_ENCODE_ALG_NONE
:
1155 case IW_ENCODE_ALG_WEP
:
1158 case IW_ENCODE_ALG_TKIP
:
1161 case IW_ENCODE_ALG_CCMP
:
1168 if (erq
->flags
& IW_ENCODE_DISABLED
)
1171 idx
= erq
->flags
& IW_ENCODE_INDEX
;
1172 if (idx
< 1 || idx
> 4) {
1174 if (!sdata
->default_key
)
1176 else for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
1177 if (sdata
->default_key
== sdata
->keys
[i
]) {
1187 return ieee80211_set_encryption(dev
, ext
->addr
.sa_data
, idx
, alg
,
1190 IW_ENCODE_EXT_SET_TX_KEY
,
1191 ext
->key
, ext
->key_len
);
1195 /* Structures to export the Wireless Handlers */
1197 static const iw_handler ieee80211_handler
[] =
1199 (iw_handler
) NULL
, /* SIOCSIWCOMMIT */
1200 (iw_handler
) ieee80211_ioctl_giwname
, /* SIOCGIWNAME */
1201 (iw_handler
) NULL
, /* SIOCSIWNWID */
1202 (iw_handler
) NULL
, /* SIOCGIWNWID */
1203 (iw_handler
) ieee80211_ioctl_siwfreq
, /* SIOCSIWFREQ */
1204 (iw_handler
) ieee80211_ioctl_giwfreq
, /* SIOCGIWFREQ */
1205 (iw_handler
) ieee80211_ioctl_siwmode
, /* SIOCSIWMODE */
1206 (iw_handler
) ieee80211_ioctl_giwmode
, /* SIOCGIWMODE */
1207 (iw_handler
) NULL
, /* SIOCSIWSENS */
1208 (iw_handler
) NULL
, /* SIOCGIWSENS */
1209 (iw_handler
) NULL
/* not used */, /* SIOCSIWRANGE */
1210 (iw_handler
) ieee80211_ioctl_giwrange
, /* SIOCGIWRANGE */
1211 (iw_handler
) NULL
/* not used */, /* SIOCSIWPRIV */
1212 (iw_handler
) NULL
/* kernel code */, /* SIOCGIWPRIV */
1213 (iw_handler
) NULL
/* not used */, /* SIOCSIWSTATS */
1214 (iw_handler
) NULL
/* kernel code */, /* SIOCGIWSTATS */
1215 (iw_handler
) NULL
, /* SIOCSIWSPY */
1216 (iw_handler
) NULL
, /* SIOCGIWSPY */
1217 (iw_handler
) NULL
, /* SIOCSIWTHRSPY */
1218 (iw_handler
) NULL
, /* SIOCGIWTHRSPY */
1219 (iw_handler
) ieee80211_ioctl_siwap
, /* SIOCSIWAP */
1220 (iw_handler
) ieee80211_ioctl_giwap
, /* SIOCGIWAP */
1221 (iw_handler
) ieee80211_ioctl_siwmlme
, /* SIOCSIWMLME */
1222 (iw_handler
) NULL
, /* SIOCGIWAPLIST */
1223 (iw_handler
) ieee80211_ioctl_siwscan
, /* SIOCSIWSCAN */
1224 (iw_handler
) ieee80211_ioctl_giwscan
, /* SIOCGIWSCAN */
1225 (iw_handler
) ieee80211_ioctl_siwessid
, /* SIOCSIWESSID */
1226 (iw_handler
) ieee80211_ioctl_giwessid
, /* SIOCGIWESSID */
1227 (iw_handler
) NULL
, /* SIOCSIWNICKN */
1228 (iw_handler
) NULL
, /* SIOCGIWNICKN */
1229 (iw_handler
) NULL
, /* -- hole -- */
1230 (iw_handler
) NULL
, /* -- hole -- */
1231 (iw_handler
) ieee80211_ioctl_siwrate
, /* SIOCSIWRATE */
1232 (iw_handler
) ieee80211_ioctl_giwrate
, /* SIOCGIWRATE */
1233 (iw_handler
) ieee80211_ioctl_siwrts
, /* SIOCSIWRTS */
1234 (iw_handler
) ieee80211_ioctl_giwrts
, /* SIOCGIWRTS */
1235 (iw_handler
) ieee80211_ioctl_siwfrag
, /* SIOCSIWFRAG */
1236 (iw_handler
) ieee80211_ioctl_giwfrag
, /* SIOCGIWFRAG */
1237 (iw_handler
) ieee80211_ioctl_siwtxpower
, /* SIOCSIWTXPOW */
1238 (iw_handler
) ieee80211_ioctl_giwtxpower
, /* SIOCGIWTXPOW */
1239 (iw_handler
) ieee80211_ioctl_siwretry
, /* SIOCSIWRETRY */
1240 (iw_handler
) ieee80211_ioctl_giwretry
, /* SIOCGIWRETRY */
1241 (iw_handler
) ieee80211_ioctl_siwencode
, /* SIOCSIWENCODE */
1242 (iw_handler
) ieee80211_ioctl_giwencode
, /* SIOCGIWENCODE */
1243 (iw_handler
) ieee80211_ioctl_siwpower
, /* SIOCSIWPOWER */
1244 (iw_handler
) ieee80211_ioctl_giwpower
, /* SIOCGIWPOWER */
1245 (iw_handler
) NULL
, /* -- hole -- */
1246 (iw_handler
) NULL
, /* -- hole -- */
1247 (iw_handler
) ieee80211_ioctl_siwgenie
, /* SIOCSIWGENIE */
1248 (iw_handler
) NULL
, /* SIOCGIWGENIE */
1249 (iw_handler
) ieee80211_ioctl_siwauth
, /* SIOCSIWAUTH */
1250 (iw_handler
) ieee80211_ioctl_giwauth
, /* SIOCGIWAUTH */
1251 (iw_handler
) ieee80211_ioctl_siwencodeext
, /* SIOCSIWENCODEEXT */
1252 (iw_handler
) NULL
, /* SIOCGIWENCODEEXT */
1253 (iw_handler
) NULL
, /* SIOCSIWPMKSA */
1254 (iw_handler
) NULL
, /* -- hole -- */
1257 const struct iw_handler_def ieee80211_iw_handler_def
=
1259 .num_standard
= ARRAY_SIZE(ieee80211_handler
),
1260 .standard
= (iw_handler
*) ieee80211_handler
,
1261 .get_wireless_stats
= ieee80211_get_wireless_stats
,