2 * cfg80211 - wext compat code
4 * This is temporary code until all wireless functionality is migrated
5 * into cfg80211, when that happens all the exports here go away and
6 * we directly assign the wireless handlers of wireless interfaces.
8 * Copyright 2008-2009 Johannes Berg <johannes@sipsolutions.net>
11 #include <linux/wireless.h>
12 #include <linux/nl80211.h>
13 #include <linux/if_arp.h>
14 #include <linux/etherdevice.h>
15 #include <net/iw_handler.h>
16 #include <net/cfg80211.h>
17 #include "wext-compat.h"
20 int cfg80211_wext_giwname(struct net_device
*dev
,
21 struct iw_request_info
*info
,
22 char *name
, char *extra
)
24 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
25 struct ieee80211_supported_band
*sband
;
26 bool is_ht
= false, is_a
= false, is_b
= false, is_g
= false;
31 sband
= wdev
->wiphy
->bands
[IEEE80211_BAND_5GHZ
];
34 is_ht
|= sband
->ht_cap
.ht_supported
;
37 sband
= wdev
->wiphy
->bands
[IEEE80211_BAND_2GHZ
];
40 /* Check for mandatory rates */
41 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
42 if (sband
->bitrates
[i
].bitrate
== 10)
44 if (sband
->bitrates
[i
].bitrate
== 60)
47 is_ht
|= sband
->ht_cap
.ht_supported
;
50 strcpy(name
, "IEEE 802.11");
62 EXPORT_SYMBOL_GPL(cfg80211_wext_giwname
);
64 int cfg80211_wext_siwmode(struct net_device
*dev
, struct iw_request_info
*info
,
65 u32
*mode
, char *extra
)
67 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
68 struct cfg80211_registered_device
*rdev
;
69 struct vif_params vifparams
;
70 enum nl80211_iftype type
;
76 rdev
= wiphy_to_dev(wdev
->wiphy
);
78 if (!rdev
->ops
->change_virtual_intf
)
81 /* don't support changing VLANs, you just re-create them */
82 if (wdev
->iftype
== NL80211_IFTYPE_AP_VLAN
)
87 type
= NL80211_IFTYPE_STATION
;
90 type
= NL80211_IFTYPE_ADHOC
;
93 type
= NL80211_IFTYPE_WDS
;
96 type
= NL80211_IFTYPE_MONITOR
;
102 if (type
== wdev
->iftype
)
105 memset(&vifparams
, 0, sizeof(vifparams
));
107 ret
= rdev
->ops
->change_virtual_intf(wdev
->wiphy
, dev
, type
,
109 WARN_ON(!ret
&& wdev
->iftype
!= type
);
113 EXPORT_SYMBOL_GPL(cfg80211_wext_siwmode
);
115 int cfg80211_wext_giwmode(struct net_device
*dev
, struct iw_request_info
*info
,
116 u32
*mode
, char *extra
)
118 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
123 switch (wdev
->iftype
) {
124 case NL80211_IFTYPE_AP
:
125 *mode
= IW_MODE_MASTER
;
127 case NL80211_IFTYPE_STATION
:
128 *mode
= IW_MODE_INFRA
;
130 case NL80211_IFTYPE_ADHOC
:
131 *mode
= IW_MODE_ADHOC
;
133 case NL80211_IFTYPE_MONITOR
:
134 *mode
= IW_MODE_MONITOR
;
136 case NL80211_IFTYPE_WDS
:
137 *mode
= IW_MODE_REPEAT
;
139 case NL80211_IFTYPE_AP_VLAN
:
140 *mode
= IW_MODE_SECOND
; /* FIXME */
143 *mode
= IW_MODE_AUTO
;
148 EXPORT_SYMBOL_GPL(cfg80211_wext_giwmode
);
151 int cfg80211_wext_giwrange(struct net_device
*dev
,
152 struct iw_request_info
*info
,
153 struct iw_point
*data
, char *extra
)
155 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
156 struct iw_range
*range
= (struct iw_range
*) extra
;
157 enum ieee80211_band band
;
163 data
->length
= sizeof(struct iw_range
);
164 memset(range
, 0, sizeof(struct iw_range
));
166 range
->we_version_compiled
= WIRELESS_EXT
;
167 range
->we_version_source
= 21;
168 range
->retry_capa
= IW_RETRY_LIMIT
;
169 range
->retry_flags
= IW_RETRY_LIMIT
;
170 range
->min_retry
= 0;
171 range
->max_retry
= 255;
173 range
->max_rts
= 2347;
174 range
->min_frag
= 256;
175 range
->max_frag
= 2346;
177 range
->max_encoding_tokens
= 4;
179 range
->max_qual
.updated
= IW_QUAL_NOISE_INVALID
;
181 switch (wdev
->wiphy
->signal_type
) {
182 case CFG80211_SIGNAL_TYPE_NONE
:
184 case CFG80211_SIGNAL_TYPE_MBM
:
185 range
->max_qual
.level
= -110;
186 range
->max_qual
.qual
= 70;
187 range
->avg_qual
.qual
= 35;
188 range
->max_qual
.updated
|= IW_QUAL_DBM
;
189 range
->max_qual
.updated
|= IW_QUAL_QUAL_UPDATED
;
190 range
->max_qual
.updated
|= IW_QUAL_LEVEL_UPDATED
;
192 case CFG80211_SIGNAL_TYPE_UNSPEC
:
193 range
->max_qual
.level
= 100;
194 range
->max_qual
.qual
= 100;
195 range
->avg_qual
.qual
= 50;
196 range
->max_qual
.updated
|= IW_QUAL_QUAL_UPDATED
;
197 range
->max_qual
.updated
|= IW_QUAL_LEVEL_UPDATED
;
201 range
->avg_qual
.level
= range
->max_qual
.level
/ 2;
202 range
->avg_qual
.noise
= range
->max_qual
.noise
/ 2;
203 range
->avg_qual
.updated
= range
->max_qual
.updated
;
205 for (i
= 0; i
< wdev
->wiphy
->n_cipher_suites
; i
++) {
206 switch (wdev
->wiphy
->cipher_suites
[i
]) {
207 case WLAN_CIPHER_SUITE_TKIP
:
208 range
->enc_capa
|= (IW_ENC_CAPA_CIPHER_TKIP
|
212 case WLAN_CIPHER_SUITE_CCMP
:
213 range
->enc_capa
|= (IW_ENC_CAPA_CIPHER_CCMP
|
217 case WLAN_CIPHER_SUITE_WEP40
:
218 range
->encoding_size
[range
->num_encoding_sizes
++] =
222 case WLAN_CIPHER_SUITE_WEP104
:
223 range
->encoding_size
[range
->num_encoding_sizes
++] =
229 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
230 struct ieee80211_supported_band
*sband
;
232 sband
= wdev
->wiphy
->bands
[band
];
237 for (i
= 0; i
< sband
->n_channels
&& c
< IW_MAX_FREQUENCIES
; i
++) {
238 struct ieee80211_channel
*chan
= &sband
->channels
[i
];
240 if (!(chan
->flags
& IEEE80211_CHAN_DISABLED
)) {
242 ieee80211_frequency_to_channel(
244 range
->freq
[c
].m
= chan
->center_freq
;
245 range
->freq
[c
].e
= 6;
250 range
->num_channels
= c
;
251 range
->num_frequency
= c
;
253 IW_EVENT_CAPA_SET_KERNEL(range
->event_capa
);
254 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWAP
);
255 IW_EVENT_CAPA_SET(range
->event_capa
, SIOCGIWSCAN
);
257 if (wdev
->wiphy
->max_scan_ssids
> 0)
258 range
->scan_capa
|= IW_SCAN_CAPA_ESSID
;
262 EXPORT_SYMBOL_GPL(cfg80211_wext_giwrange
);
266 * cfg80211_wext_freq - get wext frequency for non-"auto"
268 * @freq: the wext freq encoding
270 * Returns a channel, %NULL for auto, or an ERR_PTR for errors!
272 struct ieee80211_channel
*cfg80211_wext_freq(struct wiphy
*wiphy
,
273 struct iw_freq
*freq
)
275 struct ieee80211_channel
*chan
;
279 * Parse frequency - return NULL for auto and
280 * -EINVAL for impossible things.
285 f
= ieee80211_channel_to_frequency(freq
->m
);
287 int i
, div
= 1000000;
288 for (i
= 0; i
< freq
->e
; i
++)
291 return ERR_PTR(-EINVAL
);
296 * Look up channel struct and return -EINVAL when
297 * it cannot be found.
299 chan
= ieee80211_get_channel(wiphy
, f
);
301 return ERR_PTR(-EINVAL
);
305 int cfg80211_wext_siwrts(struct net_device
*dev
,
306 struct iw_request_info
*info
,
307 struct iw_param
*rts
, char *extra
)
309 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
310 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
311 u32 orts
= wdev
->wiphy
->rts_threshold
;
314 if (rts
->disabled
|| !rts
->fixed
)
315 wdev
->wiphy
->rts_threshold
= (u32
) -1;
316 else if (rts
->value
< 0)
319 wdev
->wiphy
->rts_threshold
= rts
->value
;
321 err
= rdev
->ops
->set_wiphy_params(wdev
->wiphy
,
322 WIPHY_PARAM_RTS_THRESHOLD
);
324 wdev
->wiphy
->rts_threshold
= orts
;
328 EXPORT_SYMBOL_GPL(cfg80211_wext_siwrts
);
330 int cfg80211_wext_giwrts(struct net_device
*dev
,
331 struct iw_request_info
*info
,
332 struct iw_param
*rts
, char *extra
)
334 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
336 rts
->value
= wdev
->wiphy
->rts_threshold
;
337 rts
->disabled
= rts
->value
== (u32
) -1;
342 EXPORT_SYMBOL_GPL(cfg80211_wext_giwrts
);
344 int cfg80211_wext_siwfrag(struct net_device
*dev
,
345 struct iw_request_info
*info
,
346 struct iw_param
*frag
, char *extra
)
348 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
349 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
350 u32 ofrag
= wdev
->wiphy
->frag_threshold
;
353 if (frag
->disabled
|| !frag
->fixed
)
354 wdev
->wiphy
->frag_threshold
= (u32
) -1;
355 else if (frag
->value
< 256)
358 /* Fragment length must be even, so strip LSB. */
359 wdev
->wiphy
->frag_threshold
= frag
->value
& ~0x1;
362 err
= rdev
->ops
->set_wiphy_params(wdev
->wiphy
,
363 WIPHY_PARAM_FRAG_THRESHOLD
);
365 wdev
->wiphy
->frag_threshold
= ofrag
;
369 EXPORT_SYMBOL_GPL(cfg80211_wext_siwfrag
);
371 int cfg80211_wext_giwfrag(struct net_device
*dev
,
372 struct iw_request_info
*info
,
373 struct iw_param
*frag
, char *extra
)
375 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
377 frag
->value
= wdev
->wiphy
->frag_threshold
;
378 frag
->disabled
= frag
->value
== (u32
) -1;
383 EXPORT_SYMBOL_GPL(cfg80211_wext_giwfrag
);
385 int cfg80211_wext_siwretry(struct net_device
*dev
,
386 struct iw_request_info
*info
,
387 struct iw_param
*retry
, char *extra
)
389 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
390 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
392 u8 olong
= wdev
->wiphy
->retry_long
;
393 u8 oshort
= wdev
->wiphy
->retry_short
;
396 if (retry
->disabled
||
397 (retry
->flags
& IW_RETRY_TYPE
) != IW_RETRY_LIMIT
)
400 if (retry
->flags
& IW_RETRY_LONG
) {
401 wdev
->wiphy
->retry_long
= retry
->value
;
402 changed
|= WIPHY_PARAM_RETRY_LONG
;
403 } else if (retry
->flags
& IW_RETRY_SHORT
) {
404 wdev
->wiphy
->retry_short
= retry
->value
;
405 changed
|= WIPHY_PARAM_RETRY_SHORT
;
407 wdev
->wiphy
->retry_short
= retry
->value
;
408 wdev
->wiphy
->retry_long
= retry
->value
;
409 changed
|= WIPHY_PARAM_RETRY_LONG
;
410 changed
|= WIPHY_PARAM_RETRY_SHORT
;
416 err
= rdev
->ops
->set_wiphy_params(wdev
->wiphy
, changed
);
418 wdev
->wiphy
->retry_short
= oshort
;
419 wdev
->wiphy
->retry_long
= olong
;
424 EXPORT_SYMBOL_GPL(cfg80211_wext_siwretry
);
426 int cfg80211_wext_giwretry(struct net_device
*dev
,
427 struct iw_request_info
*info
,
428 struct iw_param
*retry
, char *extra
)
430 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
434 if (retry
->flags
== 0 || (retry
->flags
& IW_RETRY_SHORT
)) {
436 * First return short value, iwconfig will ask long value
439 retry
->flags
|= IW_RETRY_LIMIT
;
440 retry
->value
= wdev
->wiphy
->retry_short
;
441 if (wdev
->wiphy
->retry_long
!= wdev
->wiphy
->retry_short
)
442 retry
->flags
|= IW_RETRY_LONG
;
447 if (retry
->flags
& IW_RETRY_LONG
) {
448 retry
->flags
= IW_RETRY_LIMIT
| IW_RETRY_LONG
;
449 retry
->value
= wdev
->wiphy
->retry_long
;
454 EXPORT_SYMBOL_GPL(cfg80211_wext_giwretry
);
456 static int __cfg80211_set_encryption(struct cfg80211_registered_device
*rdev
,
457 struct net_device
*dev
, const u8
*addr
,
458 bool remove
, bool tx_key
, int idx
,
459 struct key_params
*params
)
461 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
464 if (!wdev
->wext
.keys
) {
465 wdev
->wext
.keys
= kzalloc(sizeof(*wdev
->wext
.keys
),
467 if (!wdev
->wext
.keys
)
469 for (i
= 0; i
< 6; i
++)
470 wdev
->wext
.keys
->params
[i
].key
=
471 wdev
->wext
.keys
->data
[i
];
474 if (wdev
->iftype
!= NL80211_IFTYPE_ADHOC
&&
475 wdev
->iftype
!= NL80211_IFTYPE_STATION
)
478 if (params
->cipher
== WLAN_CIPHER_SUITE_AES_CMAC
) {
479 if (!wdev
->current_bss
)
482 if (!rdev
->ops
->set_default_mgmt_key
)
485 if (idx
< 4 || idx
> 5)
487 } else if (idx
< 0 || idx
> 3)
492 if (wdev
->current_bss
)
493 err
= rdev
->ops
->del_key(&rdev
->wiphy
, dev
, idx
, addr
);
496 wdev
->wext
.keys
->params
[idx
].key_len
= 0;
497 wdev
->wext
.keys
->params
[idx
].cipher
= 0;
499 if (idx
== wdev
->wext
.default_key
)
500 wdev
->wext
.default_key
= -1;
501 else if (idx
== wdev
->wext
.default_mgmt_key
)
502 wdev
->wext
.default_mgmt_key
= -1;
505 * Applications using wireless extensions expect to be
506 * able to delete keys that don't exist, so allow that.
517 if (cfg80211_validate_key_settings(rdev
, params
, idx
, addr
))
521 if (wdev
->current_bss
)
522 err
= rdev
->ops
->add_key(&rdev
->wiphy
, dev
, idx
, addr
, params
);
527 wdev
->wext
.keys
->params
[idx
] = *params
;
528 memcpy(wdev
->wext
.keys
->data
[idx
],
529 params
->key
, params
->key_len
);
530 wdev
->wext
.keys
->params
[idx
].key
=
531 wdev
->wext
.keys
->data
[idx
];
534 if ((params
->cipher
== WLAN_CIPHER_SUITE_WEP40
||
535 params
->cipher
== WLAN_CIPHER_SUITE_WEP104
) &&
536 (tx_key
|| (!addr
&& wdev
->wext
.default_key
== -1))) {
537 if (wdev
->current_bss
)
538 err
= rdev
->ops
->set_default_key(&rdev
->wiphy
,
541 wdev
->wext
.default_key
= idx
;
545 if (params
->cipher
== WLAN_CIPHER_SUITE_AES_CMAC
&&
546 (tx_key
|| (!addr
&& wdev
->wext
.default_mgmt_key
== -1))) {
547 if (wdev
->current_bss
)
548 err
= rdev
->ops
->set_default_mgmt_key(&rdev
->wiphy
,
551 wdev
->wext
.default_mgmt_key
= idx
;
558 static int cfg80211_set_encryption(struct cfg80211_registered_device
*rdev
,
559 struct net_device
*dev
, const u8
*addr
,
560 bool remove
, bool tx_key
, int idx
,
561 struct key_params
*params
)
565 wdev_lock(dev
->ieee80211_ptr
);
566 err
= __cfg80211_set_encryption(rdev
, dev
, addr
, remove
,
567 tx_key
, idx
, params
);
568 wdev_unlock(dev
->ieee80211_ptr
);
573 int cfg80211_wext_siwencode(struct net_device
*dev
,
574 struct iw_request_info
*info
,
575 struct iw_point
*erq
, char *keybuf
)
577 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
578 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
581 struct key_params params
;
583 if (wdev
->iftype
!= NL80211_IFTYPE_STATION
&&
584 wdev
->iftype
!= NL80211_IFTYPE_ADHOC
)
587 /* no use -- only MFP (set_default_mgmt_key) is optional */
588 if (!rdev
->ops
->del_key
||
589 !rdev
->ops
->add_key
||
590 !rdev
->ops
->set_default_key
)
593 idx
= erq
->flags
& IW_ENCODE_INDEX
;
595 idx
= wdev
->wext
.default_key
;
598 } else if (idx
< 1 || idx
> 4)
603 if (erq
->flags
& IW_ENCODE_DISABLED
)
605 else if (erq
->length
== 0) {
606 /* No key data - just set the default TX key index */
609 if (wdev
->current_bss
)
610 err
= rdev
->ops
->set_default_key(&rdev
->wiphy
,
613 wdev
->wext
.default_key
= idx
;
618 memset(¶ms
, 0, sizeof(params
));
620 params
.key_len
= erq
->length
;
621 if (erq
->length
== 5)
622 params
.cipher
= WLAN_CIPHER_SUITE_WEP40
;
623 else if (erq
->length
== 13)
624 params
.cipher
= WLAN_CIPHER_SUITE_WEP104
;
628 return cfg80211_set_encryption(rdev
, dev
, NULL
, remove
,
629 wdev
->wext
.default_key
== -1,
632 EXPORT_SYMBOL_GPL(cfg80211_wext_siwencode
);
634 int cfg80211_wext_siwencodeext(struct net_device
*dev
,
635 struct iw_request_info
*info
,
636 struct iw_point
*erq
, char *extra
)
638 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
639 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
640 struct iw_encode_ext
*ext
= (struct iw_encode_ext
*) extra
;
644 struct key_params params
;
647 if (wdev
->iftype
!= NL80211_IFTYPE_STATION
&&
648 wdev
->iftype
!= NL80211_IFTYPE_ADHOC
)
651 /* no use -- only MFP (set_default_mgmt_key) is optional */
652 if (!rdev
->ops
->del_key
||
653 !rdev
->ops
->add_key
||
654 !rdev
->ops
->set_default_key
)
658 case IW_ENCODE_ALG_NONE
:
662 case IW_ENCODE_ALG_WEP
:
663 if (ext
->key_len
== 5)
664 cipher
= WLAN_CIPHER_SUITE_WEP40
;
665 else if (ext
->key_len
== 13)
666 cipher
= WLAN_CIPHER_SUITE_WEP104
;
670 case IW_ENCODE_ALG_TKIP
:
671 cipher
= WLAN_CIPHER_SUITE_TKIP
;
673 case IW_ENCODE_ALG_CCMP
:
674 cipher
= WLAN_CIPHER_SUITE_CCMP
;
676 case IW_ENCODE_ALG_AES_CMAC
:
677 cipher
= WLAN_CIPHER_SUITE_AES_CMAC
;
683 if (erq
->flags
& IW_ENCODE_DISABLED
)
686 idx
= erq
->flags
& IW_ENCODE_INDEX
;
687 if (cipher
== WLAN_CIPHER_SUITE_AES_CMAC
) {
688 if (idx
< 4 || idx
> 5) {
689 idx
= wdev
->wext
.default_mgmt_key
;
695 if (idx
< 1 || idx
> 4) {
696 idx
= wdev
->wext
.default_key
;
703 addr
= ext
->addr
.sa_data
;
704 if (is_broadcast_ether_addr(addr
))
707 memset(¶ms
, 0, sizeof(params
));
708 params
.key
= ext
->key
;
709 params
.key_len
= ext
->key_len
;
710 params
.cipher
= cipher
;
712 if (ext
->ext_flags
& IW_ENCODE_EXT_RX_SEQ_VALID
) {
713 params
.seq
= ext
->rx_seq
;
717 return cfg80211_set_encryption(
718 rdev
, dev
, addr
, remove
,
719 ext
->ext_flags
& IW_ENCODE_EXT_SET_TX_KEY
,
722 EXPORT_SYMBOL_GPL(cfg80211_wext_siwencodeext
);
724 int cfg80211_wext_giwencode(struct net_device
*dev
,
725 struct iw_request_info
*info
,
726 struct iw_point
*erq
, char *keybuf
)
728 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
731 if (wdev
->iftype
!= NL80211_IFTYPE_STATION
&&
732 wdev
->iftype
!= NL80211_IFTYPE_ADHOC
)
735 idx
= erq
->flags
& IW_ENCODE_INDEX
;
737 idx
= wdev
->wext
.default_key
;
740 } else if (idx
< 1 || idx
> 4)
745 erq
->flags
= idx
+ 1;
747 if (!wdev
->wext
.keys
|| !wdev
->wext
.keys
->params
[idx
].cipher
) {
748 erq
->flags
|= IW_ENCODE_DISABLED
;
753 erq
->length
= min_t(size_t, erq
->length
,
754 wdev
->wext
.keys
->params
[idx
].key_len
);
755 memcpy(keybuf
, wdev
->wext
.keys
->params
[idx
].key
, erq
->length
);
756 erq
->flags
|= IW_ENCODE_ENABLED
;
760 EXPORT_SYMBOL_GPL(cfg80211_wext_giwencode
);
762 int cfg80211_wext_siwfreq(struct net_device
*dev
,
763 struct iw_request_info
*info
,
764 struct iw_freq
*freq
, char *extra
)
766 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
767 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
768 struct ieee80211_channel
*chan
;
771 switch (wdev
->iftype
) {
772 case NL80211_IFTYPE_STATION
:
773 return cfg80211_mgd_wext_siwfreq(dev
, info
, freq
, extra
);
774 case NL80211_IFTYPE_ADHOC
:
775 return cfg80211_ibss_wext_siwfreq(dev
, info
, freq
, extra
);
777 chan
= cfg80211_wext_freq(wdev
->wiphy
, freq
);
781 return PTR_ERR(chan
);
782 err
= rdev
->ops
->set_channel(wdev
->wiphy
, chan
,
786 rdev
->channel
= chan
;
790 EXPORT_SYMBOL_GPL(cfg80211_wext_siwfreq
);
792 int cfg80211_wext_giwfreq(struct net_device
*dev
,
793 struct iw_request_info
*info
,
794 struct iw_freq
*freq
, char *extra
)
796 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
797 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
799 switch (wdev
->iftype
) {
800 case NL80211_IFTYPE_STATION
:
801 return cfg80211_mgd_wext_giwfreq(dev
, info
, freq
, extra
);
802 case NL80211_IFTYPE_ADHOC
:
803 return cfg80211_ibss_wext_giwfreq(dev
, info
, freq
, extra
);
807 freq
->m
= rdev
->channel
->center_freq
;
812 EXPORT_SYMBOL_GPL(cfg80211_wext_giwfreq
);
814 int cfg80211_wext_siwtxpower(struct net_device
*dev
,
815 struct iw_request_info
*info
,
816 union iwreq_data
*data
, char *extra
)
818 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
819 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
820 enum tx_power_setting type
;
823 if ((data
->txpower
.flags
& IW_TXPOW_TYPE
) != IW_TXPOW_DBM
)
825 if (data
->txpower
.flags
& IW_TXPOW_RANGE
)
828 if (!rdev
->ops
->set_tx_power
)
831 /* only change when not disabling */
832 if (!data
->txpower
.disabled
) {
833 rfkill_set_sw_state(rdev
->rfkill
, false);
835 if (data
->txpower
.fixed
) {
837 * wext doesn't support negative values, see
838 * below where it's for automatic
840 if (data
->txpower
.value
< 0)
842 dbm
= data
->txpower
.value
;
843 type
= TX_POWER_FIXED
;
844 /* TODO: do regulatory check! */
847 * Automatic power level setting, max being the value
848 * passed in from userland.
850 if (data
->txpower
.value
< 0) {
851 type
= TX_POWER_AUTOMATIC
;
853 dbm
= data
->txpower
.value
;
854 type
= TX_POWER_LIMITED
;
858 rfkill_set_sw_state(rdev
->rfkill
, true);
859 schedule_work(&rdev
->rfkill_sync
);
863 return rdev
->ops
->set_tx_power(wdev
->wiphy
, type
, dbm
);;
865 EXPORT_SYMBOL_GPL(cfg80211_wext_siwtxpower
);
867 int cfg80211_wext_giwtxpower(struct net_device
*dev
,
868 struct iw_request_info
*info
,
869 union iwreq_data
*data
, char *extra
)
871 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
872 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
875 if ((data
->txpower
.flags
& IW_TXPOW_TYPE
) != IW_TXPOW_DBM
)
877 if (data
->txpower
.flags
& IW_TXPOW_RANGE
)
880 if (!rdev
->ops
->get_tx_power
)
883 err
= rdev
->ops
->get_tx_power(wdev
->wiphy
, &val
);
887 /* well... oh well */
888 data
->txpower
.fixed
= 1;
889 data
->txpower
.disabled
= rfkill_blocked(rdev
->rfkill
);
890 data
->txpower
.value
= val
;
891 data
->txpower
.flags
= IW_TXPOW_DBM
;
895 EXPORT_SYMBOL_GPL(cfg80211_wext_giwtxpower
);
897 static int cfg80211_set_auth_alg(struct wireless_dev
*wdev
,
905 if (auth_alg
& ~(IW_AUTH_ALG_OPEN_SYSTEM
|
906 IW_AUTH_ALG_SHARED_KEY
|
910 if (auth_alg
& IW_AUTH_ALG_OPEN_SYSTEM
) {
912 wdev
->wext
.connect
.auth_type
= NL80211_AUTHTYPE_OPEN_SYSTEM
;
915 if (auth_alg
& IW_AUTH_ALG_SHARED_KEY
) {
917 wdev
->wext
.connect
.auth_type
= NL80211_AUTHTYPE_SHARED_KEY
;
920 if (auth_alg
& IW_AUTH_ALG_LEAP
) {
922 wdev
->wext
.connect
.auth_type
= NL80211_AUTHTYPE_NETWORK_EAP
;
926 wdev
->wext
.connect
.auth_type
= NL80211_AUTHTYPE_AUTOMATIC
;
931 static int cfg80211_set_wpa_version(struct wireless_dev
*wdev
, u32 wpa_versions
)
933 wdev
->wext
.connect
.crypto
.wpa_versions
= 0;
935 if (wpa_versions
& ~(IW_AUTH_WPA_VERSION_WPA
|
936 IW_AUTH_WPA_VERSION_WPA2
|
937 IW_AUTH_WPA_VERSION_DISABLED
))
940 if ((wpa_versions
& IW_AUTH_WPA_VERSION_DISABLED
) &&
941 (wpa_versions
& (IW_AUTH_WPA_VERSION_WPA
|
942 IW_AUTH_WPA_VERSION_WPA2
)))
945 if (wpa_versions
& IW_AUTH_WPA_VERSION_DISABLED
)
946 wdev
->wext
.connect
.crypto
.wpa_versions
&=
947 ~(NL80211_WPA_VERSION_1
|NL80211_WPA_VERSION_2
);
949 if (wpa_versions
& IW_AUTH_WPA_VERSION_WPA
)
950 wdev
->wext
.connect
.crypto
.wpa_versions
|=
951 NL80211_WPA_VERSION_1
;
953 if (wpa_versions
& IW_AUTH_WPA_VERSION_WPA2
)
954 wdev
->wext
.connect
.crypto
.wpa_versions
|=
955 NL80211_WPA_VERSION_2
;
960 static int cfg80211_set_cipher_group(struct wireless_dev
*wdev
, u32 cipher
)
962 wdev
->wext
.connect
.crypto
.cipher_group
= 0;
964 if (cipher
& IW_AUTH_CIPHER_WEP40
)
965 wdev
->wext
.connect
.crypto
.cipher_group
=
966 WLAN_CIPHER_SUITE_WEP40
;
967 else if (cipher
& IW_AUTH_CIPHER_WEP104
)
968 wdev
->wext
.connect
.crypto
.cipher_group
=
969 WLAN_CIPHER_SUITE_WEP104
;
970 else if (cipher
& IW_AUTH_CIPHER_TKIP
)
971 wdev
->wext
.connect
.crypto
.cipher_group
=
972 WLAN_CIPHER_SUITE_TKIP
;
973 else if (cipher
& IW_AUTH_CIPHER_CCMP
)
974 wdev
->wext
.connect
.crypto
.cipher_group
=
975 WLAN_CIPHER_SUITE_CCMP
;
976 else if (cipher
& IW_AUTH_CIPHER_AES_CMAC
)
977 wdev
->wext
.connect
.crypto
.cipher_group
=
978 WLAN_CIPHER_SUITE_AES_CMAC
;
985 static int cfg80211_set_cipher_pairwise(struct wireless_dev
*wdev
, u32 cipher
)
988 u32
*ciphers_pairwise
= wdev
->wext
.connect
.crypto
.ciphers_pairwise
;
990 if (cipher
& IW_AUTH_CIPHER_WEP40
) {
991 ciphers_pairwise
[nr_ciphers
] = WLAN_CIPHER_SUITE_WEP40
;
995 if (cipher
& IW_AUTH_CIPHER_WEP104
) {
996 ciphers_pairwise
[nr_ciphers
] = WLAN_CIPHER_SUITE_WEP104
;
1000 if (cipher
& IW_AUTH_CIPHER_TKIP
) {
1001 ciphers_pairwise
[nr_ciphers
] = WLAN_CIPHER_SUITE_TKIP
;
1005 if (cipher
& IW_AUTH_CIPHER_CCMP
) {
1006 ciphers_pairwise
[nr_ciphers
] = WLAN_CIPHER_SUITE_CCMP
;
1010 if (cipher
& IW_AUTH_CIPHER_AES_CMAC
) {
1011 ciphers_pairwise
[nr_ciphers
] = WLAN_CIPHER_SUITE_AES_CMAC
;
1015 BUILD_BUG_ON(NL80211_MAX_NR_CIPHER_SUITES
< 5);
1017 wdev
->wext
.connect
.crypto
.n_ciphers_pairwise
= nr_ciphers
;
1023 static int cfg80211_set_key_mgt(struct wireless_dev
*wdev
, u32 key_mgt
)
1025 int nr_akm_suites
= 0;
1027 if (key_mgt
& ~(IW_AUTH_KEY_MGMT_802_1X
|
1028 IW_AUTH_KEY_MGMT_PSK
))
1031 if (key_mgt
& IW_AUTH_KEY_MGMT_802_1X
) {
1032 wdev
->wext
.connect
.crypto
.akm_suites
[nr_akm_suites
] =
1033 WLAN_AKM_SUITE_8021X
;
1037 if (key_mgt
& IW_AUTH_KEY_MGMT_PSK
) {
1038 wdev
->wext
.connect
.crypto
.akm_suites
[nr_akm_suites
] =
1043 wdev
->wext
.connect
.crypto
.n_akm_suites
= nr_akm_suites
;
1048 int cfg80211_wext_siwauth(struct net_device
*dev
,
1049 struct iw_request_info
*info
,
1050 struct iw_param
*data
, char *extra
)
1052 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
1054 if (wdev
->iftype
!= NL80211_IFTYPE_STATION
)
1057 switch (data
->flags
& IW_AUTH_INDEX
) {
1058 case IW_AUTH_PRIVACY_INVOKED
:
1059 wdev
->wext
.connect
.privacy
= data
->value
;
1061 case IW_AUTH_WPA_VERSION
:
1062 return cfg80211_set_wpa_version(wdev
, data
->value
);
1063 case IW_AUTH_CIPHER_GROUP
:
1064 return cfg80211_set_cipher_group(wdev
, data
->value
);
1065 case IW_AUTH_KEY_MGMT
:
1066 return cfg80211_set_key_mgt(wdev
, data
->value
);
1067 case IW_AUTH_CIPHER_PAIRWISE
:
1068 return cfg80211_set_cipher_pairwise(wdev
, data
->value
);
1069 case IW_AUTH_80211_AUTH_ALG
:
1070 return cfg80211_set_auth_alg(wdev
, data
->value
);
1071 case IW_AUTH_WPA_ENABLED
:
1072 case IW_AUTH_RX_UNENCRYPTED_EAPOL
:
1073 case IW_AUTH_DROP_UNENCRYPTED
:
1080 EXPORT_SYMBOL_GPL(cfg80211_wext_siwauth
);
1082 int cfg80211_wext_giwauth(struct net_device
*dev
,
1083 struct iw_request_info
*info
,
1084 struct iw_param
*data
, char *extra
)
1086 /* XXX: what do we need? */
1090 EXPORT_SYMBOL_GPL(cfg80211_wext_giwauth
);
1092 int cfg80211_wext_siwpower(struct net_device
*dev
,
1093 struct iw_request_info
*info
,
1094 struct iw_param
*wrq
, char *extra
)
1096 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
1097 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
1098 bool ps
= wdev
->wext
.ps
;
1099 int timeout
= wdev
->wext
.ps_timeout
;
1102 if (wdev
->iftype
!= NL80211_IFTYPE_STATION
)
1105 if (!rdev
->ops
->set_power_mgmt
)
1108 if (wrq
->disabled
) {
1111 switch (wrq
->flags
& IW_POWER_MODE
) {
1112 case IW_POWER_ON
: /* If not specified */
1113 case IW_POWER_MODE
: /* If set all mask */
1114 case IW_POWER_ALL_R
: /* If explicitely state all */
1117 default: /* Otherwise we ignore */
1121 if (wrq
->flags
& ~(IW_POWER_MODE
| IW_POWER_TIMEOUT
))
1124 if (wrq
->flags
& IW_POWER_TIMEOUT
)
1125 timeout
= wrq
->value
/ 1000;
1128 err
= rdev
->ops
->set_power_mgmt(wdev
->wiphy
, dev
, ps
, timeout
);
1133 wdev
->wext
.ps_timeout
= timeout
;
1138 EXPORT_SYMBOL_GPL(cfg80211_wext_siwpower
);
1140 int cfg80211_wext_giwpower(struct net_device
*dev
,
1141 struct iw_request_info
*info
,
1142 struct iw_param
*wrq
, char *extra
)
1144 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
1146 wrq
->disabled
= !wdev
->wext
.ps
;
1150 EXPORT_SYMBOL_GPL(cfg80211_wext_giwpower
);
1152 static int cfg80211_wds_wext_siwap(struct net_device
*dev
,
1153 struct iw_request_info
*info
,
1154 struct sockaddr
*addr
, char *extra
)
1156 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
1157 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
1160 if (WARN_ON(wdev
->iftype
!= NL80211_IFTYPE_WDS
))
1163 if (addr
->sa_family
!= ARPHRD_ETHER
)
1166 if (netif_running(dev
))
1169 if (!rdev
->ops
->set_wds_peer
)
1172 err
= rdev
->ops
->set_wds_peer(wdev
->wiphy
, dev
, (u8
*) &addr
->sa_data
);
1176 memcpy(&wdev
->wext
.bssid
, (u8
*) &addr
->sa_data
, ETH_ALEN
);
1181 static int cfg80211_wds_wext_giwap(struct net_device
*dev
,
1182 struct iw_request_info
*info
,
1183 struct sockaddr
*addr
, char *extra
)
1185 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
1187 if (WARN_ON(wdev
->iftype
!= NL80211_IFTYPE_WDS
))
1190 addr
->sa_family
= ARPHRD_ETHER
;
1191 memcpy(&addr
->sa_data
, wdev
->wext
.bssid
, ETH_ALEN
);
1196 int cfg80211_wext_siwrate(struct net_device
*dev
,
1197 struct iw_request_info
*info
,
1198 struct iw_param
*rate
, char *extra
)
1200 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
1201 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
1202 struct cfg80211_bitrate_mask mask
;
1204 if (!rdev
->ops
->set_bitrate_mask
)
1210 if (rate
->value
< 0) {
1212 } else if (rate
->fixed
) {
1213 mask
.fixed
= rate
->value
/ 1000; /* kbps */
1215 mask
.maxrate
= rate
->value
/ 1000; /* kbps */
1218 return rdev
->ops
->set_bitrate_mask(wdev
->wiphy
, dev
, NULL
, &mask
);
1220 EXPORT_SYMBOL_GPL(cfg80211_wext_siwrate
);
1222 int cfg80211_wext_giwrate(struct net_device
*dev
,
1223 struct iw_request_info
*info
,
1224 struct iw_param
*rate
, char *extra
)
1226 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
1227 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
1228 /* we are under RTNL - globally locked - so can use a static struct */
1229 static struct station_info sinfo
;
1233 if (wdev
->iftype
!= NL80211_IFTYPE_STATION
)
1236 if (!rdev
->ops
->get_station
)
1241 if (wdev
->current_bss
)
1242 memcpy(addr
, wdev
->current_bss
->pub
.bssid
, ETH_ALEN
);
1249 err
= rdev
->ops
->get_station(&rdev
->wiphy
, dev
, addr
, &sinfo
);
1253 if (!(sinfo
.filled
& STATION_INFO_TX_BITRATE
))
1258 if (!(sinfo
.txrate
.flags
& RATE_INFO_FLAGS_MCS
))
1259 rate
->value
= 100000 * sinfo
.txrate
.legacy
;
1263 EXPORT_SYMBOL_GPL(cfg80211_wext_giwrate
);
1265 /* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
1266 struct iw_statistics
*cfg80211_wireless_stats(struct net_device
*dev
)
1268 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
1269 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
1270 /* we are under RTNL - globally locked - so can use static structs */
1271 static struct iw_statistics wstats
;
1272 static struct station_info sinfo
;
1275 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
)
1278 if (!rdev
->ops
->get_station
)
1281 /* Grab BSSID of current BSS, if any */
1283 if (!wdev
->current_bss
) {
1287 memcpy(bssid
, wdev
->current_bss
->pub
.bssid
, ETH_ALEN
);
1290 if (rdev
->ops
->get_station(&rdev
->wiphy
, dev
, bssid
, &sinfo
))
1293 memset(&wstats
, 0, sizeof(wstats
));
1295 switch (rdev
->wiphy
.signal_type
) {
1296 case CFG80211_SIGNAL_TYPE_MBM
:
1297 if (sinfo
.filled
& STATION_INFO_SIGNAL
) {
1298 int sig
= sinfo
.signal
;
1299 wstats
.qual
.updated
|= IW_QUAL_LEVEL_UPDATED
;
1300 wstats
.qual
.updated
|= IW_QUAL_QUAL_UPDATED
;
1301 wstats
.qual
.updated
|= IW_QUAL_DBM
;
1302 wstats
.qual
.level
= sig
;
1307 wstats
.qual
.qual
= sig
+ 110;
1310 case CFG80211_SIGNAL_TYPE_UNSPEC
:
1311 if (sinfo
.filled
& STATION_INFO_SIGNAL
) {
1312 wstats
.qual
.updated
|= IW_QUAL_LEVEL_UPDATED
;
1313 wstats
.qual
.updated
|= IW_QUAL_QUAL_UPDATED
;
1314 wstats
.qual
.level
= sinfo
.signal
;
1315 wstats
.qual
.qual
= sinfo
.signal
;
1319 wstats
.qual
.updated
|= IW_QUAL_LEVEL_INVALID
;
1320 wstats
.qual
.updated
|= IW_QUAL_QUAL_INVALID
;
1323 wstats
.qual
.updated
|= IW_QUAL_NOISE_INVALID
;
1327 EXPORT_SYMBOL_GPL(cfg80211_wireless_stats
);
1329 int cfg80211_wext_siwap(struct net_device
*dev
,
1330 struct iw_request_info
*info
,
1331 struct sockaddr
*ap_addr
, char *extra
)
1333 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
1335 switch (wdev
->iftype
) {
1336 case NL80211_IFTYPE_ADHOC
:
1337 return cfg80211_ibss_wext_siwap(dev
, info
, ap_addr
, extra
);
1338 case NL80211_IFTYPE_STATION
:
1339 return cfg80211_mgd_wext_siwap(dev
, info
, ap_addr
, extra
);
1340 case NL80211_IFTYPE_WDS
:
1341 return cfg80211_wds_wext_siwap(dev
, info
, ap_addr
, extra
);
1346 EXPORT_SYMBOL_GPL(cfg80211_wext_siwap
);
1348 int cfg80211_wext_giwap(struct net_device
*dev
,
1349 struct iw_request_info
*info
,
1350 struct sockaddr
*ap_addr
, char *extra
)
1352 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
1354 switch (wdev
->iftype
) {
1355 case NL80211_IFTYPE_ADHOC
:
1356 return cfg80211_ibss_wext_giwap(dev
, info
, ap_addr
, extra
);
1357 case NL80211_IFTYPE_STATION
:
1358 return cfg80211_mgd_wext_giwap(dev
, info
, ap_addr
, extra
);
1359 case NL80211_IFTYPE_WDS
:
1360 return cfg80211_wds_wext_giwap(dev
, info
, ap_addr
, extra
);
1365 EXPORT_SYMBOL_GPL(cfg80211_wext_giwap
);
1367 int cfg80211_wext_siwessid(struct net_device
*dev
,
1368 struct iw_request_info
*info
,
1369 struct iw_point
*data
, char *ssid
)
1371 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
1373 switch (wdev
->iftype
) {
1374 case NL80211_IFTYPE_ADHOC
:
1375 return cfg80211_ibss_wext_siwessid(dev
, info
, data
, ssid
);
1376 case NL80211_IFTYPE_STATION
:
1377 return cfg80211_mgd_wext_siwessid(dev
, info
, data
, ssid
);
1382 EXPORT_SYMBOL_GPL(cfg80211_wext_siwessid
);
1384 int cfg80211_wext_giwessid(struct net_device
*dev
,
1385 struct iw_request_info
*info
,
1386 struct iw_point
*data
, char *ssid
)
1388 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
1390 switch (wdev
->iftype
) {
1391 case NL80211_IFTYPE_ADHOC
:
1392 return cfg80211_ibss_wext_giwessid(dev
, info
, data
, ssid
);
1393 case NL80211_IFTYPE_STATION
:
1394 return cfg80211_mgd_wext_giwessid(dev
, info
, data
, ssid
);
1399 EXPORT_SYMBOL_GPL(cfg80211_wext_giwessid
);
1401 static const iw_handler cfg80211_handlers
[] = {
1402 [IW_IOCTL_IDX(SIOCGIWNAME
)] = (iw_handler
) cfg80211_wext_giwname
,
1403 [IW_IOCTL_IDX(SIOCSIWFREQ
)] = (iw_handler
) cfg80211_wext_siwfreq
,
1404 [IW_IOCTL_IDX(SIOCGIWFREQ
)] = (iw_handler
) cfg80211_wext_giwfreq
,
1405 [IW_IOCTL_IDX(SIOCSIWMODE
)] = (iw_handler
) cfg80211_wext_siwmode
,
1406 [IW_IOCTL_IDX(SIOCGIWMODE
)] = (iw_handler
) cfg80211_wext_giwmode
,
1407 [IW_IOCTL_IDX(SIOCGIWRANGE
)] = (iw_handler
) cfg80211_wext_giwrange
,
1408 [IW_IOCTL_IDX(SIOCSIWAP
)] = (iw_handler
) cfg80211_wext_siwap
,
1409 [IW_IOCTL_IDX(SIOCGIWAP
)] = (iw_handler
) cfg80211_wext_giwap
,
1410 [IW_IOCTL_IDX(SIOCSIWMLME
)] = (iw_handler
) cfg80211_wext_siwmlme
,
1411 [IW_IOCTL_IDX(SIOCSIWSCAN
)] = (iw_handler
) cfg80211_wext_siwscan
,
1412 [IW_IOCTL_IDX(SIOCGIWSCAN
)] = (iw_handler
) cfg80211_wext_giwscan
,
1413 [IW_IOCTL_IDX(SIOCSIWESSID
)] = (iw_handler
) cfg80211_wext_siwessid
,
1414 [IW_IOCTL_IDX(SIOCGIWESSID
)] = (iw_handler
) cfg80211_wext_giwessid
,
1415 [IW_IOCTL_IDX(SIOCSIWRATE
)] = (iw_handler
) cfg80211_wext_siwrate
,
1416 [IW_IOCTL_IDX(SIOCGIWRATE
)] = (iw_handler
) cfg80211_wext_giwrate
,
1417 [IW_IOCTL_IDX(SIOCSIWRTS
)] = (iw_handler
) cfg80211_wext_siwrts
,
1418 [IW_IOCTL_IDX(SIOCGIWRTS
)] = (iw_handler
) cfg80211_wext_giwrts
,
1419 [IW_IOCTL_IDX(SIOCSIWFRAG
)] = (iw_handler
) cfg80211_wext_siwfrag
,
1420 [IW_IOCTL_IDX(SIOCGIWFRAG
)] = (iw_handler
) cfg80211_wext_giwfrag
,
1421 [IW_IOCTL_IDX(SIOCSIWTXPOW
)] = (iw_handler
) cfg80211_wext_siwtxpower
,
1422 [IW_IOCTL_IDX(SIOCGIWTXPOW
)] = (iw_handler
) cfg80211_wext_giwtxpower
,
1423 [IW_IOCTL_IDX(SIOCSIWRETRY
)] = (iw_handler
) cfg80211_wext_siwretry
,
1424 [IW_IOCTL_IDX(SIOCGIWRETRY
)] = (iw_handler
) cfg80211_wext_giwretry
,
1425 [IW_IOCTL_IDX(SIOCSIWENCODE
)] = (iw_handler
) cfg80211_wext_siwencode
,
1426 [IW_IOCTL_IDX(SIOCGIWENCODE
)] = (iw_handler
) cfg80211_wext_giwencode
,
1427 [IW_IOCTL_IDX(SIOCSIWPOWER
)] = (iw_handler
) cfg80211_wext_siwpower
,
1428 [IW_IOCTL_IDX(SIOCGIWPOWER
)] = (iw_handler
) cfg80211_wext_giwpower
,
1429 [IW_IOCTL_IDX(SIOCSIWGENIE
)] = (iw_handler
) cfg80211_wext_siwgenie
,
1430 [IW_IOCTL_IDX(SIOCSIWAUTH
)] = (iw_handler
) cfg80211_wext_siwauth
,
1431 [IW_IOCTL_IDX(SIOCGIWAUTH
)] = (iw_handler
) cfg80211_wext_giwauth
,
1432 [IW_IOCTL_IDX(SIOCSIWENCODEEXT
)]= (iw_handler
) cfg80211_wext_siwencodeext
,
1435 const struct iw_handler_def cfg80211_wext_handler
= {
1436 .num_standard
= ARRAY_SIZE(cfg80211_handlers
),
1437 .standard
= cfg80211_handlers
,
1438 .get_wireless_stats
= cfg80211_wireless_stats
,