blob: 57a08c5771f29fd93568fe6fdc0a4d841dbed218 [file] [log] [blame]
Forest Bond5449c682009-04-25 10:30:44 -04001/*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
4 *
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.
9 *
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.
14 *
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.
18 *
19 * File: hostap.c
20 *
21 * Purpose: handle hostap deamon ioctl input/out functions
22 *
23 * Author: Lyndon Chen
24 *
25 * Date: Oct. 20, 2003
26 *
27 * Functions:
28 *
29 * Revision History:
30 *
31 */
32
Forest Bond5449c682009-04-25 10:30:44 -040033#include "hostap.h"
Forest Bond5449c682009-04-25 10:30:44 -040034#include "iocmd.h"
Forest Bond5449c682009-04-25 10:30:44 -040035#include "mac.h"
Forest Bond5449c682009-04-25 10:30:44 -040036#include "card.h"
Forest Bond5449c682009-04-25 10:30:44 -040037#include "baseband.h"
Forest Bond5449c682009-04-25 10:30:44 -040038#include "wpactl.h"
Forest Bond5449c682009-04-25 10:30:44 -040039#include "key.h"
Forest Bond5449c682009-04-25 10:30:44 -040040
41#define VIAWGET_HOSTAPD_MAX_BUF_SIZE 1024
42#define HOSTAP_CRYPT_FLAG_SET_TX_KEY BIT0
Forest Bond5449c682009-04-25 10:30:44 -040043#define HOSTAP_CRYPT_ERR_UNKNOWN_ADDR 3
Forest Bond5449c682009-04-25 10:30:44 -040044#define HOSTAP_CRYPT_ERR_KEY_SET_FAILED 5
Forest Bond5449c682009-04-25 10:30:44 -040045
46/*--------------------- Static Definitions -------------------------*/
47
48/*--------------------- Static Classes ----------------------------*/
49
50/*--------------------- Static Variables --------------------------*/
51//static int msglevel =MSG_LEVEL_DEBUG;
Joe Perches4b61d802013-03-18 10:44:49 -070052static int msglevel = MSG_LEVEL_INFO;
Forest Bond5449c682009-04-25 10:30:44 -040053
54/*--------------------- Static Functions --------------------------*/
55
Forest Bond5449c682009-04-25 10:30:44 -040056/*--------------------- Export Variables --------------------------*/
57
Forest Bond5449c682009-04-25 10:30:44 -040058/*
59 * Description:
60 * register net_device (AP) for hostap deamon
61 *
62 * Parameters:
63 * In:
64 * pDevice -
65 * rtnl_locked -
66 * Out:
67 *
68 * Return Value:
69 *
70 */
71
72static int hostap_enable_hostapd(PSDevice pDevice, int rtnl_locked)
73{
Joe Perches4b61d802013-03-18 10:44:49 -070074 PSDevice apdev_priv;
Forest Bond5449c682009-04-25 10:30:44 -040075 struct net_device *dev = pDevice->dev;
76 int ret;
Jim Liebdb6cb902009-07-23 17:20:49 -070077 const struct net_device_ops apdev_netdev_ops = {
78 .ndo_start_xmit = pDevice->tx_80211,
79 };
Forest Bond5449c682009-04-25 10:30:44 -040080
Joe Perches4b61d802013-03-18 10:44:49 -070081 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "%s: Enabling hostapd mode\n", dev->name);
Forest Bond5449c682009-04-25 10:30:44 -040082
Hema Prathaban3523a902013-05-17 11:14:56 +053083 pDevice->apdev = alloc_etherdev(sizeof(*apdev_priv));
Forest Bond5449c682009-04-25 10:30:44 -040084 if (pDevice->apdev == NULL)
85 return -ENOMEM;
Forest Bond5449c682009-04-25 10:30:44 -040086
Joe Perches4b61d802013-03-18 10:44:49 -070087 apdev_priv = netdev_priv(pDevice->apdev);
88 *apdev_priv = *pDevice;
Forest Bond5449c682009-04-25 10:30:44 -040089 memcpy(pDevice->apdev->dev_addr, dev->dev_addr, ETH_ALEN);
Forest Bond57211352009-06-02 14:44:33 -040090
Jim Lieb612822f2009-08-12 14:54:03 -070091 pDevice->apdev->netdev_ops = &apdev_netdev_ops;
Forest Bond57211352009-06-02 14:44:33 -040092
Forest Bond5449c682009-04-25 10:30:44 -040093 pDevice->apdev->type = ARPHRD_IEEE80211;
94
95 pDevice->apdev->base_addr = dev->base_addr;
96 pDevice->apdev->irq = dev->irq;
97 pDevice->apdev->mem_start = dev->mem_start;
98 pDevice->apdev->mem_end = dev->mem_end;
99 sprintf(pDevice->apdev->name, "%sap", dev->name);
100 if (rtnl_locked)
101 ret = register_netdevice(pDevice->apdev);
102 else
103 ret = register_netdev(pDevice->apdev);
104 if (ret) {
Jim Lieb7e809a92009-07-30 10:27:21 -0700105 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "%s: register_netdevice(AP) failed!\n",
Joe Perches4b61d802013-03-18 10:44:49 -0700106 dev->name);
Wei Yongjun3147cf52013-05-23 17:28:05 +0800107 free_netdev(pDevice->apdev);
108 pDevice->apdev = NULL;
Forest Bond5449c682009-04-25 10:30:44 -0400109 return -1;
110 }
111
Joe Perches4b61d802013-03-18 10:44:49 -0700112 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "%s: Registered netdevice %s for AP management\n",
113 dev->name, pDevice->apdev->name);
Forest Bond5449c682009-04-25 10:30:44 -0400114
Joe Perches4b61d802013-03-18 10:44:49 -0700115 KeyvInitTable(&pDevice->sKey, pDevice->PortOffset);
Forest Bond5449c682009-04-25 10:30:44 -0400116
117 return 0;
118}
119
120/*
121 * Description:
122 * unregister net_device(AP)
123 *
124 * Parameters:
125 * In:
126 * pDevice -
127 * rtnl_locked -
128 * Out:
129 *
130 * Return Value:
131 *
132 */
133
134static int hostap_disable_hostapd(PSDevice pDevice, int rtnl_locked)
135{
Joe Perches4b61d802013-03-18 10:44:49 -0700136 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "%s: disabling hostapd mode\n", pDevice->dev->name);
Forest Bond5449c682009-04-25 10:30:44 -0400137
Joe Perches4b61d802013-03-18 10:44:49 -0700138 if (pDevice->apdev && pDevice->apdev->name && pDevice->apdev->name[0]) {
Forest Bond5449c682009-04-25 10:30:44 -0400139 if (rtnl_locked)
140 unregister_netdevice(pDevice->apdev);
141 else
142 unregister_netdev(pDevice->apdev);
Joe Perches4b61d802013-03-18 10:44:49 -0700143 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "%s: Netdevice %s unregistered\n",
144 pDevice->dev->name, pDevice->apdev->name);
Forest Bond5449c682009-04-25 10:30:44 -0400145 }
Hema Prathaban3030d402013-05-15 21:21:17 +0530146 free_netdev(pDevice->apdev);
Forest Bond5449c682009-04-25 10:30:44 -0400147 pDevice->apdev = NULL;
Joe Perches4b61d802013-03-18 10:44:49 -0700148 pDevice->bEnable8021x = false;
149 pDevice->bEnableHostWEP = false;
150 pDevice->bEncryptionEnable = false;
Forest Bond5449c682009-04-25 10:30:44 -0400151
152//4.2007-0118-03,<Add> by EinsnLiu
153//execute some clear work
Joe Perches4b61d802013-03-18 10:44:49 -0700154 pDevice->pMgmt->byCSSPK = KEY_CTL_NONE;
155 pDevice->pMgmt->byCSSGK = KEY_CTL_NONE;
156 KeyvInitTable(&pDevice->sKey, pDevice->PortOffset);
Forest Bond5449c682009-04-25 10:30:44 -0400157
158 return 0;
159}
160
Forest Bond5449c682009-04-25 10:30:44 -0400161/*
162 * Description:
163 * Set enable/disable hostapd mode
164 *
165 * Parameters:
166 * In:
167 * pDevice -
168 * rtnl_locked -
169 * Out:
170 *
171 * Return Value:
172 *
173 */
174
Forest Bondecf739e2010-04-17 11:03:47 -0400175int vt6655_hostap_set_hostapd(PSDevice pDevice, int val, int rtnl_locked)
Forest Bond5449c682009-04-25 10:30:44 -0400176{
177 if (val < 0 || val > 1)
178 return -EINVAL;
179
180 if (pDevice->bEnableHostapd == val)
181 return 0;
182
183 pDevice->bEnableHostapd = val;
184
185 if (val)
186 return hostap_enable_hostapd(pDevice, rtnl_locked);
187 else
188 return hostap_disable_hostapd(pDevice, rtnl_locked);
189}
190
Forest Bond5449c682009-04-25 10:30:44 -0400191/*
192 * Description:
193 * remove station function supported for hostap deamon
194 *
195 * Parameters:
196 * In:
197 * pDevice -
198 * param -
199 * Out:
200 *
201 * Return Value:
202 *
203 */
204static int hostap_remove_sta(PSDevice pDevice,
Joe Perches4b61d802013-03-18 10:44:49 -0700205 struct viawget_hostapd_param *param)
Forest Bond5449c682009-04-25 10:30:44 -0400206{
Charles Clémentb6e95cd2010-06-02 09:52:01 -0700207 unsigned int uNodeIndex;
Forest Bond5449c682009-04-25 10:30:44 -0400208
Joe Perches4b61d802013-03-18 10:44:49 -0700209 if (BSSDBbIsSTAInNodeDB(pDevice->pMgmt, param->sta_addr, &uNodeIndex)) {
210 BSSvRemoveOneNode(pDevice, uNodeIndex);
Joe Perches5e0cc8a2013-03-18 20:55:37 -0700211 } else {
Joe Perches4b61d802013-03-18 10:44:49 -0700212 return -ENOENT;
213 }
Forest Bond5449c682009-04-25 10:30:44 -0400214 return 0;
215}
216
217/*
218 * Description:
219 * add a station from hostap deamon
220 *
221 * Parameters:
222 * In:
223 * pDevice -
224 * param -
225 * Out:
226 *
227 * Return Value:
228 *
229 */
230static int hostap_add_sta(PSDevice pDevice,
Joe Perches4b61d802013-03-18 10:44:49 -0700231 struct viawget_hostapd_param *param)
Forest Bond5449c682009-04-25 10:30:44 -0400232{
Joe Perches4b61d802013-03-18 10:44:49 -0700233 PSMgmtObject pMgmt = pDevice->pMgmt;
Charles Clémentb6e95cd2010-06-02 09:52:01 -0700234 unsigned int uNodeIndex;
Forest Bond5449c682009-04-25 10:30:44 -0400235
Joe Perches4b61d802013-03-18 10:44:49 -0700236 if (!BSSDBbIsSTAInNodeDB(pMgmt, param->sta_addr, &uNodeIndex)) {
237 BSSvCreateOneNode((PSDevice)pDevice, &uNodeIndex);
238 }
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;
Forest Bond5449c682009-04-25 10:30:44 -0400242// TODO listenInterval
243// pMgmt->sNodeDBTable[uNodeIndex].wListenInterval = 1;
Joe Perches4b61d802013-03-18 10:44:49 -0700244 pMgmt->sNodeDBTable[uNodeIndex].bPSEnable = false;
245 pMgmt->sNodeDBTable[uNodeIndex].bySuppRate = param->u.add_sta.tx_supp_rates;
Forest Bond5449c682009-04-25 10:30:44 -0400246
Joe Perches4b61d802013-03-18 10:44:49 -0700247 // set max tx rate
248 pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate =
249 pMgmt->sNodeDBTable[uNodeIndex].wMaxSuppRate;
250 // set max basic rate
251 pMgmt->sNodeDBTable[uNodeIndex].wMaxBasicRate = RATE_2M;
252 // Todo: check sta preamble, if ap can't support, set status code
253 pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble =
254 WLAN_GET_CAP_INFO_SHORTPREAMBLE(pMgmt->sNodeDBTable[uNodeIndex].wCapInfo);
Forest Bond5449c682009-04-25 10:30:44 -0400255
Joe Perches4b61d802013-03-18 10:44:49 -0700256 pMgmt->sNodeDBTable[uNodeIndex].wAID = (unsigned short)param->u.add_sta.aid;
Jim Lieb612822f2009-08-12 14:54:03 -0700257
Joe Perches4b61d802013-03-18 10:44:49 -0700258 pMgmt->sNodeDBTable[uNodeIndex].ulLastRxJiffer = jiffies;
Jim Lieb612822f2009-08-12 14:54:03 -0700259
Joe Perches4b61d802013-03-18 10:44:49 -0700260 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Add STA AID= %d \n", pMgmt->sNodeDBTable[uNodeIndex].wAID);
261 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "MAC=%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X \n",
262 param->sta_addr[0],
263 param->sta_addr[1],
264 param->sta_addr[2],
265 param->sta_addr[3],
266 param->sta_addr[4],
267 param->sta_addr[5]
268 );
269 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Max Support rate = %d \n",
270 pMgmt->sNodeDBTable[uNodeIndex].wMaxSuppRate);
Forest Bond5449c682009-04-25 10:30:44 -0400271
272 return 0;
273}
274
275/*
276 * Description:
277 * get station info
278 *
279 * Parameters:
280 * In:
281 * pDevice -
282 * param -
283 * Out:
284 *
285 * Return Value:
286 *
287 */
288
289static int hostap_get_info_sta(PSDevice pDevice,
Joe Perches4b61d802013-03-18 10:44:49 -0700290 struct viawget_hostapd_param *param)
Forest Bond5449c682009-04-25 10:30:44 -0400291{
Joe Perches4b61d802013-03-18 10:44:49 -0700292 PSMgmtObject pMgmt = pDevice->pMgmt;
Charles Clémentb6e95cd2010-06-02 09:52:01 -0700293 unsigned int uNodeIndex;
Forest Bond5449c682009-04-25 10:30:44 -0400294
Joe Perches4b61d802013-03-18 10:44:49 -0700295 if (BSSDBbIsSTAInNodeDB(pMgmt, param->sta_addr, &uNodeIndex)) {
296 param->u.get_info_sta.inactive_sec =
297 (jiffies - pMgmt->sNodeDBTable[uNodeIndex].ulLastRxJiffer) / HZ;
Jim Lieb612822f2009-08-12 14:54:03 -0700298
Joe Perches4b61d802013-03-18 10:44:49 -0700299 //param->u.get_info_sta.txexc = pMgmt->sNodeDBTable[uNodeIndex].uTxAttempts;
Joe Perches5e0cc8a2013-03-18 20:55:37 -0700300 } else {
Joe Perches4b61d802013-03-18 10:44:49 -0700301 return -ENOENT;
Forest Bond5449c682009-04-25 10:30:44 -0400302 }
303
304 return 0;
305}
306
307/*
308 * Description:
309 * reset txexec
310 *
311 * Parameters:
312 * In:
313 * pDevice -
314 * param -
315 * Out:
Charles Clément5a5a2a62010-08-01 17:15:49 +0200316 * true, false
Forest Bond5449c682009-04-25 10:30:44 -0400317 *
318 * Return Value:
319 *
320 */
321/*
Joe Perches4b61d802013-03-18 10:44:49 -0700322 static int hostap_reset_txexc_sta(PSDevice pDevice,
323 struct viawget_hostapd_param *param)
324 {
325 PSMgmtObject pMgmt = pDevice->pMgmt;
326 unsigned int uNodeIndex;
Forest Bond5449c682009-04-25 10:30:44 -0400327
Joe Perches4b61d802013-03-18 10:44:49 -0700328 if (BSSDBbIsSTAInNodeDB(pMgmt, param->sta_addr, &uNodeIndex)) {
329 pMgmt->sNodeDBTable[uNodeIndex].uTxAttempts = 0;
Joe Perches5e0cc8a2013-03-18 20:55:37 -0700330 } else {
Joe Perches4b61d802013-03-18 10:44:49 -0700331 return -ENOENT;
332 }
Forest Bond5449c682009-04-25 10:30:44 -0400333
Joe Perches4b61d802013-03-18 10:44:49 -0700334 return 0;
335 }
Forest Bond5449c682009-04-25 10:30:44 -0400336*/
337
338/*
339 * Description:
340 * set station flag
341 *
342 * Parameters:
343 * In:
344 * pDevice -
345 * param -
346 * Out:
347 *
348 * Return Value:
349 *
350 */
351static int hostap_set_flags_sta(PSDevice pDevice,
Joe Perches4b61d802013-03-18 10:44:49 -0700352 struct viawget_hostapd_param *param)
Forest Bond5449c682009-04-25 10:30:44 -0400353{
Joe Perches4b61d802013-03-18 10:44:49 -0700354 PSMgmtObject pMgmt = pDevice->pMgmt;
Charles Clémentb6e95cd2010-06-02 09:52:01 -0700355 unsigned int uNodeIndex;
Forest Bond5449c682009-04-25 10:30:44 -0400356
Joe Perches4b61d802013-03-18 10:44:49 -0700357 if (BSSDBbIsSTAInNodeDB(pMgmt, param->sta_addr, &uNodeIndex)) {
Forest Bond5449c682009-04-25 10:30:44 -0400358 pMgmt->sNodeDBTable[uNodeIndex].dwFlags |= param->u.set_flags_sta.flags_or;
359 pMgmt->sNodeDBTable[uNodeIndex].dwFlags &= param->u.set_flags_sta.flags_and;
Jim Lieb7e809a92009-07-30 10:27:21 -0700360 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " dwFlags = %x \n",
Joe Perches4b61d802013-03-18 10:44:49 -0700361 (unsigned int)pMgmt->sNodeDBTable[uNodeIndex].dwFlags);
Joe Perches5e0cc8a2013-03-18 20:55:37 -0700362 } else {
Joe Perches4b61d802013-03-18 10:44:49 -0700363 return -ENOENT;
Forest Bond5449c682009-04-25 10:30:44 -0400364 }
365
366 return 0;
367}
368
Forest Bond5449c682009-04-25 10:30:44 -0400369/*
370 * Description:
371 * set generic element (wpa ie)
372 *
373 * Parameters:
374 * In:
375 * pDevice -
376 * param -
377 * Out:
378 *
379 * Return Value:
380 *
381 */
382static int hostap_set_generic_element(PSDevice pDevice,
Joe Perches4b61d802013-03-18 10:44:49 -0700383 struct viawget_hostapd_param *param)
Forest Bond5449c682009-04-25 10:30:44 -0400384{
Joe Perches4b61d802013-03-18 10:44:49 -0700385 PSMgmtObject pMgmt = pDevice->pMgmt;
Forest Bond5449c682009-04-25 10:30:44 -0400386
Joe Perches4b61d802013-03-18 10:44:49 -0700387 memcpy(pMgmt->abyWPAIE,
388 param->u.generic_elem.data,
389 param->u.generic_elem.len
390 );
Forest Bond5449c682009-04-25 10:30:44 -0400391
Joe Perches4b61d802013-03-18 10:44:49 -0700392 pMgmt->wWPAIELen = param->u.generic_elem.len;
Forest Bond5449c682009-04-25 10:30:44 -0400393
Joe Perches4b61d802013-03-18 10:44:49 -0700394 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "pMgmt->wWPAIELen = %d\n", pMgmt->wWPAIELen);
Forest Bond5449c682009-04-25 10:30:44 -0400395
Joe Perches4b61d802013-03-18 10:44:49 -0700396 // disable wpa
397 if (pMgmt->wWPAIELen == 0) {
398 pMgmt->eAuthenMode = WMAC_AUTH_OPEN;
Jim Lieb7e809a92009-07-30 10:27:21 -0700399 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " No WPAIE, Disable WPA \n");
Joe Perches4b61d802013-03-18 10:44:49 -0700400 } else {
401 // enable wpa
402 if ((pMgmt->abyWPAIE[0] == WLAN_EID_RSN_WPA) ||
403 (pMgmt->abyWPAIE[0] == WLAN_EID_RSN)) {
404 pMgmt->eAuthenMode = WMAC_AUTH_WPANONE;
405 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Set WPAIE enable WPA\n");
406 } else
407 return -EINVAL;
408 }
Forest Bond5449c682009-04-25 10:30:44 -0400409
410 return 0;
411}
412
413/*
414 * Description:
415 * flush station nodes table.
416 *
417 * Parameters:
418 * In:
419 * pDevice -
420 * Out:
421 *
422 * Return Value:
423 *
424 */
425
426static void hostap_flush_sta(PSDevice pDevice)
427{
Joe Perches4b61d802013-03-18 10:44:49 -0700428 // reserved node index =0 for multicast node.
429 BSSvClearNodeDBTable(pDevice, 1);
430 pDevice->uAssocCount = 0;
Forest Bond5449c682009-04-25 10:30:44 -0400431
Joe Perches4b61d802013-03-18 10:44:49 -0700432 return;
Forest Bond5449c682009-04-25 10:30:44 -0400433}
434
435/*
436 * Description:
437 * set each stations encryption key
438 *
439 * Parameters:
440 * In:
441 * pDevice -
442 * param -
443 * Out:
444 *
445 * Return Value:
446 *
447 */
448static int hostap_set_encryption(PSDevice pDevice,
Joe Perches4b61d802013-03-18 10:44:49 -0700449 struct viawget_hostapd_param *param,
450 int param_len)
Forest Bond5449c682009-04-25 10:30:44 -0400451{
Joe Perches4b61d802013-03-18 10:44:49 -0700452 PSMgmtObject pMgmt = pDevice->pMgmt;
453 unsigned long dwKeyIndex = 0;
454 unsigned char abyKey[MAX_KEY_LEN];
455 unsigned char abySeq[MAX_KEY_LEN];
456 NDIS_802_11_KEY_RSC KeyRSC;
457 unsigned char byKeyDecMode = KEY_CTL_WEP;
Forest Bond5449c682009-04-25 10:30:44 -0400458 int ret = 0;
459 int iNodeIndex = -1;
460 int ii;
Charles Clément7b6a0012010-08-01 17:15:50 +0200461 bool bKeyTableFull = false;
Charles Clément2986db52010-06-24 11:02:26 -0700462 unsigned short wKeyCtl = 0;
Forest Bond5449c682009-04-25 10:30:44 -0400463
Forest Bond5449c682009-04-25 10:30:44 -0400464 param->u.crypt.err = 0;
465/*
Joe Perches4b61d802013-03-18 10:44:49 -0700466 if (param_len !=
467 (int) ((char *) param->u.crypt.key - (char *) param) +
468 param->u.crypt.key_len)
469 return -EINVAL;
Forest Bond5449c682009-04-25 10:30:44 -0400470*/
471
472 if (param->u.crypt.alg > WPA_ALG_CCMP)
473 return -EINVAL;
474
Forest Bond5449c682009-04-25 10:30:44 -0400475 if ((param->u.crypt.idx > 3) || (param->u.crypt.key_len > MAX_KEY_LEN)) {
476 param->u.crypt.err = HOSTAP_CRYPT_ERR_KEY_SET_FAILED;
Jim Lieb7e809a92009-07-30 10:27:21 -0700477 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " HOSTAP_CRYPT_ERR_KEY_SET_FAILED\n");
Forest Bond5449c682009-04-25 10:30:44 -0400478 return -EINVAL;
479 }
480
Wei Yongjun78b31142012-08-26 09:02:16 +0800481 if (is_broadcast_ether_addr(param->sta_addr)) {
Forest Bond5449c682009-04-25 10:30:44 -0400482 if (param->u.crypt.idx >= MAX_GROUP_KEY)
483 return -EINVAL;
Joe Perches4b61d802013-03-18 10:44:49 -0700484 iNodeIndex = 0;
Forest Bond5449c682009-04-25 10:30:44 -0400485
486 } else {
Joe Perches4b61d802013-03-18 10:44:49 -0700487 if (BSSDBbIsSTAInNodeDB(pMgmt, param->sta_addr, &iNodeIndex) == false) {
488 param->u.crypt.err = HOSTAP_CRYPT_ERR_UNKNOWN_ADDR;
489 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " HOSTAP_CRYPT_ERR_UNKNOWN_ADDR\n");
490 return -EINVAL;
491 }
Forest Bond5449c682009-04-25 10:30:44 -0400492 }
Joe Perches4b61d802013-03-18 10:44:49 -0700493 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " hostap_set_encryption: sta_index %d \n", iNodeIndex);
494 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " hostap_set_encryption: alg %d \n", param->u.crypt.alg);
Forest Bond5449c682009-04-25 10:30:44 -0400495
496 if (param->u.crypt.alg == WPA_ALG_NONE) {
Joe Perches4b61d802013-03-18 10:44:49 -0700497 if (pMgmt->sNodeDBTable[iNodeIndex].bOnFly == true) {
498 if (KeybRemoveKey(&(pDevice->sKey),
499 param->sta_addr,
500 pMgmt->sNodeDBTable[iNodeIndex].dwKeyIndex,
501 pDevice->PortOffset) == false) {
502 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "KeybRemoveKey fail \n");
503 }
504 pMgmt->sNodeDBTable[iNodeIndex].bOnFly = false;
505 }
506 pMgmt->sNodeDBTable[iNodeIndex].byKeyIndex = 0;
507 pMgmt->sNodeDBTable[iNodeIndex].dwKeyIndex = 0;
508 pMgmt->sNodeDBTable[iNodeIndex].uWepKeyLength = 0;
509 pMgmt->sNodeDBTable[iNodeIndex].KeyRSC = 0;
510 pMgmt->sNodeDBTable[iNodeIndex].dwTSC47_16 = 0;
511 pMgmt->sNodeDBTable[iNodeIndex].wTSC15_0 = 0;
512 pMgmt->sNodeDBTable[iNodeIndex].byCipherSuite = 0;
513 memset(&pMgmt->sNodeDBTable[iNodeIndex].abyWepKey[0],
514 0,
515 MAX_KEY_LEN
516);
Forest Bond5449c682009-04-25 10:30:44 -0400517
Joe Perches4b61d802013-03-18 10:44:49 -0700518 return ret;
Forest Bond5449c682009-04-25 10:30:44 -0400519 }
520
Joe Perches4b61d802013-03-18 10:44:49 -0700521 memcpy(abyKey, param->u.crypt.key, param->u.crypt.key_len);
522 // copy to node key tbl
523 pMgmt->sNodeDBTable[iNodeIndex].byKeyIndex = param->u.crypt.idx;
524 pMgmt->sNodeDBTable[iNodeIndex].uWepKeyLength = param->u.crypt.key_len;
525 memcpy(&pMgmt->sNodeDBTable[iNodeIndex].abyWepKey[0],
526 param->u.crypt.key,
527 param->u.crypt.key_len
528);
Forest Bond5449c682009-04-25 10:30:44 -0400529
Joe Perches4b61d802013-03-18 10:44:49 -0700530 dwKeyIndex = (unsigned long)(param->u.crypt.idx);
531 if (param->u.crypt.flags & HOSTAP_CRYPT_FLAG_SET_TX_KEY) {
532 pDevice->byKeyIndex = (unsigned char)dwKeyIndex;
533 pDevice->bTransmitKey = true;
534 dwKeyIndex |= (1 << 31);
535 }
Forest Bond5449c682009-04-25 10:30:44 -0400536
537 if (param->u.crypt.alg == WPA_ALG_WEP) {
Joe Perches4b61d802013-03-18 10:44:49 -0700538 if ((pDevice->bEnable8021x == false) || (iNodeIndex == 0)) {
539 KeybSetDefaultKey(&(pDevice->sKey),
540 dwKeyIndex & ~(BIT30 | USE_KEYRSC),
541 param->u.crypt.key_len,
542 NULL,
543 abyKey,
544 KEY_CTL_WEP,
545 pDevice->PortOffset,
546 pDevice->byLocalID);
Forest Bond5449c682009-04-25 10:30:44 -0400547
Joe Perches4b61d802013-03-18 10:44:49 -0700548 } else {
549 // 8021x enable, individual key
550 dwKeyIndex |= (1 << 30); // set pairwise key
551 if (KeybSetKey(&(pDevice->sKey),
552 &param->sta_addr[0],
553 dwKeyIndex & ~(USE_KEYRSC),
554 param->u.crypt.key_len,
555 (PQWORD) &(KeyRSC),
556 (unsigned char *)abyKey,
557 KEY_CTL_WEP,
558 pDevice->PortOffset,
559 pDevice->byLocalID) == true) {
Joe Perches4b61d802013-03-18 10:44:49 -0700560 pMgmt->sNodeDBTable[iNodeIndex].bOnFly = true;
Forest Bond5449c682009-04-25 10:30:44 -0400561
Joe Perches4b61d802013-03-18 10:44:49 -0700562 } else {
563 // Key Table Full
564 pMgmt->sNodeDBTable[iNodeIndex].bOnFly = false;
565 bKeyTableFull = true;
566 }
567 }
568 pDevice->eEncryptionStatus = Ndis802_11Encryption1Enabled;
569 pDevice->bEncryptionEnable = true;
570 pMgmt->byCSSPK = KEY_CTL_WEP;
571 pMgmt->byCSSGK = KEY_CTL_WEP;
572 pMgmt->sNodeDBTable[iNodeIndex].byCipherSuite = KEY_CTL_WEP;
573 pMgmt->sNodeDBTable[iNodeIndex].dwKeyIndex = dwKeyIndex;
574 return ret;
Forest Bond5449c682009-04-25 10:30:44 -0400575 }
576
577 if (param->u.crypt.seq) {
Joe Perches4b61d802013-03-18 10:44:49 -0700578 memcpy(&abySeq, param->u.crypt.seq, 8);
579 for (ii = 0; ii < 8; ii++)
Dan Carpenterc25015c2012-10-11 09:55:25 +0300580 KeyRSC |= (unsigned long)abySeq[ii] << (ii * 8);
581
Forest Bond5449c682009-04-25 10:30:44 -0400582 dwKeyIndex |= 1 << 29;
583 pMgmt->sNodeDBTable[iNodeIndex].KeyRSC = KeyRSC;
584 }
585
586 if (param->u.crypt.alg == WPA_ALG_TKIP) {
Joe Perches4b61d802013-03-18 10:44:49 -0700587 if (param->u.crypt.key_len != MAX_KEY_LEN)
588 return -EINVAL;
589 pDevice->eEncryptionStatus = Ndis802_11Encryption2Enabled;
590 byKeyDecMode = KEY_CTL_TKIP;
591 pMgmt->byCSSPK = KEY_CTL_TKIP;
592 pMgmt->byCSSGK = KEY_CTL_TKIP;
Forest Bond5449c682009-04-25 10:30:44 -0400593 }
594
595 if (param->u.crypt.alg == WPA_ALG_CCMP) {
Joe Perches4b61d802013-03-18 10:44:49 -0700596 if ((param->u.crypt.key_len != AES_KEY_LEN) ||
597 (pDevice->byLocalID <= REV_ID_VT3253_A1))
598 return -EINVAL;
599 pDevice->eEncryptionStatus = Ndis802_11Encryption3Enabled;
600 byKeyDecMode = KEY_CTL_CCMP;
601 pMgmt->byCSSPK = KEY_CTL_CCMP;
602 pMgmt->byCSSGK = KEY_CTL_CCMP;
603 }
Forest Bond5449c682009-04-25 10:30:44 -0400604
Joe Perches4b61d802013-03-18 10:44:49 -0700605 if (iNodeIndex == 0) {
606 KeybSetDefaultKey(&(pDevice->sKey),
607 dwKeyIndex,
608 param->u.crypt.key_len,
609 (PQWORD) &(KeyRSC),
610 abyKey,
611 byKeyDecMode,
612 pDevice->PortOffset,
613 pDevice->byLocalID);
614 pMgmt->sNodeDBTable[iNodeIndex].bOnFly = true;
Forest Bond5449c682009-04-25 10:30:44 -0400615
Joe Perches4b61d802013-03-18 10:44:49 -0700616 } else {
617 dwKeyIndex |= (1 << 30); // set pairwise key
618 if (KeybSetKey(&(pDevice->sKey),
619 &param->sta_addr[0],
620 dwKeyIndex,
621 param->u.crypt.key_len,
622 (PQWORD) &(KeyRSC),
623 (unsigned char *)abyKey,
624 byKeyDecMode,
625 pDevice->PortOffset,
626 pDevice->byLocalID) == true) {
Joe Perches4b61d802013-03-18 10:44:49 -0700627 pMgmt->sNodeDBTable[iNodeIndex].bOnFly = true;
Forest Bond5449c682009-04-25 10:30:44 -0400628
Joe Perches4b61d802013-03-18 10:44:49 -0700629 } else {
630 // Key Table Full
631 pMgmt->sNodeDBTable[iNodeIndex].bOnFly = false;
632 bKeyTableFull = true;
633 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " Key Table Full\n");
634 }
Forest Bond5449c682009-04-25 10:30:44 -0400635
Joe Perches4b61d802013-03-18 10:44:49 -0700636 }
Forest Bond5449c682009-04-25 10:30:44 -0400637
Joe Perches4b61d802013-03-18 10:44:49 -0700638 if (bKeyTableFull == true) {
639 wKeyCtl &= 0x7F00; // clear all key control filed
640 wKeyCtl |= (byKeyDecMode << 4);
641 wKeyCtl |= (byKeyDecMode);
642 wKeyCtl |= 0x0044; // use group key for all address
643 wKeyCtl |= 0x4000; // disable KeyTable[MAX_KEY_TABLE-1] on-fly to genernate rx int
644 MACvSetDefaultKeyCtl(pDevice->PortOffset, wKeyCtl, MAX_KEY_TABLE-1, pDevice->byLocalID);
645 }
Forest Bond5449c682009-04-25 10:30:44 -0400646
Joe Perches4b61d802013-03-18 10:44:49 -0700647 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " Set key sta_index= %d \n", iNodeIndex);
648 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " tx_index=%d len=%d \n", param->u.crypt.idx,
649 param->u.crypt.key_len);
650 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " key=%x-%x-%x-%x-%x-xxxxx \n",
651 pMgmt->sNodeDBTable[iNodeIndex].abyWepKey[0],
652 pMgmt->sNodeDBTable[iNodeIndex].abyWepKey[1],
653 pMgmt->sNodeDBTable[iNodeIndex].abyWepKey[2],
654 pMgmt->sNodeDBTable[iNodeIndex].abyWepKey[3],
655 pMgmt->sNodeDBTable[iNodeIndex].abyWepKey[4]
656);
Forest Bond5449c682009-04-25 10:30:44 -0400657
658 // set wep key
Joe Perches4b61d802013-03-18 10:44:49 -0700659 pDevice->bEncryptionEnable = true;
660 pMgmt->sNodeDBTable[iNodeIndex].byCipherSuite = byKeyDecMode;
661 pMgmt->sNodeDBTable[iNodeIndex].dwKeyIndex = dwKeyIndex;
662 pMgmt->sNodeDBTable[iNodeIndex].dwTSC47_16 = 0;
663 pMgmt->sNodeDBTable[iNodeIndex].wTSC15_0 = 0;
Forest Bond5449c682009-04-25 10:30:44 -0400664
665 return ret;
666}
667
Forest Bond5449c682009-04-25 10:30:44 -0400668/*
669 * Description:
670 * get each stations encryption key
671 *
672 * Parameters:
673 * In:
674 * pDevice -
675 * param -
676 * Out:
677 *
678 * Return Value:
679 *
680 */
681static int hostap_get_encryption(PSDevice pDevice,
Joe Perches4b61d802013-03-18 10:44:49 -0700682 struct viawget_hostapd_param *param,
683 int param_len)
Forest Bond5449c682009-04-25 10:30:44 -0400684{
Joe Perches4b61d802013-03-18 10:44:49 -0700685 PSMgmtObject pMgmt = pDevice->pMgmt;
Forest Bond5449c682009-04-25 10:30:44 -0400686 int ret = 0;
687 int ii;
Joe Perches4b61d802013-03-18 10:44:49 -0700688 int iNodeIndex = 0;
Forest Bond5449c682009-04-25 10:30:44 -0400689
Forest Bond5449c682009-04-25 10:30:44 -0400690 param->u.crypt.err = 0;
691
Wei Yongjun78b31142012-08-26 09:02:16 +0800692 if (is_broadcast_ether_addr(param->sta_addr)) {
Joe Perches4b61d802013-03-18 10:44:49 -0700693 iNodeIndex = 0;
Forest Bond5449c682009-04-25 10:30:44 -0400694 } else {
Joe Perches4b61d802013-03-18 10:44:49 -0700695 if (BSSDBbIsSTAInNodeDB(pMgmt, param->sta_addr, &iNodeIndex) == false) {
696 param->u.crypt.err = HOSTAP_CRYPT_ERR_UNKNOWN_ADDR;
697 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "hostap_get_encryption: HOSTAP_CRYPT_ERR_UNKNOWN_ADDR\n");
698 return -EINVAL;
699 }
Forest Bond5449c682009-04-25 10:30:44 -0400700 }
Jim Lieb7e809a92009-07-30 10:27:21 -0700701 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "hostap_get_encryption: %d\n", iNodeIndex);
Joe Perches4b61d802013-03-18 10:44:49 -0700702 memset(param->u.crypt.seq, 0, 8);
703 for (ii = 0; ii < 8; ii++) {
704 param->u.crypt.seq[ii] = (unsigned char)pMgmt->sNodeDBTable[iNodeIndex].KeyRSC >> (ii * 8);
705 }
Forest Bond5449c682009-04-25 10:30:44 -0400706
707 return ret;
708}
709
Forest Bond5449c682009-04-25 10:30:44 -0400710/*
711 * Description:
Forest Bondecf739e2010-04-17 11:03:47 -0400712 * vt6655_hostap_ioctl main function supported for hostap deamon.
Forest Bond5449c682009-04-25 10:30:44 -0400713 *
714 * Parameters:
715 * In:
716 * pDevice -
717 * iw_point -
718 * Out:
719 *
720 * Return Value:
721 *
722 */
723
Forest Bondecf739e2010-04-17 11:03:47 -0400724int vt6655_hostap_ioctl(PSDevice pDevice, struct iw_point *p)
Forest Bond5449c682009-04-25 10:30:44 -0400725{
726 struct viawget_hostapd_param *param;
727 int ret = 0;
728 int ap_ioctl = 0;
729
730 if (p->length < sizeof(struct viawget_hostapd_param) ||
731 p->length > VIAWGET_HOSTAPD_MAX_BUF_SIZE || !p->pointer)
732 return -EINVAL;
733
Julia Lawall32414872010-05-11 20:26:57 +0200734 param = kmalloc((int)p->length, (int)GFP_KERNEL);
Forest Bond5449c682009-04-25 10:30:44 -0400735 if (param == NULL)
736 return -ENOMEM;
737
738 if (copy_from_user(param, p->pointer, p->length)) {
739 ret = -EFAULT;
740 goto out;
741 }
742
743 switch (param->cmd) {
744 case VIAWGET_HOSTAPD_SET_ENCRYPTION:
Joe Perches4b61d802013-03-18 10:44:49 -0700745 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_SET_ENCRYPTION \n");
746 spin_lock_irq(&pDevice->lock);
Forest Bond5449c682009-04-25 10:30:44 -0400747 ret = hostap_set_encryption(pDevice, param, p->length);
Joe Perches4b61d802013-03-18 10:44:49 -0700748 spin_unlock_irq(&pDevice->lock);
Forest Bond5449c682009-04-25 10:30:44 -0400749 break;
750 case VIAWGET_HOSTAPD_GET_ENCRYPTION:
Joe Perches4b61d802013-03-18 10:44:49 -0700751 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_GET_ENCRYPTION \n");
752 spin_lock_irq(&pDevice->lock);
Forest Bond5449c682009-04-25 10:30:44 -0400753 ret = hostap_get_encryption(pDevice, param, p->length);
Joe Perches4b61d802013-03-18 10:44:49 -0700754 spin_unlock_irq(&pDevice->lock);
Forest Bond5449c682009-04-25 10:30:44 -0400755 break;
756 case VIAWGET_HOSTAPD_SET_ASSOC_AP_ADDR:
Joe Perches4b61d802013-03-18 10:44:49 -0700757 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_SET_ASSOC_AP_ADDR \n");
Forest Bond5449c682009-04-25 10:30:44 -0400758 return -EOPNOTSUPP;
759 break;
760 case VIAWGET_HOSTAPD_FLUSH:
Joe Perches4b61d802013-03-18 10:44:49 -0700761 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_FLUSH \n");
762 spin_lock_irq(&pDevice->lock);
763 hostap_flush_sta(pDevice);
764 spin_unlock_irq(&pDevice->lock);
Forest Bond5449c682009-04-25 10:30:44 -0400765 break;
766 case VIAWGET_HOSTAPD_ADD_STA:
Joe Perches4b61d802013-03-18 10:44:49 -0700767 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_ADD_STA \n");
768 spin_lock_irq(&pDevice->lock);
769 ret = hostap_add_sta(pDevice, param);
770 spin_unlock_irq(&pDevice->lock);
Forest Bond5449c682009-04-25 10:30:44 -0400771 break;
772 case VIAWGET_HOSTAPD_REMOVE_STA:
Joe Perches4b61d802013-03-18 10:44:49 -0700773 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_REMOVE_STA \n");
774 spin_lock_irq(&pDevice->lock);
775 ret = hostap_remove_sta(pDevice, param);
776 spin_unlock_irq(&pDevice->lock);
Forest Bond5449c682009-04-25 10:30:44 -0400777 break;
778 case VIAWGET_HOSTAPD_GET_INFO_STA:
Joe Perches4b61d802013-03-18 10:44:49 -0700779 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_GET_INFO_STA \n");
780 ret = hostap_get_info_sta(pDevice, param);
781 ap_ioctl = 1;
Forest Bond5449c682009-04-25 10:30:44 -0400782 break;
783/*
784 case VIAWGET_HOSTAPD_RESET_TXEXC_STA:
Joe Perches4b61d802013-03-18 10:44:49 -0700785 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_RESET_TXEXC_STA \n");
786 ret = hostap_reset_txexc_sta(pDevice, param);
Forest Bond5449c682009-04-25 10:30:44 -0400787 break;
788*/
789 case VIAWGET_HOSTAPD_SET_FLAGS_STA:
Joe Perches4b61d802013-03-18 10:44:49 -0700790 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_SET_FLAGS_STA \n");
791 ret = hostap_set_flags_sta(pDevice, param);
Forest Bond5449c682009-04-25 10:30:44 -0400792 break;
793
794 case VIAWGET_HOSTAPD_MLME:
Joe Perches4b61d802013-03-18 10:44:49 -0700795 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_MLME \n");
796 return -EOPNOTSUPP;
Forest Bond5449c682009-04-25 10:30:44 -0400797
798 case VIAWGET_HOSTAPD_SET_GENERIC_ELEMENT:
Joe Perches4b61d802013-03-18 10:44:49 -0700799 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_SET_GENERIC_ELEMENT \n");
Forest Bond5449c682009-04-25 10:30:44 -0400800 ret = hostap_set_generic_element(pDevice, param);
801 break;
802
803 case VIAWGET_HOSTAPD_SCAN_REQ:
Joe Perches4b61d802013-03-18 10:44:49 -0700804 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_SCAN_REQ \n");
805 return -EOPNOTSUPP;
Forest Bond5449c682009-04-25 10:30:44 -0400806
807 case VIAWGET_HOSTAPD_STA_CLEAR_STATS:
Joe Perches4b61d802013-03-18 10:44:49 -0700808 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "VIAWGET_HOSTAPD_STA_CLEAR_STATS \n");
809 return -EOPNOTSUPP;
Forest Bond5449c682009-04-25 10:30:44 -0400810
811 default:
Joe Perches4b61d802013-03-18 10:44:49 -0700812 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "vt6655_hostap_ioctl: unknown cmd=%d\n",
813 (int)param->cmd);
Forest Bond5449c682009-04-25 10:30:44 -0400814 return -EOPNOTSUPP;
815 break;
816 }
817
Forest Bond5449c682009-04-25 10:30:44 -0400818 if ((ret == 0) && ap_ioctl) {
819 if (copy_to_user(p->pointer, param, p->length)) {
820 ret = -EFAULT;
821 goto out;
822 }
823 }
824
Joe Perches4b61d802013-03-18 10:44:49 -0700825out:
Ilia Mirkin6403bb72011-03-13 00:29:14 -0500826 kfree(param);
Forest Bond5449c682009-04-25 10:30:44 -0400827
828 return ret;
829}