2013-05-08 21:45:39 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
2013-05-19 04:28:07 +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
|
|
|
|
*
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
#define _RTW_P2P_C_
|
|
|
|
|
|
|
|
#include <drv_types.h>
|
|
|
|
#include <rtw_p2p.h>
|
|
|
|
#include <wifi.h>
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
#ifdef CONFIG_88EU_P2P
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
static int rtw_p2p_is_channel_list_ok(u8 desired_ch, u8 *ch_list, u8 ch_cnt)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
int found = 0, i = 0;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
for (i = 0; i < ch_cnt; i++) {
|
|
|
|
if (ch_list[i] == desired_ch) {
|
2013-05-08 21:45:39 +00:00
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
return found;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static u32 go_add_group_info_attr(struct wifidirect_info *pwdinfo, u8 *pbuf)
|
|
|
|
{
|
2013-07-25 14:49:25 +00:00
|
|
|
struct list_head *phead, *plist;
|
2013-07-31 01:51:20 +00:00
|
|
|
u32 len = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
u16 attr_len = 0;
|
|
|
|
u8 tmplen, *pdata_attr, *pstart, *pcur;
|
|
|
|
struct sta_info *psta = NULL;
|
2013-07-27 01:08:39 +00:00
|
|
|
struct adapter *padapter = pwdinfo->padapter;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct sta_priv *pstapriv = &padapter->stapriv;
|
|
|
|
|
2013-05-25 23:35:42 +00:00
|
|
|
DBG_88E("%s\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
pdata_attr = rtw_zmalloc(MAX_P2P_IE_LEN);
|
|
|
|
|
|
|
|
pstart = pdata_attr;
|
|
|
|
pcur = pdata_attr;
|
|
|
|
|
2014-11-29 00:42:41 +00:00
|
|
|
spin_lock_bh(&pstapriv->asoc_list_lock);
|
2013-05-08 21:45:39 +00:00
|
|
|
phead = &pstapriv->asoc_list;
|
|
|
|
plist = get_next(phead);
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* look up sta asoc_queue */
|
2013-07-31 01:51:20 +00:00
|
|
|
while ((rtw_end_of_queue_search(phead, plist)) == false) {
|
2013-05-08 21:45:39 +00:00
|
|
|
psta = LIST_CONTAINOR(plist, struct sta_info, asoc_list);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
plist = get_next(plist);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (psta->is_p2p_device) {
|
2013-05-08 21:45:39 +00:00
|
|
|
tmplen = 0;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
pcur++;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* P2P device address */
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pcur, psta->dev_addr, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
pcur += ETH_ALEN;
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* P2P interface address */
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pcur, psta->hwaddr, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
pcur += ETH_ALEN;
|
|
|
|
|
|
|
|
*pcur = psta->dev_cap;
|
|
|
|
pcur++;
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* u16*)(pcur) = cpu_to_be16(psta->config_methods); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(pcur, psta->config_methods);
|
|
|
|
pcur += 2;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pcur, psta->primary_dev_type, 8);
|
2013-05-08 21:45:39 +00:00
|
|
|
pcur += 8;
|
|
|
|
|
|
|
|
*pcur = psta->num_of_secdev_type;
|
|
|
|
pcur++;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pcur, psta->secdev_types_list, psta->num_of_secdev_type*8);
|
2013-05-08 21:45:39 +00:00
|
|
|
pcur += psta->num_of_secdev_type*8;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (psta->dev_name_len > 0) {
|
|
|
|
/* u16*)(pcur) = cpu_to_be16(WPS_ATTR_DEVICE_NAME); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(pcur, WPS_ATTR_DEVICE_NAME);
|
|
|
|
pcur += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* u16*)(pcur) = cpu_to_be16(psta->dev_name_len); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(pcur, psta->dev_name_len);
|
|
|
|
pcur += 2;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pcur, psta->dev_name, psta->dev_name_len);
|
2013-05-08 21:45:39 +00:00
|
|
|
pcur += psta->dev_name_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmplen = (u8)(pcur-pstart);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
*pstart = (tmplen-1);
|
|
|
|
|
|
|
|
attr_len += tmplen;
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* pstart += tmplen; */
|
2013-05-08 21:45:39 +00:00
|
|
|
pstart = pcur;
|
|
|
|
}
|
|
|
|
}
|
2014-11-29 00:42:41 +00:00
|
|
|
spin_unlock_bh(&pstapriv->asoc_list_lock);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (attr_len > 0)
|
2013-05-08 21:45:39 +00:00
|
|
|
len = rtw_set_p2p_attr_content(pbuf, P2P_ATTR_GROUP_INFO, attr_len, pdata_attr);
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
kfree(pdata_attr);
|
2013-05-08 21:45:39 +00:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void issue_group_disc_req(struct wifidirect_info *pwdinfo, u8 *da)
|
|
|
|
{
|
|
|
|
struct xmit_frame *pmgntframe;
|
|
|
|
struct pkt_attrib *pattrib;
|
|
|
|
unsigned char *pframe;
|
|
|
|
struct rtw_ieee80211_hdr *pwlanhdr;
|
2013-10-19 17:45:47 +00:00
|
|
|
__le16 *fctrl;
|
2013-07-27 01:08:39 +00:00
|
|
|
struct adapter *padapter = pwdinfo->padapter;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct xmit_priv *pxmitpriv = &(padapter->xmitpriv);
|
2013-05-19 04:28:07 +00:00
|
|
|
struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv);
|
2013-07-09 22:38:46 +00:00
|
|
|
unsigned char category = RTW_WLAN_CATEGORY_P2P;/* P2P action frame */
|
2013-06-07 19:19:07 +00:00
|
|
|
__be32 p2poui = cpu_to_be32(P2POUI);
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 oui_subtype = P2P_GO_DISC_REQUEST;
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 dialogToken = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-05-25 23:35:42 +00:00
|
|
|
DBG_88E("[%s]\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
pmgntframe = alloc_mgtxmitframe(pxmitpriv);
|
|
|
|
if (pmgntframe == NULL)
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* update attribute */
|
2013-05-08 21:45:39 +00:00
|
|
|
pattrib = &pmgntframe->attrib;
|
|
|
|
update_mgntframe_attrib(padapter, pattrib);
|
|
|
|
|
|
|
|
_rtw_memset(pmgntframe->buf_addr, 0, WLANHDR_OFFSET + TXDESC_OFFSET);
|
|
|
|
|
|
|
|
pframe = (u8 *)(pmgntframe->buf_addr) + TXDESC_OFFSET;
|
|
|
|
pwlanhdr = (struct rtw_ieee80211_hdr *)pframe;
|
|
|
|
|
|
|
|
fctrl = &(pwlanhdr->frame_ctl);
|
|
|
|
*(fctrl) = 0;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwlanhdr->addr1, da, ETH_ALEN);
|
|
|
|
memcpy(pwlanhdr->addr2, pwdinfo->interface_addr, ETH_ALEN);
|
|
|
|
memcpy(pwlanhdr->addr3, pwdinfo->interface_addr, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
SetSeqNum(pwlanhdr, pmlmeext->mgnt_seq);
|
|
|
|
pmlmeext->mgnt_seq++;
|
|
|
|
SetFrameSubType(pframe, WIFI_ACTION);
|
|
|
|
|
|
|
|
pframe += sizeof(struct rtw_ieee80211_hdr_3addr);
|
|
|
|
pattrib->pktlen = sizeof(struct rtw_ieee80211_hdr_3addr);
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Build P2P action frame header */
|
2013-05-19 04:28:07 +00:00
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen));
|
2013-07-31 01:51:20 +00:00
|
|
|
pframe = rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), &(pattrib->pktlen));
|
2013-05-19 04:28:07 +00:00
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen));
|
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen));
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* there is no IE in this P2P action frame */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
pattrib->last_txcmdsz = pattrib->pktlen;
|
|
|
|
|
|
|
|
dump_mgntframe(padapter, pmgntframe);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void issue_p2p_devdisc_resp(struct wifidirect_info *pwdinfo, u8 *da, u8 status, u8 dialogToken)
|
2013-05-19 04:28:07 +00:00
|
|
|
{
|
2013-05-08 21:45:39 +00:00
|
|
|
struct xmit_frame *pmgntframe;
|
|
|
|
struct pkt_attrib *pattrib;
|
|
|
|
unsigned char *pframe;
|
|
|
|
struct rtw_ieee80211_hdr *pwlanhdr;
|
2013-10-19 17:45:47 +00:00
|
|
|
__le16 *fctrl;
|
2013-07-27 01:08:39 +00:00
|
|
|
struct adapter *padapter = pwdinfo->padapter;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct xmit_priv *pxmitpriv = &(padapter->xmitpriv);
|
2013-05-19 04:28:07 +00:00
|
|
|
struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv);
|
2013-05-08 21:45:39 +00:00
|
|
|
unsigned char category = RTW_WLAN_CATEGORY_PUBLIC;
|
|
|
|
u8 action = P2P_PUB_ACTION_ACTION;
|
2013-06-07 19:19:07 +00:00
|
|
|
__be32 p2poui = cpu_to_be32(P2POUI);
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 oui_subtype = P2P_DEVDISC_RESP;
|
|
|
|
u8 p2pie[8] = { 0x00 };
|
2013-05-19 04:28:07 +00:00
|
|
|
u32 p2pielen = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-05-25 23:35:42 +00:00
|
|
|
DBG_88E("[%s]\n", __func__);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
pmgntframe = alloc_mgtxmitframe(pxmitpriv);
|
|
|
|
if (pmgntframe == NULL)
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* update attribute */
|
2013-05-08 21:45:39 +00:00
|
|
|
pattrib = &pmgntframe->attrib;
|
|
|
|
update_mgntframe_attrib(padapter, pattrib);
|
|
|
|
|
|
|
|
_rtw_memset(pmgntframe->buf_addr, 0, WLANHDR_OFFSET + TXDESC_OFFSET);
|
|
|
|
|
|
|
|
pframe = (u8 *)(pmgntframe->buf_addr) + TXDESC_OFFSET;
|
|
|
|
pwlanhdr = (struct rtw_ieee80211_hdr *)pframe;
|
|
|
|
|
|
|
|
fctrl = &(pwlanhdr->frame_ctl);
|
|
|
|
*(fctrl) = 0;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwlanhdr->addr1, da, ETH_ALEN);
|
|
|
|
memcpy(pwlanhdr->addr2, pwdinfo->device_addr, ETH_ALEN);
|
|
|
|
memcpy(pwlanhdr->addr3, pwdinfo->device_addr, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
SetSeqNum(pwlanhdr, pmlmeext->mgnt_seq);
|
|
|
|
pmlmeext->mgnt_seq++;
|
|
|
|
SetFrameSubType(pframe, WIFI_ACTION);
|
|
|
|
|
|
|
|
pframe += sizeof(struct rtw_ieee80211_hdr_3addr);
|
|
|
|
pattrib->pktlen = sizeof(struct rtw_ieee80211_hdr_3addr);
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Build P2P public action frame header */
|
2013-05-08 21:45:39 +00:00
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen));
|
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen));
|
2013-07-31 01:51:20 +00:00
|
|
|
pframe = rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), &(pattrib->pktlen));
|
2013-05-19 04:28:07 +00:00
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen));
|
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen));
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Build P2P IE */
|
2013-07-31 01:51:20 +00:00
|
|
|
/* P2P OUI */
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
p2pie[p2pielen++] = 0x50;
|
|
|
|
p2pie[p2pielen++] = 0x6F;
|
|
|
|
p2pie[p2pielen++] = 0x9A;
|
|
|
|
p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* P2P_ATTR_STATUS */
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen += rtw_set_p2p_attr_content(&p2pie[p2pielen], P2P_ATTR_STATUS, 1, &status);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
|
|
|
pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, p2pie, &pattrib->pktlen);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
pattrib->last_txcmdsz = pattrib->pktlen;
|
|
|
|
|
|
|
|
dump_mgntframe(padapter, pmgntframe);
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
static void issue_p2p_provision_resp(struct wifidirect_info *pwdinfo, u8 *raddr, u8 *frame_body, u16 config_method)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-07-27 01:08:39 +00:00
|
|
|
struct adapter *padapter = pwdinfo->padapter;
|
2013-05-08 21:45:39 +00:00
|
|
|
unsigned char category = RTW_WLAN_CATEGORY_PUBLIC;
|
|
|
|
u8 action = P2P_PUB_ACTION_ACTION;
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 dialogToken = frame_body[7]; /* The Dialog Token of provisioning discovery request frame. */
|
2013-06-07 19:19:07 +00:00
|
|
|
__be32 p2poui = cpu_to_be32(P2POUI);
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 oui_subtype = P2P_PROVISION_DISC_RESP;
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 wpsie[100] = { 0x00 };
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 wpsielen = 0;
|
2013-07-20 18:53:07 +00:00
|
|
|
struct xmit_frame *pmgntframe;
|
|
|
|
struct pkt_attrib *pattrib;
|
|
|
|
unsigned char *pframe;
|
|
|
|
struct rtw_ieee80211_hdr *pwlanhdr;
|
2013-10-19 17:45:47 +00:00
|
|
|
__le16 *fctrl;
|
2013-07-20 18:53:07 +00:00
|
|
|
struct xmit_priv *pxmitpriv = &(padapter->xmitpriv);
|
|
|
|
struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
pmgntframe = alloc_mgtxmitframe(pxmitpriv);
|
|
|
|
if (pmgntframe == NULL)
|
2013-07-20 18:53:07 +00:00
|
|
|
return;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
/* update attribute */
|
|
|
|
pattrib = &pmgntframe->attrib;
|
|
|
|
update_mgntframe_attrib(padapter, pattrib);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
_rtw_memset(pmgntframe->buf_addr, 0, WLANHDR_OFFSET + TXDESC_OFFSET);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
pframe = (u8 *)(pmgntframe->buf_addr) + TXDESC_OFFSET;
|
|
|
|
pwlanhdr = (struct rtw_ieee80211_hdr *)pframe;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
fctrl = &(pwlanhdr->frame_ctl);
|
|
|
|
*(fctrl) = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwlanhdr->addr1, raddr, ETH_ALEN);
|
|
|
|
memcpy(pwlanhdr->addr2, myid(&(padapter->eeprompriv)), ETH_ALEN);
|
|
|
|
memcpy(pwlanhdr->addr3, myid(&(padapter->eeprompriv)), ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
SetSeqNum(pwlanhdr, pmlmeext->mgnt_seq);
|
|
|
|
pmlmeext->mgnt_seq++;
|
|
|
|
SetFrameSubType(pframe, WIFI_ACTION);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
pframe += sizeof(struct rtw_ieee80211_hdr_3addr);
|
|
|
|
pattrib->pktlen = sizeof(struct rtw_ieee80211_hdr_3addr);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen));
|
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen));
|
2013-07-31 01:51:20 +00:00
|
|
|
pframe = rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), &(pattrib->pktlen));
|
2013-07-20 18:53:07 +00:00
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen));
|
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen));
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
wpsielen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
/* WPS OUI */
|
2013-07-20 18:53:07 +00:00
|
|
|
RTW_PUT_BE32(wpsie, WPSOUI);
|
|
|
|
wpsielen += 4;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Config Method */
|
|
|
|
/* Type: */
|
2013-07-20 18:53:07 +00:00
|
|
|
RTW_PUT_BE16(wpsie + wpsielen, WPS_ATTR_CONF_METHOD);
|
|
|
|
wpsielen += 2;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Length: */
|
2013-07-20 18:53:07 +00:00
|
|
|
RTW_PUT_BE16(wpsie + wpsielen, 0x0002);
|
|
|
|
wpsielen += 2;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Value: */
|
2013-07-20 18:53:07 +00:00
|
|
|
RTW_PUT_BE16(wpsie + wpsielen, config_method);
|
|
|
|
wpsielen += 2;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, wpsielen, (unsigned char *)wpsie, &pattrib->pktlen);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
pattrib->last_txcmdsz = pattrib->pktlen;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
dump_mgntframe(padapter, pmgntframe);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
return;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
static void issue_p2p_presence_resp(struct wifidirect_info *pwdinfo, u8 *da, u8 status, u8 dialogToken)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-07-20 18:53:07 +00:00
|
|
|
struct xmit_frame *pmgntframe;
|
|
|
|
struct pkt_attrib *pattrib;
|
|
|
|
unsigned char *pframe;
|
|
|
|
struct rtw_ieee80211_hdr *pwlanhdr;
|
2013-10-19 17:45:47 +00:00
|
|
|
__le16 *fctrl;
|
2013-07-27 01:08:39 +00:00
|
|
|
struct adapter *padapter = pwdinfo->padapter;
|
2013-07-20 18:53:07 +00:00
|
|
|
struct xmit_priv *pxmitpriv = &(padapter->xmitpriv);
|
|
|
|
struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv);
|
|
|
|
unsigned char category = RTW_WLAN_CATEGORY_P2P;/* P2P action frame */
|
|
|
|
__be32 p2poui = cpu_to_be32(P2POUI);
|
|
|
|
u8 oui_subtype = P2P_PRESENCE_RESPONSE;
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 p2pie[MAX_P2P_IE_LEN] = { 0x00 };
|
2013-07-20 18:53:07 +00:00
|
|
|
u8 noa_attr_content[32] = { 0x00 };
|
|
|
|
u32 p2pielen = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
DBG_88E("[%s]\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
pmgntframe = alloc_mgtxmitframe(pxmitpriv);
|
|
|
|
if (pmgntframe == NULL)
|
2013-07-20 18:53:07 +00:00
|
|
|
return;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
/* update attribute */
|
|
|
|
pattrib = &pmgntframe->attrib;
|
|
|
|
update_mgntframe_attrib(padapter, pattrib);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
_rtw_memset(pmgntframe->buf_addr, 0, WLANHDR_OFFSET + TXDESC_OFFSET);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
pframe = (u8 *)(pmgntframe->buf_addr) + TXDESC_OFFSET;
|
|
|
|
pwlanhdr = (struct rtw_ieee80211_hdr *)pframe;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
fctrl = &(pwlanhdr->frame_ctl);
|
|
|
|
*(fctrl) = 0;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwlanhdr->addr1, da, ETH_ALEN);
|
|
|
|
memcpy(pwlanhdr->addr2, pwdinfo->interface_addr, ETH_ALEN);
|
|
|
|
memcpy(pwlanhdr->addr3, pwdinfo->interface_addr, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
SetSeqNum(pwlanhdr, pmlmeext->mgnt_seq);
|
|
|
|
pmlmeext->mgnt_seq++;
|
|
|
|
SetFrameSubType(pframe, WIFI_ACTION);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
pframe += sizeof(struct rtw_ieee80211_hdr_3addr);
|
|
|
|
pattrib->pktlen = sizeof(struct rtw_ieee80211_hdr_3addr);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
/* Build P2P action frame header */
|
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen));
|
2013-07-31 01:51:20 +00:00
|
|
|
pframe = rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), &(pattrib->pktlen));
|
2013-07-20 18:53:07 +00:00
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen));
|
|
|
|
pframe = rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen));
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
/* Add P2P IE header */
|
2013-07-31 01:51:20 +00:00
|
|
|
/* P2P OUI */
|
2013-07-20 18:53:07 +00:00
|
|
|
p2pielen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
p2pie[p2pielen++] = 0x50;
|
|
|
|
p2pie[p2pielen++] = 0x6F;
|
|
|
|
p2pie[p2pielen++] = 0x9A;
|
|
|
|
p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
/* Add Status attribute in P2P IE */
|
|
|
|
p2pielen += rtw_set_p2p_attr_content(&p2pie[p2pielen], P2P_ATTR_STATUS, 1, &status);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
/* Add NoA attribute in P2P IE */
|
|
|
|
noa_attr_content[0] = 0x1;/* index */
|
|
|
|
noa_attr_content[1] = 0x0;/* CTWindow and OppPS Parameters */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
/* todo: Notice of Absence Descriptor(s) */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
p2pielen += rtw_set_p2p_attr_content(&p2pie[p2pielen], P2P_ATTR_NOA, 2, noa_attr_content);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, p2pie, &(pattrib->pktlen));
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
pattrib->last_txcmdsz = pattrib->pktlen;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
dump_mgntframe(padapter, pmgntframe);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
u32 build_beacon_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 p2pie[MAX_P2P_IE_LEN] = { 0x00 };
|
|
|
|
u16 capability = 0;
|
|
|
|
u32 len = 0, p2pielen = 0;
|
2013-07-20 18:53:07 +00:00
|
|
|
__le16 le_tmp;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* P2P OUI */
|
2013-07-20 18:53:07 +00:00
|
|
|
p2pielen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
p2pie[p2pielen++] = 0x50;
|
|
|
|
p2pie[p2pielen++] = 0x6F;
|
|
|
|
p2pie[p2pielen++] = 0x9A;
|
|
|
|
p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */
|
|
|
|
|
|
|
|
/* According to the P2P Specification, the beacon frame should contain 3 P2P attributes */
|
|
|
|
/* 1. P2P Capability */
|
|
|
|
/* 2. P2P Device ID */
|
|
|
|
/* 3. Notice of Absence (NOA) */
|
|
|
|
|
|
|
|
/* P2P Capability ATTR */
|
|
|
|
/* Type: */
|
|
|
|
/* Length: */
|
|
|
|
/* Value: */
|
|
|
|
/* Device Capability Bitmap, 1 byte */
|
|
|
|
/* Be able to participate in additional P2P Groups and */
|
|
|
|
/* support the P2P Invitation Procedure */
|
|
|
|
/* Group Capability Bitmap, 1 byte */
|
2013-07-20 18:53:07 +00:00
|
|
|
capability = P2P_DEVCAP_INVITATION_PROC|P2P_DEVCAP_CLIENT_DISCOVERABILITY;
|
|
|
|
capability |= ((P2P_GRPCAP_GO | P2P_GRPCAP_INTRABSS) << 8);
|
|
|
|
if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_PROVISIONING_ING))
|
|
|
|
capability |= (P2P_GRPCAP_GROUP_FORMATION<<8);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
le_tmp = cpu_to_le16(capability);
|
2013-07-31 01:51:20 +00:00
|
|
|
p2pielen += rtw_set_p2p_attr_content(&p2pie[p2pielen], P2P_ATTR_CAPABILITY, 2, (u8 *)&le_tmp);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
/* P2P Device ID ATTR */
|
|
|
|
p2pielen += rtw_set_p2p_attr_content(&p2pie[p2pielen], P2P_ATTR_DEVICE_ID, ETH_ALEN, pwdinfo->device_addr);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 18:53:07 +00:00
|
|
|
/* Notice of Absence ATTR */
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Type: */
|
|
|
|
/* Length: */
|
|
|
|
/* Value: */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, p2pielen, (unsigned char *)p2pie, &len);
|
2013-05-08 21:45:39 +00:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 build_probe_resp_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf)
|
|
|
|
{
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 p2pie[MAX_P2P_IE_LEN] = { 0x00 };
|
|
|
|
u32 len = 0, p2pielen = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* P2P OUI */
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
p2pie[p2pielen++] = 0x50;
|
|
|
|
p2pie[p2pielen++] = 0x6F;
|
|
|
|
p2pie[p2pielen++] = 0x9A;
|
|
|
|
p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */
|
|
|
|
|
|
|
|
/* Commented by Albert 20100907 */
|
|
|
|
/* According to the P2P Specification, the probe response frame should contain 5 P2P attributes */
|
|
|
|
/* 1. P2P Capability */
|
|
|
|
/* 2. Extended Listen Timing */
|
|
|
|
/* 3. Notice of Absence (NOA) (Only GO needs this) */
|
|
|
|
/* 4. Device Info */
|
|
|
|
/* 5. Group Info (Only GO need this) */
|
|
|
|
|
|
|
|
/* P2P Capability ATTR */
|
|
|
|
/* Type: */
|
|
|
|
p2pie[p2pielen++] = P2P_ATTR_CAPABILITY;
|
|
|
|
|
|
|
|
/* Length: */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_le16(0x0002); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_LE16(p2pie + p2pielen, 0x0002);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Value: */
|
|
|
|
/* Device Capability Bitmap, 1 byte */
|
|
|
|
p2pie[p2pielen++] = DMP_P2P_DEVCAP_SUPPORT;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Group Capability Bitmap, 1 byte */
|
|
|
|
if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) {
|
|
|
|
p2pie[p2pielen] = (P2P_GRPCAP_GO | P2P_GRPCAP_INTRABSS);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_PROVISIONING_ING))
|
2013-07-31 01:51:20 +00:00
|
|
|
p2pie[p2pielen] |= P2P_GRPCAP_GROUP_FORMATION;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
p2pielen++;
|
2013-07-31 01:51:20 +00:00
|
|
|
} else if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_DEVICE)) {
|
|
|
|
/* Group Capability Bitmap, 1 byte */
|
|
|
|
if (pwdinfo->persistent_supported)
|
|
|
|
p2pie[p2pielen++] = P2P_GRPCAP_PERSISTENT_GROUP | DMP_P2P_GRPCAP_SUPPORT;
|
2013-05-08 21:45:39 +00:00
|
|
|
else
|
2013-07-31 01:51:20 +00:00
|
|
|
p2pie[p2pielen++] = DMP_P2P_GRPCAP_SUPPORT;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Extended Listen Timing ATTR */
|
|
|
|
/* Type: */
|
|
|
|
p2pie[p2pielen++] = P2P_ATTR_EX_LISTEN_TIMING;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Length: */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_le16(0x0004); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_LE16(p2pie + p2pielen, 0x0004);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Value: */
|
|
|
|
/* Availability Period */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_le16(0xFFFF); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_LE16(p2pie + p2pielen, 0xFFFF);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Availability Interval */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_le16(0xFFFF); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_LE16(p2pie + p2pielen, 0xFFFF);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Notice of Absence ATTR */
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Type: */
|
|
|
|
/* Length: */
|
|
|
|
/* Value: */
|
|
|
|
|
|
|
|
/* Device Info ATTR */
|
|
|
|
/* Type: */
|
|
|
|
p2pie[p2pielen++] = P2P_ATTR_DEVICE_INFO;
|
|
|
|
|
|
|
|
/* Length: */
|
|
|
|
/* 21 -> P2P Device Address (6bytes) + Config Methods (2bytes) + Primary Device Type (8bytes) */
|
|
|
|
/* + NumofSecondDevType (1byte) + WPS Device Name ID field (2bytes) + WPS Device Name Len field (2bytes) */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_le16(21 + pwdinfo->device_name_len); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_LE16(p2pie + p2pielen, 21 + pwdinfo->device_name_len);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Value: */
|
|
|
|
/* P2P Device Address */
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(p2pie + p2pielen, pwdinfo->device_addr, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen += ETH_ALEN;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Config Method */
|
|
|
|
/* This field should be big endian. Noted by P2P specification. */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_be16(pwdinfo->supported_wps_cm); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(p2pie + p2pielen, pwdinfo->supported_wps_cm);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Primary Device Type */
|
|
|
|
/* Category ID */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_be16(WPS_PDT_CID_MULIT_MEDIA); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(p2pie + p2pielen, WPS_PDT_CID_MULIT_MEDIA);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* OUI */
|
|
|
|
/* u32*) (p2pie + p2pielen) = cpu_to_be32(WPSOUI); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE32(p2pie + p2pielen, WPSOUI);
|
|
|
|
p2pielen += 4;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Sub Category ID */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_be16(WPS_PDT_SCID_MEDIA_SERVER); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(p2pie + p2pielen, WPS_PDT_SCID_MEDIA_SERVER);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Number of Secondary Device Types */
|
|
|
|
p2pie[p2pielen++] = 0x00; /* No Secondary Device Type List */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Device Name */
|
|
|
|
/* Type: */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_be16(WPS_ATTR_DEVICE_NAME); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(p2pie + p2pielen, WPS_ATTR_DEVICE_NAME);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Length: */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_be16(pwdinfo->device_name_len); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(p2pie + p2pielen, pwdinfo->device_name_len);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Value: */
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(p2pie + p2pielen, pwdinfo->device_name, pwdinfo->device_name_len);
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen += pwdinfo->device_name_len;
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Group Info ATTR */
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Type: */
|
|
|
|
/* Length: */
|
|
|
|
/* Value: */
|
2013-05-09 04:04:25 +00:00
|
|
|
if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO))
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen += go_add_group_info_attr(pwdinfo, p2pie + p2pielen);
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, p2pielen, (unsigned char *)p2pie, &len);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
u32 build_prov_disc_request_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf, u8 *pssid, u8 ussidlen, u8 *pdev_raddr)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 p2pie[MAX_P2P_IE_LEN] = { 0x00 };
|
|
|
|
u32 len = 0, p2pielen = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* P2P OUI */
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
p2pie[p2pielen++] = 0x50;
|
|
|
|
p2pie[p2pielen++] = 0x6F;
|
|
|
|
p2pie[p2pielen++] = 0x9A;
|
|
|
|
p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */
|
|
|
|
|
|
|
|
/* Commented by Albert 20110301 */
|
|
|
|
/* According to the P2P Specification, the provision discovery request frame should contain 3 P2P attributes */
|
|
|
|
/* 1. P2P Capability */
|
|
|
|
/* 2. Device Info */
|
|
|
|
/* 3. Group ID (When joining an operating P2P Group) */
|
|
|
|
|
|
|
|
/* P2P Capability ATTR */
|
|
|
|
/* Type: */
|
|
|
|
p2pie[p2pielen++] = P2P_ATTR_CAPABILITY;
|
|
|
|
|
|
|
|
/* Length: */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_le16(0x0002); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_LE16(p2pie + p2pielen, 0x0002);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Value: */
|
|
|
|
/* Device Capability Bitmap, 1 byte */
|
|
|
|
p2pie[p2pielen++] = DMP_P2P_DEVCAP_SUPPORT;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Group Capability Bitmap, 1 byte */
|
|
|
|
if (pwdinfo->persistent_supported)
|
|
|
|
p2pie[p2pielen++] = P2P_GRPCAP_PERSISTENT_GROUP | DMP_P2P_GRPCAP_SUPPORT;
|
2013-05-08 21:45:39 +00:00
|
|
|
else
|
2013-07-31 01:51:20 +00:00
|
|
|
p2pie[p2pielen++] = DMP_P2P_GRPCAP_SUPPORT;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Device Info ATTR */
|
|
|
|
/* Type: */
|
|
|
|
p2pie[p2pielen++] = P2P_ATTR_DEVICE_INFO;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Length: */
|
|
|
|
/* 21 -> P2P Device Address (6bytes) + Config Methods (2bytes) + Primary Device Type (8bytes) */
|
|
|
|
/* + NumofSecondDevType (1byte) + WPS Device Name ID field (2bytes) + WPS Device Name Len field (2bytes) */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_le16(21 + pwdinfo->device_name_len); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_LE16(p2pie + p2pielen, 21 + pwdinfo->device_name_len);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Value: */
|
|
|
|
/* P2P Device Address */
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(p2pie + p2pielen, pwdinfo->device_addr, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen += ETH_ALEN;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Config Method */
|
|
|
|
/* This field should be big endian. Noted by P2P specification. */
|
|
|
|
if (pwdinfo->ui_got_wps_info == P2P_GOT_WPSINFO_PBC) {
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_be16(WPS_CONFIG_METHOD_PBC); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(p2pie + p2pielen, WPS_CONFIG_METHOD_PBC);
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_be16(WPS_CONFIG_METHOD_DISPLAY); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(p2pie + p2pielen, WPS_CONFIG_METHOD_DISPLAY);
|
|
|
|
}
|
|
|
|
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Primary Device Type */
|
|
|
|
/* Category ID */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_be16(WPS_PDT_CID_MULIT_MEDIA); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(p2pie + p2pielen, WPS_PDT_CID_MULIT_MEDIA);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* OUI */
|
|
|
|
/* u32*) (p2pie + p2pielen) = cpu_to_be32(WPSOUI); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE32(p2pie + p2pielen, WPSOUI);
|
|
|
|
p2pielen += 4;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Sub Category ID */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_be16(WPS_PDT_SCID_MEDIA_SERVER); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(p2pie + p2pielen, WPS_PDT_SCID_MEDIA_SERVER);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Number of Secondary Device Types */
|
|
|
|
p2pie[p2pielen++] = 0x00; /* No Secondary Device Type List */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Device Name */
|
|
|
|
/* Type: */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_be16(WPS_ATTR_DEVICE_NAME); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(p2pie + p2pielen, WPS_ATTR_DEVICE_NAME);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Length: */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_be16(pwdinfo->device_name_len); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_BE16(p2pie + p2pielen, pwdinfo->device_name_len);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Value: */
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(p2pie + p2pielen, pwdinfo->device_name, pwdinfo->device_name_len);
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen += pwdinfo->device_name_len;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_CLIENT)) {
|
|
|
|
/* Added by Albert 2011/05/19 */
|
|
|
|
/* In this case, the pdev_raddr is the device address of the group owner. */
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* P2P Group ID ATTR */
|
|
|
|
/* Type: */
|
|
|
|
p2pie[p2pielen++] = P2P_ATTR_GROUP_ID;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Length: */
|
|
|
|
/* u16*) (p2pie + p2pielen) = cpu_to_le16(ETH_ALEN + ussidlen); */
|
2013-05-08 21:45:39 +00:00
|
|
|
RTW_PUT_LE16(p2pie + p2pielen, ETH_ALEN + ussidlen);
|
|
|
|
p2pielen += 2;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Value: */
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(p2pie + p2pielen, pdev_raddr, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen += ETH_ALEN;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(p2pie + p2pielen, pssid, ussidlen);
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen += ussidlen;
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, p2pielen, (unsigned char *)p2pie, &len);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 build_assoc_resp_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf, u8 status_code)
|
|
|
|
{
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 p2pie[MAX_P2P_IE_LEN] = { 0x00 };
|
|
|
|
u32 len = 0, p2pielen = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* P2P OUI */
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
p2pie[p2pielen++] = 0x50;
|
|
|
|
p2pie[p2pielen++] = 0x6F;
|
|
|
|
p2pie[p2pielen++] = 0x9A;
|
|
|
|
p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* According to the P2P Specification, the Association response frame should contain 2 P2P attributes */
|
2013-07-31 01:51:20 +00:00
|
|
|
/* 1. Status */
|
|
|
|
/* 2. Extended Listen Timing (optional) */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Status ATTR */
|
2013-05-08 21:45:39 +00:00
|
|
|
p2pielen += rtw_set_p2p_attr_content(&p2pie[p2pielen], P2P_ATTR_STATUS, 1, &status_code);
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Extended Listen Timing ATTR */
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Type: */
|
|
|
|
/* Length: */
|
|
|
|
/* Value: */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, p2pielen, (unsigned char *)p2pie, &len);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 build_deauth_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf)
|
|
|
|
{
|
2013-07-31 01:51:20 +00:00
|
|
|
u32 len = 0;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 process_probe_req_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pframe, uint len)
|
2013-05-19 04:28:07 +00:00
|
|
|
{
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 *p;
|
2013-07-31 01:51:20 +00:00
|
|
|
u32 ret = false;
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 *p2pie;
|
|
|
|
u32 p2pielen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
int ssid_len = 0, rate_cnt = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
p = rtw_get_ie(pframe + WLAN_HDR_A3_LEN + _PROBEREQ_IE_OFFSET_, _SUPPORTEDRATES_IE_, (int *)&rate_cnt,
|
|
|
|
len - WLAN_HDR_A3_LEN - _PROBEREQ_IE_OFFSET_);
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rate_cnt <= 4) {
|
|
|
|
int i, g_rate = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < rate_cnt; i++) {
|
|
|
|
if (((*(p + 2 + i) & 0xff) != 0x02) &&
|
|
|
|
((*(p + 2 + i) & 0xff) != 0x04) &&
|
|
|
|
((*(p + 2 + i) & 0xff) != 0x0B) &&
|
|
|
|
((*(p + 2 + i) & 0xff) != 0x16))
|
2013-05-08 21:45:39 +00:00
|
|
|
g_rate = 1;
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (g_rate == 0) {
|
|
|
|
/* There is no OFDM rate included in SupportedRates IE of this probe request frame */
|
|
|
|
/* The driver should response this probe request. */
|
2013-05-08 21:45:39 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
|
|
|
/* rate_cnt > 4 means the SupportRates IE contains the OFDM rate because the count of CCK rates are 4. */
|
|
|
|
/* We should proceed the following check for this probe request. */
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Added comments by Albert 20100906 */
|
|
|
|
/* There are several items we should check here. */
|
|
|
|
/* 1. This probe request frame must contain the P2P IE. (Done) */
|
|
|
|
/* 2. This probe request frame must contain the wildcard SSID. (Done) */
|
|
|
|
/* 3. Wildcard BSSID. (Todo) */
|
|
|
|
/* 4. Destination Address. (Done in mgt_dispatcher function) */
|
|
|
|
/* 5. Requested Device Type in WSC IE. (Todo) */
|
|
|
|
/* 6. Device ID attribute in P2P IE. (Todo) */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
p = rtw_get_ie(pframe + WLAN_HDR_A3_LEN + _PROBEREQ_IE_OFFSET_, _SSID_IE_, (int *)&ssid_len,
|
2013-05-19 04:28:07 +00:00
|
|
|
len - WLAN_HDR_A3_LEN - _PROBEREQ_IE_OFFSET_);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
ssid_len &= 0xff; /* Just last 1 byte is valid for ssid len of the probe request */
|
|
|
|
if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_DEVICE) || rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) {
|
|
|
|
p2pie = rtw_get_p2p_ie(pframe + WLAN_HDR_A3_LEN + _PROBEREQ_IE_OFFSET_ , len - WLAN_HDR_A3_LEN - _PROBEREQ_IE_OFFSET_ , NULL, &p2pielen);
|
|
|
|
if (p2pie) {
|
|
|
|
if ((p != NULL) && _rtw_memcmp((void *)(p+2), (void *)pwdinfo->p2p_wildcard_ssid , 7)) {
|
2013-07-09 22:38:46 +00:00
|
|
|
/* todo: */
|
|
|
|
/* Check Requested Device Type attributes in WSC IE. */
|
|
|
|
/* Check Device ID attribute in P2P IE */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-05-26 03:02:10 +00:00
|
|
|
ret = true;
|
2013-07-31 01:51:20 +00:00
|
|
|
} else if ((p != NULL) && (ssid_len == 0)) {
|
2013-05-26 03:02:10 +00:00
|
|
|
ret = true;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
2013-07-09 22:38:46 +00:00
|
|
|
/* non -p2p device */
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
}
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 process_assoc_req_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pframe, uint len, struct sta_info *psta)
|
|
|
|
{
|
|
|
|
u8 status_code = P2P_STATUS_SUCCESS;
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 *pbuf, *pattr_content = NULL;
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 attr_contentlen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
u16 cap_attr = 0;
|
|
|
|
unsigned short frame_type, ie_offset = 0;
|
|
|
|
u8 *ies;
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 ies_len;
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 *p2p_ie;
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 p2p_ielen = 0;
|
2013-06-07 19:19:07 +00:00
|
|
|
__be16 be_tmp;
|
|
|
|
__le16 le_tmp;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (!rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO))
|
2013-05-08 21:45:39 +00:00
|
|
|
return P2P_STATUS_FAIL_REQUEST_UNABLE;
|
|
|
|
|
|
|
|
frame_type = GetFrameSubType(pframe);
|
|
|
|
if (frame_type == WIFI_ASSOCREQ)
|
|
|
|
ie_offset = _ASOCREQ_IE_OFFSET_;
|
2013-07-09 22:38:46 +00:00
|
|
|
else /* WIFI_REASSOCREQ */
|
2013-05-08 21:45:39 +00:00
|
|
|
ie_offset = _REASOCREQ_IE_OFFSET_;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
ies = pframe + WLAN_HDR_A3_LEN + ie_offset;
|
|
|
|
ies_len = len - WLAN_HDR_A3_LEN - ie_offset;
|
|
|
|
|
|
|
|
p2p_ie = rtw_get_p2p_ie(ies , ies_len , NULL, &p2p_ielen);
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (!p2p_ie) {
|
|
|
|
DBG_88E("[%s] P2P IE not Found!!\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
status_code = P2P_STATUS_FAIL_INVALID_PARAM;
|
2013-06-07 19:19:07 +00:00
|
|
|
} else {
|
2013-07-31 01:51:20 +00:00
|
|
|
DBG_88E("[%s] P2P IE Found!!\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
while (p2p_ie) {
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Check P2P Capability ATTR */
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CAPABILITY, (u8 *)&le_tmp, (uint *)&attr_contentlen)) {
|
|
|
|
DBG_88E("[%s] Got P2P Capability Attr!!\n", __func__);
|
2013-06-07 19:19:07 +00:00
|
|
|
cap_attr = le16_to_cpu(le_tmp);
|
2013-05-08 21:45:39 +00:00
|
|
|
psta->dev_cap = cap_attr&0xff;
|
|
|
|
}
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Check Extended Listen Timing ATTR */
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Check P2P Device Info ATTR */
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_DEVICE_INFO, NULL, (uint *)&attr_contentlen)) {
|
|
|
|
DBG_88E("[%s] Got P2P DEVICE INFO Attr!!\n", __func__);
|
2013-06-07 19:19:07 +00:00
|
|
|
pattr_content = rtw_zmalloc(attr_contentlen);
|
|
|
|
pbuf = pattr_content;
|
|
|
|
if (pattr_content) {
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 num_of_secdev_type;
|
|
|
|
u16 dev_name_len;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_DEVICE_INFO , pattr_content, (uint *)&attr_contentlen);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(psta->dev_addr, pattr_content, ETH_ALEN);/* P2P Device Address */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
pattr_content += ETH_ALEN;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(&be_tmp, pattr_content, 2);/* Config Methods */
|
2013-06-07 19:19:07 +00:00
|
|
|
psta->config_methods = be16_to_cpu(be_tmp);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
pattr_content += 2;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(psta->primary_dev_type, pattr_content, 8);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
pattr_content += 8;
|
|
|
|
|
|
|
|
num_of_secdev_type = *pattr_content;
|
|
|
|
pattr_content += 1;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (num_of_secdev_type == 0) {
|
2013-05-08 21:45:39 +00:00
|
|
|
psta->num_of_secdev_type = 0;
|
2013-06-07 19:19:07 +00:00
|
|
|
} else {
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 len;
|
|
|
|
|
|
|
|
psta->num_of_secdev_type = num_of_secdev_type;
|
|
|
|
|
2013-06-07 19:19:07 +00:00
|
|
|
len = (sizeof(psta->secdev_types_list) < (num_of_secdev_type*8)) ?
|
|
|
|
(sizeof(psta->secdev_types_list)) : (num_of_secdev_type*8);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(psta->secdev_types_list, pattr_content, len);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
pattr_content += (num_of_secdev_type*8);
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
psta->dev_name_len = 0;
|
2013-06-07 19:19:07 +00:00
|
|
|
if (WPS_ATTR_DEVICE_NAME == be16_to_cpu(*(__be16 *)pattr_content)) {
|
|
|
|
dev_name_len = be16_to_cpu(*(__be16 *)(pattr_content+2));
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
psta->dev_name_len = (sizeof(psta->dev_name) < dev_name_len) ? sizeof(psta->dev_name) : dev_name_len;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(psta->dev_name, pattr_content+4, psta->dev_name_len);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-10-19 17:45:47 +00:00
|
|
|
kfree(pbuf);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Get the next P2P IE */
|
2013-07-31 01:51:20 +00:00
|
|
|
p2p_ie = rtw_get_p2p_ie(p2p_ie+p2p_ielen, ies_len - (p2p_ie - ies + p2p_ielen), NULL, &p2p_ielen);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return status_code;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 process_p2p_devdisc_req(struct wifidirect_info *pwdinfo, u8 *pframe, uint len)
|
|
|
|
{
|
|
|
|
u8 *frame_body;
|
|
|
|
u8 status, dialogToken;
|
|
|
|
struct sta_info *psta = NULL;
|
2013-07-27 01:08:39 +00:00
|
|
|
struct adapter *padapter = pwdinfo->padapter;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct sta_priv *pstapriv = &padapter->stapriv;
|
|
|
|
u8 *p2p_ie;
|
2013-05-19 04:28:07 +00:00
|
|
|
u32 p2p_ielen = 0;
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
frame_body = (unsigned char *)(pframe + sizeof(struct rtw_ieee80211_hdr_3addr));
|
|
|
|
|
|
|
|
dialogToken = frame_body[7];
|
|
|
|
status = P2P_STATUS_FAIL_UNKNOWN_P2PGROUP;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
p2p_ie = rtw_get_p2p_ie(frame_body + _PUBLIC_ACTION_IE_OFFSET_, len - _PUBLIC_ACTION_IE_OFFSET_, NULL, &p2p_ielen);
|
|
|
|
if (p2p_ie) {
|
|
|
|
u8 groupid[38] = { 0x00 };
|
2013-05-19 04:28:07 +00:00
|
|
|
u8 dev_addr[ETH_ALEN] = { 0x00 };
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 attr_contentlen = 0;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_GROUP_ID, groupid, &attr_contentlen)) {
|
2013-05-19 04:28:07 +00:00
|
|
|
if (_rtw_memcmp(pwdinfo->device_addr, groupid, ETH_ALEN) &&
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memcmp(pwdinfo->p2p_group_ssid, groupid+ETH_ALEN, pwdinfo->p2p_group_ssid_len)) {
|
|
|
|
attr_contentlen = 0;
|
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_DEVICE_ID, dev_addr, &attr_contentlen)) {
|
2013-07-25 14:49:25 +00:00
|
|
|
struct list_head *phead, *plist;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-11-29 00:42:41 +00:00
|
|
|
spin_lock_bh(&pstapriv->asoc_list_lock);
|
2013-05-08 21:45:39 +00:00
|
|
|
phead = &pstapriv->asoc_list;
|
|
|
|
plist = get_next(phead);
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* look up sta asoc_queue */
|
2013-07-31 01:51:20 +00:00
|
|
|
while ((rtw_end_of_queue_search(phead, plist)) == false) {
|
2013-05-08 21:45:39 +00:00
|
|
|
psta = LIST_CONTAINOR(plist, struct sta_info, asoc_list);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
plist = get_next(plist);
|
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (psta->is_p2p_device && (psta->dev_cap&P2P_DEVCAP_CLIENT_DISCOVERABILITY) &&
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memcmp(psta->dev_addr, dev_addr, ETH_ALEN)) {
|
2013-07-09 22:38:46 +00:00
|
|
|
/* issue GO Discoverability Request */
|
2013-05-08 21:45:39 +00:00
|
|
|
issue_group_disc_req(pwdinfo, psta->hwaddr);
|
|
|
|
status = P2P_STATUS_SUCCESS;
|
|
|
|
break;
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
2013-05-08 21:45:39 +00:00
|
|
|
status = P2P_STATUS_FAIL_INFO_UNAVAILABLE;
|
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
}
|
2014-11-29 00:42:41 +00:00
|
|
|
spin_unlock_bh(&pstapriv->asoc_list_lock);
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
2013-05-08 21:45:39 +00:00
|
|
|
status = P2P_STATUS_FAIL_INVALID_PARAM;
|
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
2013-05-08 21:45:39 +00:00
|
|
|
status = P2P_STATUS_FAIL_INVALID_PARAM;
|
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
}
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* issue Device Discoverability Response */
|
2013-05-08 21:45:39 +00:00
|
|
|
issue_p2p_devdisc_resp(pwdinfo, GetAddr2Ptr(pframe), status, dialogToken);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
return (status == P2P_STATUS_SUCCESS) ? true : false;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u32 process_p2p_devdisc_resp(struct wifidirect_info *pwdinfo, u8 *pframe, uint len)
|
|
|
|
{
|
2013-05-26 03:02:10 +00:00
|
|
|
return true;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 process_p2p_provdisc_req(struct wifidirect_info *pwdinfo, u8 *pframe, uint len)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
u8 *frame_body;
|
|
|
|
u8 *wpsie;
|
|
|
|
uint wps_ielen = 0, attr_contentlen = 0;
|
|
|
|
u16 uconfig_method = 0;
|
2013-06-07 19:19:07 +00:00
|
|
|
__be16 be_tmp;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
frame_body = (pframe + sizeof(struct rtw_ieee80211_hdr_3addr));
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
wpsie = rtw_get_wps_ie(frame_body + _PUBLIC_ACTION_IE_OFFSET_, len - _PUBLIC_ACTION_IE_OFFSET_, NULL, &wps_ielen);
|
|
|
|
if (wpsie) {
|
|
|
|
if (rtw_get_wps_attr_content(wpsie, wps_ielen, WPS_ATTR_CONF_METHOD, (u8 *)&be_tmp, &attr_contentlen)) {
|
2013-06-07 19:19:07 +00:00
|
|
|
uconfig_method = be16_to_cpu(be_tmp);
|
|
|
|
switch (uconfig_method) {
|
|
|
|
case WPS_CM_DISPLYA:
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "dis", 3);
|
2013-06-07 19:19:07 +00:00
|
|
|
break;
|
|
|
|
case WPS_CM_LABEL:
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "lab", 3);
|
2013-06-07 19:19:07 +00:00
|
|
|
break;
|
|
|
|
case WPS_CM_PUSH_BUTTON:
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "pbc", 3);
|
2013-06-07 19:19:07 +00:00
|
|
|
break;
|
|
|
|
case WPS_CM_KEYPAD:
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "pad", 3);
|
2013-06-07 19:19:07 +00:00
|
|
|
break;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
issue_p2p_provision_resp(pwdinfo, GetAddr2Ptr(pframe), frame_body, uconfig_method);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
DBG_88E("[%s] config method = %s\n", __func__, pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req);
|
2013-05-26 03:02:10 +00:00
|
|
|
return true;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 process_p2p_provdisc_resp(struct wifidirect_info *pwdinfo, u8 *pframe)
|
|
|
|
{
|
2013-05-26 03:02:10 +00:00
|
|
|
return true;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-06-07 19:19:07 +00:00
|
|
|
static u8 rtw_p2p_get_peer_ch_list(struct wifidirect_info *pwdinfo, u8 *ch_content, u8 ch_cnt, u8 *peer_ch_list)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
u8 i = 0, j = 0;
|
|
|
|
u8 temp = 0;
|
|
|
|
u8 ch_no = 0;
|
|
|
|
ch_content += 3;
|
|
|
|
ch_cnt -= 3;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
while (ch_cnt > 0) {
|
2013-05-08 21:45:39 +00:00
|
|
|
ch_content += 1;
|
|
|
|
ch_cnt -= 1;
|
|
|
|
temp = *ch_content;
|
2013-07-31 01:51:20 +00:00
|
|
|
for (i = 0 ; i < temp ; i++, j++)
|
|
|
|
peer_ch_list[j] = *(ch_content + 1 + i);
|
2013-05-08 21:45:39 +00:00
|
|
|
ch_content += (temp + 1);
|
|
|
|
ch_cnt -= (temp + 1);
|
|
|
|
ch_no += temp ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ch_no;
|
|
|
|
}
|
|
|
|
|
2013-06-07 19:19:07 +00:00
|
|
|
static u8 rtw_p2p_ch_inclusion(struct mlme_ext_priv *pmlmeext, u8 *peer_ch_list, u8 peer_ch_num, u8 *ch_list_inclusioned)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
int i = 0, j = 0, temp = 0;
|
|
|
|
u8 ch_no = 0;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
for (i = 0; i < peer_ch_num; i++) {
|
|
|
|
for (j = temp; j < pmlmeext->max_chan_nums; j++) {
|
|
|
|
if (*(peer_ch_list + i) == pmlmeext->channel_set[j].ChannelNum) {
|
|
|
|
ch_list_inclusioned[ch_no++] = *(peer_ch_list + i);
|
2013-05-08 21:45:39 +00:00
|
|
|
temp = j;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ch_no;
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 process_p2p_group_negotation_req(struct wifidirect_info *pwdinfo, u8 *pframe, uint len)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-07-27 01:08:39 +00:00
|
|
|
struct adapter *padapter = pwdinfo->padapter;
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 result = P2P_STATUS_SUCCESS;
|
|
|
|
u32 p2p_ielen = 0, wps_ielen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 *ies;
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 ies_len;
|
|
|
|
u8 *p2p_ie;
|
|
|
|
u8 *wpsie;
|
|
|
|
u16 wps_devicepassword_id = 0x0000;
|
|
|
|
uint wps_devicepassword_id_len = 0;
|
2013-06-07 19:19:07 +00:00
|
|
|
__be16 be_tmp;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
wpsie = rtw_get_wps_ie(pframe + _PUBLIC_ACTION_IE_OFFSET_, len - _PUBLIC_ACTION_IE_OFFSET_, NULL, &wps_ielen);
|
|
|
|
if (wpsie) {
|
|
|
|
/* Commented by Kurt 20120113 */
|
|
|
|
/* If some device wants to do p2p handshake without sending prov_disc_req */
|
|
|
|
/* We have to get peer_req_cm from here. */
|
|
|
|
if (_rtw_memcmp(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "000", 3)) {
|
2013-06-07 19:19:07 +00:00
|
|
|
rtw_get_wps_attr_content(wpsie, wps_ielen, WPS_ATTR_DEVICE_PWID, (u8 *)&be_tmp, &wps_devicepassword_id_len);
|
|
|
|
wps_devicepassword_id = be16_to_cpu(be_tmp);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (wps_devicepassword_id == WPS_DPID_USER_SPEC)
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "dis", 3);
|
2013-07-31 01:51:20 +00:00
|
|
|
else if (wps_devicepassword_id == WPS_DPID_REGISTRAR_SPEC)
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "pad", 3);
|
2013-05-08 21:45:39 +00:00
|
|
|
else
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "pbc", 3);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-06-07 19:19:07 +00:00
|
|
|
} else {
|
2013-07-31 01:51:20 +00:00
|
|
|
DBG_88E("[%s] WPS IE not Found!!\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
result = P2P_STATUS_FAIL_INCOMPATIBLE_PARAM;
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL);
|
2013-07-31 01:51:20 +00:00
|
|
|
return result;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (pwdinfo->ui_got_wps_info == P2P_NO_WPSINFO) {
|
2013-05-08 21:45:39 +00:00
|
|
|
result = P2P_STATUS_FAIL_INFO_UNAVAILABLE;
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_TX_INFOR_NOREADY);
|
2013-07-31 01:51:20 +00:00
|
|
|
return result;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ies = pframe + _PUBLIC_ACTION_IE_OFFSET_;
|
|
|
|
ies_len = len - _PUBLIC_ACTION_IE_OFFSET_;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
p2p_ie = rtw_get_p2p_ie(ies, ies_len, NULL, &p2p_ielen);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (!p2p_ie) {
|
|
|
|
DBG_88E("[%s] P2P IE not Found!!\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
result = P2P_STATUS_FAIL_INCOMPATIBLE_PARAM;
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL);
|
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
while (p2p_ie) {
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 attr_content = 0x00;
|
|
|
|
u32 attr_contentlen = 0;
|
|
|
|
u8 ch_content[50] = { 0x00 };
|
|
|
|
uint ch_cnt = 0;
|
|
|
|
u8 peer_ch_list[50] = { 0x00 };
|
|
|
|
u8 peer_ch_num = 0;
|
|
|
|
u8 ch_list_inclusioned[50] = { 0x00 };
|
|
|
|
u8 ch_num_inclusioned = 0;
|
|
|
|
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_ING);
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_GO_INTENT , &attr_content, &attr_contentlen)) {
|
|
|
|
DBG_88E("[%s] GO Intent = %d, tie = %d\n", __func__, attr_content >> 1, attr_content & 0x01);
|
|
|
|
pwdinfo->peer_intent = attr_content; /* include both intent and tie breaker values. */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (pwdinfo->intent == (pwdinfo->peer_intent >> 1)) {
|
|
|
|
/* Try to match the tie breaker value */
|
|
|
|
if (pwdinfo->intent == P2P_MAX_INTENT) {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE);
|
|
|
|
result = P2P_STATUS_FAIL_BOTH_GOINTENT_15;
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
|
|
|
if (attr_content & 0x01)
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT);
|
|
|
|
else
|
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO);
|
2013-05-19 04:28:07 +00:00
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
} else if (pwdinfo->intent > (pwdinfo->peer_intent >> 1)) {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO);
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT);
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) {
|
|
|
|
/* Store the group id information. */
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->groupid_info.go_device_addr, pwdinfo->device_addr, ETH_ALEN);
|
|
|
|
memcpy(pwdinfo->groupid_info.ssid, pwdinfo->nego_ssid, pwdinfo->nego_ssidlen);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
attr_contentlen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_INTENTED_IF_ADDR, pwdinfo->p2p_peer_interface_addr, &attr_contentlen)) {
|
|
|
|
if (attr_contentlen != ETH_ALEN)
|
|
|
|
_rtw_memset(pwdinfo->p2p_peer_interface_addr, 0x00, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CH_LIST, ch_content, &ch_cnt)) {
|
2013-05-08 21:45:39 +00:00
|
|
|
peer_ch_num = rtw_p2p_get_peer_ch_list(pwdinfo, ch_content, ch_cnt, peer_ch_list);
|
|
|
|
ch_num_inclusioned = rtw_p2p_ch_inclusion(&padapter->mlmeextpriv, peer_ch_list, peer_ch_num, ch_list_inclusioned);
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (ch_num_inclusioned == 0) {
|
|
|
|
DBG_88E("[%s] No common channel in channel list!\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
result = P2P_STATUS_FAIL_NO_COMMON_CH;
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) {
|
2013-07-12 03:50:49 +00:00
|
|
|
if (!rtw_p2p_is_channel_list_ok(pwdinfo->operating_channel,
|
2013-07-31 01:51:20 +00:00
|
|
|
ch_list_inclusioned, ch_num_inclusioned)) {
|
2013-07-12 03:50:49 +00:00
|
|
|
u8 operatingch_info[5] = { 0x00 }, peer_operating_ch = 0;
|
|
|
|
attr_contentlen = 0;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_OPERATING_CH, operatingch_info, &attr_contentlen))
|
2013-07-12 03:50:49 +00:00
|
|
|
peer_operating_ch = operatingch_info[4];
|
|
|
|
|
|
|
|
if (rtw_p2p_is_channel_list_ok(peer_operating_ch,
|
2013-07-31 01:51:20 +00:00
|
|
|
ch_list_inclusioned, ch_num_inclusioned)) {
|
2013-07-12 03:50:49 +00:00
|
|
|
/**
|
|
|
|
* Change our operating channel as peer's for compatibility.
|
|
|
|
*/
|
|
|
|
pwdinfo->operating_channel = peer_operating_ch;
|
2013-07-31 01:51:20 +00:00
|
|
|
DBG_88E("[%s] Change op ch to %02x as peer's\n", __func__, pwdinfo->operating_channel);
|
2013-07-12 03:50:49 +00:00
|
|
|
} else {
|
|
|
|
/* Take first channel of ch_list_inclusioned as operating channel */
|
|
|
|
pwdinfo->operating_channel = ch_list_inclusioned[0];
|
2013-07-31 01:51:20 +00:00
|
|
|
DBG_88E("[%s] Change op ch to %02x\n", __func__, pwdinfo->operating_channel);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Get the next P2P IE */
|
2013-07-31 01:51:20 +00:00
|
|
|
p2p_ie = rtw_get_p2p_ie(p2p_ie+p2p_ielen, ies_len - (p2p_ie - ies + p2p_ielen), NULL, &p2p_ielen);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
return result;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 process_p2p_group_negotation_resp(struct wifidirect_info *pwdinfo, u8 *pframe, uint len)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-07-27 01:08:39 +00:00
|
|
|
struct adapter *padapter = pwdinfo->padapter;
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 result = P2P_STATUS_SUCCESS;
|
|
|
|
u32 p2p_ielen, wps_ielen;
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 *ies;
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 ies_len;
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 *p2p_ie;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
ies = pframe + _PUBLIC_ACTION_IE_OFFSET_;
|
|
|
|
ies_len = len - _PUBLIC_ACTION_IE_OFFSET_;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Be able to know which one is the P2P GO and which one is P2P client. */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_wps_ie(ies, ies_len, NULL, &wps_ielen)) {
|
|
|
|
} else {
|
|
|
|
DBG_88E("[%s] WPS IE not Found!!\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
result = P2P_STATUS_FAIL_INCOMPATIBLE_PARAM;
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL);
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
p2p_ie = rtw_get_p2p_ie(ies, ies_len, NULL, &p2p_ielen);
|
|
|
|
if (!p2p_ie) {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE);
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL);
|
|
|
|
result = P2P_STATUS_FAIL_INCOMPATIBLE_PARAM;
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 attr_content = 0x00;
|
|
|
|
u32 attr_contentlen = 0;
|
|
|
|
u8 operatingch_info[5] = { 0x00 };
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 groupid[38];
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 peer_ch_list[50] = { 0x00 };
|
|
|
|
u8 peer_ch_num = 0;
|
|
|
|
u8 ch_list_inclusioned[50] = { 0x00 };
|
|
|
|
u8 ch_num_inclusioned = 0;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
while (p2p_ie) { /* Found the P2P IE. */
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_STATUS, &attr_content, &attr_contentlen);
|
2013-07-31 01:51:20 +00:00
|
|
|
if (attr_contentlen == 1) {
|
|
|
|
DBG_88E("[%s] Status = %d\n", __func__, attr_content);
|
|
|
|
if (attr_content == P2P_STATUS_SUCCESS) {
|
|
|
|
/* Do nothing. */
|
2013-06-07 19:19:07 +00:00
|
|
|
} else {
|
2013-07-31 01:51:20 +00:00
|
|
|
if (P2P_STATUS_FAIL_INFO_UNAVAILABLE == attr_content) {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_RX_INFOR_NOREADY);
|
|
|
|
} else {
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL);
|
|
|
|
}
|
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE);
|
|
|
|
result = attr_content;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Try to get the peer's interface address */
|
2013-05-08 21:45:39 +00:00
|
|
|
attr_contentlen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_INTENTED_IF_ADDR, pwdinfo->p2p_peer_interface_addr, &attr_contentlen)) {
|
|
|
|
if (attr_contentlen != ETH_ALEN)
|
|
|
|
_rtw_memset(pwdinfo->p2p_peer_interface_addr, 0x00, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Try to get the peer's intent and tie breaker value. */
|
2013-05-08 21:45:39 +00:00
|
|
|
attr_content = 0x00;
|
|
|
|
attr_contentlen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_GO_INTENT , &attr_content, &attr_contentlen)) {
|
|
|
|
DBG_88E("[%s] GO Intent = %d, tie = %d\n", __func__, attr_content >> 1, attr_content & 0x01);
|
|
|
|
pwdinfo->peer_intent = attr_content; /* include both intent and tie breaker values. */
|
|
|
|
|
|
|
|
if (pwdinfo->intent == (pwdinfo->peer_intent >> 1)) {
|
|
|
|
/* Try to match the tie breaker value */
|
|
|
|
if (pwdinfo->intent == P2P_MAX_INTENT) {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE);
|
|
|
|
result = P2P_STATUS_FAIL_BOTH_GOINTENT_15;
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL);
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_OK);
|
|
|
|
rtw_p2p_set_pre_state(pwdinfo, P2P_STATE_GONEGO_OK);
|
2013-07-31 01:51:20 +00:00
|
|
|
if (attr_content & 0x01)
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT);
|
|
|
|
else
|
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO);
|
2013-05-19 04:28:07 +00:00
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
} else if (pwdinfo->intent > (pwdinfo->peer_intent >> 1)) {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_OK);
|
|
|
|
rtw_p2p_set_pre_state(pwdinfo, P2P_STATE_GONEGO_OK);
|
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO);
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_OK);
|
|
|
|
rtw_p2p_set_pre_state(pwdinfo, P2P_STATE_GONEGO_OK);
|
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT);
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) {
|
|
|
|
/* Store the group id information. */
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->groupid_info.go_device_addr, pwdinfo->device_addr, ETH_ALEN);
|
|
|
|
memcpy(pwdinfo->groupid_info.ssid, pwdinfo->nego_ssid, pwdinfo->nego_ssidlen);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Try to get the operation channel information */
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
attr_contentlen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_OPERATING_CH, operatingch_info, &attr_contentlen)) {
|
|
|
|
DBG_88E("[%s] Peer's operating channel = %d\n", __func__, operatingch_info[4]);
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->peer_operating_ch = operatingch_info[4];
|
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Try to get the channel list information */
|
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CH_LIST, pwdinfo->channel_list_attr, &pwdinfo->channel_list_attr_len)) {
|
|
|
|
DBG_88E("[%s] channel list attribute found, len = %d\n", __func__, pwdinfo->channel_list_attr_len);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
peer_ch_num = rtw_p2p_get_peer_ch_list(pwdinfo, pwdinfo->channel_list_attr, pwdinfo->channel_list_attr_len, peer_ch_list);
|
|
|
|
ch_num_inclusioned = rtw_p2p_ch_inclusion(&padapter->mlmeextpriv, peer_ch_list, peer_ch_num, ch_list_inclusioned);
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (ch_num_inclusioned == 0) {
|
|
|
|
DBG_88E("[%s] No common channel in channel list!\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
result = P2P_STATUS_FAIL_NO_COMMON_CH;
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) {
|
|
|
|
if (!rtw_p2p_is_channel_list_ok(pwdinfo->operating_channel,
|
|
|
|
ch_list_inclusioned, ch_num_inclusioned)) {
|
2013-07-12 03:50:49 +00:00
|
|
|
u8 operatingch_info[5] = { 0x00 }, peer_operating_ch = 0;
|
|
|
|
attr_contentlen = 0;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_OPERATING_CH, operatingch_info, &attr_contentlen))
|
2013-07-12 03:50:49 +00:00
|
|
|
peer_operating_ch = operatingch_info[4];
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_p2p_is_channel_list_ok(peer_operating_ch,
|
|
|
|
ch_list_inclusioned, ch_num_inclusioned)) {
|
2013-07-12 03:50:49 +00:00
|
|
|
/**
|
|
|
|
* Change our operating channel as peer's for compatibility.
|
|
|
|
*/
|
|
|
|
pwdinfo->operating_channel = peer_operating_ch;
|
2013-07-31 01:51:20 +00:00
|
|
|
DBG_88E("[%s] Change op ch to %02x as peer's\n", __func__, pwdinfo->operating_channel);
|
|
|
|
} else {
|
2013-07-12 03:50:49 +00:00
|
|
|
/* Take first channel of ch_list_inclusioned as operating channel */
|
|
|
|
pwdinfo->operating_channel = ch_list_inclusioned[0];
|
2013-07-31 01:51:20 +00:00
|
|
|
DBG_88E("[%s] Change op ch to %02x\n", __func__, pwdinfo->operating_channel);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
|
|
|
DBG_88E("[%s] channel list attribute not found!\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Try to get the group id information if peer is GO */
|
2013-05-08 21:45:39 +00:00
|
|
|
attr_contentlen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset(groupid, 0x00, 38);
|
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_GROUP_ID, groupid, &attr_contentlen)) {
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->groupid_info.go_device_addr, &groupid[0], ETH_ALEN);
|
|
|
|
memcpy(pwdinfo->groupid_info.ssid, &groupid[6], attr_contentlen - ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Get the next P2P IE */
|
2013-07-31 01:51:20 +00:00
|
|
|
p2p_ie = rtw_get_p2p_ie(p2p_ie+p2p_ielen, ies_len - (p2p_ie - ies + p2p_ielen), NULL, &p2p_ielen);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
return result;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 process_p2p_group_negotation_confirm(struct wifidirect_info *pwdinfo, u8 *pframe, uint len)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 *ies;
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 ies_len;
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 *p2p_ie;
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 p2p_ielen = 0;
|
|
|
|
u8 result = P2P_STATUS_SUCCESS;
|
|
|
|
ies = pframe + _PUBLIC_ACTION_IE_OFFSET_;
|
|
|
|
ies_len = len - _PUBLIC_ACTION_IE_OFFSET_;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
p2p_ie = rtw_get_p2p_ie(ies, ies_len, NULL, &p2p_ielen);
|
|
|
|
while (p2p_ie) { /* Found the P2P IE. */
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 attr_content = 0x00, operatingch_info[5] = { 0x00 };
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 groupid[38] = { 0x00 };
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 attr_contentlen = 0;
|
|
|
|
|
|
|
|
pwdinfo->negotiation_dialog_token = 1;
|
|
|
|
rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_STATUS, &attr_content, &attr_contentlen);
|
2013-07-31 01:51:20 +00:00
|
|
|
if (attr_contentlen == 1) {
|
|
|
|
DBG_88E("[%s] Status = %d\n", __func__, attr_content);
|
2013-05-08 21:45:39 +00:00
|
|
|
result = attr_content;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (attr_content == P2P_STATUS_SUCCESS) {
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 bcancelled = 0;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
_cancel_timer(&pwdinfo->restore_p2p_state_timer, &bcancelled);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Commented by Albert 20100911 */
|
|
|
|
/* Todo: Need to handle the case which both Intents are the same. */
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_OK);
|
|
|
|
rtw_p2p_set_pre_state(pwdinfo, P2P_STATE_GONEGO_OK);
|
2013-07-31 01:51:20 +00:00
|
|
|
if ((pwdinfo->intent) > (pwdinfo->peer_intent >> 1)) {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO);
|
2013-07-31 01:51:20 +00:00
|
|
|
} else if ((pwdinfo->intent) < (pwdinfo->peer_intent >> 1)) {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT);
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
|
|
|
/* Have to compare the Tie Breaker */
|
|
|
|
if (pwdinfo->peer_intent & 0x01)
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT);
|
|
|
|
else
|
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO);
|
2013-05-19 04:28:07 +00:00
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE);
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Try to get the group id information */
|
2013-05-08 21:45:39 +00:00
|
|
|
attr_contentlen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset(groupid, 0x00, 38);
|
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_GROUP_ID, groupid, &attr_contentlen)) {
|
|
|
|
DBG_88E("[%s] Ssid = %s, ssidlen = %zu\n", __func__, &groupid[ETH_ALEN], strlen(&groupid[ETH_ALEN]));
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->groupid_info.go_device_addr, &groupid[0], ETH_ALEN);
|
|
|
|
memcpy(pwdinfo->groupid_info.ssid, &groupid[6], attr_contentlen - ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
attr_contentlen = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_OPERATING_CH, operatingch_info, &attr_contentlen)) {
|
|
|
|
DBG_88E("[%s] Peer's operating channel = %d\n", __func__, operatingch_info[4]);
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->peer_operating_ch = operatingch_info[4];
|
|
|
|
}
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Get the next P2P IE */
|
2013-07-31 01:51:20 +00:00
|
|
|
p2p_ie = rtw_get_p2p_ie(p2p_ie+p2p_ielen, ies_len - (p2p_ie - ies + p2p_ielen), NULL, &p2p_ielen);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
return result;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u8 process_p2p_presence_req(struct wifidirect_info *pwdinfo, u8 *pframe, uint len)
|
|
|
|
{
|
2013-05-19 04:28:07 +00:00
|
|
|
u8 *frame_body;
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 dialogToken = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 status = P2P_STATUS_SUCCESS;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
frame_body = (unsigned char *)(pframe + sizeof(struct rtw_ieee80211_hdr_3addr));
|
|
|
|
|
|
|
|
dialogToken = frame_body[6];
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* todo: check NoA attribute */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
issue_p2p_presence_resp(pwdinfo, GetAddr2Ptr(pframe), status, dialogToken);
|
|
|
|
|
2013-05-26 03:02:10 +00:00
|
|
|
return true;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
static void find_phase_handler(struct adapter *padapter)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct wifidirect_info *pwdinfo = &padapter->wdinfo;
|
|
|
|
struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
|
2013-07-24 02:31:04 +00:00
|
|
|
struct ndis_802_11_ssid ssid;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset((unsigned char *)&ssid, 0, sizeof(struct ndis_802_11_ssid));
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(ssid.Ssid, pwdinfo->p2p_wildcard_ssid, P2P_WILDCARD_SSID_LEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
ssid.SsidLength = P2P_WILDCARD_SSID_LEN;
|
|
|
|
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_FIND_PHASE_SEARCH);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2014-11-29 00:42:41 +00:00
|
|
|
spin_lock_bh(&pmlmepriv->lock);
|
|
|
|
spin_unlock_bh(&pmlmepriv->lock);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
void p2p_concurrent_handler(struct adapter *padapter);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
static void restore_p2p_state_handler(struct adapter *padapter)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct wifidirect_info *pwdinfo = &padapter->wdinfo;
|
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_GONEGO_ING) || rtw_p2p_chk_state(pwdinfo, P2P_STATE_GONEGO_FAIL))
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE);
|
|
|
|
rtw_p2p_set_state(pwdinfo, rtw_p2p_pre_state(pwdinfo));
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_DEVICE)) {
|
|
|
|
/* In the P2P client mode, the driver should not switch back to its listen channel */
|
|
|
|
/* because this P2P client should stay at the operating channel of P2P GO. */
|
|
|
|
set_channel_bwmode(padapter, pwdinfo->listen_channel, HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2014-12-01 22:31:15 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
static void pre_tx_invitereq_handler(struct adapter *padapter)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct wifidirect_info *pwdinfo = &padapter->wdinfo;
|
|
|
|
u8 val8 = 1;
|
2014-12-01 22:31:15 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
set_channel_bwmode(padapter, pwdinfo->invitereq_info.peer_ch, HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20);
|
2013-05-19 04:28:07 +00:00
|
|
|
padapter->HalFunc.SetHwRegHandler(padapter, HW_VAR_MLME_SITESURVEY, (u8 *)(&val8));
|
2013-05-08 21:45:39 +00:00
|
|
|
issue_probereq_p2p(padapter, NULL);
|
2013-07-31 01:51:20 +00:00
|
|
|
_set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
static void pre_tx_provdisc_handler(struct adapter *padapter)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct wifidirect_info *pwdinfo = &padapter->wdinfo;
|
|
|
|
u8 val8 = 1;
|
2014-12-01 22:31:15 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
set_channel_bwmode(padapter, pwdinfo->tx_prov_disc_info.peer_channel_num[0], HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20);
|
|
|
|
rtw_hal_set_hwreg(padapter, HW_VAR_MLME_SITESURVEY, (u8 *)(&val8));
|
|
|
|
issue_probereq_p2p(padapter, NULL);
|
2013-07-31 01:51:20 +00:00
|
|
|
_set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
static void pre_tx_negoreq_handler(struct adapter *padapter)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct wifidirect_info *pwdinfo = &padapter->wdinfo;
|
|
|
|
u8 val8 = 1;
|
2014-12-01 22:31:15 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
set_channel_bwmode(padapter, pwdinfo->nego_req_info.peer_channel_num[0], HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20);
|
2013-05-19 04:28:07 +00:00
|
|
|
rtw_hal_set_hwreg(padapter, HW_VAR_MLME_SITESURVEY, (u8 *)(&val8));
|
2013-05-08 21:45:39 +00:00
|
|
|
issue_probereq_p2p(padapter, NULL);
|
2013-07-31 01:51:20 +00:00
|
|
|
_set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-27 01:08:39 +00:00
|
|
|
void p2p_protocol_wk_hdl(struct adapter *padapter, int intCmdType)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2014-12-01 22:31:15 +00:00
|
|
|
|
2013-07-20 18:18:13 +00:00
|
|
|
switch (intCmdType) {
|
|
|
|
case P2P_FIND_PHASE_WK:
|
2013-07-31 01:51:20 +00:00
|
|
|
find_phase_handler(padapter);
|
2013-07-20 18:18:13 +00:00
|
|
|
break;
|
|
|
|
case P2P_RESTORE_STATE_WK:
|
2013-07-31 01:51:20 +00:00
|
|
|
restore_p2p_state_handler(padapter);
|
2013-07-20 18:18:13 +00:00
|
|
|
break;
|
|
|
|
case P2P_PRE_TX_PROVDISC_PROCESS_WK:
|
2013-07-31 01:51:20 +00:00
|
|
|
pre_tx_provdisc_handler(padapter);
|
2013-07-20 18:18:13 +00:00
|
|
|
break;
|
|
|
|
case P2P_PRE_TX_INVITEREQ_PROCESS_WK:
|
2013-07-31 01:51:20 +00:00
|
|
|
pre_tx_invitereq_handler(padapter);
|
2013-07-20 18:18:13 +00:00
|
|
|
break;
|
|
|
|
case P2P_PRE_TX_NEGOREQ_PROCESS_WK:
|
2013-07-31 01:51:20 +00:00
|
|
|
pre_tx_negoreq_handler(padapter);
|
2013-07-20 18:18:13 +00:00
|
|
|
break;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
void process_p2p_ps_ie(struct adapter *padapter, u8 *IEs, u32 IELength)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 *ies;
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 ies_len;
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 *p2p_ie;
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 p2p_ielen = 0;
|
2013-07-09 22:38:46 +00:00
|
|
|
u8 noa_attr[MAX_P2P_IE_LEN] = { 0x00 };/* NoA length should be n*(13) + 2 */
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 attr_contentlen = 0;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
struct wifidirect_info *pwdinfo = &(padapter->wdinfo);
|
2013-05-26 03:02:10 +00:00
|
|
|
u8 find_p2p = false, find_p2p_ps = false;
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 noa_offset, noa_num, noa_index;
|
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE))
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
2013-05-09 04:04:25 +00:00
|
|
|
if (IELength <= _BEACON_IE_OFFSET_)
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
ies = IEs + _BEACON_IE_OFFSET_;
|
|
|
|
ies_len = IELength - _BEACON_IE_OFFSET_;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
p2p_ie = rtw_get_p2p_ie(ies, ies_len, NULL, &p2p_ielen);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
while (p2p_ie) {
|
2013-05-26 03:02:10 +00:00
|
|
|
find_p2p = true;
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Get Notice of Absence IE. */
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_NOA, noa_attr, &attr_contentlen)) {
|
2013-05-26 03:02:10 +00:00
|
|
|
find_p2p_ps = true;
|
2013-05-08 21:45:39 +00:00
|
|
|
noa_index = noa_attr[0];
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if ((pwdinfo->p2p_ps_mode == P2P_PS_NONE) ||
|
|
|
|
(noa_index != pwdinfo->noa_index)) { /* if index change, driver should reconfigure related setting. */
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->noa_index = noa_index;
|
|
|
|
pwdinfo->opp_ps = noa_attr[1] >> 7;
|
|
|
|
pwdinfo->ctwindow = noa_attr[1] & 0x7F;
|
|
|
|
|
|
|
|
noa_offset = 2;
|
|
|
|
noa_num = 0;
|
2013-07-09 22:38:46 +00:00
|
|
|
/* NoA length should be n*(13) + 2 */
|
2013-07-31 01:51:20 +00:00
|
|
|
if (attr_contentlen > 2) {
|
|
|
|
while (noa_offset < attr_contentlen) {
|
2013-10-19 17:45:47 +00:00
|
|
|
/* memcpy(&wifidirect_info->noa_count[noa_num], &noa_attr[noa_offset], 1); */
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->noa_count[noa_num] = noa_attr[noa_offset];
|
|
|
|
noa_offset += 1;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(&pwdinfo->noa_duration[noa_num], &noa_attr[noa_offset], 4);
|
2013-05-08 21:45:39 +00:00
|
|
|
noa_offset += 4;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(&pwdinfo->noa_interval[noa_num], &noa_attr[noa_offset], 4);
|
2013-05-08 21:45:39 +00:00
|
|
|
noa_offset += 4;
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(&pwdinfo->noa_start_time[noa_num], &noa_attr[noa_offset], 4);
|
2013-05-08 21:45:39 +00:00
|
|
|
noa_offset += 4;
|
|
|
|
|
|
|
|
noa_num++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pwdinfo->noa_num = noa_num;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (pwdinfo->opp_ps == 1) {
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->p2p_ps_mode = P2P_PS_CTWINDOW;
|
2013-07-09 22:38:46 +00:00
|
|
|
/* driver should wait LPS for entering CTWindow */
|
2013-07-31 01:51:20 +00:00
|
|
|
if (padapter->pwrctrlpriv.bFwCurrentInPSMode)
|
2013-05-08 21:45:39 +00:00
|
|
|
p2p_ps_wk_cmd(padapter, P2P_PS_ENABLE, 1);
|
2013-07-31 01:51:20 +00:00
|
|
|
} else if (pwdinfo->noa_num > 0) {
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->p2p_ps_mode = P2P_PS_NOA;
|
|
|
|
p2p_ps_wk_cmd(padapter, P2P_PS_ENABLE, 1);
|
2013-07-31 01:51:20 +00:00
|
|
|
} else if (pwdinfo->p2p_ps_mode > P2P_PS_NONE) {
|
2013-05-08 21:45:39 +00:00
|
|
|
p2p_ps_wk_cmd(padapter, P2P_PS_DISABLE, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
break; /* find target, just break. */
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Get the next P2P IE */
|
2013-07-31 01:51:20 +00:00
|
|
|
p2p_ie = rtw_get_p2p_ie(p2p_ie+p2p_ielen, ies_len - (p2p_ie - ies + p2p_ielen), NULL, &p2p_ielen);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (find_p2p) {
|
|
|
|
if ((pwdinfo->p2p_ps_mode > P2P_PS_NONE) && !find_p2p_ps)
|
2013-05-08 21:45:39 +00:00
|
|
|
p2p_ps_wk_cmd(padapter, P2P_PS_DISABLE, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-07-27 01:08:39 +00:00
|
|
|
void p2p_ps_wk_hdl(struct adapter *padapter, u8 p2p_ps_state)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv;
|
2013-07-31 01:51:20 +00:00
|
|
|
struct wifidirect_info *pwdinfo = &(padapter->wdinfo);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Pre action for p2p state */
|
2013-07-31 01:51:20 +00:00
|
|
|
switch (p2p_ps_state) {
|
|
|
|
case P2P_PS_DISABLE:
|
|
|
|
pwdinfo->p2p_ps_state = p2p_ps_state;
|
|
|
|
|
|
|
|
rtw_hal_set_hwreg(padapter, HW_VAR_H2C_FW_P2P_PS_OFFLOAD, (u8 *)(&p2p_ps_state));
|
|
|
|
|
|
|
|
pwdinfo->noa_index = 0;
|
|
|
|
pwdinfo->ctwindow = 0;
|
|
|
|
pwdinfo->opp_ps = 0;
|
|
|
|
pwdinfo->noa_num = 0;
|
|
|
|
pwdinfo->p2p_ps_mode = P2P_PS_NONE;
|
|
|
|
if (padapter->pwrctrlpriv.bFwCurrentInPSMode) {
|
|
|
|
if (pwrpriv->smart_ps == 0) {
|
|
|
|
pwrpriv->smart_ps = 2;
|
|
|
|
rtw_hal_set_hwreg(padapter, HW_VAR_H2C_FW_PWRMODE, (u8 *)(&(padapter->pwrctrlpriv.pwr_mode)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case P2P_PS_ENABLE:
|
|
|
|
if (pwdinfo->p2p_ps_mode > P2P_PS_NONE) {
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->p2p_ps_state = p2p_ps_state;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (pwdinfo->ctwindow > 0) {
|
|
|
|
if (pwrpriv->smart_ps != 0) {
|
|
|
|
pwrpriv->smart_ps = 0;
|
|
|
|
DBG_88E("%s(): Enter CTW, change SmartPS\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_hal_set_hwreg(padapter, HW_VAR_H2C_FW_PWRMODE, (u8 *)(&(padapter->pwrctrlpriv.pwr_mode)));
|
|
|
|
}
|
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
rtw_hal_set_hwreg(padapter, HW_VAR_H2C_FW_P2P_PS_OFFLOAD, (u8 *)(&p2p_ps_state));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case P2P_PS_SCAN:
|
|
|
|
case P2P_PS_SCAN_DONE:
|
|
|
|
case P2P_PS_ALLSTASLEEP:
|
|
|
|
if (pwdinfo->p2p_ps_mode > P2P_PS_NONE) {
|
|
|
|
pwdinfo->p2p_ps_state = p2p_ps_state;
|
|
|
|
rtw_hal_set_hwreg(padapter, HW_VAR_H2C_FW_P2P_PS_OFFLOAD, (u8 *)(&p2p_ps_state));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
u8 p2p_ps_wk_cmd(struct adapter *padapter, u8 p2p_ps_state, u8 enqueue)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct cmd_obj *ph2c;
|
|
|
|
struct drvextra_cmd_parm *pdrvextra_cmd_parm;
|
2013-07-31 01:51:20 +00:00
|
|
|
struct wifidirect_info *pwdinfo = &(padapter->wdinfo);
|
2013-05-08 21:45:39 +00:00
|
|
|
struct cmd_priv *pcmdpriv = &padapter->cmdpriv;
|
|
|
|
u8 res = _SUCCESS;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-12 03:50:49 +00:00
|
|
|
if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE))
|
2013-05-08 21:45:39 +00:00
|
|
|
return res;
|
|
|
|
|
2013-07-12 03:50:49 +00:00
|
|
|
if (enqueue) {
|
2013-07-31 01:51:20 +00:00
|
|
|
ph2c = (struct cmd_obj *)rtw_zmalloc(sizeof(struct cmd_obj));
|
|
|
|
if (ph2c == NULL) {
|
|
|
|
res = _FAIL;
|
2013-05-08 21:45:39 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
pdrvextra_cmd_parm = (struct drvextra_cmd_parm *)rtw_zmalloc(sizeof(struct drvextra_cmd_parm));
|
|
|
|
if (pdrvextra_cmd_parm == NULL) {
|
2013-10-19 17:45:47 +00:00
|
|
|
kfree(ph2c);
|
2013-07-31 01:51:20 +00:00
|
|
|
res = _FAIL;
|
2013-05-08 21:45:39 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
pdrvextra_cmd_parm->ec_id = P2P_PS_WK_CID;
|
|
|
|
pdrvextra_cmd_parm->type_size = p2p_ps_state;
|
|
|
|
pdrvextra_cmd_parm->pbuf = NULL;
|
|
|
|
|
|
|
|
init_h2fwcmd_w_parm_no_rsp(ph2c, pdrvextra_cmd_parm, GEN_CMD_CODE(_Set_Drv_Extra));
|
|
|
|
|
|
|
|
res = rtw_enqueue_cmd(pcmdpriv, ph2c);
|
2013-07-31 01:51:20 +00:00
|
|
|
} else {
|
2013-05-08 21:45:39 +00:00
|
|
|
p2p_ps_wk_hdl(padapter, p2p_ps_state);
|
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
exit:
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void reset_ch_sitesurvey_timer_process (void *FunctionContext)
|
|
|
|
{
|
2013-07-27 01:08:39 +00:00
|
|
|
struct adapter *adapter = (struct adapter *)FunctionContext;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct wifidirect_info *pwdinfo = &adapter->wdinfo;
|
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE))
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
DBG_88E("[%s] In\n", __func__);
|
|
|
|
/* Reset the operation channel information */
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->rx_invitereq_info.operation_ch[0] = 0;
|
|
|
|
pwdinfo->rx_invitereq_info.scan_op_ch_only = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void reset_ch_sitesurvey_timer_process2 (void *FunctionContext)
|
|
|
|
{
|
2013-07-27 01:08:39 +00:00
|
|
|
struct adapter *adapter = (struct adapter *)FunctionContext;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct wifidirect_info *pwdinfo = &adapter->wdinfo;
|
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE))
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
DBG_88E("[%s] In\n", __func__);
|
|
|
|
/* Reset the operation channel information */
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->p2p_info.operation_ch[0] = 0;
|
|
|
|
pwdinfo->p2p_info.scan_op_ch_only = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void restore_p2p_state_timer_process (void *FunctionContext)
|
|
|
|
{
|
2013-07-27 01:08:39 +00:00
|
|
|
struct adapter *adapter = (struct adapter *)FunctionContext;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct wifidirect_info *pwdinfo = &adapter->wdinfo;
|
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE))
|
2013-05-19 04:28:07 +00:00
|
|
|
return;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
p2p_protocol_wk_cmd(adapter, P2P_RESTORE_STATE_WK);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
static void pre_tx_scan_timer_process(void *FunctionContext)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-07-31 01:51:20 +00:00
|
|
|
struct adapter *adapter = (struct adapter *)FunctionContext;
|
|
|
|
struct wifidirect_info *pwdinfo = &adapter->wdinfo;
|
|
|
|
struct mlme_priv *pmlmepriv = &adapter->mlmepriv;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE))
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2014-11-29 00:42:41 +00:00
|
|
|
spin_lock_bh(&pmlmepriv->lock);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_TX_PROVISION_DIS_REQ)) {
|
|
|
|
if (pwdinfo->tx_prov_disc_info.benable) { /* the provision discovery request frame is trigger to send or not */
|
|
|
|
p2p_protocol_wk_cmd(adapter, P2P_PRE_TX_PROVDISC_PROCESS_WK);
|
2013-07-09 22:38:46 +00:00
|
|
|
/* issue_probereq_p2p(adapter, NULL); */
|
2013-07-31 01:51:20 +00:00
|
|
|
/* _set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT); */
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-07-31 01:51:20 +00:00
|
|
|
} else if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_GONEGO_ING)) {
|
|
|
|
if (pwdinfo->nego_req_info.benable)
|
|
|
|
p2p_protocol_wk_cmd(adapter, P2P_PRE_TX_NEGOREQ_PROCESS_WK);
|
|
|
|
} else if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_TX_INVITE_REQ)) {
|
|
|
|
if (pwdinfo->invitereq_info.benable)
|
|
|
|
p2p_protocol_wk_cmd(adapter, P2P_PRE_TX_INVITEREQ_PROCESS_WK);
|
|
|
|
} else {
|
|
|
|
DBG_88E("[%s] p2p_state is %d, ignore!!\n", __func__, rtw_p2p_state(pwdinfo));
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2014-11-29 00:42:41 +00:00
|
|
|
spin_unlock_bh(&pmlmepriv->lock);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
static void find_phase_timer_process(void *FunctionContext)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-07-27 01:08:39 +00:00
|
|
|
struct adapter *adapter = (struct adapter *)FunctionContext;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct wifidirect_info *pwdinfo = &adapter->wdinfo;
|
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE))
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
adapter->wdinfo.find_phase_state_exchange_cnt++;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
p2p_protocol_wk_cmd(adapter, P2P_FIND_PHASE_WK);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
void reset_global_wifidirect_info(struct adapter *padapter)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct wifidirect_info *pwdinfo;
|
|
|
|
|
|
|
|
pwdinfo = &padapter->wdinfo;
|
|
|
|
pwdinfo->persistent_supported = 0;
|
2013-05-26 03:02:10 +00:00
|
|
|
pwdinfo->session_available = true;
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->wfd_tdls_enable = 0;
|
|
|
|
pwdinfo->wfd_tdls_weaksec = 0;
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
void rtw_init_wifidirect_timers(struct adapter *padapter)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct wifidirect_info *pwdinfo = &padapter->wdinfo;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
_init_timer(&pwdinfo->find_phase_timer, padapter->pnetdev, find_phase_timer_process, padapter);
|
|
|
|
_init_timer(&pwdinfo->restore_p2p_state_timer, padapter->pnetdev, restore_p2p_state_timer_process, padapter);
|
|
|
|
_init_timer(&pwdinfo->pre_tx_scan_timer, padapter->pnetdev, pre_tx_scan_timer_process, padapter);
|
|
|
|
_init_timer(&pwdinfo->reset_ch_sitesurvey, padapter->pnetdev, reset_ch_sitesurvey_timer_process, padapter);
|
|
|
|
_init_timer(&pwdinfo->reset_ch_sitesurvey2, padapter->pnetdev, reset_ch_sitesurvey_timer_process2, padapter);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
void rtw_init_wifidirect_addrs(struct adapter *padapter, u8 *dev_addr, u8 *iface_addr)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-10-19 17:45:47 +00:00
|
|
|
#ifdef CONFIG_88EU_P2P
|
2013-05-08 21:45:39 +00:00
|
|
|
struct wifidirect_info *pwdinfo = &padapter->wdinfo;
|
|
|
|
|
|
|
|
/*init device&interface address */
|
2013-07-31 01:51:20 +00:00
|
|
|
if (dev_addr)
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->device_addr, dev_addr, ETH_ALEN);
|
2013-07-31 01:51:20 +00:00
|
|
|
if (iface_addr)
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->interface_addr, iface_addr, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
void init_wifidirect_info(struct adapter *padapter, enum P2P_ROLE role)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct wifidirect_info *pwdinfo;
|
2013-07-20 18:53:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo = &padapter->wdinfo;
|
|
|
|
pwdinfo->padapter = padapter;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* 1, 6, 11 are the social channel defined in the WiFi Direct specification. */
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->social_chan[0] = 1;
|
|
|
|
pwdinfo->social_chan[1] = 6;
|
|
|
|
pwdinfo->social_chan[2] = 11;
|
2013-07-31 01:51:20 +00:00
|
|
|
pwdinfo->social_chan[3] = 0; /* channel 0 for scanning ending in site survey function. */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Use the channel 11 as the listen channel */
|
2013-07-12 03:50:49 +00:00
|
|
|
pwdinfo->listen_channel = 11;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (role == P2P_ROLE_DEVICE) {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE);
|
2013-07-12 03:50:49 +00:00
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_LISTEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->intent = 1;
|
|
|
|
rtw_p2p_set_pre_state(pwdinfo, P2P_STATE_LISTEN);
|
2013-07-31 01:51:20 +00:00
|
|
|
} else if (role == P2P_ROLE_CLIENT) {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT);
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_OK);
|
|
|
|
pwdinfo->intent = 1;
|
|
|
|
rtw_p2p_set_pre_state(pwdinfo, P2P_STATE_GONEGO_OK);
|
2013-07-31 01:51:20 +00:00
|
|
|
} else if (role == P2P_ROLE_GO) {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO);
|
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_OK);
|
|
|
|
pwdinfo->intent = 15;
|
|
|
|
rtw_p2p_set_pre_state(pwdinfo, P2P_STATE_GONEGO_OK);
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Use the OFDM rate in the P2P probe response frame. (6(B), 9(B), 12, 18, 24, 36, 48, 54) */
|
|
|
|
pwdinfo->support_rate[0] = 0x8c; /* 6(B) */
|
|
|
|
pwdinfo->support_rate[1] = 0x92; /* 9(B) */
|
|
|
|
pwdinfo->support_rate[2] = 0x18; /* 12 */
|
|
|
|
pwdinfo->support_rate[3] = 0x24; /* 18 */
|
|
|
|
pwdinfo->support_rate[4] = 0x30; /* 24 */
|
|
|
|
pwdinfo->support_rate[5] = 0x48; /* 36 */
|
|
|
|
pwdinfo->support_rate[6] = 0x60; /* 48 */
|
|
|
|
pwdinfo->support_rate[7] = 0x6c; /* 54 */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
memcpy(pwdinfo->p2p_wildcard_ssid, "DIRECT-", 7);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset(pwdinfo->device_name, 0x00, WPS_MAX_DEVICE_NAME_LEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->device_name_len = 0;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset(&pwdinfo->invitereq_info, 0x00, sizeof(struct tx_invite_req_info));
|
|
|
|
pwdinfo->invitereq_info.token = 3; /* Token used for P2P invitation request frame. */
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset(&pwdinfo->inviteresp_info, 0x00, sizeof(struct tx_invite_resp_info));
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->inviteresp_info.token = 0;
|
|
|
|
|
|
|
|
pwdinfo->profileindex = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset(&pwdinfo->profileinfo[0], 0x00, sizeof(struct profile_info) * P2P_MAX_PERSISTENT_GROUP_NUM);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
rtw_p2p_findphase_ex_set(pwdinfo, P2P_FINDPHASE_EX_NONE);
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
pwdinfo->listen_dwell = (u8) ((rtw_get_current_time() % 3) + 1);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset(&pwdinfo->tx_prov_disc_info, 0x00, sizeof(struct tx_provdisc_req_info));
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_NONE;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset(&pwdinfo->nego_req_info, 0x00, sizeof(struct tx_nego_req_info));
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
pwdinfo->device_password_id_for_nego = WPS_DPID_PBC;
|
|
|
|
pwdinfo->negotiation_dialog_token = 1;
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset(pwdinfo->nego_ssid, 0x00, WLAN_SSID_MAXLEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->nego_ssidlen = 0;
|
|
|
|
|
|
|
|
pwdinfo->ui_got_wps_info = P2P_NO_WPSINFO;
|
|
|
|
pwdinfo->supported_wps_cm = WPS_CONFIG_METHOD_DISPLAY | WPS_CONFIG_METHOD_PBC | WPS_CONFIG_METHOD_KEYPAD;
|
|
|
|
pwdinfo->channel_list_attr_len = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset(pwdinfo->channel_list_attr, 0x00, 100);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, 0x00, 4);
|
|
|
|
_rtw_memset(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, '0', 3);
|
|
|
|
_rtw_memset(&pwdinfo->groupid_info, 0x00, sizeof(struct group_id_info));
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->wfd_tdls_enable = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
_rtw_memset(pwdinfo->p2p_peer_interface_addr, 0x00, ETH_ALEN);
|
|
|
|
_rtw_memset(pwdinfo->p2p_peer_device_addr, 0x00, ETH_ALEN);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
pwdinfo->rx_invitereq_info.operation_ch[0] = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
pwdinfo->rx_invitereq_info.operation_ch[1] = 0; /* Used to indicate the scan end in site survey function */
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->rx_invitereq_info.scan_op_ch_only = 0;
|
|
|
|
pwdinfo->p2p_info.operation_ch[0] = 0;
|
2013-07-31 01:51:20 +00:00
|
|
|
pwdinfo->p2p_info.operation_ch[1] = 0; /* Used to indicate the scan end in site survey function */
|
2013-05-08 21:45:39 +00:00
|
|
|
pwdinfo->p2p_info.scan_op_ch_only = 0;
|
|
|
|
}
|
|
|
|
|
2013-07-27 01:08:39 +00:00
|
|
|
int rtw_p2p_enable(struct adapter *padapter, enum P2P_ROLE role)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
int ret = _SUCCESS;
|
2013-07-31 01:51:20 +00:00
|
|
|
struct wifidirect_info *pwdinfo = &(padapter->wdinfo);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
if (role == P2P_ROLE_DEVICE || role == P2P_ROLE_CLIENT || role == P2P_ROLE_GO) {
|
2013-07-09 22:38:46 +00:00
|
|
|
/* leave IPS/Autosuspend */
|
2013-05-08 21:45:39 +00:00
|
|
|
if (_FAIL == rtw_pwr_wakeup(padapter)) {
|
|
|
|
ret = _FAIL;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
/* Added by Albert 2011/03/22 */
|
|
|
|
/* In the P2P mode, the driver should not support the b mode. */
|
|
|
|
/* So, the Tx packet shouldn't use the CCK rate */
|
2013-05-08 21:45:39 +00:00
|
|
|
update_tx_basic_rate(padapter, WIRELESS_11AGN);
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Enable P2P function */
|
2013-05-08 21:45:39 +00:00
|
|
|
init_wifidirect_info(padapter, role);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
rtw_hal_set_odm_var(padapter, HAL_ODM_P2P_STATE, NULL, true);
|
|
|
|
} else if (role == P2P_ROLE_DISABLE) {
|
2013-05-08 21:45:39 +00:00
|
|
|
if (_FAIL == rtw_pwr_wakeup(padapter)) {
|
|
|
|
ret = _FAIL;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Disable P2P function */
|
2013-07-31 01:51:20 +00:00
|
|
|
if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) {
|
|
|
|
_cancel_timer_ex(&pwdinfo->find_phase_timer);
|
|
|
|
_cancel_timer_ex(&pwdinfo->restore_p2p_state_timer);
|
|
|
|
_cancel_timer_ex(&pwdinfo->pre_tx_scan_timer);
|
|
|
|
_cancel_timer_ex(&pwdinfo->reset_ch_sitesurvey);
|
|
|
|
_cancel_timer_ex(&pwdinfo->reset_ch_sitesurvey2);
|
|
|
|
reset_ch_sitesurvey_timer_process(padapter);
|
|
|
|
reset_ch_sitesurvey_timer_process2(padapter);
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_p2p_set_state(pwdinfo, P2P_STATE_NONE);
|
|
|
|
rtw_p2p_set_role(pwdinfo, P2P_ROLE_DISABLE);
|
|
|
|
_rtw_memset(&pwdinfo->rx_prov_disc_info, 0x00, sizeof(struct rx_provdisc_req_info));
|
|
|
|
}
|
|
|
|
|
2013-07-31 01:51:20 +00:00
|
|
|
rtw_hal_set_odm_var(padapter, HAL_ODM_P2P_STATE, NULL, false);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-09 22:38:46 +00:00
|
|
|
/* Restore to initial setting. */
|
2013-05-08 21:45:39 +00:00
|
|
|
update_tx_basic_rate(padapter, padapter->registrypriv.wireless_mode);
|
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
|
|
|
exit:
|
2013-05-08 21:45:39 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-10-19 17:45:47 +00:00
|
|
|
#else
|
|
|
|
u8 p2p_ps_wk_cmd(struct adapter *padapter, u8 p2p_ps_state, u8 enqueue)
|
|
|
|
{
|
|
|
|
return _FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void process_p2p_ps_ie(struct adapter *padapter, u8 *IEs, u32 IELength)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_88EU_P2P */
|