2 * Copyright (c) 1996, 2003 VIA Networking Technologies, 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 as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 * Purpose: wireless ext & ioctl functions
42 #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
47 #include <net/iw_handler.h>
50 /*--------------------- Static Definitions -------------------------*/
52 #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
53 #define SUPPORTED_WIRELESS_EXT 18
55 #define SUPPORTED_WIRELESS_EXT 17
58 static const long frequency_list
[] = {
59 2412, 2417, 2422, 2427, 2432, 2437, 2442, 2447, 2452, 2457, 2462, 2467, 2472, 2484,
60 4915, 4920, 4925, 4935, 4940, 4945, 4960, 4980,
61 5035, 5040, 5045, 5055, 5060, 5080, 5170, 5180, 5190, 5200, 5210, 5220, 5230, 5240,
62 5260, 5280, 5300, 5320, 5500, 5520, 5540, 5560, 5580, 5600, 5620, 5640, 5660, 5680,
63 5700, 5745, 5765, 5785, 5805, 5825
67 /*--------------------- Static Classes ----------------------------*/
70 //static int msglevel =MSG_LEVEL_DEBUG;
71 static int msglevel
=MSG_LEVEL_INFO
;
74 /*--------------------- Static Variables --------------------------*/
75 /*--------------------- Static Functions --------------------------*/
77 /*--------------------- Export Variables --------------------------*/
79 struct iw_statistics
*iwctl_get_wireless_stats(struct net_device
*dev
)
81 PSDevice pDevice
= netdev_priv(dev
);
84 pDevice
->wstats
.status
= pDevice
->eOPMode
;
85 if(pDevice
->scStatistic
.LinkQuality
> 100)
86 pDevice
->scStatistic
.LinkQuality
= 100;
87 pDevice
->wstats
.qual
.qual
=(BYTE
) pDevice
->scStatistic
.LinkQuality
;
88 RFvRSSITodBm(pDevice
, (BYTE
)(pDevice
->uCurrRSSI
), &ldBm
);
89 pDevice
->wstats
.qual
.level
= ldBm
;
90 //pDevice->wstats.qual.level = 0x100 - pDevice->uCurrRSSI;
91 pDevice
->wstats
.qual
.noise
= 0;
92 pDevice
->wstats
.qual
.updated
= 1;
93 pDevice
->wstats
.discard
.nwid
= 0;
94 pDevice
->wstats
.discard
.code
= 0;
95 pDevice
->wstats
.discard
.fragment
= 0;
96 pDevice
->wstats
.discard
.retries
= pDevice
->scStatistic
.dwTsrErr
;
97 pDevice
->wstats
.discard
.misc
= 0;
98 pDevice
->wstats
.miss
.beacon
= 0;
100 return &pDevice
->wstats
;
105 /*------------------------------------------------------------------*/
108 static int iwctl_commit(struct net_device
*dev
,
109 struct iw_request_info
*info
,
113 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWCOMMIT\n");
119 * Wireless Handler : get protocol name
122 int iwctl_giwname(struct net_device
*dev
,
123 struct iw_request_info
*info
,
127 strcpy(wrq
, "802.11-a/b/g");
131 int iwctl_giwnwid(struct net_device
*dev
,
132 struct iw_request_info
*info
,
133 struct iw_param
*wrq
,
136 //wrq->value = 0x100;
143 * Wireless Handler : set scan
146 int iwctl_siwscan(struct net_device
*dev
,
147 struct iw_request_info
*info
,
148 struct iw_point
*wrq
,
151 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
152 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
153 struct iw_scan_req
*req
= (struct iw_scan_req
*)extra
;
154 BYTE abyScanSSID
[WLAN_IEHDR_LEN
+ WLAN_SSID_MAXLEN
+ 1];
155 PWLAN_IE_SSID pItemSSID
=NULL
;
157 if (!(pDevice
->flags
& DEVICE_FLAGS_OPENED
))
160 PRINT_K(" SIOCSIWSCAN \n");
162 if (pMgmt
->eScanState
== WMAC_IS_SCANNING
) {
164 PRINT_K("SIOCSIWSCAN(overlap??)-->In scanning...\n");
168 if(pDevice
->byReAssocCount
> 0) { //reject scan when re-associating!
169 //send scan event to wpa_Supplicant
170 union iwreq_data wrqu
;
171 PRINT_K("wireless_send_event--->SIOCGIWSCAN(scan done)\n");
172 memset(&wrqu
, 0, sizeof(wrqu
));
173 wireless_send_event(pDevice
->dev
, SIOCGIWSCAN
, &wrqu
, NULL
);
177 spin_lock_irq(&pDevice
->lock
);
179 BSSvClearBSSList((void *) pDevice
, pDevice
->bLinkPass
);
181 //mike add: active scan OR passive scan OR desire_ssid scan
182 if(wrq
->length
== sizeof(struct iw_scan_req
)) {
183 if (wrq
->flags
& IW_SCAN_THIS_ESSID
) { //desire_ssid scan
184 memset(abyScanSSID
, 0, WLAN_IEHDR_LEN
+ WLAN_SSID_MAXLEN
+ 1);
185 pItemSSID
= (PWLAN_IE_SSID
)abyScanSSID
;
186 pItemSSID
->byElementID
= WLAN_EID_SSID
;
187 memcpy(pItemSSID
->abySSID
, req
->essid
, (int)req
->essid_len
);
188 if (pItemSSID
->abySSID
[req
->essid_len
- 1] == '\0') {
190 pItemSSID
->len
= req
->essid_len
- 1;
193 pItemSSID
->len
= req
->essid_len
;
194 pMgmt
->eScanType
= WMAC_SCAN_PASSIVE
;
195 PRINT_K("SIOCSIWSCAN:[desired_ssid=%s,len=%d]\n",((PWLAN_IE_SSID
)abyScanSSID
)->abySSID
,
196 ((PWLAN_IE_SSID
)abyScanSSID
)->len
);
197 bScheduleCommand((void *) pDevice
, WLAN_CMD_BSSID_SCAN
, abyScanSSID
);
198 spin_unlock_irq(&pDevice
->lock
);
202 else if(req
->scan_type
== IW_SCAN_TYPE_PASSIVE
) { //passive scan
203 pMgmt
->eScanType
= WMAC_SCAN_PASSIVE
;
207 pMgmt
->eScanType
= WMAC_SCAN_ACTIVE
;
210 pMgmt
->eScanType
= WMAC_SCAN_PASSIVE
;
211 //printk("SIOCSIWSCAN:WLAN_CMD_BSSID_SCAN\n");
212 bScheduleCommand((void *) pDevice
, WLAN_CMD_BSSID_SCAN
, NULL
);
213 spin_unlock_irq(&pDevice
->lock
);
220 * Wireless Handler : get scan results
223 int iwctl_giwscan(struct net_device
*dev
,
224 struct iw_request_info
*info
,
225 struct iw_point
*wrq
,
229 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
230 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
232 PWLAN_IE_SSID pItemSSID
;
233 PWLAN_IE_SUPP_RATES pSuppRates
, pExtSuppRates
;
234 char *current_ev
= extra
;
235 char *end_buf
= extra
+ IW_SCAN_MAX_DATA
;
236 char *current_val
= NULL
;
239 char buf
[MAX_WPA_IE_LEN
* 2 + 30];
241 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWSCAN\n");
243 if (pMgmt
->eScanState
== WMAC_IS_SCANNING
) {
247 pBSS
= &(pMgmt
->sBSSList
[0]);
248 for (ii
= 0, jj
= 0; jj
< MAX_BSS_NUM
; jj
++) {
249 if (current_ev
>= end_buf
)
251 pBSS
= &(pMgmt
->sBSSList
[jj
]);
254 memset(&iwe
, 0, sizeof(iwe
));
256 iwe
.u
.ap_addr
.sa_family
= ARPHRD_ETHER
;
257 memcpy(iwe
.u
.ap_addr
.sa_data
, pBSS
->abyBSSID
, WLAN_BSSID_LEN
);
258 current_ev
= iwe_stream_add_event(info
,current_ev
,end_buf
, &iwe
, IW_EV_ADDR_LEN
);
260 memset(&iwe
, 0, sizeof(iwe
));
261 iwe
.cmd
= SIOCGIWESSID
;
262 pItemSSID
= (PWLAN_IE_SSID
)pBSS
->abySSID
;
263 iwe
.u
.data
.length
= pItemSSID
->len
;
264 iwe
.u
.data
.flags
= 1;
265 current_ev
= iwe_stream_add_point(info
,current_ev
,end_buf
, &iwe
, pItemSSID
->abySSID
);
267 memset(&iwe
, 0, sizeof(iwe
));
268 iwe
.cmd
= SIOCGIWMODE
;
269 if (WLAN_GET_CAP_INFO_ESS(pBSS
->wCapInfo
)) {
270 iwe
.u
.mode
= IW_MODE_INFRA
;
273 iwe
.u
.mode
= IW_MODE_ADHOC
;
275 iwe
.len
= IW_EV_UINT_LEN
;
276 current_ev
= iwe_stream_add_event(info
,current_ev
, end_buf
, &iwe
, IW_EV_UINT_LEN
);
278 pSuppRates
= (PWLAN_IE_SUPP_RATES
)pBSS
->abySuppRates
;
279 pExtSuppRates
= (PWLAN_IE_SUPP_RATES
)pBSS
->abyExtSuppRates
;
280 memset(&iwe
, 0, sizeof(iwe
));
281 iwe
.cmd
= SIOCGIWFREQ
;
282 iwe
.u
.freq
.m
= pBSS
->uChannel
;
285 current_ev
= iwe_stream_add_event(info
,current_ev
,end_buf
, &iwe
, IW_EV_FREQ_LEN
);
287 int f
= (int)pBSS
->uChannel
- 1;
289 iwe
.u
.freq
.m
= frequency_list
[f
] * 100000;
292 current_ev
= iwe_stream_add_event(info
,current_ev
,end_buf
, &iwe
, IW_EV_FREQ_LEN
);
294 memset(&iwe
, 0, sizeof(iwe
));
296 RFvRSSITodBm(pDevice
, (BYTE
)(pBSS
->uRSSI
), &ldBm
);
297 iwe
.u
.qual
.level
= ldBm
;
298 iwe
.u
.qual
.noise
= 0;
301 iwe
.u
.qual
.qual
= 100;
302 }else if(-ldBm
> 90) {
305 iwe
.u
.qual
.qual
=(40-(-ldBm
-50))*100/40;
307 iwe
.u
.qual
.updated
=7;
309 current_ev
= iwe_stream_add_event(info
,current_ev
, end_buf
, &iwe
, IW_EV_QUAL_LEN
);
311 memset(&iwe
, 0, sizeof(iwe
));
312 iwe
.cmd
= SIOCGIWENCODE
;
313 iwe
.u
.data
.length
= 0;
314 if (WLAN_GET_CAP_INFO_PRIVACY(pBSS
->wCapInfo
)) {
315 iwe
.u
.data
.flags
=IW_ENCODE_ENABLED
| IW_ENCODE_NOKEY
;
317 iwe
.u
.data
.flags
= IW_ENCODE_DISABLED
;
319 current_ev
= iwe_stream_add_point(info
,current_ev
,end_buf
, &iwe
, pItemSSID
->abySSID
);
321 memset(&iwe
, 0, sizeof(iwe
));
322 iwe
.cmd
= SIOCGIWRATE
;
323 iwe
.u
.bitrate
.fixed
= iwe
.u
.bitrate
.disabled
= 0;
324 current_val
= current_ev
+ IW_EV_LCP_LEN
;
326 for (kk
= 0 ; kk
< 12 ; kk
++) {
327 if (pSuppRates
->abyRates
[kk
] == 0)
329 // Bit rate given in 500 kb/s units (+ 0x80)
330 iwe
.u
.bitrate
.value
= ((pSuppRates
->abyRates
[kk
] & 0x7f) * 500000);
331 current_val
= iwe_stream_add_value(info
,current_ev
, current_val
, end_buf
, &iwe
, IW_EV_PARAM_LEN
);
333 for (kk
= 0 ; kk
< 8 ; kk
++) {
334 if (pExtSuppRates
->abyRates
[kk
] == 0)
336 // Bit rate given in 500 kb/s units (+ 0x80)
337 iwe
.u
.bitrate
.value
= ((pExtSuppRates
->abyRates
[kk
] & 0x7f) * 500000);
338 current_val
= iwe_stream_add_value(info
,current_ev
, current_val
, end_buf
, &iwe
, IW_EV_PARAM_LEN
);
341 if((current_val
- current_ev
) > IW_EV_LCP_LEN
)
342 current_ev
= current_val
;
344 memset(&iwe
, 0, sizeof(iwe
));
345 iwe
.cmd
= IWEVCUSTOM
;
346 sprintf(buf
, "bcn_int=%d", pBSS
->wBeaconInterval
);
347 iwe
.u
.data
.length
= strlen(buf
);
348 current_ev
= iwe_stream_add_point(info
,current_ev
, end_buf
, &iwe
, buf
);
350 if ((pBSS
->wWPALen
> 0) && (pBSS
->wWPALen
<= MAX_WPA_IE_LEN
)) {
351 memset(&iwe
, 0, sizeof(iwe
));
353 iwe
.u
.data
.length
= pBSS
->wWPALen
;
354 current_ev
= iwe_stream_add_point(info
,current_ev
, end_buf
, &iwe
, pBSS
->byWPAIE
);
357 if ((pBSS
->wRSNLen
> 0) && (pBSS
->wRSNLen
<= MAX_WPA_IE_LEN
)) {
358 memset(&iwe
, 0, sizeof(iwe
));
360 iwe
.u
.data
.length
= pBSS
->wRSNLen
;
361 current_ev
= iwe_stream_add_point(info
,current_ev
, end_buf
, &iwe
, pBSS
->byRSNIE
);
367 wrq
->length
= current_ev
- extra
;
374 * Wireless Handler : set frequence or channel
377 int iwctl_siwfreq(struct net_device
*dev
,
378 struct iw_request_info
*info
,
382 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
385 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWFREQ \n");
387 // If setting by frequency, convert to a channel
389 (wrq
->m
>= (int) 2.412e8
) &&
390 (wrq
->m
<= (int) 2.487e8
)) {
391 int f
= wrq
->m
/ 100000;
393 while((c
< 14) && (f
!= frequency_list
[c
]))
398 // Setting by channel number
399 if((wrq
->m
> 14) || (wrq
->e
> 0))
402 int channel
= wrq
->m
;
403 if((channel
< 1) || (channel
> 14)) {
404 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: New channel value of %d is invalid!\n", dev
->name
, wrq
->m
);
407 // Yes ! We can set it !!!
408 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" Set to channel = %d\n", channel
);
409 pDevice
->uChannel
= channel
;
417 * Wireless Handler : get frequence or channel
420 int iwctl_giwfreq(struct net_device
*dev
,
421 struct iw_request_info
*info
,
425 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
426 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
428 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWFREQ \n");
430 #ifdef WEXT_USECHANNELS
431 wrq
->m
= (int)pMgmt
->uCurrChannel
;
435 int f
= (int)pMgmt
->uCurrChannel
- 1;
438 wrq
->m
= frequency_list
[f
] * 100000;
447 * Wireless Handler : set operation mode
450 int iwctl_siwmode(struct net_device
*dev
,
451 struct iw_request_info
*info
,
455 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
456 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
459 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWMODE \n");
461 if (pMgmt
->eCurrMode
== WMAC_MODE_ESS_AP
&& pDevice
->bEnableHostapd
) {
462 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Can't set operation mode, hostapd is running \n");
469 if (pMgmt
->eConfigMode
!= WMAC_CONFIG_IBSS_STA
) {
470 pMgmt
->eConfigMode
= WMAC_CONFIG_IBSS_STA
;
471 if (pDevice
->flags
& DEVICE_FLAGS_OPENED
) {
472 pDevice
->bCommit
= TRUE
;
475 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"set mode to ad-hoc \n");
479 if (pMgmt
->eConfigMode
!= WMAC_CONFIG_ESS_STA
) {
480 pMgmt
->eConfigMode
= WMAC_CONFIG_ESS_STA
;
481 if (pDevice
->flags
& DEVICE_FLAGS_OPENED
) {
482 pDevice
->bCommit
= TRUE
;
485 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"set mode to infrastructure \n");
489 pMgmt
->eConfigMode
= WMAC_CONFIG_ESS_STA
;
493 if (pMgmt
->eConfigMode
!= WMAC_CONFIG_AP
) {
494 pMgmt
->eConfigMode
= WMAC_CONFIG_AP
;
495 if (pDevice
->flags
& DEVICE_FLAGS_OPENED
) {
496 pDevice
->bCommit
= TRUE
;
499 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"set mode to Access Point \n");
503 pMgmt
->eConfigMode
= WMAC_CONFIG_ESS_STA
;
514 * Wireless Handler : get operation mode
517 int iwctl_giwmode(struct net_device
*dev
,
518 struct iw_request_info
*info
,
522 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
523 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
526 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWMODE \n");
527 // If not managed, assume it's ad-hoc
528 switch (pMgmt
->eConfigMode
) {
529 case WMAC_CONFIG_ESS_STA
:
530 *wmode
= IW_MODE_INFRA
;
532 case WMAC_CONFIG_IBSS_STA
:
533 *wmode
= IW_MODE_ADHOC
;
535 case WMAC_CONFIG_AUTO
:
536 *wmode
= IW_MODE_INFRA
;
539 *wmode
= IW_MODE_MASTER
;
542 *wmode
= IW_MODE_ADHOC
;
550 * Wireless Handler : get capability range
553 int iwctl_giwrange(struct net_device
*dev
,
554 struct iw_request_info
*info
,
555 struct iw_point
*wrq
,
558 struct iw_range
*range
= (struct iw_range
*) extra
;
560 BYTE abySupportedRates
[13]= {0x02, 0x04, 0x0B, 0x16, 0x0c, 0x12, 0x18, 0x24, 0x30, 0x48, 0x60, 0x6C, 0x90};
562 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWRANGE\n");
564 wrq
->length
= sizeof(struct iw_range
);
565 memset(range
, 0, sizeof(struct iw_range
));
566 range
->min_nwid
= 0x0000;
567 range
->max_nwid
= 0x0000;
568 range
->num_channels
= 14;
569 // Should be based on cap_rid.country to give only
570 // what the current card support
572 for (i
= 0; i
< 14; i
++) {
573 range
->freq
[k
].i
= i
+ 1; // List index
574 range
->freq
[k
].m
= frequency_list
[i
] * 100000;
575 range
->freq
[k
++].e
= 1; // Values in table in MHz -> * 10^5 * 10
577 range
->num_frequency
= k
;
578 // Hum... Should put the right values there
579 range
->max_qual
.qual
= 100;
580 range
->max_qual
.level
= 0;
581 range
->max_qual
.noise
= 0;
582 range
->sensitivity
= 255;
584 for (i
= 0 ; i
< 13 ; i
++) {
585 range
->bitrate
[i
] = abySupportedRates
[i
] * 500000;
586 if(range
->bitrate
[i
] == 0)
589 range
->num_bitrates
= i
;
591 // Set an indication of the max TCP throughput
592 // in bit/s that we can expect using this interface.
593 // May be use for QoS stuff... Jean II
595 range
->throughput
= 5 * 1000 * 1000;
597 range
->throughput
= 1.5 * 1000 * 1000;
600 range
->max_rts
= 2312;
601 range
->min_frag
= 256;
602 range
->max_frag
= 2312;
605 // the encoding capabilities
606 range
->num_encoding_sizes
= 3;
608 range
->encoding_size
[0] = 5;
610 range
->encoding_size
[1] = 13;
611 // 256 bits for WPA-PSK
612 range
->encoding_size
[2] = 32;
613 // 4 keys are allowed
614 range
->max_encoding_tokens
= 4;
616 range
->enc_capa
= IW_ENC_CAPA_WPA
| IW_ENC_CAPA_WPA2
|
617 IW_ENC_CAPA_CIPHER_TKIP
| IW_ENC_CAPA_CIPHER_CCMP
;
620 range
->max_pmp
= 1000000;// 1 secs
622 range
->max_pmt
= 1000000;// 1 secs
623 range
->pmp_flags
= IW_POWER_PERIOD
;
624 range
->pmt_flags
= IW_POWER_TIMEOUT
;
625 range
->pm_capa
= IW_POWER_PERIOD
| IW_POWER_TIMEOUT
| IW_POWER_ALL_R
;
627 // Transmit Power - values are in mW
629 range
->txpower
[0] = 100;
630 range
->num_txpower
= 1;
631 range
->txpower_capa
= IW_TXPOW_MWATT
;
632 range
->we_version_source
= SUPPORTED_WIRELESS_EXT
;
633 range
->we_version_compiled
= WIRELESS_EXT
;
634 range
->retry_capa
= IW_RETRY_LIMIT
| IW_RETRY_LIFETIME
;
635 range
->retry_flags
= IW_RETRY_LIMIT
;
636 range
->r_time_flags
= IW_RETRY_LIFETIME
;
637 range
->min_retry
= 1;
638 range
->max_retry
= 65535;
639 range
->min_r_time
= 1024;
640 range
->max_r_time
= 65535 * 1024;
641 // Experimental measurements - boundary 11/5.5 Mb/s
642 // Note : with or without the (local->rssi), results
643 // are somewhat different. - Jean II
644 range
->avg_qual
.qual
= 6;
645 range
->avg_qual
.level
= 176; // -80 dBm
646 range
->avg_qual
.noise
= 0;
655 * Wireless Handler : set ap mac address
658 int iwctl_siwap(struct net_device
*dev
,
659 struct iw_request_info
*info
,
660 struct sockaddr
*wrq
,
663 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
664 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
666 BYTE ZeroBSSID
[WLAN_BSSID_LEN
]={0x00,0x00,0x00,0x00,0x00,0x00};
668 PRINT_K(" SIOCSIWAP \n");
670 if (wrq
->sa_family
!= ARPHRD_ETHER
)
673 memcpy(pMgmt
->abyDesireBSSID
, wrq
->sa_data
, 6);
676 if ((is_broadcast_ether_addr(pMgmt
->abyDesireBSSID
)) ||
677 (memcmp(pMgmt
->abyDesireBSSID
, ZeroBSSID
, 6) == 0)){
678 PRINT_K("SIOCSIWAP:invalid desired BSSID return!\n");
681 //mike add: if desired AP is hidden ssid(there are two same BSSID in list),
682 // then ignore,because you don't known which one to be connect with??
684 unsigned int ii
, uSameBssidNum
= 0;
685 for (ii
= 0; ii
< MAX_BSS_NUM
; ii
++) {
686 if (pMgmt
->sBSSList
[ii
].bActive
&&
687 !compare_ether_addr(pMgmt
->sBSSList
[ii
].abyBSSID
,
688 pMgmt
->abyDesireBSSID
)) {
692 if(uSameBssidNum
>= 2) { //hit: desired AP is in hidden ssid mode!!!
693 PRINT_K("SIOCSIWAP:ignore for desired AP in hidden mode\n");
698 if (pDevice
->flags
& DEVICE_FLAGS_OPENED
) {
699 pDevice
->bCommit
= TRUE
;
706 * Wireless Handler : get ap mac address
709 int iwctl_giwap(struct net_device
*dev
,
710 struct iw_request_info
*info
,
711 struct sockaddr
*wrq
,
714 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
715 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
718 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWAP \n");
720 memcpy(wrq
->sa_data
, pMgmt
->abyCurrBSSID
, 6);
722 //20080123-02,<Modify> by Einsn Liu
723 if ((pDevice
->bLinkPass
== FALSE
) && (pMgmt
->eCurrMode
!= WMAC_MODE_ESS_AP
))
724 // if ((pDevice->bLinkPass == FALSE) && (pMgmt->eCurrMode == WMAC_MODE_ESS_STA))
725 memset(wrq
->sa_data
, 0, 6);
727 if (pMgmt
->eCurrMode
== WMAC_MODE_ESS_AP
) {
728 memcpy(wrq
->sa_data
, pMgmt
->abyCurrBSSID
, 6);
731 wrq
->sa_family
= ARPHRD_ETHER
;
739 * Wireless Handler : get ap list
742 int iwctl_giwaplist(struct net_device
*dev
,
743 struct iw_request_info
*info
,
744 struct iw_point
*wrq
,
748 struct sockaddr sock
[IW_MAX_AP
];
749 struct iw_quality qual
[IW_MAX_AP
];
750 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
751 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
754 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWAPLIST \n");
755 // Only super-user can see AP list
757 if (!capable(CAP_NET_ADMIN
)) {
764 PKnownBSS pBSS
= &(pMgmt
->sBSSList
[0]);
766 for (ii
= 0, jj
= 0; ii
< MAX_BSS_NUM
; ii
++) {
767 pBSS
= &(pMgmt
->sBSSList
[ii
]);
770 if ( jj
>= IW_MAX_AP
)
772 memcpy(sock
[jj
].sa_data
, pBSS
->abyBSSID
, 6);
773 sock
[jj
].sa_family
= ARPHRD_ETHER
;
774 qual
[jj
].level
= pBSS
->uRSSI
;
775 qual
[jj
].qual
= qual
[jj
].noise
= 0;
776 qual
[jj
].updated
= 2;
780 wrq
->flags
= 1; // Should be define'd
782 memcpy(extra
, sock
, sizeof(struct sockaddr
)*jj
);
783 memcpy(extra
+ sizeof(struct sockaddr
)*jj
, qual
, sizeof(struct iw_quality
)*jj
);
791 * Wireless Handler : set essid
794 int iwctl_siwessid(struct net_device
*dev
,
795 struct iw_request_info
*info
,
796 struct iw_point
*wrq
,
799 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
800 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
801 PWLAN_IE_SSID pItemSSID
;
803 if (!(pDevice
->flags
& DEVICE_FLAGS_OPENED
))
806 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWESSID :\n");
808 pDevice
->fWPA_Authened
= FALSE
;
809 // Check if we asked for `any'
810 if(wrq
->flags
== 0) {
811 // Just send an empty SSID list
812 memset(pMgmt
->abyDesireSSID
, 0, WLAN_IEHDR_LEN
+ WLAN_SSID_MAXLEN
+ 1);
813 memset(pMgmt
->abyDesireBSSID
, 0xFF,6);
814 PRINT_K("set essid to 'any' \n");
815 #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
816 //Unknown desired AP,so here need not associate??
821 memset(pMgmt
->abyDesireSSID
, 0, WLAN_IEHDR_LEN
+ WLAN_SSID_MAXLEN
+ 1);
822 pItemSSID
= (PWLAN_IE_SSID
)pMgmt
->abyDesireSSID
;
823 pItemSSID
->byElementID
= WLAN_EID_SSID
;
825 memcpy(pItemSSID
->abySSID
, extra
, wrq
->length
);
826 if (pItemSSID
->abySSID
[wrq
->length
- 1] == '\0') {
828 pItemSSID
->len
= wrq
->length
- 1;
831 pItemSSID
->len
= wrq
->length
;
832 PRINT_K("set essid to %s \n",pItemSSID
->abySSID
);
834 //mike:need clear desiredBSSID
835 if(pItemSSID
->len
==0) {
836 memset(pMgmt
->abyDesireBSSID
, 0xFF,6);
840 #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
841 //Wext wil order another command of siwap to link with desired AP,
842 //so here need not associate??
843 if(pDevice
->bWPASuppWextEnabled
== TRUE
) {
844 /*******search if in hidden ssid mode ****/
846 PKnownBSS pCurr
= NULL
;
847 BYTE abyTmpDesireSSID
[WLAN_IEHDR_LEN
+ WLAN_SSID_MAXLEN
+ 1];
848 unsigned int ii
, uSameBssidNum
= 0;
850 memcpy(abyTmpDesireSSID
,pMgmt
->abyDesireSSID
,sizeof(abyTmpDesireSSID
));
851 pCurr
= BSSpSearchBSSList(pDevice
,
854 pDevice
->eConfigPHYMode
858 PRINT_K("SIOCSIWESSID:hidden ssid site survey before associate.......\n");
859 vResetCommandTimer((void *) pDevice
);
860 pMgmt
->eScanType
= WMAC_SCAN_ACTIVE
;
861 bScheduleCommand((void *) pDevice
,
863 pMgmt
->abyDesireSSID
);
864 bScheduleCommand((void *) pDevice
,
866 pMgmt
->abyDesireSSID
);
868 else { //mike:to find out if that desired SSID is a hidden-ssid AP ,
869 // by means of judging if there are two same BSSID exist in list ?
870 for (ii
= 0; ii
< MAX_BSS_NUM
; ii
++) {
871 if (pMgmt
->sBSSList
[ii
].bActive
&&
872 !compare_ether_addr(pMgmt
->sBSSList
[ii
].abyBSSID
,
877 if(uSameBssidNum
>= 2) { //hit: desired AP is in hidden ssid mode!!!
878 PRINT_K("SIOCSIWESSID:hidden ssid directly associate.......\n");
879 vResetCommandTimer((void *) pDevice
);
880 pMgmt
->eScanType
= WMAC_SCAN_PASSIVE
; //this scan type,you'll submit scan result!
881 bScheduleCommand((void *) pDevice
,
883 pMgmt
->abyDesireSSID
);
884 bScheduleCommand((void *) pDevice
,
886 pMgmt
->abyDesireSSID
);
894 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"set essid = %s \n", pItemSSID
->abySSID
);
897 if (pDevice
->flags
& DEVICE_FLAGS_OPENED
) {
898 pDevice
->bCommit
= TRUE
;
907 * Wireless Handler : get essid
910 int iwctl_giwessid(struct net_device
*dev
,
911 struct iw_request_info
*info
,
912 struct iw_point
*wrq
,
916 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
917 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
918 PWLAN_IE_SSID pItemSSID
;
920 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWESSID \n");
922 // Note : if wrq->u.data.flags != 0, we should
923 // get the relevant SSID from the SSID list...
925 // Get the current SSID
926 pItemSSID
= (PWLAN_IE_SSID
)pMgmt
->abyCurrSSID
;
927 //pItemSSID = (PWLAN_IE_SSID)pMgmt->abyDesireSSID;
928 memcpy(extra
, pItemSSID
->abySSID
, pItemSSID
->len
);
929 extra
[pItemSSID
->len
] = '\0';
931 wrq
->length
= pItemSSID
->len
;
932 wrq
->flags
= 1; // active
938 * Wireless Handler : set data rate
941 int iwctl_siwrate(struct net_device
*dev
,
942 struct iw_request_info
*info
,
943 struct iw_param
*wrq
,
946 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
950 BYTE abySupportedRates
[13]= {0x02, 0x04, 0x0B, 0x16, 0x0c, 0x12, 0x18, 0x24, 0x30, 0x48, 0x60, 0x6C, 0x90};
953 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWRATE \n");
954 if (!(pDevice
->flags
& DEVICE_FLAGS_OPENED
)) {
959 // First : get a valid bit rate value
961 // Which type of value
962 if((wrq
->value
< 13) &&
964 // Setting by rate index
965 // Find value in the magic rate table
968 // Setting by frequency value
969 u8 normvalue
= (u8
) (wrq
->value
/500000);
971 // Check if rate is valid
972 for (i
= 0 ; i
< 13 ; i
++) {
973 if(normvalue
== abySupportedRates
[i
]) {
979 // -1 designed the max rate (mostly auto mode)
980 if(wrq
->value
== -1) {
981 // Get the highest available rate
982 for (i
= 0 ; i
< 13 ; i
++) {
983 if(abySupportedRates
[i
] == 0)
990 // Check that it is valid
991 // brate is index of abySupportedRates[]
997 // Now, check if we want a fixed or auto value
998 if(wrq
->fixed
!= 0) {
1001 pDevice
->bFixRate
= TRUE
;
1002 if ((pDevice
->byBBType
== BB_TYPE_11B
)&& (brate
> 3)) {
1003 pDevice
->uConnectionRate
= 3;
1006 pDevice
->uConnectionRate
= brate
;
1007 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Fixed to Rate %d \n", pDevice
->uConnectionRate
);
1012 pDevice
->bFixRate
= FALSE
;
1013 pDevice
->uConnectionRate
= 13;
1020 * Wireless Handler : get data rate
1023 int iwctl_giwrate(struct net_device
*dev
,
1024 struct iw_request_info
*info
,
1025 struct iw_param
*wrq
,
1028 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1029 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
1031 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWRATE \n");
1033 BYTE abySupportedRates
[13]= {0x02, 0x04, 0x0B, 0x16, 0x0c, 0x12, 0x18, 0x24, 0x30, 0x48, 0x60, 0x6C, 0x90};
1035 if (pDevice
->uConnectionRate
< 13) {
1036 brate
= abySupportedRates
[pDevice
->uConnectionRate
];
1038 if (pDevice
->byBBType
== BB_TYPE_11B
)
1040 if (pDevice
->byBBType
== BB_TYPE_11G
)
1042 if (pDevice
->byBBType
== BB_TYPE_11A
)
1046 if (pMgmt
->eCurrMode
== WMAC_MODE_ESS_AP
) {
1047 if (pDevice
->byBBType
== BB_TYPE_11B
)
1049 if (pDevice
->byBBType
== BB_TYPE_11G
)
1051 if (pDevice
->byBBType
== BB_TYPE_11A
)
1054 if (pDevice
->uConnectionRate
== 13)
1055 brate
= abySupportedRates
[pDevice
->wCurrentRate
];
1056 wrq
->value
= brate
* 500000;
1057 // If more than one rate, set auto
1058 if (pDevice
->bFixRate
== TRUE
)
1069 * Wireless Handler : set rts threshold
1072 int iwctl_siwrts(struct net_device
*dev
,
1073 struct iw_request_info
*info
,
1074 struct iw_param
*wrq
,
1077 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1080 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWRTS \n");
1083 int rthr
= wrq
->value
;
1086 if((rthr
< 0) || (rthr
> 2312)) {
1089 pDevice
->wRTSThreshold
= rthr
;
1097 * Wireless Handler : get rts
1100 int iwctl_giwrts(struct net_device
*dev
,
1101 struct iw_request_info
*info
,
1102 struct iw_param
*wrq
,
1105 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1107 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWRTS \n");
1108 wrq
->value
= pDevice
->wRTSThreshold
;
1109 wrq
->disabled
= (wrq
->value
>= 2312);
1116 * Wireless Handler : set fragment threshold
1119 int iwctl_siwfrag(struct net_device
*dev
,
1120 struct iw_request_info
*info
,
1121 struct iw_param
*wrq
,
1124 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1126 int fthr
= wrq
->value
;
1129 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWFRAG \n");
1134 if((fthr
< 256) || (fthr
> 2312)) {
1137 fthr
&= ~0x1; // Get an even value
1138 pDevice
->wFragmentationThreshold
= (u16
)fthr
;
1145 * Wireless Handler : get fragment threshold
1148 int iwctl_giwfrag(struct net_device
*dev
,
1149 struct iw_request_info
*info
,
1150 struct iw_param
*wrq
,
1153 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1155 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWFRAG \n");
1156 wrq
->value
= pDevice
->wFragmentationThreshold
;
1157 wrq
->disabled
= (wrq
->value
>= 2312);
1166 * Wireless Handler : set retry threshold
1168 int iwctl_siwretry(struct net_device
*dev
,
1169 struct iw_request_info
*info
,
1170 struct iw_param
*wrq
,
1173 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1177 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWRETRY \n");
1179 if (wrq
->disabled
) {
1184 if (wrq
->flags
& IW_RETRY_LIMIT
) {
1185 if(wrq
->flags
& IW_RETRY_MAX
)
1186 pDevice
->byLongRetryLimit
= wrq
->value
;
1187 else if (wrq
->flags
& IW_RETRY_MIN
)
1188 pDevice
->byShortRetryLimit
= wrq
->value
;
1190 // No modifier : set both
1191 pDevice
->byShortRetryLimit
= wrq
->value
;
1192 pDevice
->byLongRetryLimit
= wrq
->value
;
1195 if (wrq
->flags
& IW_RETRY_LIFETIME
) {
1196 pDevice
->wMaxTransmitMSDULifetime
= wrq
->value
;
1204 * Wireless Handler : get retry threshold
1206 int iwctl_giwretry(struct net_device
*dev
,
1207 struct iw_request_info
*info
,
1208 struct iw_param
*wrq
,
1211 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1212 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWRETRY \n");
1213 wrq
->disabled
= 0; // Can't be disabled
1215 // Note : by default, display the min retry number
1216 if((wrq
->flags
& IW_RETRY_TYPE
) == IW_RETRY_LIFETIME
) {
1217 wrq
->flags
= IW_RETRY_LIFETIME
;
1218 wrq
->value
= (int)pDevice
->wMaxTransmitMSDULifetime
; //ms
1219 } else if((wrq
->flags
& IW_RETRY_MAX
)) {
1220 wrq
->flags
= IW_RETRY_LIMIT
| IW_RETRY_MAX
;
1221 wrq
->value
= (int)pDevice
->byLongRetryLimit
;
1223 wrq
->flags
= IW_RETRY_LIMIT
;
1224 wrq
->value
= (int)pDevice
->byShortRetryLimit
;
1225 if((int)pDevice
->byShortRetryLimit
!= (int)pDevice
->byLongRetryLimit
)
1226 wrq
->flags
|= IW_RETRY_MIN
;
1235 * Wireless Handler : set encode mode
1237 int iwctl_siwencode(struct net_device
*dev
,
1238 struct iw_request_info
*info
,
1239 struct iw_point
*wrq
,
1242 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1243 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
1244 DWORD dwKeyIndex
= (DWORD
)(wrq
->flags
& IW_ENCODE_INDEX
);
1246 int index
= (wrq
->flags
& IW_ENCODE_INDEX
);
1249 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWENCODE \n");
1251 // Check the size of the key
1252 if (wrq
->length
> WLAN_WEP232_KEYLEN
) {
1257 if (dwKeyIndex
> WLAN_WEP_NKEYS
) {
1265 // Send the key to the card
1266 if (wrq
->length
> 0) {
1268 if (wrq
->length
== WLAN_WEP232_KEYLEN
) {
1269 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Set 232 bit wep key\n");
1271 else if (wrq
->length
== WLAN_WEP104_KEYLEN
) {
1272 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Set 104 bit wep key\n");
1274 else if (wrq
->length
== WLAN_WEP40_KEYLEN
) {
1275 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Set 40 bit wep key, index= %d\n", (int)dwKeyIndex
);
1277 memset(pDevice
->abyKey
, 0, WLAN_WEP232_KEYLEN
);
1278 memcpy(pDevice
->abyKey
, extra
, wrq
->length
);
1280 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"abyKey: ");
1281 for (ii
= 0; ii
< wrq
->length
; ii
++) {
1282 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%02x ", pDevice
->abyKey
[ii
]);
1285 if (pDevice
->flags
& DEVICE_FLAGS_OPENED
) {
1286 spin_lock_irq(&pDevice
->lock
);
1287 KeybSetDefaultKey( pDevice
,
1289 dwKeyIndex
| (1 << 31),
1295 spin_unlock_irq(&pDevice
->lock
);
1297 pDevice
->byKeyIndex
= (BYTE
)dwKeyIndex
;
1298 pDevice
->uKeyLength
= wrq
->length
;
1299 pDevice
->bTransmitKey
= TRUE
;
1300 pDevice
->bEncryptionEnable
= TRUE
;
1301 pDevice
->eEncryptionStatus
= Ndis802_11Encryption1Enabled
;
1303 // Do we want to just set the transmit key index ?
1305 pDevice
->byKeyIndex
= index
;
1306 } else if (!(wrq
->flags
& IW_ENCODE_MODE
)) {
1312 if(wrq
->flags
& IW_ENCODE_DISABLED
){
1314 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Disable WEP function\n");
1315 pMgmt
->bShareKeyAlgorithm
= FALSE
;
1316 pDevice
->bEncryptionEnable
= FALSE
;
1317 pDevice
->eEncryptionStatus
= Ndis802_11EncryptionDisabled
;
1318 if (pDevice
->flags
& DEVICE_FLAGS_OPENED
) {
1319 spin_lock_irq(&pDevice
->lock
);
1320 for (uu
= 0; uu
< MAX_KEY_TABLE
; uu
++)
1321 MACvDisableKeyEntry(pDevice
, uu
);
1322 spin_unlock_irq(&pDevice
->lock
);
1325 if(wrq
->flags
& IW_ENCODE_RESTRICTED
) {
1326 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Enable WEP & ShareKey System\n");
1327 pMgmt
->bShareKeyAlgorithm
= TRUE
;
1329 if(wrq
->flags
& IW_ENCODE_OPEN
) {
1330 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Enable WEP & Open System\n");
1331 pMgmt
->bShareKeyAlgorithm
= FALSE
;
1334 #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
1335 memset(pMgmt
->abyDesireBSSID
, 0xFF,6);
1342 * Wireless Handler : get encode mode
1344 //2008-0409-06, <Mark> by Einsn Liu
1346 int iwctl_giwencode(struct net_device *dev,
1347 struct iw_request_info *info,
1348 struct iw_point *wrq,
1351 PSDevice pDevice = (PSDevice)netdev_priv(dev);
1352 PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
1354 char abyKey[WLAN_WEP232_KEYLEN];
1355 unsigned int index = (unsigned int)(wrq->flags & IW_ENCODE_INDEX);
1356 PSKeyItem pKey = NULL;
1358 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " SIOCGIWENCODE\n");
1361 memset(abyKey, 0, sizeof(abyKey));
1362 // Check encryption mode
1363 wrq->flags = IW_ENCODE_NOKEY;
1364 // Is WEP enabled ???
1365 if (pDevice->bEncryptionEnable)
1366 wrq->flags |= IW_ENCODE_ENABLED;
1368 wrq->flags |= IW_ENCODE_DISABLED;
1370 if (pMgmt->bShareKeyAlgorithm)
1371 wrq->flags |= IW_ENCODE_RESTRICTED;
1373 wrq->flags |= IW_ENCODE_OPEN;
1375 if (KeybGetKey(&(pDevice->sKey), pDevice->abyBroadcastAddr, (BYTE)index , &pKey)){
1376 wrq->length = pKey->uKeyLength;
1377 memcpy(abyKey, pKey->abyKey, pKey->uKeyLength);
1383 wrq->flags |= index;
1384 // Copy the key to the user buffer
1385 memcpy(extra, abyKey, WLAN_WEP232_KEYLEN);
1390 int iwctl_giwencode(struct net_device
*dev
,
1391 struct iw_request_info
*info
,
1392 struct iw_point
*wrq
,
1395 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1396 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
1397 char abyKey
[WLAN_WEP232_KEYLEN
];
1399 unsigned int index
= (unsigned int)(wrq
->flags
& IW_ENCODE_INDEX
);
1400 PSKeyItem pKey
= NULL
;
1402 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWENCODE\n");
1404 if (index
> WLAN_WEP_NKEYS
) {
1407 if(index
<1){//get default key
1408 if(pDevice
->byKeyIndex
<WLAN_WEP_NKEYS
){
1409 index
=pDevice
->byKeyIndex
;
1415 memset(abyKey
, 0, WLAN_WEP232_KEYLEN
);
1416 // Check encryption mode
1417 wrq
->flags
= IW_ENCODE_NOKEY
;
1418 // Is WEP enabled ???
1419 if (pDevice
->bEncryptionEnable
)
1420 wrq
->flags
|= IW_ENCODE_ENABLED
;
1422 wrq
->flags
|= IW_ENCODE_DISABLED
;
1424 if (pMgmt
->bShareKeyAlgorithm
)
1425 wrq
->flags
|= IW_ENCODE_RESTRICTED
;
1427 wrq
->flags
|= IW_ENCODE_OPEN
;
1430 if((index
==0)&&(pDevice
->eEncryptionStatus
== Ndis802_11Encryption2Enabled
||
1431 pDevice
->eEncryptionStatus
== Ndis802_11Encryption3Enabled
)){//get wpa pairwise key
1432 if (KeybGetKey(&(pDevice
->sKey
),pMgmt
->abyCurrBSSID
, 0xffffffff, &pKey
)){
1433 wrq
->length
= pKey
->uKeyLength
;
1434 memcpy(abyKey
, pKey
->abyKey
, pKey
->uKeyLength
);
1435 memcpy(extra
, abyKey
, WLAN_WEP232_KEYLEN
);
1437 }else if (KeybGetKey(&(pDevice
->sKey
), pDevice
->abyBroadcastAddr
, (BYTE
)index
, &pKey
)){
1438 wrq
->length
= pKey
->uKeyLength
;
1439 memcpy(abyKey
, pKey
->abyKey
, pKey
->uKeyLength
);
1440 memcpy(extra
, abyKey
, WLAN_WEP232_KEYLEN
);
1443 wrq
->flags
|= index
+1;
1450 * Wireless Handler : set power mode
1452 int iwctl_siwpower(struct net_device
*dev
,
1453 struct iw_request_info
*info
,
1454 struct iw_param
*wrq
,
1457 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1458 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
1461 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWPOWER \n");
1463 if (!(pDevice
->flags
& DEVICE_FLAGS_OPENED
)) {
1468 if (wrq
->disabled
) {
1469 pDevice
->ePSMode
= WMAC_POWER_CAM
;
1470 PSvDisablePowerSaving(pDevice
);
1473 if ((wrq
->flags
& IW_POWER_TYPE
) == IW_POWER_TIMEOUT
) {
1474 pDevice
->ePSMode
= WMAC_POWER_FAST
;
1475 PSvEnablePowerSaving((void *) pDevice
, pMgmt
->wListenInterval
);
1477 } else if ((wrq
->flags
& IW_POWER_TYPE
) == IW_POWER_PERIOD
) {
1478 pDevice
->ePSMode
= WMAC_POWER_FAST
;
1479 PSvEnablePowerSaving((void *) pDevice
, pMgmt
->wListenInterval
);
1481 switch (wrq
->flags
& IW_POWER_MODE
) {
1482 case IW_POWER_UNICAST_R
:
1483 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWPOWER: IW_POWER_UNICAST_R \n");
1486 case IW_POWER_ALL_R
:
1487 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWPOWER: IW_POWER_ALL_R \n");
1490 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWPOWER: IW_POWER_ON \n");
1500 * Wireless Handler : get power mode
1502 int iwctl_giwpower(struct net_device
*dev
,
1503 struct iw_request_info
*info
,
1504 struct iw_param
*wrq
,
1507 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1508 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
1509 int mode
= pDevice
->ePSMode
;
1512 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWPOWER \n");
1515 if ((wrq
->disabled
= (mode
== WMAC_POWER_CAM
)))
1518 if ((wrq
->flags
& IW_POWER_TYPE
) == IW_POWER_TIMEOUT
) {
1519 wrq
->value
= (int)((pMgmt
->wListenInterval
* pMgmt
->wCurrBeaconPeriod
) << 10);
1520 wrq
->flags
= IW_POWER_TIMEOUT
;
1522 wrq
->value
= (int)((pMgmt
->wListenInterval
* pMgmt
->wCurrBeaconPeriod
) << 10);
1523 wrq
->flags
= IW_POWER_PERIOD
;
1525 wrq
->flags
|= IW_POWER_ALL_R
;
1532 * Wireless Handler : get Sensitivity
1534 int iwctl_giwsens(struct net_device
*dev
,
1535 struct iw_request_info
*info
,
1536 struct iw_param
*wrq
,
1539 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1542 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCGIWSENS \n");
1543 if (pDevice
->bLinkPass
== TRUE
) {
1544 RFvRSSITodBm(pDevice
, (BYTE
)(pDevice
->uCurrRSSI
), &ldBm
);
1550 wrq
->disabled
= (wrq
->value
== 0);
1557 #ifdef WPA_SUPPLICANT_DRIVER_WEXT_SUPPORT
1559 int iwctl_siwauth(struct net_device
*dev
,
1560 struct iw_request_info
*info
,
1561 struct iw_param
*wrq
,
1564 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1565 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
1567 static int wpa_version
=0; //must be static to save the last value,einsn liu
1568 static int pairwise
=0;
1570 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" SIOCSIWAUTH \n");
1571 switch (wrq
->flags
& IW_AUTH_INDEX
) {
1572 case IW_AUTH_WPA_VERSION
:
1573 wpa_version
= wrq
->value
;
1574 if(wrq
->value
== IW_AUTH_WPA_VERSION_DISABLED
) {
1575 PRINT_K("iwctl_siwauth:set WPADEV to disable at 1??????\n");
1576 //pDevice->bWPADEVUp = FALSE;
1578 else if(wrq
->value
== IW_AUTH_WPA_VERSION_WPA
) {
1579 PRINT_K("iwctl_siwauth:set WPADEV to WPA1******\n");
1582 PRINT_K("iwctl_siwauth:set WPADEV to WPA2******\n");
1584 //pDevice->bWPASuppWextEnabled =TRUE;
1586 case IW_AUTH_CIPHER_PAIRWISE
:
1587 pairwise
= wrq
->value
;
1588 PRINT_K("iwctl_siwauth:set pairwise=%d\n",pairwise
);
1589 if(pairwise
== IW_AUTH_CIPHER_CCMP
){
1590 pDevice
->eEncryptionStatus
= Ndis802_11Encryption3Enabled
;
1591 }else if(pairwise
== IW_AUTH_CIPHER_TKIP
){
1592 pDevice
->eEncryptionStatus
= Ndis802_11Encryption2Enabled
;
1593 } else if (pairwise
== IW_AUTH_CIPHER_WEP40
||
1594 pairwise
== IW_AUTH_CIPHER_WEP104
) {
1595 pDevice
->eEncryptionStatus
= Ndis802_11Encryption1Enabled
;
1596 }else if(pairwise
== IW_AUTH_CIPHER_NONE
){
1597 //do nothing,einsn liu
1598 }else pDevice
->eEncryptionStatus
= Ndis802_11EncryptionDisabled
;
1601 case IW_AUTH_CIPHER_GROUP
:
1602 PRINT_K("iwctl_siwauth:set GROUP=%d\n",wrq
->value
);
1603 if(wpa_version
== IW_AUTH_WPA_VERSION_DISABLED
)
1605 if(pairwise
== IW_AUTH_CIPHER_NONE
){
1606 if(wrq
->value
== IW_AUTH_CIPHER_CCMP
){
1607 pDevice
->eEncryptionStatus
= Ndis802_11Encryption3Enabled
;
1609 pDevice
->eEncryptionStatus
= Ndis802_11Encryption2Enabled
;
1613 case IW_AUTH_KEY_MGMT
:
1614 PRINT_K("iwctl_siwauth(wpa_version=%d):set KEY_MGMT=%d\n",wpa_version
,wrq
->value
);
1615 if(wpa_version
== IW_AUTH_WPA_VERSION_WPA2
){
1616 if(wrq
->value
== IW_AUTH_KEY_MGMT_PSK
)
1617 pMgmt
->eAuthenMode
= WMAC_AUTH_WPA2PSK
;
1618 else pMgmt
->eAuthenMode
= WMAC_AUTH_WPA2
;
1619 }else if(wpa_version
== IW_AUTH_WPA_VERSION_WPA
){
1620 if(wrq
->value
== 0){
1621 pMgmt
->eAuthenMode
= WMAC_AUTH_WPANONE
;
1622 }else if(wrq
->value
== IW_AUTH_KEY_MGMT_PSK
)
1623 pMgmt
->eAuthenMode
= WMAC_AUTH_WPAPSK
;
1624 else pMgmt
->eAuthenMode
= WMAC_AUTH_WPA
;
1628 case IW_AUTH_TKIP_COUNTERMEASURES
:
1630 case IW_AUTH_DROP_UNENCRYPTED
:
1632 case IW_AUTH_80211_AUTH_ALG
:
1633 PRINT_K("iwctl_siwauth:set AUTH_ALG=%d\n",wrq
->value
);
1634 if(wrq
->value
==IW_AUTH_ALG_OPEN_SYSTEM
){
1635 pMgmt
->bShareKeyAlgorithm
=FALSE
;
1636 }else if(wrq
->value
==IW_AUTH_ALG_SHARED_KEY
){
1637 pMgmt
->bShareKeyAlgorithm
=TRUE
;
1640 case IW_AUTH_WPA_ENABLED
:
1641 //pDevice->bWPADEVUp = !! wrq->value;
1642 //if(pDevice->bWPADEVUp==TRUE)
1643 // printk("iwctl_siwauth:set WPADEV to enable successful*******\n");
1645 // printk("iwctl_siwauth:set WPADEV to enable fail?????\n");
1647 case IW_AUTH_RX_UNENCRYPTED_EAPOL
:
1649 case IW_AUTH_ROAMING_CONTROL
:
1652 case IW_AUTH_PRIVACY_INVOKED
:
1653 pDevice
->bEncryptionEnable
= !!wrq
->value
;
1654 if(pDevice
->bEncryptionEnable
== FALSE
){
1657 pDevice
->eEncryptionStatus
= Ndis802_11EncryptionDisabled
;
1658 pMgmt
->bShareKeyAlgorithm
= FALSE
;
1659 pMgmt
->eAuthenMode
= WMAC_AUTH_OPEN
;
1660 //pDevice->bWPADEVUp = FALSE;
1661 PRINT_K("iwctl_siwauth:set WPADEV to disaable at 2?????\n");
1670 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "wpa_version = %d\n",wpa_version);
1671 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "pairwise = %d\n",pairwise);
1672 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "pDevice->eEncryptionStatus = %d\n",pDevice->eEncryptionStatus);
1673 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "pMgmt->eAuthenMode = %d\n",pMgmt->eAuthenMode);
1674 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "pMgmt->bShareKeyAlgorithm = %s\n",pMgmt->bShareKeyAlgorithm?"TRUE":"FALSE");
1675 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "pDevice->bEncryptionEnable = %s\n",pDevice->bEncryptionEnable?"TRUE":"FALSE");
1676 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "pDevice->bWPADEVUp = %s\n",pDevice->bWPADEVUp?"TRUE":"FALSE");
1682 int iwctl_giwauth(struct net_device
*dev
,
1683 struct iw_request_info
*info
,
1684 struct iw_param
*wrq
,
1692 int iwctl_siwgenie(struct net_device
*dev
,
1693 struct iw_request_info
*info
,
1694 struct iw_point
*wrq
,
1697 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1698 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
1702 if ((wrq
->length
< 2) || (extra
[1]+2 != wrq
->length
)) {
1706 if(wrq
->length
> MAX_WPA_IE_LEN
){
1710 memset(pMgmt
->abyWPAIE
, 0, MAX_WPA_IE_LEN
);
1711 if(copy_from_user(pMgmt
->abyWPAIE
, extra
, wrq
->length
)){
1715 pMgmt
->wWPAIELen
= wrq
->length
;
1717 memset(pMgmt
->abyWPAIE
, 0, MAX_WPA_IE_LEN
);
1718 pMgmt
->wWPAIELen
= 0;
1721 out
://not completely ...not necessary in wpa_supplicant 0.5.8
1725 int iwctl_giwgenie(struct net_device
*dev
,
1726 struct iw_request_info
*info
,
1727 struct iw_point
*wrq
,
1730 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1731 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
1733 int space
= wrq
->length
;
1736 if(pMgmt
->wWPAIELen
> 0){
1737 wrq
->length
= pMgmt
->wWPAIELen
;
1738 if(pMgmt
->wWPAIELen
<= space
){
1739 if(copy_to_user(extra
, pMgmt
->abyWPAIE
, pMgmt
->wWPAIELen
)){
1750 int iwctl_siwencodeext(struct net_device
*dev
,
1751 struct iw_request_info
*info
,
1752 struct iw_point
*wrq
,
1755 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1756 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
1757 struct iw_encode_ext
*ext
= (struct iw_encode_ext
*)extra
;
1758 struct viawget_wpa_param
*param
=NULL
;
1762 int key_idx
, set_tx
=0;
1763 u8 seq
[IW_ENCODE_SEQ_MAX_SIZE
];
1765 size_t seq_len
=0,key_len
=0;
1773 PRINT_K("SIOCSIWENCODEEXT...... \n");
1775 blen
= sizeof(*param
);
1776 buf
= kmalloc((int)blen
, (int)GFP_KERNEL
);
1779 memset(buf
, 0, blen
);
1780 param
= (struct viawget_wpa_param
*) buf
;
1784 case IW_ENCODE_ALG_NONE
:
1785 alg_name
= WPA_ALG_NONE
;
1787 case IW_ENCODE_ALG_WEP
:
1788 alg_name
= WPA_ALG_WEP
;
1790 case IW_ENCODE_ALG_TKIP
:
1791 alg_name
= WPA_ALG_TKIP
;
1793 case IW_ENCODE_ALG_CCMP
:
1794 alg_name
= WPA_ALG_CCMP
;
1797 PRINT_K("Unknown alg = %d\n",ext
->alg
);
1802 memcpy(addr
, ext
->addr
.sa_data
, ETH_ALEN
);
1804 key_idx
= (wrq
->flags
&IW_ENCODE_INDEX
) - 1;
1806 if(ext
->ext_flags
& IW_ENCODE_EXT_SET_TX_KEY
)
1808 //recover seq,seq_len
1809 if(ext
->ext_flags
& IW_ENCODE_EXT_RX_SEQ_VALID
) {
1810 seq_len
=IW_ENCODE_SEQ_MAX_SIZE
;
1811 memcpy(seq
, ext
->rx_seq
, seq_len
);
1813 //recover key,key_len
1815 key_len
=ext
->key_len
;
1816 memcpy(key
, &ext
->key
[0], key_len
);
1819 memset(key_array
, 0, 64);
1821 memcpy(key_array
, key
, key_len
);
1822 if (key_len
== 32) {
1823 // notice ! the oder
1824 memcpy(&key_array
[16], &key
[24], 8);
1825 memcpy(&key_array
[24], &key
[16], 8);
1829 /**************Translate iw_encode_ext to viawget_wpa_param****************/
1830 memcpy(param
->addr
, addr
, ETH_ALEN
);
1831 param
->u
.wpa_key
.alg_name
= (int)alg_name
;
1832 param
->u
.wpa_key
.set_tx
= set_tx
;
1833 param
->u
.wpa_key
.key_index
= key_idx
;
1834 param
->u
.wpa_key
.key_len
= key_len
;
1835 param
->u
.wpa_key
.key
= (u8
*)key_array
;
1836 param
->u
.wpa_key
.seq
= (u8
*)seq
;
1837 param
->u
.wpa_key
.seq_len
= seq_len
;
1839 //****set if current action is Network Manager count??
1840 //****this method is so foolish,but there is no other way???
1841 if(param
->u
.wpa_key
.alg_name
== WPA_ALG_NONE
) {
1842 if(param
->u
.wpa_key
.key_index
==0) {
1843 pDevice
->bwextstep0
= TRUE
;
1845 if((pDevice
->bwextstep0
= TRUE
)&&(param
->u
.wpa_key
.key_index
==1)) {
1846 pDevice
->bwextstep0
= FALSE
;
1847 pDevice
->bwextstep1
= TRUE
;
1849 if((pDevice
->bwextstep1
= TRUE
)&&(param
->u
.wpa_key
.key_index
==2)) {
1850 pDevice
->bwextstep1
= FALSE
;
1851 pDevice
->bwextstep2
= TRUE
;
1853 if((pDevice
->bwextstep2
= TRUE
)&&(param
->u
.wpa_key
.key_index
==3)) {
1854 pDevice
->bwextstep2
= FALSE
;
1855 pDevice
->bwextstep3
= TRUE
;
1858 if(pDevice
->bwextstep3
== TRUE
) {
1859 PRINT_K("SIOCSIWENCODEEXT:Enable WPA WEXT SUPPORT!!!!!\n");
1860 pDevice
->bwextstep0
= FALSE
;
1861 pDevice
->bwextstep1
= FALSE
;
1862 pDevice
->bwextstep2
= FALSE
;
1863 pDevice
->bwextstep3
= FALSE
;
1864 pDevice
->bWPASuppWextEnabled
= TRUE
;
1865 memset(pMgmt
->abyDesireBSSID
, 0xFF,6);
1866 KeyvInitTable(pDevice
,&pDevice
->sKey
);
1870 spin_lock_irq(&pDevice
->lock
);
1871 ret
= wpa_set_keys(pDevice
, param
, TRUE
);
1872 spin_unlock_irq(&pDevice
->lock
);
1881 int iwctl_giwencodeext(struct net_device
*dev
,
1882 struct iw_request_info
*info
,
1883 struct iw_point
*wrq
,
1889 int iwctl_siwmlme(struct net_device
*dev
,
1890 struct iw_request_info
* info
,
1891 struct iw_point
*wrq
,
1894 PSDevice pDevice
= (PSDevice
)netdev_priv(dev
);
1895 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
1896 struct iw_mlme
*mlme
= (struct iw_mlme
*)extra
;
1897 //u16 reason = cpu_to_le16(mlme->reason_code);
1900 if(memcmp(pMgmt
->abyCurrBSSID
, mlme
->addr
.sa_data
, ETH_ALEN
)){
1905 case IW_MLME_DEAUTH
:
1906 //this command seems to be not complete,please test it --einsnliu
1907 //printk("iwctl_siwmlme--->send DEAUTH\n");
1908 /* bScheduleCommand((void *) pDevice,
1912 case IW_MLME_DISASSOC
:
1913 if(pDevice
->bLinkPass
== TRUE
){
1914 PRINT_K("iwctl_siwmlme--->send DISASSOCIATE\n");
1915 bScheduleCommand((void *) pDevice
,
1916 WLAN_CMD_DISASSOCIATE
,
1930 /*------------------------------------------------------------------*/
1932 * Structures to export the Wireless Handlers
1937 static const iw_handler iwctl_handler[] =
1939 (iw_handler) iwctl_commit, // SIOCSIWCOMMIT
1940 (iw_handler) iwctl_giwname, // SIOCGIWNAME
1941 (iw_handler) NULL, // SIOCSIWNWID
1942 (iw_handler) NULL, // SIOCGIWNWID
1943 (iw_handler) iwctl_siwfreq, // SIOCSIWFREQ
1944 (iw_handler) iwctl_giwfreq, // SIOCGIWFREQ
1945 (iw_handler) iwctl_siwmode, // SIOCSIWMODE
1946 (iw_handler) iwctl_giwmode, // SIOCGIWMODE
1947 (iw_handler) NULL, // SIOCSIWSENS
1948 (iw_handler) iwctl_giwsens, // SIOCGIWSENS
1949 (iw_handler) NULL, // SIOCSIWRANGE
1950 (iw_handler) iwctl_giwrange, // SIOCGIWRANGE
1951 (iw_handler) NULL, // SIOCSIWPRIV
1952 (iw_handler) NULL, // SIOCGIWPRIV
1953 (iw_handler) NULL, // SIOCSIWSTATS
1954 (iw_handler) NULL, // SIOCGIWSTATS
1955 (iw_handler) NULL, // SIOCSIWSPY
1956 (iw_handler) NULL, // SIOCGIWSPY
1957 (iw_handler) NULL, // -- hole --
1958 (iw_handler) NULL, // -- hole --
1959 (iw_handler) iwctl_siwap, // SIOCSIWAP
1960 (iw_handler) iwctl_giwap, // SIOCGIWAP
1961 (iw_handler) NULL, // -- hole -- 0x16
1962 (iw_handler) iwctl_giwaplist, // SIOCGIWAPLIST
1963 (iw_handler) iwctl_siwscan, // SIOCSIWSCAN
1964 (iw_handler) iwctl_giwscan, // SIOCGIWSCAN
1965 (iw_handler) iwctl_siwessid, // SIOCSIWESSID
1966 (iw_handler) iwctl_giwessid, // SIOCGIWESSID
1967 (iw_handler) NULL, // SIOCSIWNICKN
1968 (iw_handler) NULL, // SIOCGIWNICKN
1969 (iw_handler) NULL, // -- hole --
1970 (iw_handler) NULL, // -- hole --
1971 (iw_handler) iwctl_siwrate, // SIOCSIWRATE 0x20
1972 (iw_handler) iwctl_giwrate, // SIOCGIWRATE
1973 (iw_handler) iwctl_siwrts, // SIOCSIWRTS
1974 (iw_handler) iwctl_giwrts, // SIOCGIWRTS
1975 (iw_handler) iwctl_siwfrag, // SIOCSIWFRAG
1976 (iw_handler) iwctl_giwfrag, // SIOCGIWFRAG
1977 (iw_handler) NULL, // SIOCSIWTXPOW
1978 (iw_handler) NULL, // SIOCGIWTXPOW
1979 (iw_handler) iwctl_siwretry, // SIOCSIWRETRY
1980 (iw_handler) iwctl_giwretry, // SIOCGIWRETRY
1981 (iw_handler) iwctl_siwencode, // SIOCSIWENCODE
1982 (iw_handler) iwctl_giwencode, // SIOCGIWENCODE
1983 (iw_handler) iwctl_siwpower, // SIOCSIWPOWER
1984 (iw_handler) iwctl_giwpower, // SIOCGIWPOWER
1985 (iw_handler) NULL, // -- hole --
1986 (iw_handler) NULL, // -- hole --
1987 (iw_handler) iwctl_siwgenie, // SIOCSIWGENIE
1988 (iw_handler) iwctl_giwgenie, // SIOCGIWGENIE
1989 (iw_handler) iwctl_siwauth, // SIOCSIWAUTH
1990 (iw_handler) iwctl_giwauth, // SIOCGIWAUTH
1991 (iw_handler) iwctl_siwencodeext, // SIOCSIWENCODEEXT
1992 (iw_handler) iwctl_giwencodeext, // SIOCGIWENCODEEXT
1993 (iw_handler) NULL, // SIOCSIWPMKSA
1994 (iw_handler) NULL, // -- hole --
1999 static const iw_handler iwctl_handler
[] =
2001 (iw_handler
) iwctl_commit
, // SIOCSIWCOMMIT
2002 (iw_handler
) NULL
, // SIOCGIWNAME
2003 (iw_handler
) NULL
, // SIOCSIWNWID
2004 (iw_handler
) NULL
, // SIOCGIWNWID
2005 (iw_handler
) NULL
, // SIOCSIWFREQ
2006 (iw_handler
) NULL
, // SIOCGIWFREQ
2007 (iw_handler
) NULL
, // SIOCSIWMODE
2008 (iw_handler
) NULL
, // SIOCGIWMODE
2009 (iw_handler
) NULL
, // SIOCSIWSENS
2010 (iw_handler
) NULL
, // SIOCGIWSENS
2011 (iw_handler
) NULL
, // SIOCSIWRANGE
2012 (iw_handler
) iwctl_giwrange
, // SIOCGIWRANGE
2013 (iw_handler
) NULL
, // SIOCSIWPRIV
2014 (iw_handler
) NULL
, // SIOCGIWPRIV
2015 (iw_handler
) NULL
, // SIOCSIWSTATS
2016 (iw_handler
) NULL
, // SIOCGIWSTATS
2017 (iw_handler
) NULL
, // SIOCSIWSPY
2018 (iw_handler
) NULL
, // SIOCGIWSPY
2019 (iw_handler
) NULL
, // -- hole --
2020 (iw_handler
) NULL
, // -- hole --
2021 (iw_handler
) NULL
, // SIOCSIWAP
2022 (iw_handler
) NULL
, // SIOCGIWAP
2023 (iw_handler
) NULL
, // -- hole -- 0x16
2024 (iw_handler
) NULL
, // SIOCGIWAPLIST
2025 (iw_handler
) iwctl_siwscan
, // SIOCSIWSCAN
2026 (iw_handler
) iwctl_giwscan
, // SIOCGIWSCAN
2027 (iw_handler
) NULL
, // SIOCSIWESSID
2028 (iw_handler
) NULL
, // SIOCGIWESSID
2029 (iw_handler
) NULL
, // SIOCSIWNICKN
2030 (iw_handler
) NULL
, // SIOCGIWNICKN
2031 (iw_handler
) NULL
, // -- hole --
2032 (iw_handler
) NULL
, // -- hole --
2033 (iw_handler
) NULL
, // SIOCSIWRATE 0x20
2034 (iw_handler
) NULL
, // SIOCGIWRATE
2035 (iw_handler
) NULL
, // SIOCSIWRTS
2036 (iw_handler
) NULL
, // SIOCGIWRTS
2037 (iw_handler
) NULL
, // SIOCSIWFRAG
2038 (iw_handler
) NULL
, // SIOCGIWFRAG
2039 (iw_handler
) NULL
, // SIOCSIWTXPOW
2040 (iw_handler
) NULL
, // SIOCGIWTXPOW
2041 (iw_handler
) NULL
, // SIOCSIWRETRY
2042 (iw_handler
) NULL
, // SIOCGIWRETRY
2043 (iw_handler
) NULL
, // SIOCSIWENCODE
2044 (iw_handler
) NULL
, // SIOCGIWENCODE
2045 (iw_handler
) NULL
, // SIOCSIWPOWER
2046 (iw_handler
) NULL
, // SIOCGIWPOWER
2047 (iw_handler
) NULL
, // -- hole --
2048 (iw_handler
) NULL
, // -- hole --
2049 (iw_handler
) NULL
, // SIOCSIWGENIE
2050 (iw_handler
) NULL
, // SIOCGIWGENIE
2051 (iw_handler
) NULL
, // SIOCSIWAUTH
2052 (iw_handler
) NULL
, // SIOCGIWAUTH
2053 (iw_handler
) NULL
, // SIOCSIWENCODEEXT
2054 (iw_handler
) NULL
, // SIOCGIWENCODEEXT
2055 (iw_handler
) NULL
, // SIOCSIWPMKSA
2056 (iw_handler
) NULL
, // -- hole --
2060 static const iw_handler iwctl_private_handler
[] =
2062 NULL
, // SIOCIWFIRSTPRIV
2066 struct iw_priv_args iwctl_private_args
[] = {
2068 IW_PRIV_TYPE_CHAR
| 1024, 0,
2074 const struct iw_handler_def iwctl_handler_def
=
2076 .get_wireless_stats
= &iwctl_get_wireless_stats
,
2077 .num_standard
= sizeof(iwctl_handler
)/sizeof(iw_handler
),
2078 // .num_private = sizeof(iwctl_private_handler)/sizeof(iw_handler),
2079 // .num_private_args = sizeof(iwctl_private_args)/sizeof(struct iw_priv_args),
2081 .num_private_args
= 0,
2082 .standard
= (iw_handler
*) iwctl_handler
,
2083 // .private = (iw_handler *) iwctl_private_handler,
2084 // .private_args = (struct iw_priv_args *)iwctl_private_args,
2086 .private_args
= NULL
,