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
42 #define VIAWGET_HOSTAPD_MAX_BUF_SIZE 1024
43 #define HOSTAP_CRYPT_FLAG_SET_TX_KEY BIT0
44 #define HOSTAP_CRYPT_ERR_UNKNOWN_ADDR 3
45 #define HOSTAP_CRYPT_ERR_KEY_SET_FAILED 5
47 static int msglevel
=MSG_LEVEL_INFO
;
51 * register net_device (AP) for hostap deamon
63 static int hostap_enable_hostapd(PSDevice pDevice
, int rtnl_locked
)
66 struct net_device
*dev
= pDevice
->dev
;
68 const struct net_device_ops apdev_netdev_ops
= {
69 .ndo_start_xmit
= pDevice
->tx_80211
,
72 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: Enabling hostapd mode\n", dev
->name
);
74 pDevice
->apdev
= kzalloc(sizeof(struct net_device
), GFP_KERNEL
);
75 if (pDevice
->apdev
== NULL
)
78 apdev_priv
= netdev_priv(pDevice
->apdev
);
79 *apdev_priv
= *pDevice
;
80 memcpy(pDevice
->apdev
->dev_addr
, dev
->dev_addr
, ETH_ALEN
);
82 pDevice
->apdev
->netdev_ops
= &apdev_netdev_ops
;
84 pDevice
->apdev
->type
= ARPHRD_IEEE80211
;
86 pDevice
->apdev
->base_addr
= dev
->base_addr
;
87 pDevice
->apdev
->irq
= dev
->irq
;
88 pDevice
->apdev
->mem_start
= dev
->mem_start
;
89 pDevice
->apdev
->mem_end
= dev
->mem_end
;
90 sprintf(pDevice
->apdev
->name
, "%sap", dev
->name
);
92 ret
= register_netdevice(pDevice
->apdev
);
94 ret
= register_netdev(pDevice
->apdev
);
96 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: register_netdevice(AP) failed!\n",
101 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: Registered netdevice %s for AP management\n",
102 dev
->name
, pDevice
->apdev
->name
);
104 KeyvInitTable(pDevice
,&pDevice
->sKey
);
111 * unregister net_device(AP)
123 static int hostap_disable_hostapd(PSDevice pDevice
, int rtnl_locked
)
126 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: disabling hostapd mode\n", pDevice
->dev
->name
);
128 if (pDevice
->apdev
&& pDevice
->apdev
->name
&& pDevice
->apdev
->name
[0]) {
130 unregister_netdevice(pDevice
->apdev
);
132 unregister_netdev(pDevice
->apdev
);
133 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: Netdevice %s unregistered\n",
134 pDevice
->dev
->name
, pDevice
->apdev
->name
);
136 kfree(pDevice
->apdev
);
137 pDevice
->apdev
= NULL
;
138 pDevice
->bEnable8021x
= FALSE
;
139 pDevice
->bEnableHostWEP
= FALSE
;
140 pDevice
->bEncryptionEnable
= FALSE
;
148 * Set enable/disable hostapd mode
160 int vt6656_hostap_set_hostapd(PSDevice pDevice
, int val
, int rtnl_locked
)
162 if (val
< 0 || val
> 1)
165 if (pDevice
->bEnableHostapd
== val
)
168 pDevice
->bEnableHostapd
= val
;
171 return hostap_enable_hostapd(pDevice
, rtnl_locked
);
173 return hostap_disable_hostapd(pDevice
, rtnl_locked
);
179 * remove station function supported for hostap deamon
190 static int hostap_remove_sta(PSDevice pDevice
,
191 struct viawget_hostapd_param
*param
)
193 unsigned int uNodeIndex
;
196 if (BSSbIsSTAInNodeDB(pDevice
, param
->sta_addr
, &uNodeIndex
)) {
197 BSSvRemoveOneNode(pDevice
, uNodeIndex
);
207 * add a station from hostap deamon
218 static int hostap_add_sta(PSDevice pDevice
,
219 struct viawget_hostapd_param
*param
)
221 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
222 unsigned int uNodeIndex
;
225 if (!BSSbIsSTAInNodeDB(pDevice
, param
->sta_addr
, &uNodeIndex
)) {
226 BSSvCreateOneNode((PSDevice
)pDevice
, &uNodeIndex
);
228 memcpy(pMgmt
->sNodeDBTable
[uNodeIndex
].abyMACAddr
, param
->sta_addr
, WLAN_ADDR_LEN
);
229 pMgmt
->sNodeDBTable
[uNodeIndex
].eNodeState
= NODE_ASSOC
;
230 pMgmt
->sNodeDBTable
[uNodeIndex
].wCapInfo
= param
->u
.add_sta
.capability
;
231 // TODO listenInterval
232 // pMgmt->sNodeDBTable[uNodeIndex].wListenInterval = 1;
233 pMgmt
->sNodeDBTable
[uNodeIndex
].bPSEnable
= FALSE
;
234 pMgmt
->sNodeDBTable
[uNodeIndex
].bySuppRate
= param
->u
.add_sta
.tx_supp_rates
;
237 pMgmt
->sNodeDBTable
[uNodeIndex
].wTxDataRate
=
238 pMgmt
->sNodeDBTable
[uNodeIndex
].wMaxSuppRate
;
239 // set max basic rate
240 pMgmt
->sNodeDBTable
[uNodeIndex
].wMaxBasicRate
= RATE_2M
;
241 // Todo: check sta preamble, if ap can't support, set status code
242 pMgmt
->sNodeDBTable
[uNodeIndex
].bShortPreamble
=
243 WLAN_GET_CAP_INFO_SHORTPREAMBLE(pMgmt
->sNodeDBTable
[uNodeIndex
].wCapInfo
);
245 pMgmt
->sNodeDBTable
[uNodeIndex
].wAID
= (WORD
)param
->u
.add_sta
.aid
;
247 pMgmt
->sNodeDBTable
[uNodeIndex
].ulLastRxJiffer
= jiffies
;
249 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Add STA AID= %d \n", pMgmt
->sNodeDBTable
[uNodeIndex
].wAID
);
250 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"MAC=%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X \n",
258 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Max Support rate = %d \n",
259 pMgmt
->sNodeDBTable
[uNodeIndex
].wMaxSuppRate
);
278 static int hostap_get_info_sta(PSDevice pDevice
,
279 struct viawget_hostapd_param
*param
)
281 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
282 unsigned int uNodeIndex
;
284 if (BSSbIsSTAInNodeDB(pDevice
, param
->sta_addr
, &uNodeIndex
)) {
285 param
->u
.get_info_sta
.inactive_sec
=
286 (jiffies
- pMgmt
->sNodeDBTable
[uNodeIndex
].ulLastRxJiffer
) / HZ
;
288 //param->u.get_info_sta.txexc = pMgmt->sNodeDBTable[uNodeIndex].uTxAttempts;
311 static int hostap_set_flags_sta(PSDevice pDevice
,
312 struct viawget_hostapd_param
*param
)
314 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
315 unsigned int uNodeIndex
;
317 if (BSSbIsSTAInNodeDB(pDevice
, param
->sta_addr
, &uNodeIndex
)) {
318 pMgmt
->sNodeDBTable
[uNodeIndex
].dwFlags
|= param
->u
.set_flags_sta
.flags_or
;
319 pMgmt
->sNodeDBTable
[uNodeIndex
].dwFlags
&= param
->u
.set_flags_sta
.flags_and
;
320 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" dwFlags = %x\n",
321 (unsigned int) pMgmt
->sNodeDBTable
[uNodeIndex
].dwFlags
);
334 * set generic element (wpa ie)
345 static int hostap_set_generic_element(PSDevice pDevice
,
346 struct viawget_hostapd_param
*param
)
348 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
352 memcpy( pMgmt
->abyWPAIE
,
353 param
->u
.generic_elem
.data
,
354 param
->u
.generic_elem
.len
357 pMgmt
->wWPAIELen
= param
->u
.generic_elem
.len
;
359 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pMgmt->wWPAIELen = %d\n", pMgmt
->wWPAIELen
);
362 if (pMgmt
->wWPAIELen
== 0) {
363 pMgmt
->eAuthenMode
= WMAC_AUTH_OPEN
;
364 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" No WPAIE, Disable WPA \n");
367 if ((pMgmt
->abyWPAIE
[0] == WLAN_EID_RSN_WPA
) ||
368 (pMgmt
->abyWPAIE
[0] == WLAN_EID_RSN
)) {
369 pMgmt
->eAuthenMode
= WMAC_AUTH_WPANONE
;
370 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Set WPAIE enable WPA\n");
380 * flush station nodes table.
391 static void hostap_flush_sta(PSDevice pDevice
)
393 // reserved node index =0 for multicast node.
394 BSSvClearNodeDBTable(pDevice
, 1);
395 pDevice
->uAssocCount
= 0;
402 * set each stations encryption key
413 static int hostap_set_encryption(PSDevice pDevice
,
414 struct viawget_hostapd_param
*param
,
417 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
418 DWORD dwKeyIndex
= 0;
419 BYTE abyKey
[MAX_KEY_LEN
];
420 BYTE abySeq
[MAX_KEY_LEN
];
421 NDIS_802_11_KEY_RSC KeyRSC
;
422 BYTE byKeyDecMode
= KEY_CTL_WEP
;
426 BOOL bKeyTableFull
= FALSE
;
430 param
->u
.crypt
.err
= 0;
432 if (param
->u
.crypt
.alg
> WPA_ALG_CCMP
)
436 if ((param
->u
.crypt
.idx
> 3) || (param
->u
.crypt
.key_len
> MAX_KEY_LEN
)) {
437 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_KEY_SET_FAILED
;
438 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" HOSTAP_CRYPT_ERR_KEY_SET_FAILED\n");
442 if (param
->sta_addr
[0] == 0xff && param
->sta_addr
[1] == 0xff &&
443 param
->sta_addr
[2] == 0xff && param
->sta_addr
[3] == 0xff &&
444 param
->sta_addr
[4] == 0xff && param
->sta_addr
[5] == 0xff) {
445 if (param
->u
.crypt
.idx
>= MAX_GROUP_KEY
)
450 if (BSSbIsSTAInNodeDB(pDevice
, param
->sta_addr
, &iNodeIndex
) == FALSE
) {
451 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_UNKNOWN_ADDR
;
452 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" HOSTAP_CRYPT_ERR_UNKNOWN_ADDR\n");
456 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" hostap_set_encryption: sta_index %d \n", iNodeIndex
);
457 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" hostap_set_encryption: alg %d \n", param
->u
.crypt
.alg
);
459 if (param
->u
.crypt
.alg
== WPA_ALG_NONE
) {
461 if (pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
== TRUE
) {
462 if (KeybRemoveKey( pDevice
,
465 pMgmt
->sNodeDBTable
[iNodeIndex
].dwKeyIndex
467 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"KeybRemoveKey fail \n");
469 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= FALSE
;
471 pMgmt
->sNodeDBTable
[iNodeIndex
].byKeyIndex
= 0;
472 pMgmt
->sNodeDBTable
[iNodeIndex
].dwKeyIndex
= 0;
473 pMgmt
->sNodeDBTable
[iNodeIndex
].uWepKeyLength
= 0;
474 pMgmt
->sNodeDBTable
[iNodeIndex
].KeyRSC
= 0;
475 pMgmt
->sNodeDBTable
[iNodeIndex
].dwTSC47_16
= 0;
476 pMgmt
->sNodeDBTable
[iNodeIndex
].wTSC15_0
= 0;
477 pMgmt
->sNodeDBTable
[iNodeIndex
].byCipherSuite
= 0;
478 memset(&pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[0],
486 memcpy(abyKey
, param
->u
.crypt
.key
, param
->u
.crypt
.key_len
);
487 // copy to node key tbl
488 pMgmt
->sNodeDBTable
[iNodeIndex
].byKeyIndex
= param
->u
.crypt
.idx
;
489 pMgmt
->sNodeDBTable
[iNodeIndex
].uWepKeyLength
= param
->u
.crypt
.key_len
;
490 memcpy(&pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[0],
492 param
->u
.crypt
.key_len
495 dwKeyIndex
= (DWORD
)(param
->u
.crypt
.idx
);
496 if (param
->u
.crypt
.flags
& HOSTAP_CRYPT_FLAG_SET_TX_KEY
) {
497 pDevice
->byKeyIndex
= (BYTE
)dwKeyIndex
;
498 pDevice
->bTransmitKey
= TRUE
;
499 dwKeyIndex
|= (1 << 31);
502 if (param
->u
.crypt
.alg
== WPA_ALG_WEP
) {
504 if ((pDevice
->bEnable8021x
== FALSE
) || (iNodeIndex
== 0)) {
505 KeybSetDefaultKey( pDevice
,
507 dwKeyIndex
& ~(BIT30
| USE_KEYRSC
),
508 param
->u
.crypt
.key_len
,
515 // 8021x enable, individual key
516 dwKeyIndex
|= (1 << 30); // set pairwise key
517 if (KeybSetKey(pDevice
,
520 dwKeyIndex
& ~(USE_KEYRSC
),
521 param
->u
.crypt
.key_len
,
528 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= TRUE
;
532 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= FALSE
;
533 bKeyTableFull
= TRUE
;
536 pDevice
->eEncryptionStatus
= Ndis802_11Encryption1Enabled
;
537 pDevice
->bEncryptionEnable
= TRUE
;
538 pMgmt
->byCSSPK
= KEY_CTL_WEP
;
539 pMgmt
->byCSSGK
= KEY_CTL_WEP
;
540 pMgmt
->sNodeDBTable
[iNodeIndex
].byCipherSuite
= KEY_CTL_WEP
;
541 pMgmt
->sNodeDBTable
[iNodeIndex
].dwKeyIndex
= dwKeyIndex
;
545 if (param
->u
.crypt
.seq
) {
546 memcpy(&abySeq
, param
->u
.crypt
.seq
, 8);
547 for (ii
= 0 ; ii
< 8 ; ii
++) {
548 KeyRSC
|= (abySeq
[ii
] << (ii
* 8));
550 dwKeyIndex
|= 1 << 29;
551 pMgmt
->sNodeDBTable
[iNodeIndex
].KeyRSC
= KeyRSC
;
554 if (param
->u
.crypt
.alg
== WPA_ALG_TKIP
) {
555 if (param
->u
.crypt
.key_len
!= MAX_KEY_LEN
)
557 pDevice
->eEncryptionStatus
= Ndis802_11Encryption2Enabled
;
558 byKeyDecMode
= KEY_CTL_TKIP
;
559 pMgmt
->byCSSPK
= KEY_CTL_TKIP
;
560 pMgmt
->byCSSGK
= KEY_CTL_TKIP
;
563 if (param
->u
.crypt
.alg
== WPA_ALG_CCMP
) {
564 if ((param
->u
.crypt
.key_len
!= AES_KEY_LEN
) ||
565 (pDevice
->byLocalID
<= REV_ID_VT3253_A1
))
567 pDevice
->eEncryptionStatus
= Ndis802_11Encryption3Enabled
;
568 byKeyDecMode
= KEY_CTL_CCMP
;
569 pMgmt
->byCSSPK
= KEY_CTL_CCMP
;
570 pMgmt
->byCSSGK
= KEY_CTL_CCMP
;
574 if (iNodeIndex
== 0) {
575 KeybSetDefaultKey( pDevice
,
578 param
->u
.crypt
.key_len
,
583 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= TRUE
;
586 dwKeyIndex
|= (1 << 30); // set pairwise key
587 if (KeybSetKey(pDevice
,
591 param
->u
.crypt
.key_len
,
597 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= TRUE
;
601 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= FALSE
;
602 bKeyTableFull
= TRUE
;
603 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" Key Table Full\n");
608 if (bKeyTableFull
== TRUE
) {
609 wKeyCtl
&= 0x7F00; // clear all key control filed
610 wKeyCtl
|= (byKeyDecMode
<< 4);
611 wKeyCtl
|= (byKeyDecMode
);
612 wKeyCtl
|= 0x0044; // use group key for all address
613 wKeyCtl
|= 0x4000; // disable KeyTable[MAX_KEY_TABLE-1] on-fly to genernate rx int
615 //MACvSetDefaultKeyCtl(pDevice->PortOffset, wKeyCtl, MAX_KEY_TABLE-1, pDevice->byLocalID);
618 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" Set key sta_index= %d \n", iNodeIndex
);
619 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" tx_index=%d len=%d \n", param
->u
.crypt
.idx
,
620 param
->u
.crypt
.key_len
);
621 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" key=%x-%x-%x-%x-%x-xxxxx \n",
622 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[0],
623 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[1],
624 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[2],
625 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[3],
626 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[4]
630 pDevice
->bEncryptionEnable
= TRUE
;
631 pMgmt
->sNodeDBTable
[iNodeIndex
].byCipherSuite
= byKeyDecMode
;
632 pMgmt
->sNodeDBTable
[iNodeIndex
].dwKeyIndex
= dwKeyIndex
;
633 pMgmt
->sNodeDBTable
[iNodeIndex
].dwTSC47_16
= 0;
634 pMgmt
->sNodeDBTable
[iNodeIndex
].wTSC15_0
= 0;
643 * get each stations encryption key
654 static int hostap_get_encryption(PSDevice pDevice
,
655 struct viawget_hostapd_param
*param
,
658 PSMgmtObject pMgmt
= &(pDevice
->sMgmtObj
);
664 param
->u
.crypt
.err
= 0;
666 if (param
->sta_addr
[0] == 0xff && param
->sta_addr
[1] == 0xff &&
667 param
->sta_addr
[2] == 0xff && param
->sta_addr
[3] == 0xff &&
668 param
->sta_addr
[4] == 0xff && param
->sta_addr
[5] == 0xff) {
671 if (BSSbIsSTAInNodeDB(pDevice
, param
->sta_addr
, &iNodeIndex
) == FALSE
) {
672 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_UNKNOWN_ADDR
;
673 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"hostap_get_encryption: HOSTAP_CRYPT_ERR_UNKNOWN_ADDR\n");
677 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"hostap_get_encryption: %d\n", iNodeIndex
);
678 memset(param
->u
.crypt
.seq
, 0, 8);
679 for (ii
= 0 ; ii
< 8 ; ii
++) {
680 param
->u
.crypt
.seq
[ii
] = (BYTE
)pMgmt
->sNodeDBTable
[iNodeIndex
].KeyRSC
>> (ii
* 8);
689 * vt6656_hostap_ioctl main function supported for hostap deamon.
701 int vt6656_hostap_ioctl(PSDevice pDevice
, struct iw_point
*p
)
703 struct viawget_hostapd_param
*param
;
707 if (p
->length
< sizeof(struct viawget_hostapd_param
) ||
708 p
->length
> VIAWGET_HOSTAPD_MAX_BUF_SIZE
|| !p
->pointer
)
711 param
= kmalloc((int)p
->length
, (int)GFP_KERNEL
);
715 if (copy_from_user(param
, p
->pointer
, p
->length
)) {
720 switch (param
->cmd
) {
721 case VIAWGET_HOSTAPD_SET_ENCRYPTION
:
722 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SET_ENCRYPTION \n");
723 spin_lock_irq(&pDevice
->lock
);
724 ret
= hostap_set_encryption(pDevice
, param
, p
->length
);
725 spin_unlock_irq(&pDevice
->lock
);
727 case VIAWGET_HOSTAPD_GET_ENCRYPTION
:
728 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_GET_ENCRYPTION \n");
729 spin_lock_irq(&pDevice
->lock
);
730 ret
= hostap_get_encryption(pDevice
, param
, p
->length
);
731 spin_unlock_irq(&pDevice
->lock
);
733 case VIAWGET_HOSTAPD_SET_ASSOC_AP_ADDR
:
734 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SET_ASSOC_AP_ADDR \n");
737 case VIAWGET_HOSTAPD_FLUSH
:
738 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_FLUSH \n");
739 spin_lock_irq(&pDevice
->lock
);
740 hostap_flush_sta(pDevice
);
741 spin_unlock_irq(&pDevice
->lock
);
743 case VIAWGET_HOSTAPD_ADD_STA
:
744 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_ADD_STA \n");
745 spin_lock_irq(&pDevice
->lock
);
746 ret
= hostap_add_sta(pDevice
, param
);
747 spin_unlock_irq(&pDevice
->lock
);
749 case VIAWGET_HOSTAPD_REMOVE_STA
:
750 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_REMOVE_STA \n");
751 spin_lock_irq(&pDevice
->lock
);
752 ret
= hostap_remove_sta(pDevice
, param
);
753 spin_unlock_irq(&pDevice
->lock
);
755 case VIAWGET_HOSTAPD_GET_INFO_STA
:
756 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_GET_INFO_STA \n");
757 ret
= hostap_get_info_sta(pDevice
, param
);
760 case VIAWGET_HOSTAPD_SET_FLAGS_STA
:
761 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SET_FLAGS_STA \n");
762 ret
= hostap_set_flags_sta(pDevice
, param
);
765 case VIAWGET_HOSTAPD_MLME
:
766 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_MLME \n");
769 case VIAWGET_HOSTAPD_SET_GENERIC_ELEMENT
:
770 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SET_GENERIC_ELEMENT \n");
771 ret
= hostap_set_generic_element(pDevice
, param
);
774 case VIAWGET_HOSTAPD_SCAN_REQ
:
775 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SCAN_REQ \n");
778 case VIAWGET_HOSTAPD_STA_CLEAR_STATS
:
779 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_STA_CLEAR_STATS \n");
783 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"vt6656_hostap_ioctl: unknown cmd=%d\n",
790 if ((ret
== 0) && ap_ioctl
) {
791 if (copy_to_user(p
->pointer
, param
, p
->length
)) {