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
41 #define VIAWGET_HOSTAPD_MAX_BUF_SIZE 1024
42 #define HOSTAP_CRYPT_FLAG_SET_TX_KEY BIT0
43 #define HOSTAP_CRYPT_ERR_UNKNOWN_ADDR 3
44 #define HOSTAP_CRYPT_ERR_KEY_SET_FAILED 5
46 /*--------------------- Static Definitions -------------------------*/
48 /*--------------------- Static Classes ----------------------------*/
50 /*--------------------- Static Variables --------------------------*/
51 static int msglevel
= MSG_LEVEL_INFO
;
53 /*--------------------- Static Functions --------------------------*/
55 /*--------------------- Export Variables --------------------------*/
59 * register net_device (AP) for hostap deamon
71 static int hostap_enable_hostapd(PSDevice pDevice
, int rtnl_locked
)
74 struct net_device
*dev
= pDevice
->dev
;
76 const struct net_device_ops apdev_netdev_ops
= {
77 .ndo_start_xmit
= pDevice
->tx_80211
,
80 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: Enabling hostapd mode\n", dev
->name
);
82 pDevice
->apdev
= alloc_etherdev(sizeof(*apdev_priv
));
83 if (pDevice
->apdev
== NULL
)
86 apdev_priv
= netdev_priv(pDevice
->apdev
);
87 *apdev_priv
= *pDevice
;
88 eth_hw_addr_inherit(pDevice
->apdev
, dev
);
90 pDevice
->apdev
->netdev_ops
= &apdev_netdev_ops
;
92 pDevice
->apdev
->type
= ARPHRD_IEEE80211
;
94 pDevice
->apdev
->base_addr
= dev
->base_addr
;
95 pDevice
->apdev
->irq
= dev
->irq
;
96 pDevice
->apdev
->mem_start
= dev
->mem_start
;
97 pDevice
->apdev
->mem_end
= dev
->mem_end
;
98 sprintf(pDevice
->apdev
->name
, "%sap", dev
->name
);
100 ret
= register_netdevice(pDevice
->apdev
);
102 ret
= register_netdev(pDevice
->apdev
);
104 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: register_netdevice(AP) failed!\n",
106 free_netdev(pDevice
->apdev
);
107 pDevice
->apdev
= NULL
;
111 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: Registered netdevice %s for AP management\n",
112 dev
->name
, pDevice
->apdev
->name
);
114 KeyvInitTable(&pDevice
->sKey
, pDevice
->PortOffset
);
121 * unregister net_device(AP)
133 static int hostap_disable_hostapd(PSDevice pDevice
, int rtnl_locked
)
135 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: disabling hostapd mode\n", pDevice
->dev
->name
);
137 if (pDevice
->apdev
&& pDevice
->apdev
->name
&& pDevice
->apdev
->name
[0]) {
139 unregister_netdevice(pDevice
->apdev
);
141 unregister_netdev(pDevice
->apdev
);
142 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"%s: Netdevice %s unregistered\n",
143 pDevice
->dev
->name
, pDevice
->apdev
->name
);
146 free_netdev(pDevice
->apdev
);
147 pDevice
->apdev
= NULL
;
148 pDevice
->bEnable8021x
= false;
149 pDevice
->bEnableHostWEP
= false;
150 pDevice
->bEncryptionEnable
= false;
152 //4.2007-0118-03,<Add> by EinsnLiu
153 //execute some clear work
154 pDevice
->pMgmt
->byCSSPK
= KEY_CTL_NONE
;
155 pDevice
->pMgmt
->byCSSGK
= KEY_CTL_NONE
;
156 KeyvInitTable(&pDevice
->sKey
, pDevice
->PortOffset
);
163 * Set enable/disable hostapd mode
175 int vt6655_hostap_set_hostapd(PSDevice pDevice
, int val
, int rtnl_locked
)
177 if (val
< 0 || val
> 1)
180 if (pDevice
->bEnableHostapd
== val
)
183 pDevice
->bEnableHostapd
= val
;
186 return hostap_enable_hostapd(pDevice
, rtnl_locked
);
188 return hostap_disable_hostapd(pDevice
, rtnl_locked
);
193 * remove station function supported for hostap deamon
204 static int hostap_remove_sta(PSDevice pDevice
,
205 struct viawget_hostapd_param
*param
)
207 unsigned int uNodeIndex
;
209 if (BSSDBbIsSTAInNodeDB(pDevice
->pMgmt
, param
->sta_addr
, &uNodeIndex
))
210 BSSvRemoveOneNode(pDevice
, uNodeIndex
);
219 * add a station from hostap deamon
230 static int hostap_add_sta(PSDevice pDevice
,
231 struct viawget_hostapd_param
*param
)
233 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
234 unsigned int uNodeIndex
;
236 if (!BSSDBbIsSTAInNodeDB(pMgmt
, param
->sta_addr
, &uNodeIndex
))
237 BSSvCreateOneNode((PSDevice
)pDevice
, &uNodeIndex
);
239 memcpy(pMgmt
->sNodeDBTable
[uNodeIndex
].abyMACAddr
, param
->sta_addr
, WLAN_ADDR_LEN
);
240 pMgmt
->sNodeDBTable
[uNodeIndex
].eNodeState
= NODE_ASSOC
;
241 pMgmt
->sNodeDBTable
[uNodeIndex
].wCapInfo
= param
->u
.add_sta
.capability
;
242 // TODO listenInterval
243 pMgmt
->sNodeDBTable
[uNodeIndex
].bPSEnable
= false;
244 pMgmt
->sNodeDBTable
[uNodeIndex
].bySuppRate
= param
->u
.add_sta
.tx_supp_rates
;
247 pMgmt
->sNodeDBTable
[uNodeIndex
].wTxDataRate
=
248 pMgmt
->sNodeDBTable
[uNodeIndex
].wMaxSuppRate
;
249 // set max basic rate
250 pMgmt
->sNodeDBTable
[uNodeIndex
].wMaxBasicRate
= RATE_2M
;
251 // Todo: check sta preamble, if ap can't support, set status code
252 pMgmt
->sNodeDBTable
[uNodeIndex
].bShortPreamble
=
253 WLAN_GET_CAP_INFO_SHORTPREAMBLE(pMgmt
->sNodeDBTable
[uNodeIndex
].wCapInfo
);
255 pMgmt
->sNodeDBTable
[uNodeIndex
].wAID
= (unsigned short)param
->u
.add_sta
.aid
;
257 pMgmt
->sNodeDBTable
[uNodeIndex
].ulLastRxJiffer
= jiffies
;
259 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Add STA AID= %d \n", pMgmt
->sNodeDBTable
[uNodeIndex
].wAID
);
260 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"MAC=%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X \n",
268 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Max Support rate = %d \n",
269 pMgmt
->sNodeDBTable
[uNodeIndex
].wMaxSuppRate
);
288 static int hostap_get_info_sta(PSDevice pDevice
,
289 struct viawget_hostapd_param
*param
)
291 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
292 unsigned int uNodeIndex
;
294 if (BSSDBbIsSTAInNodeDB(pMgmt
, param
->sta_addr
, &uNodeIndex
)) {
295 param
->u
.get_info_sta
.inactive_sec
=
296 (jiffies
- pMgmt
->sNodeDBTable
[uNodeIndex
].ulLastRxJiffer
) / HZ
;
317 static int hostap_set_flags_sta(PSDevice pDevice
,
318 struct viawget_hostapd_param
*param
)
320 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
321 unsigned int uNodeIndex
;
323 if (BSSDBbIsSTAInNodeDB(pMgmt
, param
->sta_addr
, &uNodeIndex
)) {
324 pMgmt
->sNodeDBTable
[uNodeIndex
].dwFlags
|= param
->u
.set_flags_sta
.flags_or
;
325 pMgmt
->sNodeDBTable
[uNodeIndex
].dwFlags
&= param
->u
.set_flags_sta
.flags_and
;
326 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" dwFlags = %x \n",
327 (unsigned int)pMgmt
->sNodeDBTable
[uNodeIndex
].dwFlags
);
337 * set generic element (wpa ie)
348 static int hostap_set_generic_element(PSDevice pDevice
,
349 struct viawget_hostapd_param
*param
)
351 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
353 memcpy(pMgmt
->abyWPAIE
,
354 param
->u
.generic_elem
.data
,
355 param
->u
.generic_elem
.len
358 pMgmt
->wWPAIELen
= param
->u
.generic_elem
.len
;
360 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"pMgmt->wWPAIELen = %d\n", pMgmt
->wWPAIELen
);
363 if (pMgmt
->wWPAIELen
== 0) {
364 pMgmt
->eAuthenMode
= WMAC_AUTH_OPEN
;
365 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" No WPAIE, Disable WPA \n");
368 if ((pMgmt
->abyWPAIE
[0] == WLAN_EID_RSN_WPA
) ||
369 (pMgmt
->abyWPAIE
[0] == WLAN_EID_RSN
)) {
370 pMgmt
->eAuthenMode
= WMAC_AUTH_WPANONE
;
371 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"Set WPAIE enable WPA\n");
381 * flush station nodes table.
392 static void hostap_flush_sta(PSDevice pDevice
)
394 // reserved node index =0 for multicast node.
395 BSSvClearNodeDBTable(pDevice
, 1);
396 pDevice
->uAssocCount
= 0;
403 * set each stations encryption key
414 static int hostap_set_encryption(PSDevice pDevice
,
415 struct viawget_hostapd_param
*param
,
418 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
419 unsigned long dwKeyIndex
= 0;
420 unsigned char abyKey
[MAX_KEY_LEN
];
421 unsigned char abySeq
[MAX_KEY_LEN
];
422 unsigned long long KeyRSC
;
423 unsigned char byKeyDecMode
= KEY_CTL_WEP
;
426 bool bKeyTableFull
= false;
427 unsigned short wKeyCtl
= 0;
429 param
->u
.crypt
.err
= 0;
431 if (param
->u
.crypt
.alg
> WPA_ALG_CCMP
)
434 if ((param
->u
.crypt
.idx
> 3) || (param
->u
.crypt
.key_len
> MAX_KEY_LEN
)) {
435 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_KEY_SET_FAILED
;
436 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" HOSTAP_CRYPT_ERR_KEY_SET_FAILED\n");
440 if (is_broadcast_ether_addr(param
->sta_addr
)) {
441 if (param
->u
.crypt
.idx
>= MAX_GROUP_KEY
)
446 if (BSSDBbIsSTAInNodeDB(pMgmt
, param
->sta_addr
, &iNodeIndex
) == false) {
447 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_UNKNOWN_ADDR
;
448 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" HOSTAP_CRYPT_ERR_UNKNOWN_ADDR\n");
452 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" hostap_set_encryption: sta_index %d \n", iNodeIndex
);
453 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" hostap_set_encryption: alg %d \n", param
->u
.crypt
.alg
);
455 if (param
->u
.crypt
.alg
== WPA_ALG_NONE
) {
456 if (pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
) {
457 if (!KeybRemoveKey(&(pDevice
->sKey
),
459 pMgmt
->sNodeDBTable
[iNodeIndex
].dwKeyIndex
,
460 pDevice
->PortOffset
)) {
461 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"KeybRemoveKey fail \n");
463 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= false;
465 pMgmt
->sNodeDBTable
[iNodeIndex
].byKeyIndex
= 0;
466 pMgmt
->sNodeDBTable
[iNodeIndex
].dwKeyIndex
= 0;
467 pMgmt
->sNodeDBTable
[iNodeIndex
].uWepKeyLength
= 0;
468 pMgmt
->sNodeDBTable
[iNodeIndex
].KeyRSC
= 0;
469 pMgmt
->sNodeDBTable
[iNodeIndex
].dwTSC47_16
= 0;
470 pMgmt
->sNodeDBTable
[iNodeIndex
].wTSC15_0
= 0;
471 pMgmt
->sNodeDBTable
[iNodeIndex
].byCipherSuite
= 0;
472 memset(&pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[0],
480 memcpy(abyKey
, param
->u
.crypt
.key
, param
->u
.crypt
.key_len
);
481 // copy to node key tbl
482 pMgmt
->sNodeDBTable
[iNodeIndex
].byKeyIndex
= param
->u
.crypt
.idx
;
483 pMgmt
->sNodeDBTable
[iNodeIndex
].uWepKeyLength
= param
->u
.crypt
.key_len
;
484 memcpy(&pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[0],
486 param
->u
.crypt
.key_len
489 dwKeyIndex
= (unsigned long)(param
->u
.crypt
.idx
);
490 if (param
->u
.crypt
.flags
& HOSTAP_CRYPT_FLAG_SET_TX_KEY
) {
491 pDevice
->byKeyIndex
= (unsigned char)dwKeyIndex
;
492 pDevice
->bTransmitKey
= true;
493 dwKeyIndex
|= (1 << 31);
496 if (param
->u
.crypt
.alg
== WPA_ALG_WEP
) {
497 if ((pDevice
->bEnable8021x
== false) || (iNodeIndex
== 0)) {
498 KeybSetDefaultKey(&(pDevice
->sKey
),
499 dwKeyIndex
& ~(BIT30
| USE_KEYRSC
),
500 param
->u
.crypt
.key_len
,
508 // 8021x enable, individual key
509 dwKeyIndex
|= (1 << 30); // set pairwise key
510 if (KeybSetKey(&(pDevice
->sKey
),
512 dwKeyIndex
& ~(USE_KEYRSC
),
513 param
->u
.crypt
.key_len
,
515 (unsigned char *)abyKey
,
518 pDevice
->byLocalID
)) {
519 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= true;
523 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= false;
524 bKeyTableFull
= true;
527 pDevice
->eEncryptionStatus
= Ndis802_11Encryption1Enabled
;
528 pDevice
->bEncryptionEnable
= true;
529 pMgmt
->byCSSPK
= KEY_CTL_WEP
;
530 pMgmt
->byCSSGK
= KEY_CTL_WEP
;
531 pMgmt
->sNodeDBTable
[iNodeIndex
].byCipherSuite
= KEY_CTL_WEP
;
532 pMgmt
->sNodeDBTable
[iNodeIndex
].dwKeyIndex
= dwKeyIndex
;
536 if (param
->u
.crypt
.seq
) {
537 memcpy(&abySeq
, param
->u
.crypt
.seq
, 8);
538 for (ii
= 0; ii
< 8; ii
++)
539 KeyRSC
|= (unsigned long)abySeq
[ii
] << (ii
* 8);
541 dwKeyIndex
|= 1 << 29;
542 pMgmt
->sNodeDBTable
[iNodeIndex
].KeyRSC
= KeyRSC
;
545 if (param
->u
.crypt
.alg
== WPA_ALG_TKIP
) {
546 if (param
->u
.crypt
.key_len
!= MAX_KEY_LEN
)
548 pDevice
->eEncryptionStatus
= Ndis802_11Encryption2Enabled
;
549 byKeyDecMode
= KEY_CTL_TKIP
;
550 pMgmt
->byCSSPK
= KEY_CTL_TKIP
;
551 pMgmt
->byCSSGK
= KEY_CTL_TKIP
;
554 if (param
->u
.crypt
.alg
== WPA_ALG_CCMP
) {
555 if ((param
->u
.crypt
.key_len
!= AES_KEY_LEN
) ||
556 (pDevice
->byLocalID
<= REV_ID_VT3253_A1
))
558 pDevice
->eEncryptionStatus
= Ndis802_11Encryption3Enabled
;
559 byKeyDecMode
= KEY_CTL_CCMP
;
560 pMgmt
->byCSSPK
= KEY_CTL_CCMP
;
561 pMgmt
->byCSSGK
= KEY_CTL_CCMP
;
564 if (iNodeIndex
== 0) {
565 KeybSetDefaultKey(&(pDevice
->sKey
),
567 param
->u
.crypt
.key_len
,
573 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= true;
576 dwKeyIndex
|= (1 << 30); // set pairwise key
577 if (KeybSetKey(&(pDevice
->sKey
),
580 param
->u
.crypt
.key_len
,
582 (unsigned char *)abyKey
,
585 pDevice
->byLocalID
)) {
586 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= true;
590 pMgmt
->sNodeDBTable
[iNodeIndex
].bOnFly
= false;
591 bKeyTableFull
= true;
592 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" Key Table Full\n");
598 wKeyCtl
&= 0x7F00; // clear all key control filed
599 wKeyCtl
|= (byKeyDecMode
<< 4);
600 wKeyCtl
|= (byKeyDecMode
);
601 wKeyCtl
|= 0x0044; // use group key for all address
602 wKeyCtl
|= 0x4000; // disable KeyTable[MAX_KEY_TABLE-1] on-fly to genernate rx int
603 MACvSetDefaultKeyCtl(pDevice
->PortOffset
, wKeyCtl
, MAX_KEY_TABLE
-1, pDevice
->byLocalID
);
606 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" Set key sta_index= %d \n", iNodeIndex
);
607 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" tx_index=%d len=%d \n", param
->u
.crypt
.idx
,
608 param
->u
.crypt
.key_len
);
609 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
" key=%x-%x-%x-%x-%x-xxxxx \n",
610 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[0],
611 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[1],
612 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[2],
613 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[3],
614 pMgmt
->sNodeDBTable
[iNodeIndex
].abyWepKey
[4]
618 pDevice
->bEncryptionEnable
= true;
619 pMgmt
->sNodeDBTable
[iNodeIndex
].byCipherSuite
= byKeyDecMode
;
620 pMgmt
->sNodeDBTable
[iNodeIndex
].dwKeyIndex
= dwKeyIndex
;
621 pMgmt
->sNodeDBTable
[iNodeIndex
].dwTSC47_16
= 0;
622 pMgmt
->sNodeDBTable
[iNodeIndex
].wTSC15_0
= 0;
629 * get each stations encryption key
640 static int hostap_get_encryption(PSDevice pDevice
,
641 struct viawget_hostapd_param
*param
,
644 PSMgmtObject pMgmt
= pDevice
->pMgmt
;
648 param
->u
.crypt
.err
= 0;
650 if (is_broadcast_ether_addr(param
->sta_addr
)) {
653 if (BSSDBbIsSTAInNodeDB(pMgmt
, param
->sta_addr
, &iNodeIndex
) == false) {
654 param
->u
.crypt
.err
= HOSTAP_CRYPT_ERR_UNKNOWN_ADDR
;
655 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"hostap_get_encryption: HOSTAP_CRYPT_ERR_UNKNOWN_ADDR\n");
659 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"hostap_get_encryption: %d\n", iNodeIndex
);
660 memset(param
->u
.crypt
.seq
, 0, 8);
661 for (ii
= 0; ii
< 8; ii
++)
662 param
->u
.crypt
.seq
[ii
] = (unsigned char)pMgmt
->sNodeDBTable
[iNodeIndex
].KeyRSC
>> (ii
* 8);
669 * vt6655_hostap_ioctl main function supported for hostap deamon.
680 int vt6655_hostap_ioctl(PSDevice pDevice
, struct iw_point
*p
)
682 struct viawget_hostapd_param
*param
;
686 if (p
->length
< sizeof(struct viawget_hostapd_param
) ||
687 p
->length
> VIAWGET_HOSTAPD_MAX_BUF_SIZE
|| !p
->pointer
)
690 param
= kmalloc((int)p
->length
, GFP_KERNEL
);
694 if (copy_from_user(param
, p
->pointer
, p
->length
)) {
699 switch (param
->cmd
) {
700 case VIAWGET_HOSTAPD_SET_ENCRYPTION
:
701 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SET_ENCRYPTION \n");
702 spin_lock_irq(&pDevice
->lock
);
703 ret
= hostap_set_encryption(pDevice
, param
, p
->length
);
704 spin_unlock_irq(&pDevice
->lock
);
706 case VIAWGET_HOSTAPD_GET_ENCRYPTION
:
707 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_GET_ENCRYPTION \n");
708 spin_lock_irq(&pDevice
->lock
);
709 ret
= hostap_get_encryption(pDevice
, param
, p
->length
);
710 spin_unlock_irq(&pDevice
->lock
);
712 case VIAWGET_HOSTAPD_SET_ASSOC_AP_ADDR
:
713 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SET_ASSOC_AP_ADDR \n");
716 case VIAWGET_HOSTAPD_FLUSH
:
717 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_FLUSH \n");
718 spin_lock_irq(&pDevice
->lock
);
719 hostap_flush_sta(pDevice
);
720 spin_unlock_irq(&pDevice
->lock
);
722 case VIAWGET_HOSTAPD_ADD_STA
:
723 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_ADD_STA \n");
724 spin_lock_irq(&pDevice
->lock
);
725 ret
= hostap_add_sta(pDevice
, param
);
726 spin_unlock_irq(&pDevice
->lock
);
728 case VIAWGET_HOSTAPD_REMOVE_STA
:
729 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_REMOVE_STA \n");
730 spin_lock_irq(&pDevice
->lock
);
731 ret
= hostap_remove_sta(pDevice
, param
);
732 spin_unlock_irq(&pDevice
->lock
);
734 case VIAWGET_HOSTAPD_GET_INFO_STA
:
735 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_GET_INFO_STA \n");
736 ret
= hostap_get_info_sta(pDevice
, param
);
739 case VIAWGET_HOSTAPD_SET_FLAGS_STA
:
740 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SET_FLAGS_STA \n");
741 ret
= hostap_set_flags_sta(pDevice
, param
);
743 case VIAWGET_HOSTAPD_MLME
:
744 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_MLME \n");
747 case VIAWGET_HOSTAPD_SET_GENERIC_ELEMENT
:
748 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SET_GENERIC_ELEMENT \n");
749 ret
= hostap_set_generic_element(pDevice
, param
);
751 case VIAWGET_HOSTAPD_SCAN_REQ
:
752 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_SCAN_REQ \n");
755 case VIAWGET_HOSTAPD_STA_CLEAR_STATS
:
756 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"VIAWGET_HOSTAPD_STA_CLEAR_STATS \n");
760 DBG_PRT(MSG_LEVEL_DEBUG
, KERN_INFO
"vt6655_hostap_ioctl: unknown cmd=%d\n",
766 if ((ret
== 0) && ap_ioctl
) {
767 if (copy_to_user(p
->pointer
, param
, p
->length
))