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: handle hostap deamon ioctl input/out functions
43 #define VIAWGET_HOSTAPD_MAX_BUF_SIZE 1024
44 #define HOSTAP_CRYPT_FLAG_SET_TX_KEY BIT0
45 #define HOSTAP_CRYPT_FLAG_PERMANENT BIT1
46 #define HOSTAP_CRYPT_ERR_UNKNOWN_ALG 2
47 #define HOSTAP_CRYPT_ERR_UNKNOWN_ADDR 3
48 #define HOSTAP_CRYPT_ERR_CRYPT_INIT_FAILED 4
49 #define HOSTAP_CRYPT_ERR_KEY_SET_FAILED 5
50 #define HOSTAP_CRYPT_ERR_TX_KEY_SET_FAILED 6
51 #define HOSTAP_CRYPT_ERR_CARD_CONF_FAILED 7
54 /*--------------------- Static Definitions -------------------------*/
56 /*--------------------- Static Classes ----------------------------*/
58 /*--------------------- Static Variables --------------------------*/
59 //static int msglevel =MSG_LEVEL_DEBUG;
60 static int msglevel
=MSG_LEVEL_INFO
;
62 /*--------------------- Static Functions --------------------------*/
67 /*--------------------- Export Variables --------------------------*/
72 * register net_device (AP) for hostap deamon
84 static int hostap_enable_hostapd(PSDevice pDevice
, int rtnl_locked
)
87 struct net_device
*dev
= pDevice
->dev
;
89 const struct net_device_ops apdev_netdev_ops
= {
90 .ndo_start_xmit
= pDevice
->tx_80211
,
93 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: Enabling hostapd mode\n", dev
->name
);
95 pDevice
->apdev
= (struct net_device
*)kmalloc(sizeof(struct net_device
), GFP_KERNEL
);
96 if (pDevice
->apdev
== NULL
)
98 memset(pDevice
->apdev
, 0, sizeof(struct net_device
));
100 apdev_priv
= netdev_priv(pDevice
->apdev
);
101 *apdev_priv
= *pDevice
;
102 memcpy(pDevice
->apdev
->dev_addr
, dev
->dev_addr
, ETH_ALEN
);
104 pDevice
->apdev
->netdev_ops
= &apdev_netdev_ops
;
106 pDevice
->apdev
->type
= ARPHRD_IEEE80211
;
108 pDevice
->apdev
->base_addr
= dev
->base_addr
;
109 pDevice
->apdev
->irq
= dev
->irq
;
110 pDevice
->apdev
->mem_start
= dev
->mem_start
;
111 pDevice
->apdev
->mem_end
= dev
->mem_end
;
112 sprintf(pDevice
->apdev
->name
, "%sap", dev
->name
);
114 ret
= register_netdevice(pDevice
->apdev
);
116 ret
= register_netdev(pDevice
->apdev
);
118 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: register_netdevice(AP) failed!\n",
123 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: Registered netdevice %s for AP management\n",
124 dev
->name
, pDevice
->apdev
->name
);
126 KeyvInitTable(pDevice
,&pDevice
->sKey
);
133 * unregister net_device(AP)
145 static int hostap_disable_hostapd(PSDevice pDevice
, int rtnl_locked
)
148 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: disabling hostapd mode\n", pDevice
->dev
->name
);
150 if (pDevice
->apdev
&& pDevice
->apdev
->name
&& pDevice
->apdev
->name
[0]) {
152 unregister_netdevice(pDevice
->apdev
);
154 unregister_netdev(pDevice
->apdev
);
155 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: Netdevice %s unregistered\n",
156 pDevice
->dev
->name
, pDevice
->apdev
->name
);
158 kfree(pDevice
->apdev
);
159 pDevice
->apdev
= NULL
;
160 pDevice
->bEnable8021x
= FALSE
;
161 pDevice
->bEnableHostWEP
= FALSE
;
162 pDevice
->bEncryptionEnable
= FALSE
;
170 * Set enable/disable hostapd mode
182 int hostap_set_hostapd(PSDevice pDevice
, int val
, int rtnl_locked
)
184 if (val
< 0 || val
> 1)
187 if (pDevice
->bEnableHostapd
== val
)
190 pDevice
->bEnableHostapd
= val
;
193 return hostap_enable_hostapd(pDevice
, rtnl_locked
);
195 return hostap_disable_hostapd(pDevice
, rtnl_locked
);
201 * remove station function supported for hostap deamon
212 static int hostap_remove_sta(PSDevice pDevice
,
213 struct viawget_hostapd_param
*param
)
218 if (BSSbIsSTAInNodeDB(pDevice
, param
->sta_addr
, &uNodeIndex
)) {
219 BSSvRemoveOneNode(pDevice
, uNodeIndex
);
229 * add a station from hostap deamon
240 static int hostap_add_sta(PSDevice pDevice
,
241 struct viawget_hostapd_param
*param
)
243 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
247 if (!BSSbIsSTAInNodeDB(pDevice
, param
->sta_addr
, &uNodeIndex
)) {
248 BSSvCreateOneNode((PSDevice
)pDevice
, &uNodeIndex
);
250 memcpy(pMgmt
->sNodeDBTable
[uNodeIndex
].abyMACAddr
, param
->sta_addr
, WLAN_ADDR_LEN
);
251 pMgmt
->sNodeDBTable
[uNodeIndex
].eNodeState
= NODE_ASSOC
;
252 pMgmt
->sNodeDBTable
[uNodeIndex
].wCapInfo
= param
->u
.add_sta
.capability
;
253 // TODO listenInterval
254 // pMgmt->sNodeDBTable[uNodeIndex].wListenInterval = 1;
255 pMgmt
->sNodeDBTable
[uNodeIndex
].bPSEnable
= FALSE
;
256 pMgmt
->sNodeDBTable
[uNodeIndex
].bySuppRate
= param
->u
.add_sta
.tx_supp_rates
;
259 pMgmt
->sNodeDBTable
[uNodeIndex
].wTxDataRate
=
260 pMgmt
->sNodeDBTable
[uNodeIndex
].wMaxSuppRate
;
261 // set max basic rate
262 pMgmt
->sNodeDBTable
[uNodeIndex
].wMaxBasicRate
= RATE_2M
;
263 // Todo: check sta preamble, if ap can't support, set status code
264 pMgmt
->sNodeDBTable
[uNodeIndex
].bShortPreamble
=
265 WLAN_GET_CAP_INFO_SHORTPREAMBLE(pMgmt
->sNodeDBTable
[uNodeIndex
].wCapInfo
);
267 pMgmt
->sNodeDBTable
[uNodeIndex
].wAID
= (WORD
)param
->u
.add_sta
.aid
;
269 pMgmt
->sNodeDBTable
[uNodeIndex
].ulLastRxJiffer
= jiffies
;
271 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Add STA AID= %d \n", pMgmt
->sNodeDBTable
[uNodeIndex
].wAID
);
272 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"MAC=%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X \n",
280 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Max Support rate = %d \n",
281 pMgmt
->sNodeDBTable
[uNodeIndex
].wMaxSuppRate
);
300 static int hostap_get_info_sta(PSDevice pDevice
,
301 struct viawget_hostapd_param
*param
)
303 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
306 if (BSSbIsSTAInNodeDB(pDevice
, param
->sta_addr
, &uNodeIndex
)) {
307 param
->u
.get_info_sta
.inactive_sec
=
308 (jiffies
- pMgmt
->sNodeDBTable
[uNodeIndex
].ulLastRxJiffer
) / HZ
;
310 //param->u.get_info_sta.txexc = pMgmt->sNodeDBTable[uNodeIndex].uTxAttempts;
334 static int hostap_reset_txexc_sta(PSDevice pDevice,
335 struct viawget_hostapd_param *param)
337 PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
340 if (BSSbIsSTAInNodeDB(pDevice, param->sta_addr, &uNodeIndex)) {
341 pMgmt->sNodeDBTable[uNodeIndex].uTxAttempts = 0;
364 static int hostap_set_flags_sta(PSDevice pDevice
,
365 struct viawget_hostapd_param
*param
)
367 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
370 if (BSSbIsSTAInNodeDB(pDevice
, param
->sta_addr
, &uNodeIndex
)) {
371 pMgmt
->sNodeDBTable
[uNodeIndex
].dwFlags
|= param
->u
.set_flags_sta
.flags_or
;
372 pMgmt
->sNodeDBTable
[uNodeIndex
].dwFlags
&= param
->u
.set_flags_sta
.flags_and
;
373 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" dwFlags = %x \n",
374 (UINT
)pMgmt
->sNodeDBTable
[uNodeIndex
].dwFlags
);
387 * set generic element (wpa ie)
398 static int hostap_set_generic_element(PSDevice pDevice
,
399 struct viawget_hostapd_param
*param
)
401 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
405 memcpy( pMgmt
->abyWPAIE
,
406 param
->u
.generic_elem
.data
,
407 param
->u
.generic_elem
.len
410 pMgmt
->wWPAIELen
= param
->u
.generic_elem
.len
;
412 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pMgmt->wWPAIELen = %d\n", pMgmt
->wWPAIELen
);
415 if (pMgmt
->wWPAIELen
== 0) {
416 pMgmt
->eAuthenMode
= WMAC_AUTH_OPEN
;
417 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" No WPAIE, Disable WPA \n");
420 if ((pMgmt
->abyWPAIE
[0] == WLAN_EID_RSN_WPA
) ||
421 (pMgmt
->abyWPAIE
[0] == WLAN_EID_RSN
)) {
422 pMgmt
->eAuthenMode
= WMAC_AUTH_WPANONE
;
423 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Set WPAIE enable WPA\n");
433 * flush station nodes table.
444 static void hostap_flush_sta(PSDevice pDevice
)
446 // reserved node index =0 for multicast node.
447 BSSvClearNodeDBTable(pDevice
, 1);
448 pDevice
->uAssocCount
= 0;
455 * set each stations encryption key
466 static int hostap_set_encryption(PSDevice pDevice
,
467 struct viawget_hostapd_param
*param
,
470 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
471 DWORD dwKeyIndex
= 0;
472 BYTE abyKey
[MAX_KEY_LEN
];
473 BYTE abySeq
[MAX_KEY_LEN
];
474 NDIS_802_11_KEY_RSC KeyRSC
;
475 BYTE byKeyDecMode
= KEY_CTL_WEP
;
479 BOOL bKeyTableFull
= FALSE
;
483 param
->u
.crypt
.err
= 0;
486 (int) ((char *) param->u.crypt.key - (char *) param) +
487 param->u.crypt.key_len)
491 if (param
->u
.crypt
.alg
> WPA_ALG_CCMP
)
495 if ((param
->u
.crypt
.idx
> 3) || (param
->u
.crypt
.key_len
> MAX_KEY_LEN
)) {
496 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_KEY_SET_FAILED
;
497 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" HOSTAP_CRYPT_ERR_KEY_SET_FAILED\n");
501 if (param
->sta_addr
[0] == 0xff && param
->sta_addr
[1] == 0xff &&
502 param
->sta_addr
[2] == 0xff && param
->sta_addr
[3] == 0xff &&
503 param
->sta_addr
[4] == 0xff && param
->sta_addr
[5] == 0xff) {
504 if (param
->u
.crypt
.idx
>= MAX_GROUP_KEY
)
509 if (BSSbIsSTAInNodeDB(pDevice
, param
->sta_addr
, &iNodeIndex
) == FALSE
) {
510 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_UNKNOWN_ADDR
;
511 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" HOSTAP_CRYPT_ERR_UNKNOWN_ADDR\n");
515 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" hostap_set_encryption: sta_index %d \n", iNodeIndex
);
516 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" hostap_set_encryption: alg %d \n", param
->u
.crypt
.alg
);
518 if (param
->u
.crypt
.alg
== WPA_ALG_NONE
) {
520 if (pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
== TRUE
) {
521 if (KeybRemoveKey( pDevice
,
524 pMgmt
->sNodeDBTable
[iNodeIndex
].dwKeyIndex
526 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"KeybRemoveKey fail \n");
528 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= FALSE
;
530 pMgmt
->sNodeDBTable
[iNodeIndex
].byKeyIndex
= 0;
531 pMgmt
->sNodeDBTable
[iNodeIndex
].dwKeyIndex
= 0;
532 pMgmt
->sNodeDBTable
[iNodeIndex
].uWepKeyLength
= 0;
533 pMgmt
->sNodeDBTable
[iNodeIndex
].KeyRSC
= 0;
534 pMgmt
->sNodeDBTable
[iNodeIndex
].dwTSC47_16
= 0;
535 pMgmt
->sNodeDBTable
[iNodeIndex
].wTSC15_0
= 0;
536 pMgmt
->sNodeDBTable
[iNodeIndex
].byCipherSuite
= 0;
537 memset(&pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[0],
545 memcpy(abyKey
, param
->u
.crypt
.key
, param
->u
.crypt
.key_len
);
546 // copy to node key tbl
547 pMgmt
->sNodeDBTable
[iNodeIndex
].byKeyIndex
= param
->u
.crypt
.idx
;
548 pMgmt
->sNodeDBTable
[iNodeIndex
].uWepKeyLength
= param
->u
.crypt
.key_len
;
549 memcpy(&pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[0],
551 param
->u
.crypt
.key_len
554 dwKeyIndex
= (DWORD
)(param
->u
.crypt
.idx
);
555 if (param
->u
.crypt
.flags
& HOSTAP_CRYPT_FLAG_SET_TX_KEY
) {
556 pDevice
->byKeyIndex
= (BYTE
)dwKeyIndex
;
557 pDevice
->bTransmitKey
= TRUE
;
558 dwKeyIndex
|= (1 << 31);
561 if (param
->u
.crypt
.alg
== WPA_ALG_WEP
) {
563 if ((pDevice
->bEnable8021x
== FALSE
) || (iNodeIndex
== 0)) {
564 KeybSetDefaultKey( pDevice
,
566 dwKeyIndex
& ~(BIT30
| USE_KEYRSC
),
567 param
->u
.crypt
.key_len
,
574 // 8021x enable, individual key
575 dwKeyIndex
|= (1 << 30); // set pairwise key
576 if (KeybSetKey(pDevice
,
579 dwKeyIndex
& ~(USE_KEYRSC
),
580 param
->u
.crypt
.key_len
,
587 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= TRUE
;
591 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= FALSE
;
592 bKeyTableFull
= TRUE
;
595 pDevice
->eEncryptionStatus
= Ndis802_11Encryption1Enabled
;
596 pDevice
->bEncryptionEnable
= TRUE
;
597 pMgmt
->byCSSPK
= KEY_CTL_WEP
;
598 pMgmt
->byCSSGK
= KEY_CTL_WEP
;
599 pMgmt
->sNodeDBTable
[iNodeIndex
].byCipherSuite
= KEY_CTL_WEP
;
600 pMgmt
->sNodeDBTable
[iNodeIndex
].dwKeyIndex
= dwKeyIndex
;
604 if (param
->u
.crypt
.seq
) {
605 memcpy(&abySeq
, param
->u
.crypt
.seq
, 8);
606 for (ii
= 0 ; ii
< 8 ; ii
++) {
607 KeyRSC
|= (abySeq
[ii
] << (ii
* 8));
609 dwKeyIndex
|= 1 << 29;
610 pMgmt
->sNodeDBTable
[iNodeIndex
].KeyRSC
= KeyRSC
;
613 if (param
->u
.crypt
.alg
== WPA_ALG_TKIP
) {
614 if (param
->u
.crypt
.key_len
!= MAX_KEY_LEN
)
616 pDevice
->eEncryptionStatus
= Ndis802_11Encryption2Enabled
;
617 byKeyDecMode
= KEY_CTL_TKIP
;
618 pMgmt
->byCSSPK
= KEY_CTL_TKIP
;
619 pMgmt
->byCSSGK
= KEY_CTL_TKIP
;
622 if (param
->u
.crypt
.alg
== WPA_ALG_CCMP
) {
623 if ((param
->u
.crypt
.key_len
!= AES_KEY_LEN
) ||
624 (pDevice
->byLocalID
<= REV_ID_VT3253_A1
))
626 pDevice
->eEncryptionStatus
= Ndis802_11Encryption3Enabled
;
627 byKeyDecMode
= KEY_CTL_CCMP
;
628 pMgmt
->byCSSPK
= KEY_CTL_CCMP
;
629 pMgmt
->byCSSGK
= KEY_CTL_CCMP
;
633 if (iNodeIndex
== 0) {
634 KeybSetDefaultKey( pDevice
,
637 param
->u
.crypt
.key_len
,
642 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= TRUE
;
645 dwKeyIndex
|= (1 << 30); // set pairwise key
646 if (KeybSetKey(pDevice
,
650 param
->u
.crypt
.key_len
,
656 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= TRUE
;
660 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= FALSE
;
661 bKeyTableFull
= TRUE
;
662 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" Key Table Full\n");
667 if (bKeyTableFull
== TRUE
) {
668 wKeyCtl
&= 0x7F00; // clear all key control filed
669 wKeyCtl
|= (byKeyDecMode
<< 4);
670 wKeyCtl
|= (byKeyDecMode
);
671 wKeyCtl
|= 0x0044; // use group key for all address
672 wKeyCtl
|= 0x4000; // disable KeyTable[MAX_KEY_TABLE-1] on-fly to genernate rx int
674 //MACvSetDefaultKeyCtl(pDevice->PortOffset, wKeyCtl, MAX_KEY_TABLE-1, pDevice->byLocalID);
677 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" Set key sta_index= %d \n", iNodeIndex
);
678 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" tx_index=%d len=%d \n", param
->u
.crypt
.idx
,
679 param
->u
.crypt
.key_len
);
680 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" key=%x-%x-%x-%x-%x-xxxxx \n",
681 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[0],
682 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[1],
683 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[2],
684 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[3],
685 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[4]
689 pDevice
->bEncryptionEnable
= TRUE
;
690 pMgmt
->sNodeDBTable
[iNodeIndex
].byCipherSuite
= byKeyDecMode
;
691 pMgmt
->sNodeDBTable
[iNodeIndex
].dwKeyIndex
= dwKeyIndex
;
692 pMgmt
->sNodeDBTable
[iNodeIndex
].dwTSC47_16
= 0;
693 pMgmt
->sNodeDBTable
[iNodeIndex
].wTSC15_0
= 0;
702 * get each stations encryption key
713 static int hostap_get_encryption(PSDevice pDevice
,
714 struct viawget_hostapd_param
*param
,
717 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
723 param
->u
.crypt
.err
= 0;
725 if (param
->sta_addr
[0] == 0xff && param
->sta_addr
[1] == 0xff &&
726 param
->sta_addr
[2] == 0xff && param
->sta_addr
[3] == 0xff &&
727 param
->sta_addr
[4] == 0xff && param
->sta_addr
[5] == 0xff) {
730 if (BSSbIsSTAInNodeDB(pDevice
, param
->sta_addr
, &iNodeIndex
) == FALSE
) {
731 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_UNKNOWN_ADDR
;
732 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"hostap_get_encryption: HOSTAP_CRYPT_ERR_UNKNOWN_ADDR\n");
736 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"hostap_get_encryption: %d\n", iNodeIndex
);
737 memset(param
->u
.crypt
.seq
, 0, 8);
738 for (ii
= 0 ; ii
< 8 ; ii
++) {
739 param
->u
.crypt
.seq
[ii
] = (BYTE
)pMgmt
->sNodeDBTable
[iNodeIndex
].KeyRSC
>> (ii
* 8);
748 * hostap_ioctl main function supported for hostap deamon.
760 int hostap_ioctl(PSDevice pDevice
, struct iw_point
*p
)
762 struct viawget_hostapd_param
*param
;
766 if (p
->length
< sizeof(struct viawget_hostapd_param
) ||
767 p
->length
> VIAWGET_HOSTAPD_MAX_BUF_SIZE
|| !p
->pointer
)
770 param
= (struct viawget_hostapd_param
*) kmalloc((int)p
->length
, (int)GFP_KERNEL
);
774 if (copy_from_user(param
, p
->pointer
, p
->length
)) {
779 switch (param
->cmd
) {
780 case VIAWGET_HOSTAPD_SET_ENCRYPTION
:
781 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SET_ENCRYPTION \n");
782 spin_lock_irq(&pDevice
->lock
);
783 ret
= hostap_set_encryption(pDevice
, param
, p
->length
);
784 spin_unlock_irq(&pDevice
->lock
);
786 case VIAWGET_HOSTAPD_GET_ENCRYPTION
:
787 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_GET_ENCRYPTION \n");
788 spin_lock_irq(&pDevice
->lock
);
789 ret
= hostap_get_encryption(pDevice
, param
, p
->length
);
790 spin_unlock_irq(&pDevice
->lock
);
792 case VIAWGET_HOSTAPD_SET_ASSOC_AP_ADDR
:
793 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SET_ASSOC_AP_ADDR \n");
796 case VIAWGET_HOSTAPD_FLUSH
:
797 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_FLUSH \n");
798 spin_lock_irq(&pDevice
->lock
);
799 hostap_flush_sta(pDevice
);
800 spin_unlock_irq(&pDevice
->lock
);
802 case VIAWGET_HOSTAPD_ADD_STA
:
803 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_ADD_STA \n");
804 spin_lock_irq(&pDevice
->lock
);
805 ret
= hostap_add_sta(pDevice
, param
);
806 spin_unlock_irq(&pDevice
->lock
);
808 case VIAWGET_HOSTAPD_REMOVE_STA
:
809 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_REMOVE_STA \n");
810 spin_lock_irq(&pDevice
->lock
);
811 ret
= hostap_remove_sta(pDevice
, param
);
812 spin_unlock_irq(&pDevice
->lock
);
814 case VIAWGET_HOSTAPD_GET_INFO_STA
:
815 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_GET_INFO_STA \n");
816 ret
= hostap_get_info_sta(pDevice
, param
);
820 case VIAWGET_HOSTAPD_RESET_TXEXC_STA:
821 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_RESET_TXEXC_STA \n");
822 ret = hostap_reset_txexc_sta(pDevice, param);
825 case VIAWGET_HOSTAPD_SET_FLAGS_STA
:
826 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SET_FLAGS_STA \n");
827 ret
= hostap_set_flags_sta(pDevice
, param
);
830 case VIAWGET_HOSTAPD_MLME
:
831 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_MLME \n");
834 case VIAWGET_HOSTAPD_SET_GENERIC_ELEMENT
:
835 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SET_GENERIC_ELEMENT \n");
836 ret
= hostap_set_generic_element(pDevice
, param
);
839 case VIAWGET_HOSTAPD_SCAN_REQ
:
840 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SCAN_REQ \n");
843 case VIAWGET_HOSTAPD_STA_CLEAR_STATS
:
844 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_STA_CLEAR_STATS \n");
848 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"hostap_ioctl: unknown cmd=%d\n",
855 if ((ret
== 0) && ap_ioctl
) {
856 if (copy_to_user(p
->pointer
, param
, p
->length
)) {