2013-05-08 21:45:39 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
2014-12-19 06:59:46 +00:00
|
|
|
*
|
2013-05-08 21:45:39 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of version 2 of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
|
|
|
*
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
#define _MLME_OSDEP_C_
|
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
#include <drv_conf.h>
|
2013-05-08 21:45:39 +00:00
|
|
|
#include <osdep_service.h>
|
|
|
|
#include <drv_types.h>
|
|
|
|
#include <mlme_osdep.h>
|
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
void rtw_join_timeout_handler (void *FunctionContext)
|
|
|
|
{
|
2014-12-17 23:13:53 +00:00
|
|
|
struct adapter *adapter = (struct adapter *)FunctionContext;
|
2013-05-08 21:45:39 +00:00
|
|
|
_rtw_join_timeout_handler(adapter);
|
|
|
|
}
|
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
void _rtw_scan_timeout_handler (void *FunctionContext)
|
|
|
|
{
|
2014-12-17 23:13:53 +00:00
|
|
|
struct adapter *adapter = (struct adapter *)FunctionContext;
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_scan_timeout_handler(adapter);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-19 04:28:04 +00:00
|
|
|
static void _dynamic_check_timer_handlder (void *FunctionContext)
|
2014-12-17 01:03:30 +00:00
|
|
|
{
|
2014-12-17 23:13:53 +00:00
|
|
|
struct adapter *adapter = (struct adapter *)FunctionContext;
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_dynamic_check_timer_handlder(adapter);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
_set_timer(&adapter->mlmepriv.dynamic_chk_timer, 2000);
|
|
|
|
}
|
|
|
|
|
2015-01-29 21:27:28 +00:00
|
|
|
static void _rtw_set_scan_deny_timer_hdl(void *FunctionContext)
|
2014-12-17 01:03:30 +00:00
|
|
|
{
|
2014-12-19 06:59:46 +00:00
|
|
|
struct adapter *adapter = (struct adapter *)FunctionContext;
|
2014-12-17 01:03:30 +00:00
|
|
|
rtw_set_scan_deny_timer_hdl(adapter);
|
|
|
|
}
|
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
void rtw_init_mlme_timer(struct adapter *padapter)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
|
|
|
|
|
|
|
|
_init_timer(&(pmlmepriv->assoc_timer), padapter->pnetdev, rtw_join_timeout_handler, padapter);
|
2015-02-20 04:11:26 +00:00
|
|
|
/* _init_timer(&(pmlmepriv->sitesurveyctrl.sitesurvey_ctrl_timer), padapter->pnetdev, sitesurvey_ctrl_handler, padapter); */
|
2013-05-08 21:45:39 +00:00
|
|
|
_init_timer(&(pmlmepriv->scan_to_timer), padapter->pnetdev, _rtw_scan_timeout_handler, padapter);
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
_init_timer(&(pmlmepriv->dynamic_chk_timer), padapter->pnetdev, _dynamic_check_timer_handlder, padapter);
|
2014-12-17 01:03:30 +00:00
|
|
|
|
|
|
|
_init_timer(&(pmlmepriv->set_scan_deny_timer), padapter->pnetdev, _rtw_set_scan_deny_timer_hdl, padapter);
|
|
|
|
|
|
|
|
#if defined(CONFIG_CHECK_BT_HANG) && defined(CONFIG_BT_COEXIST)
|
|
|
|
if (padapter->HalFunc.hal_init_checkbthang_workqueue)
|
|
|
|
padapter->HalFunc.hal_init_checkbthang_workqueue(padapter);
|
2014-12-19 06:59:46 +00:00
|
|
|
#endif
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
void rtw_os_indicate_connect(struct adapter *adapter)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2014-12-17 01:03:30 +00:00
|
|
|
struct mlme_priv *pmlmepriv = &(adapter->mlmepriv);
|
2015-01-26 22:20:25 +00:00
|
|
|
;
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2015-02-20 04:52:01 +00:00
|
|
|
if ((check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE)) ||
|
|
|
|
(check_fwstate(pmlmepriv, WIFI_ADHOC_STATE)))
|
2014-12-17 01:03:30 +00:00
|
|
|
rtw_cfg80211_ibss_indicate_connect(adapter);
|
|
|
|
else
|
|
|
|
rtw_cfg80211_indicate_connect(adapter);
|
2014-12-01 22:31:15 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_indicate_wx_assoc_event(adapter);
|
|
|
|
netif_carrier_on(adapter->pnetdev);
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2015-08-15 18:02:34 +00:00
|
|
|
if (adapter->pid[2] !=0)
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_signal_process(adapter->pid[2], SIGALRM);
|
|
|
|
}
|
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
void rtw_os_indicate_scan_done( struct adapter *padapter, bool aborted)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2014-12-17 01:03:30 +00:00
|
|
|
rtw_cfg80211_indicate_scan_done(wdev_to_priv(padapter->rtw_wdev), aborted);
|
2013-05-08 21:45:39 +00:00
|
|
|
indicate_wx_scan_complete_event(padapter);
|
|
|
|
}
|
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
static RT_PMKID_LIST backupPMKIDList[ NUM_PMKID_CACHE ];
|
2014-12-17 23:13:53 +00:00
|
|
|
void rtw_reset_securitypriv( struct adapter *adapter )
|
2014-12-17 01:03:30 +00:00
|
|
|
{
|
|
|
|
u8 backupPMKIDIndex = 0;
|
|
|
|
u8 backupTKIPCountermeasure = 0x00;
|
|
|
|
u32 backupTKIPcountermeasure_time = 0;
|
2015-02-20 04:11:26 +00:00
|
|
|
/* add for CONFIG_IEEE80211W, none 11w also can use */
|
2015-03-16 13:54:18 +00:00
|
|
|
unsigned long irqL;
|
2014-12-17 01:03:30 +00:00
|
|
|
struct mlme_ext_priv *pmlmeext = &adapter->mlmeextpriv;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-03-06 17:54:48 +00:00
|
|
|
spin_lock_bh(&adapter->security_key_mutex);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-08-15 18:02:34 +00:00
|
|
|
if (adapter->securitypriv.dot11AuthAlgrthm == dot11AuthAlgrthm_8021X)/* 802.1x */
|
2014-12-19 06:59:46 +00:00
|
|
|
{
|
2015-02-20 04:11:26 +00:00
|
|
|
/* Added by Albert 2009/02/18 */
|
|
|
|
/* We have to backup the PMK information for WiFi PMK Caching test item. */
|
|
|
|
/* */
|
|
|
|
/* Backup the btkip_countermeasure information. */
|
|
|
|
/* When the countermeasure is trigger, the driver have to disconnect with AP for 60 seconds. */
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2015-02-19 20:58:09 +00:00
|
|
|
memset( &backupPMKIDList[ 0 ], 0x00, sizeof( RT_PMKID_LIST ) * NUM_PMKID_CACHE );
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2015-02-19 20:50:04 +00:00
|
|
|
memcpy( &backupPMKIDList[ 0 ], &adapter->securitypriv.PMKIDList[ 0 ], sizeof( RT_PMKID_LIST ) * NUM_PMKID_CACHE );
|
2014-12-17 01:03:30 +00:00
|
|
|
backupPMKIDIndex = adapter->securitypriv.PMKIDIndex;
|
|
|
|
backupTKIPCountermeasure = adapter->securitypriv.btkip_countermeasure;
|
2014-12-19 06:59:46 +00:00
|
|
|
backupTKIPcountermeasure_time = adapter->securitypriv.btkip_countermeasure_time;
|
2014-12-17 01:03:30 +00:00
|
|
|
#ifdef CONFIG_IEEE80211W
|
2015-02-20 04:11:26 +00:00
|
|
|
/* reset RX BIP packet number */
|
2014-12-17 01:03:30 +00:00
|
|
|
pmlmeext->mgnt_80211w_IPN_rx = 0;
|
2015-02-20 04:11:26 +00:00
|
|
|
#endif /* CONFIG_IEEE80211W */
|
2015-02-19 20:58:09 +00:00
|
|
|
memset((unsigned char *)&adapter->securitypriv, 0, sizeof (struct security_priv));
|
2015-02-20 04:11:26 +00:00
|
|
|
/* _init_timer(&(adapter->securitypriv.tkip_timer),adapter->pnetdev, rtw_use_tkipkey_handler, adapter); */
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2015-02-20 04:11:26 +00:00
|
|
|
/* Added by Albert 2009/02/18 */
|
|
|
|
/* Restore the PMK information to securitypriv structure for the following connection. */
|
2015-02-19 20:50:04 +00:00
|
|
|
memcpy( &adapter->securitypriv.PMKIDList[ 0 ], &backupPMKIDList[ 0 ], sizeof( RT_PMKID_LIST ) * NUM_PMKID_CACHE );
|
2014-12-17 01:03:30 +00:00
|
|
|
adapter->securitypriv.PMKIDIndex = backupPMKIDIndex;
|
|
|
|
adapter->securitypriv.btkip_countermeasure = backupTKIPCountermeasure;
|
2014-12-19 06:59:46 +00:00
|
|
|
adapter->securitypriv.btkip_countermeasure_time = backupTKIPcountermeasure_time;
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
adapter->securitypriv.ndisauthtype = Ndis802_11AuthModeOpen;
|
|
|
|
adapter->securitypriv.ndisencryptstatus = Ndis802_11WEPDisabled;
|
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
}
|
2015-02-20 04:11:26 +00:00
|
|
|
else /* reset values in securitypriv */
|
2014-12-17 01:03:30 +00:00
|
|
|
{
|
2015-08-15 18:02:34 +00:00
|
|
|
/* if (adapter->mlmepriv.fw_state & WIFI_STATION_STATE) */
|
2015-02-20 04:11:26 +00:00
|
|
|
/* */
|
2014-12-17 01:03:30 +00:00
|
|
|
struct security_priv *psec_priv=&adapter->securitypriv;
|
|
|
|
|
2015-02-20 04:11:26 +00:00
|
|
|
psec_priv->dot11AuthAlgrthm =dot11AuthAlgrthm_Open; /* open system */
|
2013-05-08 21:45:39 +00:00
|
|
|
psec_priv->dot11PrivacyAlgrthm = _NO_PRIVACY_;
|
|
|
|
psec_priv->dot11PrivacyKeyIndex = 0;
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
psec_priv->dot118021XGrpPrivacy = _NO_PRIVACY_;
|
|
|
|
psec_priv->dot118021XGrpKeyid = 1;
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
psec_priv->ndisauthtype = Ndis802_11AuthModeOpen;
|
|
|
|
psec_priv->ndisencryptstatus = Ndis802_11WEPDisabled;
|
2015-02-20 04:11:26 +00:00
|
|
|
/* */
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2015-02-20 04:11:26 +00:00
|
|
|
/* add for CONFIG_IEEE80211W, none 11w also can use */
|
2015-03-06 17:54:48 +00:00
|
|
|
spin_unlock_bh(&adapter->security_key_mutex);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
void rtw_os_indicate_disconnect( struct adapter *adapter )
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2015-02-20 04:11:26 +00:00
|
|
|
netif_carrier_off(adapter->pnetdev); /* Do it first for tx broadcast pkt after disconnection issue! */
|
2014-12-17 01:03:30 +00:00
|
|
|
|
|
|
|
rtw_cfg80211_indicate_disconnect(adapter);
|
2014-12-01 22:31:15 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_indicate_wx_disassoc_event(adapter);
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2015-03-10 16:18:03 +00:00
|
|
|
/* modify for CONFIG_IEEE80211W, none 11w also can use the same command */
|
|
|
|
rtw_reset_securitypriv_cmd(adapter);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
void rtw_report_sec_ie(struct adapter *adapter,u8 authmode,u8 *sec_ie)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
uint len;
|
2014-12-17 01:03:30 +00:00
|
|
|
u8 *buff,*p,i;
|
2013-05-08 21:45:39 +00:00
|
|
|
union iwreq_data wrqu;
|
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
RT_TRACE(_module_mlme_osdep_c_,_drv_info_,("+rtw_report_sec_ie, authmode=%d\n", authmode));
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
buff = NULL;
|
2015-08-15 18:02:34 +00:00
|
|
|
if (authmode==_WPA_IE_ID_) {
|
2014-12-17 01:03:30 +00:00
|
|
|
RT_TRACE(_module_mlme_osdep_c_,_drv_info_,("rtw_report_sec_ie, authmode=%d\n", authmode));
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
buff = rtw_malloc(IW_CUSTOM_MAX);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-02-19 20:58:09 +00:00
|
|
|
memset(buff,0,IW_CUSTOM_MAX);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
p=buff;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
p+=sprintf(p,"ASSOCINFO(ReqIEs=");
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
len = sec_ie[1]+2;
|
2014-12-17 01:03:30 +00:00
|
|
|
len = (len < IW_CUSTOM_MAX) ? len:IW_CUSTOM_MAX;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-08-15 18:24:16 +00:00
|
|
|
for (i=0;i<len;i++) {
|
2014-12-17 01:03:30 +00:00
|
|
|
p+=sprintf(p,"%02x",sec_ie[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
p+=sprintf(p,")");
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-02-19 20:58:09 +00:00
|
|
|
memset(&wrqu,0,sizeof(wrqu));
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
wrqu.data.length=p-buff;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
wrqu.data.length = (wrqu.data.length<IW_CUSTOM_MAX) ? wrqu.data.length:IW_CUSTOM_MAX;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-08-15 18:02:34 +00:00
|
|
|
if (buff)
|
2014-12-17 01:03:30 +00:00
|
|
|
rtw_mfree(buff, IW_CUSTOM_MAX);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-19 04:28:04 +00:00
|
|
|
static void _survey_timer_hdl (void *FunctionContext)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2014-12-17 23:13:53 +00:00
|
|
|
struct adapter *padapter = (struct adapter *)FunctionContext;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
survey_timer_hdl(padapter);
|
|
|
|
}
|
|
|
|
|
2014-12-19 04:28:04 +00:00
|
|
|
static void _link_timer_hdl (void *FunctionContext)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2014-12-17 23:13:53 +00:00
|
|
|
struct adapter *padapter = (struct adapter *)FunctionContext;
|
2013-05-08 21:45:39 +00:00
|
|
|
link_timer_hdl(padapter);
|
|
|
|
}
|
|
|
|
|
2014-12-19 04:28:04 +00:00
|
|
|
static void _addba_timer_hdl(void *FunctionContext)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct sta_info *psta = (struct sta_info *)FunctionContext;
|
|
|
|
addba_timer_hdl(psta);
|
|
|
|
}
|
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
#ifdef CONFIG_IEEE80211W
|
|
|
|
void _sa_query_timer_hdl (void *FunctionContext)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2014-12-17 23:13:53 +00:00
|
|
|
struct adapter *padapter = (struct adapter *)FunctionContext;
|
2014-12-17 01:03:30 +00:00
|
|
|
sa_query_timer_hdl(padapter);
|
|
|
|
}
|
2015-02-20 04:11:26 +00:00
|
|
|
#endif /* CONFIG_IEEE80211W */
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
void init_addba_retry_timer(struct adapter *padapter, struct sta_info *psta)
|
2014-12-17 01:03:30 +00:00
|
|
|
{
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
_init_timer(&psta->addba_retry_timer, padapter->pnetdev, _addba_timer_hdl, psta);
|
|
|
|
}
|
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
/*
|
|
|
|
void _reauth_timer_hdl(void *FunctionContext)
|
|
|
|
{
|
2014-12-17 23:13:53 +00:00
|
|
|
struct adapter *padapter = (struct adapter *)FunctionContext;
|
2014-12-17 01:03:30 +00:00
|
|
|
reauth_timer_hdl(padapter);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _reassoc_timer_hdl(void *FunctionContext)
|
2013-05-19 04:28:07 +00:00
|
|
|
{
|
2014-12-17 23:13:53 +00:00
|
|
|
struct adapter *padapter = (struct adapter *)FunctionContext;
|
2014-12-17 01:03:30 +00:00
|
|
|
reassoc_timer_hdl(padapter);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
void init_mlme_ext_timer(struct adapter *padapter)
|
2014-12-19 06:59:46 +00:00
|
|
|
{
|
2013-05-08 21:45:39 +00:00
|
|
|
struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv;
|
|
|
|
|
|
|
|
_init_timer(&pmlmeext->survey_timer, padapter->pnetdev, _survey_timer_hdl, padapter);
|
|
|
|
_init_timer(&pmlmeext->link_timer, padapter->pnetdev, _link_timer_hdl, padapter);
|
2014-12-17 01:03:30 +00:00
|
|
|
#ifdef CONFIG_IEEE80211W
|
|
|
|
_init_timer(&pmlmeext->sa_query_timer, padapter->pnetdev, _sa_query_timer_hdl, padapter);
|
2015-02-20 04:11:26 +00:00
|
|
|
#endif /* CONFIG_IEEE80211W */
|
|
|
|
/* _init_timer(&pmlmeext->ADDBA_timer, padapter->pnetdev, _addba_timer_hdl, padapter); */
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2015-02-20 04:11:26 +00:00
|
|
|
/* _init_timer(&pmlmeext->reauth_timer, padapter->pnetdev, _reauth_timer_hdl, padapter); */
|
|
|
|
/* _init_timer(&pmlmeext->reassoc_timer, padapter->pnetdev, _reassoc_timer_hdl, padapter); */
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
#ifdef CONFIG_AP_MODE
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
void rtw_indicate_sta_assoc_event(struct adapter *padapter, struct sta_info *psta)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
union iwreq_data wrqu;
|
|
|
|
struct sta_priv *pstapriv = &padapter->stapriv;
|
|
|
|
|
2015-08-15 18:22:58 +00:00
|
|
|
if (psta== NULL)
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
|
|
|
|
2015-08-15 18:02:34 +00:00
|
|
|
if (psta->aid > NUM_STA)
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
|
|
|
|
2015-08-15 18:02:34 +00:00
|
|
|
if (pstapriv->sta_aid[psta->aid - 1] != psta)
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
wrqu.addr.sa_family = ARPHRD_ETHER;
|
|
|
|
|
2015-02-19 20:50:04 +00:00
|
|
|
memcpy(wrqu.addr.sa_data, psta->hwaddr, ETH_ALEN);
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2015-08-15 21:38:30 +00:00
|
|
|
DBG_88E("+rtw_indicate_sta_assoc_event\n");
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
void rtw_indicate_sta_disassoc_event(struct adapter *padapter, struct sta_info *psta)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
union iwreq_data wrqu;
|
|
|
|
struct sta_priv *pstapriv = &padapter->stapriv;
|
|
|
|
|
2015-08-15 18:22:58 +00:00
|
|
|
if (psta== NULL)
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
|
|
|
|
2015-08-15 18:02:34 +00:00
|
|
|
if (psta->aid > NUM_STA)
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
|
|
|
|
2015-08-15 18:02:34 +00:00
|
|
|
if (pstapriv->sta_aid[psta->aid - 1] != psta)
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
wrqu.addr.sa_family = ARPHRD_ETHER;
|
|
|
|
|
2015-02-19 20:50:04 +00:00
|
|
|
memcpy(wrqu.addr.sa_data, psta->hwaddr, ETH_ALEN);
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2015-08-15 21:38:30 +00:00
|
|
|
DBG_88E("+rtw_indicate_sta_disassoc_event\n");
|
2014-12-17 01:03:30 +00:00
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
#ifdef CONFIG_HOSTAPD_MLME
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
static int mgnt_xmit_entry(struct sk_buff *skb, struct net_device *pnetdev)
|
|
|
|
{
|
|
|
|
struct hostapd_priv *phostapdpriv = rtw_netdev_priv(pnetdev);
|
2014-12-17 23:13:53 +00:00
|
|
|
struct adapter *padapter = (struct adapter *)phostapdpriv->padapter;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2015-08-15 21:38:30 +00:00
|
|
|
/* DBG_88E("%s\n", __FUNCTION__); */
|
2014-12-17 01:03:30 +00:00
|
|
|
|
|
|
|
return rtw_hal_hostap_mgnt_xmit_entry(padapter, skb);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mgnt_netdev_open(struct net_device *pnetdev)
|
|
|
|
{
|
|
|
|
struct hostapd_priv *phostapdpriv = rtw_netdev_priv(pnetdev);
|
|
|
|
|
2015-08-15 21:38:30 +00:00
|
|
|
DBG_88E("mgnt_netdev_open: MAC Address:" MAC_FMT "\n", MAC_ARG(pnetdev->dev_addr));
|
2014-12-17 01:03:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
init_usb_anchor(&phostapdpriv->anchored);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-08-15 18:02:34 +00:00
|
|
|
if (!rtw_netif_queue_stopped(pnetdev))
|
2014-12-17 01:03:30 +00:00
|
|
|
rtw_netif_start_queue(pnetdev);
|
|
|
|
else
|
|
|
|
rtw_netif_wake_queue(pnetdev);
|
|
|
|
|
|
|
|
netif_carrier_on(pnetdev);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
|
|
|
return 0;
|
2014-12-17 01:03:30 +00:00
|
|
|
}
|
|
|
|
static int mgnt_netdev_close(struct net_device *pnetdev)
|
|
|
|
{
|
|
|
|
struct hostapd_priv *phostapdpriv = rtw_netdev_priv(pnetdev);
|
|
|
|
|
2015-08-15 21:38:30 +00:00
|
|
|
DBG_88E("%s\n", __FUNCTION__);
|
2014-12-17 01:03:30 +00:00
|
|
|
|
|
|
|
usb_kill_anchored_urbs(&phostapdpriv->anchored);
|
|
|
|
|
|
|
|
netif_carrier_off(pnetdev);
|
|
|
|
|
|
|
|
if (!rtw_netif_queue_stopped(pnetdev))
|
|
|
|
rtw_netif_stop_queue(pnetdev);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-02-20 04:11:26 +00:00
|
|
|
/* rtw_write16(phostapdpriv->padapter, 0x0116, 0x3f3f); */
|
2014-12-19 06:59:46 +00:00
|
|
|
|
|
|
|
return 0;
|
2014-12-17 01:03:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if (LINUX_VERSION_CODE>=KERNEL_VERSION(2,6,29))
|
|
|
|
static const struct net_device_ops rtl871x_mgnt_netdev_ops = {
|
|
|
|
.ndo_open = mgnt_netdev_open,
|
|
|
|
.ndo_stop = mgnt_netdev_close,
|
|
|
|
.ndo_start_xmit = mgnt_xmit_entry,
|
2015-02-20 04:11:26 +00:00
|
|
|
/* ndo_set_mac_address = r871x_net_set_mac_address, */
|
|
|
|
/* ndo_get_stats = r871x_net_get_stats, */
|
|
|
|
/* ndo_do_ioctl = r871x_mp_ioctl, */
|
2014-12-17 01:03:30 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
int hostapd_mode_init(struct adapter *padapter)
|
2014-12-17 01:03:30 +00:00
|
|
|
{
|
|
|
|
unsigned char mac[ETH_ALEN];
|
|
|
|
struct hostapd_priv *phostapdpriv;
|
|
|
|
struct net_device *pnetdev;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
|
|
|
pnetdev = rtw_alloc_etherdev(sizeof(struct hostapd_priv));
|
2014-12-17 01:03:30 +00:00
|
|
|
if (!pnetdev)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2015-02-20 04:11:26 +00:00
|
|
|
/* SET_MODULE_OWNER(pnetdev); */
|
2014-12-17 01:03:30 +00:00
|
|
|
ether_setup(pnetdev);
|
|
|
|
|
2015-02-20 04:11:26 +00:00
|
|
|
/* pnetdev->type = ARPHRD_IEEE80211; */
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
phostapdpriv = rtw_netdev_priv(pnetdev);
|
|
|
|
phostapdpriv->pmgnt_netdev = pnetdev;
|
|
|
|
phostapdpriv->padapter= padapter;
|
|
|
|
padapter->phostapdpriv = phostapdpriv;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-02-20 04:11:26 +00:00
|
|
|
/* pnetdev->init = NULL; */
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
#if (LINUX_VERSION_CODE>=KERNEL_VERSION(2,6,29))
|
|
|
|
|
2015-08-15 21:38:30 +00:00
|
|
|
DBG_88E("register rtl871x_mgnt_netdev_ops to netdev_ops\n");
|
2014-12-17 01:03:30 +00:00
|
|
|
|
|
|
|
pnetdev->netdev_ops = &rtl871x_mgnt_netdev_ops;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
pnetdev->open = mgnt_netdev_open;
|
|
|
|
|
2014-12-19 06:59:46 +00:00
|
|
|
pnetdev->stop = mgnt_netdev_close;
|
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
pnetdev->hard_start_xmit = mgnt_xmit_entry;
|
|
|
|
#endif
|
|
|
|
|
2014-12-19 06:59:46 +00:00
|
|
|
pnetdev->watchdog_timeo = HZ; /* 1 second timeout */
|
2014-12-17 01:03:30 +00:00
|
|
|
|
2015-08-15 18:02:34 +00:00
|
|
|
if (dev_alloc_name(pnetdev,"mgnt.wlan%d") < 0)
|
2015-08-15 21:38:30 +00:00
|
|
|
DBG_88E("hostapd_mode_init(): dev_alloc_name, fail!\n");
|
2014-12-17 01:03:30 +00:00
|
|
|
|
|
|
|
mac[0]=0x00;
|
|
|
|
mac[1]=0xe0;
|
|
|
|
mac[2]=0x4c;
|
|
|
|
mac[3]=0x87;
|
|
|
|
mac[4]=0x11;
|
|
|
|
mac[5]=0x12;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-02-19 20:50:04 +00:00
|
|
|
memcpy(pnetdev->dev_addr, mac, ETH_ALEN);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-17 01:03:30 +00:00
|
|
|
|
|
|
|
netif_carrier_off(pnetdev);
|
|
|
|
|
|
|
|
|
|
|
|
/* Tell the network stack we exist */
|
2015-03-12 19:14:19 +00:00
|
|
|
if (register_netdev(pnetdev) != 0) {
|
2015-08-15 21:38:30 +00:00
|
|
|
DBG_88E("hostapd_mode_init(): register_netdev fail!\n");
|
2015-08-15 18:02:34 +00:00
|
|
|
if (pnetdev)
|
2014-12-17 01:03:30 +00:00
|
|
|
rtw_free_netdev(pnetdev);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
void hostapd_mode_unload(struct adapter *padapter)
|
2014-12-17 01:03:30 +00:00
|
|
|
{
|
|
|
|
struct hostapd_priv *phostapdpriv = padapter->phostapdpriv;
|
|
|
|
struct net_device *pnetdev = phostapdpriv->pmgnt_netdev;
|
|
|
|
|
|
|
|
unregister_netdev(pnetdev);
|
|
|
|
rtw_free_netdev(pnetdev);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2014-12-17 01:03:30 +00:00
|
|
|
#endif
|