diff --git a/Makefile b/Makefile index aafc24ef..7acebff4 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,5 @@ EXTRA_CFLAGS += $(USER_EXTRA_CFLAGS) EXTRA_CFLAGS += -O1 -#EXTRA_CFLAGS += -O3 -#EXTRA_CFLAGS += -Wall -#EXTRA_CFLAGS += -Wextra -#EXTRA_CFLAGS += -Werror -#EXTRA_CFLAGS += -pedantic -#EXTRA_CFLAGS += -Wshadow -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes EXTRA_CFLAGS += -Wno-unused-variable EXTRA_CFLAGS += -Wno-unused-value @@ -25,7 +19,6 @@ CONFIG_USB_AUTOSUSPEND = n CONFIG_HW_PWRP_DETECTION = n CONFIG_WIFI_TEST = n CONFIG_BT_COEXISTENCE = n -CONFIG_INTEL_WIDI = n CONFIG_WAKE_ON_WLAN = n CONFIG_DRVEXT_MODULE = n @@ -36,7 +29,7 @@ ccflags-y += -D__CHECK_ENDIAN__ RTL871X = rtl8192d -MODULE_NAME = 8192du +MODULE_NAME = rtl8192du CHIP_FILES := \ hal/$(RTL871X)_xmit.o @@ -64,10 +57,10 @@ _HAL_INTFS_FILES := hal/hal_intf.o \ hal/$(RTL871X)_rxdesc.o \ hal/$(RTL871X)_cmd.o \ hal/$(HCI_NAME)_halinit.o \ - hal/rtl$(MODULE_NAME)_led.o \ - hal/rtl$(MODULE_NAME)_xmit.o \ - hal/rtl$(MODULE_NAME)_recv.o \ - hal/Hal8192DUHWImg.o + hal/$(MODULE_NAME)_led.o \ + hal/$(MODULE_NAME)_xmit.o \ + hal/$(MODULE_NAME)_recv.o \ + hal/hal8192duhwimg.o _HAL_INTFS_FILES += hal/$(HCI_NAME)_ops_linux.o @@ -103,10 +96,6 @@ ifeq ($(CONFIG_WAKE_ON_WLAN), y) EXTRA_CFLAGS += -DCONFIG_WAKE_ON_WLAN endif -ifeq ($(CONFIG_INTEL_WIDI), y) -EXTRA_CFLAGS += -DCONFIG_INTEL_WIDI -endif - SUBARCH := $(shell uname -m | sed -e s/i.86/i386/ | sed -e s/ppc/powerpc/) ARCH ?= $(SUBARCH) CROSS_COMPILE ?= @@ -138,14 +127,10 @@ rtk_core := core/rtw_cmd.o \ core/rtw_ap.o \ core/rtw_xmit.o \ core/rtw_p2p.o \ - core/rtw_tdls.o \ - core/rtw_br_ext.o \ core/rtw_sreset.o $(MODULE_NAME)-y += $(rtk_core) -$(MODULE_NAME)-$(CONFIG_INTEL_WIDI) += core/rtw_intel_widi.o - $(MODULE_NAME)-y += core/rtw_efuse.o $(MODULE_NAME)-y += $(_HAL_INTFS_FILES) @@ -167,16 +152,18 @@ strip: $(CROSS_COMPILE)strip $(MODULE_NAME).ko --strip-unneeded install: - install -d $(DESTDIR)$(MODDESTDIR) - install -m644 $(MODULE_NAME).ko $(DESTDIR)$(MODDESTDIR) - install -d $(DESTDIR)/lib/firmware/rtlwifi - install -m644 rtl8192dufw.bin $(DESTDIR)/lib/firmware/rtlwifi - install -m644 rtl8192dufw_wol.bin $(DESTDIR)/lib/firmware/rtlwifi + install -d $(DESTDIR)$(INSTALL_PREFIX)$(MODDESTDIR) + install -m644 $(MODULE_NAME).ko $(DESTDIR)$(INSTALL_PREFIX)$(MODDESTDIR) + install -d $(DESTDIR)$(INSTALL_PREFIX)/lib/firmware/rtlwifi + install -m644 rtl8192dufw.bin $(DESTDIR)$(INSTALL_PREFIX)/lib/firmware/rtlwifi + install -m644 rtl8192dufw_wol.bin $(DESTDIR)$(INSTALL_PREFIX)/lib/firmware/rtlwifi + depmod -a uninstall: - rm -f $(DESTDIR)$(MODDESTDIR)/$(MODULE_NAME).ko - rm -f $(DESTDIR)/lib/firmware/rtlwifi/rtl8192dufw.bin - rm -f $(DESTDIR)/lib/firmware/rtlwifi/rtl8192dufw_wol.bin + rm -f $(DESTDIR)$(INSTALL_PREFIX)$(MODDESTDIR)/$(MODULE_NAME).ko + rm -f $(DESTDIR)$(INSTALL_PREFIX)/lib/firmware/rtlwifi/rtl8192dufw.bin + rm -f $(DESTDIR)$(INSTALL_PREFIX)/lib/firmware/rtlwifi/rtl8192dufw_wol.bin + depmod -a config_r: @echo "make config" diff --git a/core/rtw_ap.c b/core/rtw_ap.c index b26243b4..b03023e3 100644 --- a/core/rtw_ap.c +++ b/core/rtw_ap.c @@ -120,7 +120,7 @@ static void update_BCNTIM(struct rtw_adapter *padapter) } if (remainder_ielen > 0) { - pbackup_remainder_ie = kmalloc(remainder_ielen, GFP_KERNEL); + pbackup_remainder_ie = kmalloc(remainder_ielen, GFP_ATOMIC); if (pbackup_remainder_ie && premainder_ie) memcpy(pbackup_remainder_ie, premainder_ie, remainder_ielen); } @@ -338,28 +338,7 @@ void expire_timeout_chk(struct rtw_adapter *padapter) psta->expire_to--; } -#ifndef CONFIG_ACTIVE_KEEP_ALIVE_CHECK - if ((psta->flags & WLAN_STA_HT) && (psta->htpriv.agg_enable_bitmap || psta->under_exist_checking)) { - /* check sta by delba(addba) for 11n STA */ - /* ToDo: use CCX report to check for all STAs */ - - if (psta->expire_to <= (pstapriv->expire_to - 50)) { - DBG_8192D("asoc expire by DELBA/ADDBA! (%d s)\n", (pstapriv->expire_to-psta->expire_to)*2); - psta->under_exist_checking = 0; - psta->expire_to = 0; - } else if (psta->expire_to <= (pstapriv->expire_to - 3) && (psta->under_exist_checking == 0)) { - DBG_8192D("asoc check by DELBA/ADDBA! (%d s)\n", (pstapriv->expire_to-psta->expire_to)*2); - psta->under_exist_checking = 1; - /* tear down TX AMPDU */ - send_delba(padapter, 1, psta->hwaddr);/* originator */ - psta->htpriv.agg_enable_bitmap = 0x0;/* reset */ - psta->htpriv.candidate_tid_bitmap = 0x0;/* reset */ - } - } -#endif /* CONFIG_ACTIVE_KEEP_ALIVE_CHECK */ - if (psta->expire_to <= 0) { - #ifdef CONFIG_ACTIVE_KEEP_ALIVE_CHECK struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; if (padapter->registrypriv.wifi_spec == 1) { @@ -391,7 +370,6 @@ void expire_timeout_chk(struct rtw_adapter *padapter) continue; } - #endif /* CONFIG_ACTIVE_KEEP_ALIVE_CHECK */ list_del_init(&psta->asoc_list); pstapriv->asoc_list_cnt--; @@ -413,7 +391,6 @@ void expire_timeout_chk(struct rtw_adapter *padapter) spin_unlock_bh(&pstapriv->asoc_list_lock); -#ifdef CONFIG_ACTIVE_KEEP_ALIVE_CHECK if (chk_alive_num) { u8 backup_oper_channel = 0; struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; @@ -460,7 +437,6 @@ void expire_timeout_chk(struct rtw_adapter *padapter) if (backup_oper_channel > 0) /* back to the original operation channel */ SelectChannel(padapter, backup_oper_channel); } -#endif /* CONFIG_ACTIVE_KEEP_ALIVE_CHECK */ associated_clients_update(padapter, updated); } @@ -744,9 +720,6 @@ static void start_bss_network(struct rtw_adapter *padapter, u8 *pbuf) struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); struct wlan_bssid_ex *pnetwork_mlmeext = &(pmlmeinfo->network); struct HT_info_element *pht_info = NULL; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); -#endif /* CONFIG_P2P */ u8 cbw40_enable = 0; u8 change_band = false; @@ -976,11 +949,6 @@ static void start_bss_network(struct rtw_adapter *padapter, u8 *pbuf) /* let pnetwork_mlmeext == pnetwork_mlme. */ memcpy(pnetwork_mlmeext, pnetwork, pnetwork->Length); -#ifdef CONFIG_P2P - memcpy(pwdinfo->p2p_group_ssid, pnetwork->Ssid.Ssid, pnetwork->Ssid.SsidLength); - pwdinfo->p2p_group_ssid_len = pnetwork->Ssid.SsidLength; -#endif /* CONFIG_P2P */ - if (pmlmeext->bstart_bss) { update_beacon(padapter, _TIM_IE_, NULL, false); @@ -1867,20 +1835,6 @@ u8 ap_free_sta(struct rtw_adapter *padapter, struct sta_info *psta, psta->state &= ~_FW_LINKED; spin_unlock_bh(&psta->lock); - #ifdef CONFIG_IOCTL_CFG80211 - if (1) { - #ifdef COMPAT_KERNEL_RELEASE - rtw_cfg80211_indicate_sta_disassoc(padapter, psta->hwaddr, reason); - #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) && !defined(CONFIG_CFG80211_FORCE_COMPATIBLE_2_6_37_UNDER) - rtw_cfg80211_indicate_sta_disassoc(padapter, psta->hwaddr, - reason); - #endif - } else - #endif /* CONFIG_IOCTL_CFG80211 */ - { - rtw_indicate_sta_disassoc_event(padapter, psta); - } - report_del_sta_event(padapter, psta->hwaddr, reason); beacon_updated = bss_cap_update_on_sta_leave(padapter, psta); diff --git a/core/rtw_br_ext.c b/core/rtw_br_ext.c deleted file mode 100644 index 61279c20..00000000 --- a/core/rtw_br_ext.c +++ /dev/null @@ -1,1406 +0,0 @@ -/****************************************************************************** - * - * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. - * - * 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. - * - * - ******************************************************************************/ -#define _RTW_BR_EXT_C_ - -#ifdef __KERNEL__ -#include -#include -#include -#include -#include -#include -#endif - -#include -#include -#include "rtw_br_ext.h" -#include - -#ifdef CL_IPV6_PASS -#ifdef __KERNEL__ -#include -#include -#include -#include -#endif -#endif - -/* some architectures need an extra header */ -#ifndef csum_ipv6_magic -#include -#endif - -#ifdef CONFIG_BR_EXT - -#define NAT25_IPV4 01 -#define NAT25_IPV6 02 -#define NAT25_IPX 03 -#define NAT25_APPLE 04 -#define NAT25_PPPOE 05 - -#define RTL_RELAY_TAG_LEN (ETH_ALEN) -#define TAG_HDR_LEN 4 - -#define MAGIC_CODE 0x8186 -#define MAGIC_CODE_LEN 2 -#define WAIT_TIME_PPPOE 5 /* waiting time for pppoe server in sec */ - -/*----------------------------------------------------------------- - How database records network address: - 0 1 2 3 4 5 6 7 8 9 10 - |----|----|----|----|----|----|----|----|----|----|----| - IPv4 |type| | IP addr | - IPX |type| Net addr | Node addr | - IPX |type| Net addr |Sckt addr| - Apple |type| Network |node| - PPPoE |type| SID | AC MAC | ------------------------------------------------------------------*/ - -/* Find a tag in pppoe frame and return the pointer */ -static inline unsigned char *__nat25_find_pppoe_tag(struct pppoe_hdr *ph, unsigned short type) -{ - unsigned char *cur_ptr, *start_ptr; - unsigned short tagLen, tagType; - - start_ptr = (unsigned char *)ph->tag; - cur_ptr = (unsigned char *)ph->tag; - while ((cur_ptr - start_ptr) < ntohs(ph->length)) { - /* prevent un-alignment access */ - tagType = (unsigned short)((cur_ptr[0] << 8) + cur_ptr[1]); - tagLen = (unsigned short)((cur_ptr[2] << 8) + cur_ptr[3]); - if (tagType == type) - return cur_ptr; - cur_ptr = cur_ptr + TAG_HDR_LEN + tagLen; - } - return NULL; -} - -static inline int __nat25_add_pppoe_tag(struct sk_buff *skb, struct pppoe_tag *tag) -{ - struct pppoe_hdr *ph = (struct pppoe_hdr *)(skb->data + ETH_HLEN); - int data_len; - - data_len = tag->tag_len + TAG_HDR_LEN; - if (skb_tailroom(skb) < data_len) { - ERR_8192D("skb_tailroom() failed in add SID tag!\n"); - return -1; - } - - skb_put(skb, data_len); - /* have a room for new tag */ - memmove(((unsigned char *)ph->tag + data_len), (unsigned char *)ph->tag, ntohs(ph->length)); - ph->length = htons(ntohs(ph->length) + data_len); - memcpy((unsigned char *)ph->tag, tag, data_len); - return data_len; -} - -static int skb_pull_and_merge(struct sk_buff *skb, unsigned char *src, int len) -{ - int tail_len; - unsigned long end, tail; - - if ((src+len) > skb_tail_pointer(skb) || skb->len < len) - return -1; - - tail = (unsigned long)skb_tail_pointer(skb); - end = (unsigned long)src+len; - if (tail < end) - return -1; - - tail_len = (int)(tail-end); - if (tail_len > 0) - memmove(src, src+len, tail_len); - - skb_trim(skb, skb->len-len); - return 0; -} - -static inline unsigned long __nat25_timeout(struct rtw_adapter *priv) -{ - unsigned long timeout; - - timeout = jiffies - NAT25_AGEING_TIME*HZ; - - return timeout; -} - -static inline int __nat25_has_expired(struct rtw_adapter *priv, - struct nat25_network_db_entry *fdb) -{ - if (time_before_eq(fdb->ageing_timer, __nat25_timeout(priv))) - return 1; - - return 0; -} - -static inline void __nat25_generate_ipv4_network_addr(unsigned char *networkAddr, - __be32 *ipaddr) -{ - memset(networkAddr, 0, MAX_NETWORK_ADDR_LEN); - - networkAddr[0] = NAT25_IPV4; - memcpy(networkAddr+7, (unsigned char *)ipaddr, 4); -} - -static inline void __nat25_generate_ipx_network_addr_with_node(unsigned char *networkAddr, - __be32 *ipxNetAddr, unsigned char *ipxNodeAddr) -{ - memset(networkAddr, 0, MAX_NETWORK_ADDR_LEN); - - networkAddr[0] = NAT25_IPX; - memcpy(networkAddr+1, (unsigned char *)ipxNetAddr, 4); - memcpy(networkAddr+5, ipxNodeAddr, 6); -} - -static inline void __nat25_generate_ipx_network_addr_with_socket(unsigned char *networkAddr, - __be32 *ipxNetAddr, unsigned short *ipxSocketAddr) -{ - memset(networkAddr, 0, MAX_NETWORK_ADDR_LEN); - - networkAddr[0] = NAT25_IPX; - memcpy(networkAddr+1, (unsigned char *)ipxNetAddr, 4); - memcpy(networkAddr+5, (unsigned char *)ipxSocketAddr, 2); -} - -static inline void __nat25_generate_apple_network_addr(unsigned char *networkAddr, - __be16 *network, unsigned char *node) -{ - memset(networkAddr, 0, MAX_NETWORK_ADDR_LEN); - - networkAddr[0] = NAT25_APPLE; - memcpy(networkAddr+1, (unsigned char *)network, 2); - networkAddr[3] = *node; -} - -static inline void __nat25_generate_pppoe_network_addr(unsigned char *networkAddr, - unsigned char *ac_mac, unsigned short *sid) -{ - memset(networkAddr, 0, MAX_NETWORK_ADDR_LEN); - - networkAddr[0] = NAT25_PPPOE; - memcpy(networkAddr+1, (unsigned char *)sid, 2); - memcpy(networkAddr+3, (unsigned char *)ac_mac, 6); -} - -#ifdef CL_IPV6_PASS -static void __nat25_generate_ipv6_network_addr(unsigned char *networkAddr, - unsigned int *ipaddr) -{ - memset(networkAddr, 0, MAX_NETWORK_ADDR_LEN); - - networkAddr[0] = NAT25_IPV6; - memcpy(networkAddr+1, (unsigned char *)ipaddr, 16); -} - -static unsigned char *scan_tlv(unsigned char *data, int len, unsigned char tag, unsigned char len8b) -{ - while (len > 0) { - if (*data == tag && *(data+1) == len8b && len >= len8b*8) - return data+2; - - len -= (*(data+1))*8; - data += (*(data+1))*8; - } - return NULL; -} - -static int update_nd_link_layer_addr(unsigned char *data, int len, unsigned char *replace_mac) -{ - struct icmp6hdr *icmphdr = (struct icmp6hdr *)data; - unsigned char *mac; - - if (icmphdr->icmp6_type == NDISC_ROUTER_SOLICITATION) { - if (len >= 8) { - mac = scan_tlv(&data[8], len-8, 1, 1); - if (mac) { - DBG_8192D("Router Solicitation, replace MAC From: %02x:%02x:%02x:%02x:%02x:%02x, To: %02x:%02x:%02x:%02x:%02x:%02x\n", - mac[0], mac[1], mac[2], mac[3], mac[4], mac[5], - replace_mac[0], replace_mac[1], replace_mac[2], replace_mac[3], replace_mac[4], replace_mac[5]); - memcpy(mac, replace_mac, 6); - return 1; - } - } - } else if (icmphdr->icmp6_type == NDISC_ROUTER_ADVERTISEMENT) { - if (len >= 16) { - mac = scan_tlv(&data[16], len-16, 1, 1); - if (mac) { - DBG_8192D("Router Advertisement, replace MAC From: %02x:%02x:%02x:%02x:%02x:%02x, To: %02x:%02x:%02x:%02x:%02x:%02x\n", - mac[0], mac[1], mac[2], mac[3], mac[4], mac[5], - replace_mac[0], replace_mac[1], replace_mac[2], replace_mac[3], replace_mac[4], replace_mac[5]); - memcpy(mac, replace_mac, 6); - return 1; - } - } - } else if (icmphdr->icmp6_type == NDISC_NEIGHBOUR_SOLICITATION) { - if (len >= 24) { - mac = scan_tlv(&data[24], len-24, 1, 1); - if (mac) { - DBG_8192D("Neighbor Solicitation, replace MAC From: %02x:%02x:%02x:%02x:%02x:%02x, To: %02x:%02x:%02x:%02x:%02x:%02x\n", - mac[0], mac[1], mac[2], mac[3], - mac[4], mac[5], replace_mac[0], - replace_mac[1], replace_mac[2], - replace_mac[3], replace_mac[4], - replace_mac[5]); - memcpy(mac, replace_mac, 6); - return 1; - } - } - } else if (icmphdr->icmp6_type == NDISC_NEIGHBOUR_ADVERTISEMENT) { - if (len >= 24) { - mac = scan_tlv(&data[24], len-24, 2, 1); - if (mac) { - DBG_8192D("Neighbor Advertisement, replace MAC From: %02x:%02x:%02x:%02x:%02x:%02x, To: %02x:%02x:%02x:%02x:%02x:%02x\n", - mac[0], mac[1], mac[2], mac[3], - mac[4], mac[5], replace_mac[0], - replace_mac[1], replace_mac[2], - replace_mac[3], replace_mac[4], - replace_mac[5]); - memcpy(mac, replace_mac, 6); - return 1; - } - } - } else if (icmphdr->icmp6_type == NDISC_REDIRECT) { - if (len >= 40) { - mac = scan_tlv(&data[40], len-40, 2, 1); - if (mac) { - DBG_8192D("Redirect, replace MAC From: %02x:%02x:%02x:%02x:%02x:%02x, To: %02x:%02x:%02x:%02x:%02x:%02x\n", - mac[0], mac[1], mac[2], mac[3], - mac[4], mac[5], replace_mac[0], - replace_mac[1], replace_mac[2], - replace_mac[3], replace_mac[4], - replace_mac[5]); - memcpy(mac, replace_mac, 6); - return 1; - } - } - } - return 0; -} - -static void convert_ipv6_mac_to_mc(struct sk_buff *skb) -{ - struct ipv6hdr *iph = (struct ipv6hdr *)(skb->data + ETH_HLEN); - unsigned char *dst_mac = skb->data; - - dst_mac[0] = 0x33; - dst_mac[1] = 0x33; - memcpy(&dst_mac[2], &iph->daddr.s6_addr32[3], 4); - #if defined(__LINUX_2_6__) - /*modified by qinjunjie, warning:should not remove next line*/ - skb->pkt_type = PACKET_MULTICAST; - #endif -} -#endif /* CL_IPV6_PASS */ - -static inline int __nat25_network_hash(unsigned char *networkAddr) -{ - if (networkAddr[0] == NAT25_IPV4) { - unsigned long x; - - x = networkAddr[7] ^ networkAddr[8] ^ networkAddr[9] ^ networkAddr[10]; - - return x & (NAT25_HASH_SIZE - 1); - } else if (networkAddr[0] == NAT25_IPX) { - unsigned long x; - - x = networkAddr[1] ^ networkAddr[2] ^ networkAddr[3] ^ networkAddr[4] ^ networkAddr[5] ^ - networkAddr[6] ^ networkAddr[7] ^ networkAddr[8] ^ networkAddr[9] ^ networkAddr[10]; - - return x & (NAT25_HASH_SIZE - 1); - } else if (networkAddr[0] == NAT25_APPLE) { - unsigned long x; - - x = networkAddr[1] ^ networkAddr[2] ^ networkAddr[3]; - - return x & (NAT25_HASH_SIZE - 1); - } else if (networkAddr[0] == NAT25_PPPOE) { - unsigned long x; - - x = networkAddr[0] ^ networkAddr[1] ^ networkAddr[2] ^ networkAddr[3] ^ networkAddr[4] ^ networkAddr[5] ^ networkAddr[6] ^ networkAddr[7] ^ networkAddr[8]; - - return x & (NAT25_HASH_SIZE - 1); - } -#ifdef CL_IPV6_PASS - else if (networkAddr[0] == NAT25_IPV6) { - unsigned long x; - - x = networkAddr[1] ^ networkAddr[2] ^ networkAddr[3] ^ networkAddr[4] ^ networkAddr[5] ^ - networkAddr[6] ^ networkAddr[7] ^ networkAddr[8] ^ networkAddr[9] ^ networkAddr[10] ^ - networkAddr[11] ^ networkAddr[12] ^ networkAddr[13] ^ networkAddr[14] ^ networkAddr[15] ^ - networkAddr[16]; - - return x & (NAT25_HASH_SIZE - 1); - } -#endif - else { - unsigned long x = 0; - int i; - - for (i = 0; i < MAX_NETWORK_ADDR_LEN; i++) - x ^= networkAddr[i]; - - return x & (NAT25_HASH_SIZE - 1); - } -} - -static inline void __network_hash_link(struct rtw_adapter *priv, - struct nat25_network_db_entry *ent, int hash) -{ - /* Caller must hold spin_lock_bh already! */ - - ent->next_hash = priv->nethash[hash]; - if (ent->next_hash != NULL) - ent->next_hash->pprev_hash = &ent->next_hash; - priv->nethash[hash] = ent; - ent->pprev_hash = &priv->nethash[hash]; -} - -static inline void __network_hash_unlink(struct nat25_network_db_entry *ent) -{ - /* Caller must hold spin_lock_bh already! */ - - *(ent->pprev_hash) = ent->next_hash; - if (ent->next_hash != NULL) - ent->next_hash->pprev_hash = ent->pprev_hash; - ent->next_hash = NULL; - ent->pprev_hash = NULL; -} - -static int __nat25_db_network_lookup_and_replace(struct rtw_adapter *priv, - struct sk_buff *skb, unsigned char *networkAddr) -{ - struct nat25_network_db_entry *db; - spin_lock_bh(&priv->br_ext_lock); - - db = priv->nethash[__nat25_network_hash(networkAddr)]; - while (db != NULL) { - if (!memcmp(db->networkAddr, networkAddr, MAX_NETWORK_ADDR_LEN)) { - if (!__nat25_has_expired(priv, db)) { - /* replace the destination mac address */ - memcpy(skb->data, db->macaddr, ETH_ALEN); - atomic_inc(&db->use_count); - -#ifdef CL_IPV6_PASS - DBG_8192D("NAT25: Lookup M:%02x%02x%02x%02x%02x%02x N:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x" - "%02x%02x%02x%02x%02x%02x\n", - db->macaddr[0], - db->macaddr[1], - db->macaddr[2], - db->macaddr[3], - db->macaddr[4], - db->macaddr[5], - db->networkAddr[0], - db->networkAddr[1], - db->networkAddr[2], - db->networkAddr[3], - db->networkAddr[4], - db->networkAddr[5], - db->networkAddr[6], - db->networkAddr[7], - db->networkAddr[8], - db->networkAddr[9], - db->networkAddr[10], - db->networkAddr[11], - db->networkAddr[12], - db->networkAddr[13], - db->networkAddr[14], - db->networkAddr[15], - db->networkAddr[16]); -#else - DBG_8192D("NAT25: Lookup M:%02x%02x%02x%02x%02x%02x N:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n", - db->macaddr[0], - db->macaddr[1], - db->macaddr[2], - db->macaddr[3], - db->macaddr[4], - db->macaddr[5], - db->networkAddr[0], - db->networkAddr[1], - db->networkAddr[2], - db->networkAddr[3], - db->networkAddr[4], - db->networkAddr[5], - db->networkAddr[6], - db->networkAddr[7], - db->networkAddr[8], - db->networkAddr[9], - db->networkAddr[10]); -#endif - } - spin_unlock_bh(&priv->br_ext_lock); - return 1; - } - - db = db->next_hash; - } - - spin_unlock_bh(&priv->br_ext_lock); - return 0; -} - -static void __nat25_db_network_insert(struct rtw_adapter *priv, - unsigned char *macaddr, unsigned char *networkAddr) -{ - struct nat25_network_db_entry *db; - int hash; - spin_lock_bh(&priv->br_ext_lock); - - hash = __nat25_network_hash(networkAddr); - db = priv->nethash[hash]; - while (db != NULL) { - if (!memcmp(db->networkAddr, networkAddr, MAX_NETWORK_ADDR_LEN)) { - memcpy(db->macaddr, macaddr, ETH_ALEN); - db->ageing_timer = jiffies; - spin_unlock_bh(&priv->br_ext_lock); - return; - } - - db = db->next_hash; - } - - db = (struct nat25_network_db_entry *)kmalloc(sizeof(*db), GFP_KERNEL); - if (db == NULL) { - spin_unlock_bh(&priv->br_ext_lock); - return; - } - - memcpy(db->networkAddr, networkAddr, MAX_NETWORK_ADDR_LEN); - memcpy(db->macaddr, macaddr, ETH_ALEN); - atomic_set(&db->use_count, 1); - db->ageing_timer = jiffies; - - __network_hash_link(priv, db, hash); - - spin_unlock_bh(&priv->br_ext_lock); -} - -static void __nat25_db_print(struct rtw_adapter *priv) -{ - spin_lock_bh(&priv->br_ext_lock); - -#ifdef BR_EXT_DEBUG - static int counter; - int i, j; - struct nat25_network_db_entry *db; - - counter++; - if ((counter % 16) != 0) - return; - - for (i = 0, j = 0; i < NAT25_HASH_SIZE; i++) { - db = priv->nethash[i]; - - while (db != NULL) { -#ifdef CL_IPV6_PASS - panic_printk("NAT25: DB(%d) H(%02d) C(%d) M:%02x%02x%02x%02x%02x%02x N:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n", - j, i, - atomic_read(&db->use_count), - db->macaddr[0], db->macaddr[1], - db->macaddr[2], db->macaddr[3], - db->macaddr[4], db->macaddr[5], - db->networkAddr[0], db->networkAddr[1], - db->networkAddr[2], db->networkAddr[3], - db->networkAddr[4], db->networkAddr[5], - db->networkAddr[6], db->networkAddr[7], - db->networkAddr[8], db->networkAddr[9], - db->networkAddr[10], db->networkAddr[11], - db->networkAddr[12], db->networkAddr[13], - db->networkAddr[14], db->networkAddr[15], - db->networkAddr[16]); -#else - panic_printk("NAT25: DB(%d) H(%02d) C(%d) M:%02x%02x%02x%02x%02x%02x N:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n", - j, i, atomic_read(&db->use_count), - db->macaddr[0], db->macaddr[1], - db->macaddr[2], db->macaddr[3], - db->macaddr[4], db->macaddr[5], - db->networkAddr[0], db->networkAddr[1], - db->networkAddr[2], db->networkAddr[3], - db->networkAddr[4], db->networkAddr[5], - db->networkAddr[6], db->networkAddr[7], - db->networkAddr[8], db->networkAddr[9], - db->networkAddr[10]); -#endif - j++; - - db = db->next_hash; - } - } -#endif - - spin_unlock_bh(&priv->br_ext_lock); -} - -/* - * NAT2.5 interface - */ - -void nat25_db_cleanup(struct rtw_adapter *priv) -{ - int i; - spin_lock_bh(&priv->br_ext_lock); - - for (i = 0; i < NAT25_HASH_SIZE; i++) { - struct nat25_network_db_entry *f; - f = priv->nethash[i]; - while (f != NULL) { - struct nat25_network_db_entry *g; - - g = f->next_hash; - if (priv->scdb_entry == f) { - memset(priv->scdb_mac, 0, ETH_ALEN); - memset(priv->scdb_ip, 0, 4); - priv->scdb_entry = NULL; - } - __network_hash_unlink(f); - kfree(f); - - f = g; - } - } - - spin_unlock_bh(&priv->br_ext_lock); -} - -void nat25_db_expire(struct rtw_adapter *priv) -{ - int i; - - spin_lock_bh(&priv->br_ext_lock); - - for (i = 0; i < NAT25_HASH_SIZE; i++) { - struct nat25_network_db_entry *f; - f = priv->nethash[i]; - - while (f != NULL) { - struct nat25_network_db_entry *g; - g = f->next_hash; - - if (__nat25_has_expired(priv, f)) { - if (atomic_dec_and_test(&f->use_count)) { -#ifdef BR_EXT_DEBUG -#ifdef CL_IPV6_PASS - panic_printk("NAT25 Expire H(%02d) M:%02x%02x%02x%02x%02x%02x N:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x" - "%02x%02x%02x%02x%02x%02x\n", - i, - f->macaddr[0], - f->macaddr[1], - f->macaddr[2], - f->macaddr[3], - f->macaddr[4], - f->macaddr[5], - f->networkAddr[0], - f->networkAddr[1], - f->networkAddr[2], - f->networkAddr[3], - f->networkAddr[4], - f->networkAddr[5], - f->networkAddr[6], - f->networkAddr[7], - f->networkAddr[8], - f->networkAddr[9], - f->networkAddr[10], - f->networkAddr[11], - f->networkAddr[12], - f->networkAddr[13], - f->networkAddr[14], - f->networkAddr[15], - f->networkAddr[16]); -#else - - panic_printk("NAT25 Expire H(%02d) M:%02x%02x%02x%02x%02x%02x N:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n", - i, f->macaddr[0], - f->macaddr[1], - f->macaddr[2], - f->macaddr[3], - f->macaddr[4], - f->macaddr[5], - f->networkAddr[0], - f->networkAddr[1], - f->networkAddr[2], - f->networkAddr[3], - f->networkAddr[4], - f->networkAddr[5], - f->networkAddr[6], - f->networkAddr[7], - f->networkAddr[8], - f->networkAddr[9], - f->networkAddr[10]); -#endif -#endif - if (priv->scdb_entry == f) { - memset(priv->scdb_mac, 0, ETH_ALEN); - memset(priv->scdb_ip, 0, 4); - priv->scdb_entry = NULL; - } - __network_hash_unlink(f); - kfree(f); - } - } - f = g; - } - } - spin_unlock_bh(&priv->br_ext_lock); -} - -#ifdef SUPPORT_TX_MCAST2UNI -static int checkIPMcAndReplace(struct rtw_adapter *priv, struct sk_buff *skb, unsigned int *dst_ip) -{ - struct stat_info *pstat; - struct list_head *phead, *plist; - int i; - - phead = &priv->asoc_list; - plist = phead->next; - - while (plist != phead) { - pstat = list_entry(plist, struct stat_info, asoc_list); - plist = plist->next; - - if (pstat->ipmc_num == 0) - continue; - - for (i = 0; i < MAX_IP_MC_ENTRY; i++) { - if (pstat->ipmc[i].used && !memcmp(&pstat->ipmc[i].mcmac[3], ((unsigned char *)dst_ip)+1, 3)) { - memcpy(skb->data, pstat->ipmc[i].mcmac, ETH_ALEN); - return 1; - } - } - } - return 0; -} -#endif - -int nat25_db_handle(struct rtw_adapter *priv, struct sk_buff *skb, int method) -{ - unsigned short protocol; - unsigned char networkAddr[MAX_NETWORK_ADDR_LEN]; - - if (skb == NULL) - return -1; - - if ((method <= NAT25_MIN) || (method >= NAT25_MAX)) - return -1; - - protocol = be16_to_cpu(*((__be16 *)(skb->data + 2 * ETH_ALEN))); - - /*---------------------------------------------------*/ - /* Handle IP frame */ - /*---------------------------------------------------*/ - if (protocol == ETH_P_IP) { - struct iphdr *iph = (struct iphdr *)(skb->data + ETH_HLEN); - - if (((unsigned char *)(iph) + (iph->ihl<<2)) >= (skb->data + ETH_HLEN + skb->len)) { - ERR_8192D("NAT25: malformed IP packet !\n"); - return -1; - } - switch (method) { - case NAT25_CHECK: - return -1; - case NAT25_INSERT: - /* some muticast with source IP is all zero, maybe other case is illegal */ - /* in class A, B, C, host address is all zero or all one is illegal */ - if (iph->saddr == 0) - return 0; - DBG_8192D("NAT25: Insert IP, SA =%08x, DA =%08x\n", iph->saddr, iph->daddr); - __nat25_generate_ipv4_network_addr(networkAddr, &iph->saddr); - /* record source IP address and , source mac address into db */ - __nat25_db_network_insert(priv, skb->data+ETH_ALEN, networkAddr); - - __nat25_db_print(priv); - return 0; - case NAT25_LOOKUP: - DBG_8192D("NAT25: Lookup IP, SA =%08x, DA =%08x\n", iph->saddr, iph->daddr); -#ifdef SUPPORT_TX_MCAST2UNI - if (priv->pshare->rf_ft_var.mc2u_disable || - ((((OPMODE & (WIFI_STATION_STATE|WIFI_ASOC_STATE)) == - (WIFI_STATION_STATE|WIFI_ASOC_STATE)) && - !checkIPMcAndReplace(priv, skb, &iph->daddr)) || - (OPMODE & WIFI_ADHOC_STATE))) -#endif - { - __nat25_generate_ipv4_network_addr(networkAddr, &iph->daddr); - - if (!__nat25_db_network_lookup_and_replace(priv, skb, networkAddr)) { - if (*((unsigned char *)&iph->daddr + 3) == 0xff) { - /* L2 is unicast but L3 is broadcast, make L2 bacome broadcast */ - DBG_8192D("NAT25: Set DA as boardcast\n"); - memset(skb->data, 0xff, ETH_ALEN); - } else { - /* forward unknown IP packet to upper TCP/IP */ - DBG_8192D("NAT25: Replace DA with BR's MAC\n"); - if ((*(u32 *)priv->br_mac) == 0 && (*(u16 *)(priv->br_mac+4)) == 0) { - printk("Re-init netdev_br_init() due to br_mac == 0!\n"); - netdev_br_init(priv->pnetdev); - } - memcpy(skb->data, priv->br_mac, ETH_ALEN); - } - } - } - return 0; - - default: - return -1; - } - - /*---------------------------------------------------*/ - /* Handle ARP frame */ - /*---------------------------------------------------*/ - } else if (protocol == ETH_P_ARP) { - struct arphdr *arp = (struct arphdr *)(skb->data + ETH_HLEN); - unsigned char *arp_ptr = (unsigned char *)(arp + 1); - __be32 *target; - __be32 *sender; - - if (arp->ar_pro != __constant_htons(ETH_P_IP)) { - ERR_8192D("NAT25: arp protocol unknown (%4x)!\n", htons(arp->ar_pro)); - return -1; - } - - switch (method) { - case NAT25_CHECK: - return 0; /* skb_copy for all ARP frame */ - case NAT25_INSERT: - DBG_8192D("NAT25: Insert ARP, MAC =%02x%02x%02x%02x%02x%02x\n", arp_ptr[0], - arp_ptr[1], arp_ptr[2], arp_ptr[3], arp_ptr[4], arp_ptr[5]); - - /* change to ARP sender mac address to wlan STA address */ - memcpy(arp_ptr, GET_MY_HWADDR(priv), ETH_ALEN); - - arp_ptr += arp->ar_hln; - sender = (__be32 *)arp_ptr; - - __nat25_generate_ipv4_network_addr(networkAddr, sender); - - __nat25_db_network_insert(priv, skb->data+ETH_ALEN, networkAddr); - - __nat25_db_print(priv); - return 0; - case NAT25_LOOKUP: - DBG_8192D("NAT25: Lookup ARP\n"); - - arp_ptr += arp->ar_hln; - sender = (__be32 *)arp_ptr; - arp_ptr += (arp->ar_hln + arp->ar_pln); - target = (__be32 *)arp_ptr; - - __nat25_generate_ipv4_network_addr(networkAddr, target); - - __nat25_db_network_lookup_and_replace(priv, skb, networkAddr); - - /* change to ARP target mac address to Lookup result */ - arp_ptr = (unsigned char *)(arp + 1); - arp_ptr += (arp->ar_hln + arp->ar_pln); - memcpy(arp_ptr, skb->data, ETH_ALEN); - return 0; - default: - return -1; - } - - /*---------------------------------------------------*/ - /* Handle IPX and Apple Talk frame */ - /*---------------------------------------------------*/ - } else if ((protocol == ETH_P_IPX) || - (protocol <= ETH_FRAME_LEN)) { - unsigned char ipx_header[2] = {0xFF, 0xFF}; - struct ipxhdr *ipx = NULL; - struct elapaarp *ea = NULL; - struct ddpehdr *ddp = NULL; - unsigned char *frameptr = skb->data + ETH_HLEN; - - if (protocol == ETH_P_IPX) { - DBG_8192D("NAT25: Protocol = IPX (Ethernet II)\n"); - ipx = (struct ipxhdr *)frameptr; - } else if (protocol <= ETH_FRAME_LEN) { - if (!memcmp(ipx_header, frameptr, 2)) { - DBG_8192D("NAT25: Protocol = IPX (Ethernet 802.3)\n"); - ipx = (struct ipxhdr *)frameptr; - } else { - unsigned char ipx_8022_type = 0xE0; - unsigned char snap_8022_type = 0xAA; - - if (*frameptr == snap_8022_type) { - unsigned char ipx_snap_id[5] = {0x0, 0x0, 0x0, 0x81, 0x37}; /* IPX SNAP ID */ - unsigned char aarp_snap_id[5] = {0x00, 0x00, 0x00, 0x80, 0xF3}; /* Apple Talk AARP SNAP ID */ - unsigned char ddp_snap_id[5] = {0x08, 0x00, 0x07, 0x80, 0x9B}; /* Apple Talk DDP SNAP ID */ - - frameptr += 3; /* eliminate the 802.2 header */ - - if (!memcmp(ipx_snap_id, frameptr, 5)) { - frameptr += 5; /* eliminate the SNAP header */ - - DBG_8192D("NAT25: Protocol = IPX (Ethernet SNAP)\n"); - ipx = (struct ipxhdr *)frameptr; - } else if (!memcmp(aarp_snap_id, frameptr, 5)) { - frameptr += 5; /* eliminate the SNAP header */ - - ea = (struct elapaarp *)frameptr; - } else if (!memcmp(ddp_snap_id, frameptr, 5)) { - frameptr += 5; /* eliminate the SNAP header */ - - ddp = (struct ddpehdr *)frameptr; - } else { - ERR_8192D("NAT25: Protocol = Ethernet SNAP %02x%02x%02x%02x%02x\n", frameptr[0], - frameptr[1], frameptr[2], frameptr[3], frameptr[4]); - return -1; - } - } else if (*frameptr == ipx_8022_type) { - frameptr += 3; /* eliminate the 802.2 header */ - - if (!memcmp(ipx_header, frameptr, 2)) { - DBG_8192D("NAT25: Protocol = IPX (Ethernet 802.2)\n"); - ipx = (struct ipxhdr *)frameptr; - } else { - return -1; - } - } else { - return -1; - } - } - } else { - return -1; - } - - /* IPX */ - if (ipx != NULL) { - switch (method) { - case NAT25_CHECK: - if (!memcmp(skb->data+ETH_ALEN, ipx->ipx_source.node, ETH_ALEN)) { - DBG_8192D("NAT25: Check IPX skb_copy\n"); - return 0; - } - return -1; - case NAT25_INSERT: - DBG_8192D("NAT25: Insert IPX, Dest =%08x,%02x%02x%02x%02x%02x%02x,%04x Source =%08x,%02x%02x%02x%02x%02x%02x,%04x\n", - ipx->ipx_dest.net, - ipx->ipx_dest.node[0], - ipx->ipx_dest.node[1], - ipx->ipx_dest.node[2], - ipx->ipx_dest.node[3], - ipx->ipx_dest.node[4], - ipx->ipx_dest.node[5], - ipx->ipx_dest.sock, - ipx->ipx_source.net, - ipx->ipx_source.node[0], - ipx->ipx_source.node[1], - ipx->ipx_source.node[2], - ipx->ipx_source.node[3], - ipx->ipx_source.node[4], - ipx->ipx_source.node[5], - ipx->ipx_source.sock); - - if (!memcmp(skb->data+ETH_ALEN, ipx->ipx_source.node, ETH_ALEN)) { - DBG_8192D("NAT25: Use IPX Net, and Socket as network addr\n"); - - __nat25_generate_ipx_network_addr_with_socket(networkAddr, &ipx->ipx_source.net, &ipx->ipx_source.sock); - - /* change IPX source node addr to wlan STA address */ - memcpy(ipx->ipx_source.node, GET_MY_HWADDR(priv), ETH_ALEN); - } else { - __nat25_generate_ipx_network_addr_with_node(networkAddr, &ipx->ipx_source.net, ipx->ipx_source.node); - } - - __nat25_db_network_insert(priv, skb->data+ETH_ALEN, networkAddr); - - __nat25_db_print(priv); - return 0; - case NAT25_LOOKUP: - if (!memcmp(GET_MY_HWADDR(priv), ipx->ipx_dest.node, ETH_ALEN)) { - DBG_8192D("NAT25: Lookup IPX, Modify Destination IPX Node addr\n"); - - __nat25_generate_ipx_network_addr_with_socket(networkAddr, &ipx->ipx_dest.net, &ipx->ipx_dest.sock); - - __nat25_db_network_lookup_and_replace(priv, skb, networkAddr); - - /* replace IPX destination node addr with Lookup destination MAC addr */ - memcpy(ipx->ipx_dest.node, skb->data, ETH_ALEN); - } else { - __nat25_generate_ipx_network_addr_with_node(networkAddr, &ipx->ipx_dest.net, ipx->ipx_dest.node); - - __nat25_db_network_lookup_and_replace(priv, skb, networkAddr); - } - return 0; - default: - return -1; - } - - /* AARP */ - } else if (ea != NULL) { - /* Sanity check fields. */ - if (ea->hw_len != ETH_ALEN || ea->pa_len != AARP_PA_ALEN) { - ERR_8192D("NAT25: Appletalk AARP Sanity check fail!\n"); - return -1; - } - - switch (method) { - case NAT25_CHECK: - return 0; - case NAT25_INSERT: - /* change to AARP source mac address to wlan STA address */ - memcpy(ea->hw_src, GET_MY_HWADDR(priv), ETH_ALEN); - - DBG_8192D("NAT25: Insert AARP, Source =%d,%d Destination =%d,%d\n", - ea->pa_src_net, - ea->pa_src_node, - ea->pa_dst_net, - ea->pa_dst_node); - - __nat25_generate_apple_network_addr(networkAddr, &ea->pa_src_net, &ea->pa_src_node); - - __nat25_db_network_insert(priv, skb->data+ETH_ALEN, networkAddr); - - __nat25_db_print(priv); - return 0; - case NAT25_LOOKUP: - DBG_8192D("NAT25: Lookup AARP, Source =%d,%d Destination =%d,%d\n", - ea->pa_src_net, ea->pa_src_node, - ea->pa_dst_net, ea->pa_dst_node); - - __nat25_generate_apple_network_addr(networkAddr, &ea->pa_dst_net, &ea->pa_dst_node); - - __nat25_db_network_lookup_and_replace(priv, skb, networkAddr); - - /* change to AARP destination mac address to Lookup result */ - memcpy(ea->hw_dst, skb->data, ETH_ALEN); - return 0; - default: - return -1; - } - - /* DDP */ - } else if (ddp != NULL) { - switch (method) { - case NAT25_CHECK: - return -1; - case NAT25_INSERT: - DBG_8192D("NAT25: Insert DDP, Source =%d,%d Destination =%d,%d\n", - ddp->deh_snet, ddp->deh_snode, - ddp->deh_dnet, ddp->deh_dnode); - - __nat25_generate_apple_network_addr(networkAddr, &ddp->deh_snet, &ddp->deh_snode); - - __nat25_db_network_insert(priv, skb->data+ETH_ALEN, networkAddr); - - __nat25_db_print(priv); - return 0; - case NAT25_LOOKUP: - DBG_8192D("NAT25: Lookup DDP, Source =%d,%d Destination =%d,%d\n", - ddp->deh_snet, ddp->deh_snode, - ddp->deh_dnet, ddp->deh_dnode); - - __nat25_generate_apple_network_addr(networkAddr, &ddp->deh_dnet, &ddp->deh_dnode); - - __nat25_db_network_lookup_and_replace(priv, skb, networkAddr); - return 0; - default: - return -1; - } - } - return -1; - - /*---------------------------------------------------*/ - /* Handle PPPoE frame */ - /*---------------------------------------------------*/ - } else if ((protocol == ETH_P_PPP_DISC) || - (protocol == ETH_P_PPP_SES)) { - struct pppoe_hdr *ph = (struct pppoe_hdr *)(skb->data + ETH_HLEN); - unsigned short *magic; - - switch (method) { - case NAT25_CHECK: - if (ph->sid == 0) - return 0; - return 1; - case NAT25_INSERT: - if (ph->sid == 0) { /* Discovery phase according to tag */ - if (ph->code == PADI_CODE || ph->code == PADR_CODE) { - if (priv->eth_br_ext_info.addPPPoETag) { - struct pppoe_tag *tag, *old_tag; - unsigned char tag_buf[40]; - int old_tag_len = 0; - - tag = (struct pppoe_tag *)tag_buf; - old_tag = (struct pppoe_tag *)__nat25_find_pppoe_tag(ph, ntohs(PTT_RELAY_SID)); - if (old_tag) { /* if SID existed, copy old value and delete it */ - old_tag_len = ntohs(old_tag->tag_len); - if (old_tag_len+TAG_HDR_LEN+MAGIC_CODE_LEN+RTL_RELAY_TAG_LEN > sizeof(tag_buf)) { - ERR_8192D("SID tag length too long!\n"); - return -1; - } - memcpy(tag->tag_data+MAGIC_CODE_LEN+RTL_RELAY_TAG_LEN, - old_tag->tag_data, old_tag_len); - if (skb_pull_and_merge(skb, (unsigned char *)old_tag, TAG_HDR_LEN+old_tag_len) < 0) { - ERR_8192D("call skb_pull_and_merge() failed in PADI/R packet!\n"); - return -1; - } - ph->length = htons(ntohs(ph->length)-TAG_HDR_LEN-old_tag_len); - } - tag->tag_type = PTT_RELAY_SID; - tag->tag_len = htons(MAGIC_CODE_LEN+RTL_RELAY_TAG_LEN+old_tag_len); - /* insert the magic_code+client mac in relay tag */ - magic = (unsigned short *)tag->tag_data; - *magic = htons(MAGIC_CODE); - memcpy(tag->tag_data+MAGIC_CODE_LEN, skb->data+ETH_ALEN, ETH_ALEN); - - /* Add relay tag */ - if (__nat25_add_pppoe_tag(skb, tag) < 0) - return -1; - DBG_8192D("NAT25: Insert PPPoE, forward %s packet\n", - (ph->code == PADI_CODE ? "PADI" : "PADR")); - } else { /* not add relay tag */ - if (priv->pppoe_connection_in_progress && - memcmp(skb->data+ETH_ALEN, priv->pppoe_addr, ETH_ALEN)) { - ERR_8192D("Discard PPPoE packet due to another PPPoE connection is in progress!\n"); - return -2; - } - if (priv->pppoe_connection_in_progress == 0) - memcpy(priv->pppoe_addr, skb->data+ETH_ALEN, ETH_ALEN); - priv->pppoe_connection_in_progress = WAIT_TIME_PPPOE; - } - } else { - return -1; - } - } else { /* session phase */ - DBG_8192D("NAT25: Insert PPPoE, insert session packet to %s\n", skb->dev->name); - __nat25_generate_pppoe_network_addr(networkAddr, skb->data, &(ph->sid)); - __nat25_db_network_insert(priv, skb->data+ETH_ALEN, networkAddr); - __nat25_db_print(priv); - if (!priv->eth_br_ext_info.addPPPoETag && - priv->pppoe_connection_in_progress && - !memcmp(skb->data+ETH_ALEN, priv->pppoe_addr, ETH_ALEN)) - priv->pppoe_connection_in_progress = 0; - } - return 0; - case NAT25_LOOKUP: - if (ph->code == PADO_CODE || ph->code == PADS_CODE) { - if (priv->eth_br_ext_info.addPPPoETag) { - struct pppoe_tag *tag; - unsigned char *ptr; - unsigned short tagType, tagLen; - int offset = 0; - - ptr = __nat25_find_pppoe_tag(ph, ntohs(PTT_RELAY_SID)); - if (ptr == NULL) { - ERR_8192D("Fail to find PTT_RELAY_SID in FADO!\n"); - return -1; - } - tag = (struct pppoe_tag *)ptr; - tagType = (unsigned short)((ptr[0] << 8) + ptr[1]); - tagLen = (unsigned short)((ptr[2] << 8) + ptr[3]); - if ((tagType != ntohs(PTT_RELAY_SID)) || (tagLen < (MAGIC_CODE_LEN+RTL_RELAY_TAG_LEN))) { - ERR_8192D("Invalid PTT_RELAY_SID tag length [%d]!\n", tagLen); - return -1; - } - - magic = (unsigned short *)tag->tag_data; - if (ntohs(*magic) != MAGIC_CODE) { - ERR_8192D("Can't find MAGIC_CODE in %s packet!\n", - (ph->code == PADO_CODE ? "PADO" : "PADS")); - return -1; - } - - memcpy(skb->data, tag->tag_data+MAGIC_CODE_LEN, ETH_ALEN); - - if (tagLen > MAGIC_CODE_LEN+RTL_RELAY_TAG_LEN) - offset = TAG_HDR_LEN; - - if (skb_pull_and_merge(skb, ptr+offset, TAG_HDR_LEN+MAGIC_CODE_LEN+RTL_RELAY_TAG_LEN-offset) < 0) { - ERR_8192D("call skb_pull_and_merge() failed in PADO packet!\n"); - return -1; - } - ph->length = htons(ntohs(ph->length)-(TAG_HDR_LEN+MAGIC_CODE_LEN+RTL_RELAY_TAG_LEN-offset)); - if (offset > 0) - tag->tag_len = htons(tagLen-MAGIC_CODE_LEN-RTL_RELAY_TAG_LEN); - - DBG_8192D("NAT25: Lookup PPPoE, forward %s Packet from %s\n", - (ph->code == PADO_CODE ? "PADO" : "PADS"), skb->dev->name); - } else { /* not add relay tag */ - if (!priv->pppoe_connection_in_progress) { - ERR_8192D("Discard PPPoE packet due to no connection in progresss!\n"); - return -1; - } - memcpy(skb->data, priv->pppoe_addr, ETH_ALEN); - priv->pppoe_connection_in_progress = WAIT_TIME_PPPOE; - } - } else { - if (ph->sid != 0) { - DBG_8192D("NAT25: Lookup PPPoE, lookup session packet from %s\n", skb->dev->name); - __nat25_generate_pppoe_network_addr(networkAddr, skb->data+ETH_ALEN, &(ph->sid)); - __nat25_db_network_lookup_and_replace(priv, skb, networkAddr); - __nat25_db_print(priv); - } else { - return -1; - } - } - return 0; - default: - return -1; - } - - /*---------------------------------------------------*/ - /* Handle EAP frame */ - /*---------------------------------------------------*/ - } else if (protocol == 0x888e) { - switch (method) { - case NAT25_CHECK: - return -1; - case NAT25_INSERT: - return 0; - case NAT25_LOOKUP: - return 0; - default: - return -1; - } - - /*---------------------------------------------------*/ - /* Handle C-Media proprietary frame */ - /*---------------------------------------------------*/ - } else if ((protocol == 0xe2ae) || - (protocol == 0xe2af)) { - switch (method) { - case NAT25_CHECK: - return -1; - case NAT25_INSERT: - return 0; - case NAT25_LOOKUP: - return 0; - default: - return -1; - } - } - - /*---------------------------------------------------*/ - /* Handle IPV6 frame */ - /*---------------------------------------------------*/ -#ifdef CL_IPV6_PASS - else if (protocol == ETH_P_IPV6) { - struct ipv6hdr *iph = (struct ipv6hdr *)(skb->data + ETH_HLEN); - - if (sizeof(*iph) >= (skb->len - ETH_HLEN)) { - ERR_8192D("NAT25: malformed IPv6 packet !\n"); - return -1; - } - - switch (method) { - case NAT25_CHECK: - if (skb->data[0] & 1) - return 0; - return -1; - case NAT25_INSERT: - DBG_8192D("NAT25: Insert IP, SA =%8ph, DA = %8ph\n", - iph->saddr.s6_addr16, - iph->daddr.s6_addr16); - - if (memcmp(&iph->saddr, "\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0", 16)) { - __nat25_generate_ipv6_network_addr(networkAddr, (unsigned int *)&iph->saddr); - __nat25_db_network_insert(priv, skb->data+ETH_ALEN, networkAddr); - __nat25_db_print(priv); - - if (iph->nexthdr == IPPROTO_ICMPV6 && - skb->len > (ETH_HLEN + sizeof(*iph) + 4)) { - if (update_nd_link_layer_addr(skb->data + ETH_HLEN + sizeof(*iph), - skb->len - ETH_HLEN - sizeof(*iph), - GET_MY_HWADDR(priv))) { - struct icmp6hdr *hdr = (struct icmp6hdr *)(skb->data + ETH_HLEN + sizeof(*iph)); - hdr->icmp6_cksum = 0; - hdr->icmp6_cksum = csum_ipv6_magic(&iph->saddr, &iph->daddr, - be16_to_cpu(iph->payload_len), - IPPROTO_ICMPV6, - csum_partial((__u8 *)hdr, iph->payload_len, 0)); - } - } - } - return 0; - case NAT25_LOOKUP: - DBG_8192D("NAT25: Lookup IP, SA =%4x:%4x:%4x:%4x:%4x:%4x:%4x:%4x,DA =%4x:%4x:%4x:%4x:%4x:%4x:%4x:%4x\n", - iph->saddr.s6_addr16[0], iph->saddr.s6_addr16[1], - iph->saddr.s6_addr16[2], iph->saddr.s6_addr16[3], - iph->saddr.s6_addr16[4], iph->saddr.s6_addr16[5], - iph->saddr.s6_addr16[6], iph->saddr.s6_addr16[7], - iph->daddr.s6_addr16[0], iph->daddr.s6_addr16[1], - iph->daddr.s6_addr16[2], iph->daddr.s6_addr16[3], - iph->daddr.s6_addr16[4], iph->daddr.s6_addr16[5], - iph->daddr.s6_addr16[6], iph->daddr.s6_addr16[7]); - __nat25_generate_ipv6_network_addr(networkAddr, (unsigned int *)&iph->daddr); - if (!__nat25_db_network_lookup_and_replace(priv, skb, networkAddr)) { -#ifdef SUPPORT_RX_UNI2MCAST - if (iph->daddr.s6_addr[0] == 0xff) - convert_ipv6_mac_to_mc(skb); -#endif - } - return 0; - default: - return -1; - } - } -#endif /* CL_IPV6_PASS */ - - return -1; -} - -int nat25_handle_frame(struct rtw_adapter *priv, struct sk_buff *skb) -{ -#ifdef BR_EXT_DEBUG - if ((!priv->eth_br_ext_info.nat25_disable) && (!(skb->data[0] & 1))) { - panic_printk("NAT25: Input Frame: DA =%02x%02x%02x%02x%02x%02x SA =%02x%02x%02x%02x%02x%02x\n", - skb->data[0], skb->data[1], skb->data[2], - skb->data[3], skb->data[4], skb->data[5], - skb->data[6], skb->data[7], skb->data[8], - skb->data[9], skb->data[10], skb->data[11]); - } -#endif - - if (!(skb->data[0] & 1)) { - int is_vlan_tag = 0, i, retval = 0; - unsigned short vlan_hdr = 0; - unsigned short protocol; - - protocol = be16_to_cpu(*((__be16 *)(skb->data + 2 * ETH_ALEN))); - if (protocol == ETH_P_8021Q) { - is_vlan_tag = 1; - vlan_hdr = *((unsigned short *)(skb->data+ETH_ALEN*2+2)); - for (i = 0; i < 6; i++) - *((unsigned short *)(skb->data+ETH_ALEN*2+2-i*2)) = *((unsigned short *)(skb->data+ETH_ALEN*2-2-i*2)); - skb_pull(skb, 4); - } - - if (!priv->eth_br_ext_info.nat25_disable) { - spin_lock_bh(&priv->br_ext_lock); - /* - * This function look up the destination network address from - * the NAT2.5 database. Return value = -1 means that the - * corresponding network protocol is NOT support. - */ - if (!priv->eth_br_ext_info.nat25sc_disable && - (be16_to_cpu(*((__be16 *)(skb->data+ETH_ALEN*2))) == ETH_P_IP) && - !memcmp(priv->scdb_ip, skb->data+ETH_HLEN+16, 4)) { - memcpy(skb->data, priv->scdb_mac, ETH_ALEN); - - spin_unlock_bh(&priv->br_ext_lock); - } else { - spin_unlock_bh(&priv->br_ext_lock); - - retval = nat25_db_handle(priv, skb, NAT25_LOOKUP); - } - } else { - if (((be16_to_cpu(*((__be16 *)(skb->data+ETH_ALEN*2))) == ETH_P_IP) && - !memcmp(priv->br_ip, skb->data+ETH_HLEN+16, 4)) || - ((be16_to_cpu(*((__be16 *)(skb->data+ETH_ALEN*2))) == ETH_P_ARP) && - !memcmp(priv->br_ip, skb->data+ETH_HLEN+24, 4))) { - /* for traffic to upper TCP/IP */ - retval = nat25_db_handle(priv, skb, NAT25_LOOKUP); - } - } - - if (is_vlan_tag) { - skb_push(skb, 4); - for (i = 0; i < 6; i++) - *((unsigned short *)(skb->data+i*2)) = *((unsigned short *)(skb->data+4+i*2)); - *((__be16 *)(skb->data+ETH_ALEN*2)) = __constant_htons(ETH_P_8021Q); - *((__be16 *)(skb->data+ETH_ALEN*2+2)) = cpu_to_be16(vlan_hdr); - } - - if (retval == -1) - return -1; - } - return 0; -} - -#define SERVER_PORT 67 -#define CLIENT_PORT 68 -#define DHCP_MAGIC 0x63825363 -#define BROADCAST_FLAG 0x8000 - -struct dhcp_message { - u_int8_t op; - u_int8_t htype; - u_int8_t hlen; - u_int8_t hops; - u_int32_t xid; - u_int16_t secs; - __be16 flags; - u_int32_t ciaddr; - u_int32_t yiaddr; - u_int32_t siaddr; - u_int32_t giaddr; - u_int8_t chaddr[16]; - u_int8_t sname[64]; - u_int8_t file[128]; - __be32 cookie; - u_int8_t options[308]; /* 312 - cookie */ -}; - -void dhcp_flag_bcast(struct rtw_adapter *priv, struct sk_buff *skb) -{ - if (skb == NULL) - return; - - if (!priv->eth_br_ext_info.dhcp_bcst_disable) { - __be16 protocol = *((__be16 *)(skb->data + 2 * ETH_ALEN)); - - if (protocol == __constant_htons(ETH_P_IP)) { /* IP */ - struct iphdr *iph = (struct iphdr *)(skb->data + ETH_HLEN); - - if (iph->protocol == IPPROTO_UDP) { /* UDP */ - struct udphdr *udph = (struct udphdr *)((SIZE_PTR)iph + (iph->ihl << 2)); - - if ((udph->source == __constant_htons(CLIENT_PORT)) && - (udph->dest == __constant_htons(SERVER_PORT))) { /* DHCP request */ - struct dhcp_message *dhcph = - (struct dhcp_message *)((SIZE_PTR)udph + sizeof(struct udphdr)); - u32 cookie = be32_to_cpu((__be32)dhcph->cookie); - - if (cookie == DHCP_MAGIC) { /* match magic word */ - if (!(dhcph->flags & htons(BROADCAST_FLAG))) { /* if not broadcast */ - register int sum = 0; - - DBG_8192D("DHCP: change flag of DHCP request to broadcast.\n"); - /* or BROADCAST flag */ - dhcph->flags |= htons(BROADCAST_FLAG); - /* recalculate checksum */ - sum = ~(udph->check) & 0xffff; - sum += be16_to_cpu(dhcph->flags); - while (sum >> 16) - sum = (sum & 0xffff) + (sum >> 16); - udph->check = ~sum; - } - } - } - } - } - } -} - -void *scdb_findentry(struct rtw_adapter *priv, unsigned char *macaddr, - unsigned char *ipaddr) -{ - unsigned char networkAddr[MAX_NETWORK_ADDR_LEN]; - struct nat25_network_db_entry *db; - int hash; - - __nat25_generate_ipv4_network_addr(networkAddr, (unsigned int *)ipaddr); - hash = __nat25_network_hash(networkAddr); - db = priv->nethash[hash]; - while (db != NULL) { - if (!memcmp(db->networkAddr, networkAddr, MAX_NETWORK_ADDR_LEN)) - return (void *)db; - - db = db->next_hash; - } - - return NULL; -} - -#endif /* CONFIG_BR_EXT */ diff --git a/core/rtw_cmd.c b/core/rtw_cmd.c index f12818b6..9b3cdaff 100644 --- a/core/rtw_cmd.c +++ b/core/rtw_cmd.c @@ -22,9 +22,6 @@ #include #include #include -#ifdef CONFIG_BR_EXT -#include -#endif /* CONFIG_BR_EXT */ #include /* Caller and the rtw_cmd_thread can protect cmd_q by spin_lock. @@ -237,18 +234,6 @@ static int rtw_cmd_filter(struct cmd_priv *pcmdpriv, struct cmd_obj *cmd_obj) { u8 allow = false; /* set to true to allow enqueuing cmd when hw_init_completed is false */ - #ifdef SUPPORT_HW_RFOFF_DETECTED - /* To decide allow or not */ - if ((pcmdpriv->padapter->pwrctrlpriv.bHWPwrPindetect) && - (!pcmdpriv->padapter->registrypriv.usbss_enable)) { - if (cmd_obj->cmdcode == GEN_CMD_CODE(_SET_DRV_EXTRA)) { - struct drvextra_cmd_parm *pdrvextra_cmd_parm = (struct drvextra_cmd_parm *)cmd_obj->parmbuf; - if (pdrvextra_cmd_parm->ec_id == POWER_SAVING_CTRL_WK_CID) - allow = true; - } - } - #endif - if (cmd_obj->cmdcode == GEN_CMD_CODE(_SETCHANNELPLAN)) allow = true; @@ -548,12 +533,6 @@ u8 rtw_sitesurvey_cmd(struct rtw_adapter *padapter, struct ndis_802_11_ssid *ssi } #endif -#ifdef CONFIG_P2P_PS - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) { - p2p_ps_wk_cmd(padapter, P2P_PS_SCAN, 1); - } -#endif /* CONFIG_P2P_PS */ - ph2c = (struct cmd_obj *)kzalloc(sizeof(struct cmd_obj), GFP_ATOMIC); if (ph2c == NULL) return _FAIL; @@ -1172,23 +1151,13 @@ u8 rtw_setstakey_cmd(struct rtw_adapter *padapter, u8 *psta, u8 unicast_key) memcpy(psetstakey_para->addr, sta->hwaddr, ETH_ALEN); if (check_fwstate(pmlmepriv, WIFI_STATION_STATE)) { -#ifdef CONFIG_TDLS - if (sta->tdls_sta_state&TDLS_LINKED_STATE) - psetstakey_para->algorithm = (u8)sta->dot118021XPrivacy; - else -#endif /* CONFIG_TDLS */ psetstakey_para->algorithm = (unsigned char) psecuritypriv->dot11PrivacyAlgrthm; } else { GET_ENCRY_ALGO(psecuritypriv, sta, psetstakey_para->algorithm, false); } if (unicast_key == true) { -#ifdef CONFIG_TDLS - if (sta->tdls_sta_state&TDLS_LINKED_STATE) - memcpy(&psetstakey_para->key, sta->tpk.tk, 16); - else -#endif /* CONFIG_TDLS */ - memcpy(&psetstakey_para->key, &sta->dot118021x_UncstKey, 16); + memcpy(&psetstakey_para->key, &sta->dot118021x_UncstKey, 16); } else { memcpy(&psetstakey_para->key, &psecuritypriv->dot118021XGrpKey[psecuritypriv->dot118021XGrpKeyid].skey, 16); } @@ -1615,34 +1584,6 @@ u8 rtw_tdls_cmd(struct rtw_adapter *padapter, u8 *addr, u8 option) u8 res = _SUCCESS; -#ifdef CONFIG_TDLS - - RT_TRACE(_module_rtl871x_cmd_c_, _drv_notice_, ("+rtw_set_tdls_cmd\n")); - - pcmdobj = (struct cmd_obj *)kzalloc(sizeof(struct cmd_obj), GFP_ATOMIC); - if (pcmdobj == NULL) { - res = _FAIL; - goto exit; - } - - TDLSoption = (struct TDLSoption_param *)kzalloc(sizeof(struct TDLSoption_param), GFP_ATOMIC); - if (TDLSoption == NULL) { - kfree(pcmdobj); - res = _FAIL; - goto exit; - } - - _rtw_spinlock(&(padapter->tdlsinfo.cmd_lock)); - memcpy(TDLSoption->addr, addr, 6); - TDLSoption->option = option; - _rtw_spinunlock(&(padapter->tdlsinfo.cmd_lock)); - init_h2fwcmd_w_parm_no_rsp(pcmdobj, TDLSoption, GEN_CMD_CODE(_TDLS)); - res = rtw_enqueue_cmd(pcmdpriv, pcmdobj); - -#endif /* CONFIG_TDLS */ - -exit: - return res; } @@ -1654,9 +1595,6 @@ static void traffic_status_watchdog(struct rtw_adapter *padapter) u8 bBusyTraffic = false, bTxBusyTraffic = false, bRxBusyTraffic = false; u8 bHigherBusyTraffic = false, bHigherBusyRxTraffic = false, bHigherBusyTxTraffic = false; struct mlme_priv *pmlmepriv = &(padapter->mlmepriv); -#ifdef CONFIG_TDLS - struct tdls_info *ptdlsinfo = &(padapter->tdlsinfo); -#endif /* CONFIG_TDLS */ /* Determine if our traffic is busy now */ if ((check_fwstate(pmlmepriv, _FW_LINKED) == true)) { @@ -1685,14 +1623,6 @@ static void traffic_status_watchdog(struct rtw_adapter *padapter) bHigherBusyTxTraffic = true; } -#ifdef CONFIG_TDLS -#ifdef CONFIG_TDLS_AUTOSETUP - if ((ptdlsinfo->watchdog_count % TDLS_WATCHDOG_PERIOD) == 0) /* TDLS_WATCHDOG_PERIOD * 2sec, periodically sending */ - issue_tdls_dis_req(padapter, NULL); - ptdlsinfo->watchdog_count++; -#endif /* CONFIG_TDLS_AUTOSETUP */ -#endif /* CONFIG_TDLS */ - #ifdef CONFIG_LPS /* check traffic for powersaving. */ if (((pmlmepriv->LinkDetectInfo.NumRxUnicastOkInPeriod + pmlmepriv->LinkDetectInfo.NumTxOkInPeriod) > 8) || @@ -1743,12 +1673,10 @@ static void dynamic_chk_wk_hdl(struct rtw_adapter *padapter, u8 *pbuf, int sz) pmlmepriv = &(padapter->mlmepriv); -#ifdef CONFIG_ACTIVE_KEEP_ALIVE_CHECK #ifdef CONFIG_92D_AP_MODE if (check_fwstate(pmlmepriv, WIFI_AP_STATE) == true) expire_timeout_chk(padapter); #endif -#endif /* CONFIG_ACTIVE_KEEP_ALIVE_CHECK */ #ifdef DBG_CONFIG_ERROR_DETECT rtw_hal_sreset_xmit_status_check(padapter); @@ -1897,44 +1825,6 @@ static void power_saving_wk_hdl(struct rtw_adapter *padapter, u8 *pbuf, int sz) rtw_ps_processor(padapter); } -#ifdef CONFIG_P2P -u8 p2p_protocol_wk_cmd(struct rtw_adapter *padapter, int intCmdType) -{ - struct cmd_obj *ph2c; - struct drvextra_cmd_parm *pdrvextra_cmd_parm; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - struct cmd_priv *pcmdpriv = &padapter->cmdpriv; - u8 res = _SUCCESS; - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - return res; - - ph2c = (struct cmd_obj *)kzalloc(sizeof(struct cmd_obj), GFP_ATOMIC); - if (ph2c == NULL) { - res = _FAIL; - goto exit; - } - - pdrvextra_cmd_parm = (struct drvextra_cmd_parm *)kzalloc(sizeof(struct drvextra_cmd_parm), GFP_ATOMIC); - if (pdrvextra_cmd_parm == NULL) { - kfree(ph2c); - res = _FAIL; - goto exit; - } - - pdrvextra_cmd_parm->ec_id = P2P_PROTO_WK_CID; - pdrvextra_cmd_parm->type_size = intCmdType; /* As the command tppe. */ - pdrvextra_cmd_parm->pbuf = NULL; /* Must be NULL here */ - - init_h2fwcmd_w_parm_no_rsp(ph2c, pdrvextra_cmd_parm, GEN_CMD_CODE(_SET_DRV_EXTRA)); - - res = rtw_enqueue_cmd(pcmdpriv, ph2c); -exit: - - return res; -} -#endif /* CONFIG_P2P */ - u8 rtw_ps_cmd(struct rtw_adapter *padapter) { struct cmd_obj *ppscmd; @@ -2158,11 +2048,6 @@ u8 rtw_drvextra_cmd_hdl(struct rtw_adapter *padapter, unsigned char *pbuf) antenna_select_wk_hdl(padapter, pdrvextra_cmd->type_size); break; #endif -#ifdef CONFIG_P2P_PS - case P2P_PS_WK_CID: - p2p_ps_wk_hdl(padapter, pdrvextra_cmd->type_size); - break; -#endif /* CONFIG_P2P_PS */ case P2P_PROTO_WK_CID: /* Commented by Albert 2011/07/01 */ /* I used the type_size as the type command */ @@ -2173,11 +2058,6 @@ u8 rtw_drvextra_cmd_hdl(struct rtw_adapter *padapter, unsigned char *pbuf) rtw_chk_hi_queue_hdl(padapter); break; #endif /* CONFIG_92D_AP_MODE */ -#ifdef CONFIG_INTEL_WIDI - case INTEl_WIDI_WK_CID: - intel_widi_wk_hdl(padapter, pdrvextra_cmd->type_size, pdrvextra_cmd->pbuf); - break; -#endif /* CONFIG_INTEL_WIDI */ case C2H_WK_CID: c2h_evt_hdl(padapter, (struct c2h_evt_hdr *)pdrvextra_cmd->pbuf, NULL); break; @@ -2221,11 +2101,6 @@ void rtw_disassoc_cmd_callback(struct rtw_adapter *padapter, struct cmd_obj *pc RT_TRACE(_module_rtl871x_cmd_c_, _drv_err_, ("\n ***Error: disconnect_cmd_callback Fail ***\n.")); return; } -#ifdef CONFIG_BR_EXT - else /* clear bridge database */ - nat25_db_cleanup(padapter); -#endif /* CONFIG_BR_EXT */ - /* free cmd */ rtw_free_cmd_obj(pcmd); } diff --git a/core/rtw_ieee80211.c b/core/rtw_ieee80211.c index f2123575..1c40aadd 100644 --- a/core/rtw_ieee80211.c +++ b/core/rtw_ieee80211.c @@ -1118,9 +1118,6 @@ void dump_ies(u8 *buf, u32 buf_len) len = *(pos+1); DBG_8192D("%s ID:%u, LEN:%u\n", __func__, id, len); - #ifdef CONFIG_P2P - dump_p2p_ie(pos, len); - #endif dump_wps_ie(pos, len); pos += (2+len); @@ -1151,307 +1148,6 @@ void dump_wps_ie(u8 *ie, u32 ie_len) } } -#ifdef CONFIG_P2P -void dump_p2p_ie(u8 *ie, u32 ie_len) -{ - u8 *pos = (u8 *)ie; - u8 id; - u16 len; - - u8 *p2p_ie; - uint p2p_ielen; - - p2p_ie = rtw_get_p2p_ie(ie, ie_len, NULL, &p2p_ielen); - if (p2p_ie != ie || p2p_ielen == 0) - return; - - pos += 6; - while (pos-ie < ie_len) { - id = *pos; - len = RTW_GET_LE16(pos+1); - - DBG_8192D("%s ID:%u, LEN:%u\n", __func__, id, len); - - pos += (3 + len); - } -} - -/** - * rtw_get_p2p_ie - Search P2P IE from a series of IEs - * @in_ie: Address of IEs to search - * @in_len: Length limit from in_ie - * @p2p_ie: If not NULL and P2P IE is found, P2P IE will be copied to the buf starting from p2p_ie - * @p2p_ielen: If not NULL and P2P IE is found, will set to the length of the entire P2P IE - * - * Returns: The address of the P2P IE found, or NULL - */ -u8 *rtw_get_p2p_ie(u8 *in_ie, int in_len, u8 *p2p_ie, uint *p2p_ielen) -{ - uint cnt = 0; - u8 *p2p_ie_ptr; - u8 eid, p2p_oui[4] = {0x50, 0x6F, 0x9A, 0x09}; - - if (p2p_ielen != NULL) - *p2p_ielen = 0; - - while (cnt < in_len) { - eid = in_ie[cnt]; - if ((in_len < 0) || (cnt > MAX_IE_SZ)) { - dump_stack(); - return NULL; - } - if ((eid == _VENDOR_SPECIFIC_IE_) && - (_rtw_memcmp(&in_ie[cnt+2], p2p_oui, 4) == true)) { - p2p_ie_ptr = in_ie + cnt; - - if (p2p_ie != NULL) - memcpy(p2p_ie, &in_ie[cnt], in_ie[cnt + 1] + 2); - - if (p2p_ielen != NULL) - *p2p_ielen = in_ie[cnt + 1] + 2; - - return p2p_ie_ptr; - - break; - } else { - cnt += in_ie[cnt + 1] + 2; /* goto next */ - } - } - return NULL; -} - -/** - * rtw_get_p2p_attr - Search a specific P2P attribute from a given P2P IE - * @p2p_ie: Address of P2P IE to search - * @p2p_ielen: Length limit from p2p_ie - * @target_attr_id: The attribute ID of P2P attribute to search - * @buf_attr: If not NULL and the P2P attribute is found, P2P attribute will be copied to the buf starting from buf_attr - * @len_attr: If not NULL and the P2P attribute is found, will set to the length of the entire P2P attribute - * - * Returns: the address of the specific WPS attribute found, or NULL - */ -u8 *rtw_get_p2p_attr(u8 *p2p_ie, uint p2p_ielen, u8 target_attr_id, u8 *buf_attr, u32 *len_attr) -{ - u8 *attr_ptr = NULL; - u8 *target_attr_ptr = NULL; - u8 p2p_oui[4] = {0x50, 0x6F, 0x9A, 0x09}; - - if (len_attr) - *len_attr = 0; - - if (!p2p_ie || (p2p_ie[0] != _VENDOR_SPECIFIC_IE_) || - (_rtw_memcmp(p2p_ie + 2, p2p_oui, 4) != true)) - return attr_ptr; - - /* 6 = 1(Element ID) + 1(Length) + 3 (OUI) + 1(OUI Type) */ - attr_ptr = p2p_ie + 6; /* goto first attr */ - - while (attr_ptr - p2p_ie < p2p_ielen) { - /* 3 = 1(Attribute ID) + 2(Length) */ - u8 attr_id = *attr_ptr; - u16 attr_data_len = RTW_GET_LE16(attr_ptr + 1); - u16 attr_len = attr_data_len + 3; - - if (attr_id == target_attr_id) { - target_attr_ptr = attr_ptr; - - if (buf_attr) - memcpy(buf_attr, attr_ptr, attr_len); - - if (len_attr) - *len_attr = attr_len; - - break; - } else { - attr_ptr += attr_len; /* goto next */ - } - } - - return target_attr_ptr; -} - -/** - * rtw_get_p2p_attr_content - Search a specific P2P attribute content from a given P2P IE - * @p2p_ie: Address of P2P IE to search - * @p2p_ielen: Length limit from p2p_ie - * @target_attr_id: The attribute ID of P2P attribute to search - * @buf_content: If not NULL and the P2P attribute is found, P2P attribute content will be copied to the buf starting from buf_content - * @len_content: If not NULL and the P2P attribute is found, will set to the length of the P2P attribute content - * - * Returns: the address of the specific P2P attribute content found, or NULL - */ -u8 *rtw_get_p2p_attr_content(u8 *p2p_ie, uint p2p_ielen, u8 target_attr_id, u8 *buf_content, uint *len_content) -{ - u8 *attr_ptr; - u32 attr_len; - - if (len_content) - *len_content = 0; - - attr_ptr = rtw_get_p2p_attr(p2p_ie, p2p_ielen, target_attr_id, NULL, &attr_len); - - if (attr_ptr && attr_len) { - if (buf_content) - memcpy(buf_content, attr_ptr+3, attr_len-3); - - if (len_content) - *len_content = attr_len-3; - - return attr_ptr+3; - } - - return NULL; -} - -u32 rtw_set_p2p_attr_content(u8 *pbuf, u8 attr_id, u16 attr_len, u8 *pdata_attr) -{ - u32 a_len; - - *pbuf = attr_id; - - RTW_PUT_LE16(pbuf + 1, attr_len); - - if (pdata_attr) - memcpy(pbuf + 3, pdata_attr, attr_len); - - a_len = attr_len + 3; - - return a_len; -} - -static uint rtw_p2p_attr_remove(u8 *ie, uint ielen_ori, u8 attr_id) -{ - u8 *target_attr; - u32 target_attr_len; - uint ielen = ielen_ori; - int index = 0; - - while (1) { - target_attr = rtw_get_p2p_attr(ie, ielen, attr_id, NULL, &target_attr_len); - if (target_attr && target_attr_len) { - u8 *next_attr = target_attr+target_attr_len; - uint remain_len = ielen-(next_attr-ie); - - memset(target_attr, 0, target_attr_len); - memcpy(target_attr, next_attr, remain_len); - memset(target_attr+remain_len, 0, target_attr_len); - *(ie+1) -= target_attr_len; - ielen -= target_attr_len; - } else { - break; - } - } - - return ielen; -} - -void rtw_wlan_bssid_ex_remove_p2p_attr(struct wlan_bssid_ex *bss_ex, u8 attr_id) -{ - u8 *p2p_ie; - uint p2p_ielen, p2p_ielen_ori; - int cnt; - - p2p_ie = rtw_get_p2p_ie(bss_ex->IEs+_FIXED_IE_LENGTH_, - bss_ex->IELength-_FIXED_IE_LENGTH_, - NULL, &p2p_ielen_ori); - if (p2p_ie) { - p2p_ielen = rtw_p2p_attr_remove(p2p_ie, p2p_ielen_ori, attr_id); - if (p2p_ielen != p2p_ielen_ori) { - u8 *next_ie_ori = p2p_ie+p2p_ielen_ori; - u8 *next_ie = p2p_ie+p2p_ielen; - uint remain_len = bss_ex->IELength-(next_ie_ori-bss_ex->IEs); - - memcpy(next_ie, next_ie_ori, remain_len); - memset(next_ie+remain_len, 0, p2p_ielen_ori-p2p_ielen); - bss_ex->IELength -= p2p_ielen_ori-p2p_ielen; - } - } -} - -#endif /* CONFIG_P2P */ - -#ifdef CONFIG_WFD -int rtw_get_wfd_ie(u8 *in_ie, int in_len, u8 *wfd_ie, uint *wfd_ielen) -{ - int match; - uint cnt = 0; - u8 eid, wfd_oui[4] = {0x50, 0x6F, 0x9A, 0x0A}; - - match = false; - - if (in_len < 0) - return match; - while (cnt < in_len) { - eid = in_ie[cnt]; - - if ((eid == _VENDOR_SPECIFIC_IE_) && - (_rtw_memcmp(&in_ie[cnt+2], wfd_oui, 4) == true)) { - if (wfd_ie != NULL) { - memcpy(wfd_ie, &in_ie[cnt], in_ie[cnt + 1] + 2); - - } else { - if (wfd_ielen != NULL) - *wfd_ielen = 0; - } - - if (wfd_ielen != NULL) - *wfd_ielen = in_ie[cnt + 1] + 2; - - cnt += in_ie[cnt + 1] + 2; - - match = true; - break; - } else { - cnt += in_ie[cnt + 1] + 2; /* goto next */ - } - } - - if (match == true) - match = cnt; - - return match; -} - -/* attr_content: The output buffer, contains the "body field" of WFD attribute. */ -/* attr_contentlen: The data length of the "body field" of WFD attribute. */ -int rtw_get_wfd_attr_content(u8 *wfd_ie, uint wfd_ielen, u8 target_attr_id, u8 *attr_content, uint *attr_contentlen) -{ - int match; - uint cnt = 0; - u8 attr_id, wfd_oui[4] = {0x50, 0x6F, 0x9A, 0x0A}; - - match = false; - - if ((wfd_ie[0] != _VENDOR_SPECIFIC_IE_) || - (_rtw_memcmp(wfd_ie + 2, wfd_oui, 4) != true)) - return match; - - /* 1 (WFD IE) + 1 (Length) + 3 (OUI) + 1 (OUI Type) */ - cnt = 6; - while (cnt < wfd_ielen) { - u16 attrlen = RTW_GET_BE16(wfd_ie + cnt + 1); - - attr_id = wfd_ie[cnt]; - if (attr_id == target_attr_id) { - /* 3 -> 1 byte for attribute ID field, 2 bytes for length field */ - if (attr_content) - memcpy(attr_content, &wfd_ie[cnt + 3], attrlen); - - if (attr_contentlen) - *attr_contentlen = attrlen; - - cnt += attrlen + 3; - - match = true; - break; - } else { - cnt += attrlen + 3; /* goto next */ - } - } - return match; -} -#endif /* CONFIG_WFD */ - /* Baron adds to avoid FreeBSD warning */ int ieee80211_is_empty_essid(const char *essid, int essid_len) { diff --git a/core/rtw_ioctl_set.c b/core/rtw_ioctl_set.c index e26e8821..cf32d53f 100644 --- a/core/rtw_ioctl_set.c +++ b/core/rtw_ioctl_set.c @@ -377,7 +377,7 @@ u8 rtw_set_802_11_infrastructure_mode(struct rtw_adapter *padapter, /* change to other mode from Ndis802_11APMode */ cur_network->join_res = -1; -#ifdef CONFIG_NATIVEAP_MLME +#ifdef CONFIG_92D_AP_MODE stop_ap_mode(padapter); #endif } @@ -407,7 +407,7 @@ u8 rtw_set_802_11_infrastructure_mode(struct rtw_adapter *padapter, break; case NDIS802_11APMODE: set_fwstate(pmlmepriv, WIFI_AP_STATE); -#ifdef CONFIG_NATIVEAP_MLME +#ifdef CONFIG_92D_AP_MODE start_ap_mode(padapter); #endif break; diff --git a/core/rtw_mlme.c b/core/rtw_mlme.c index 09e0633c..70405b4d 100644 --- a/core/rtw_mlme.c +++ b/core/rtw_mlme.c @@ -31,12 +31,7 @@ #include #include -#ifdef CONFIG_DISABLE_MCS13TO15 -extern unsigned char MCS_rate_2R_MCS13TO15_OFF[16]; extern unsigned char MCS_rate_2R[16]; -#else /* CONFIG_DISABLE_MCS13TO15 */ -extern unsigned char MCS_rate_2R[16]; -#endif /* CONFIG_DISABLE_MCS13TO15 */ extern unsigned char MCS_rate_1R[16]; int _rtw_init_mlme_priv(struct rtw_adapter *padapter) @@ -136,19 +131,6 @@ void rtw_free_mlme_priv_ie_data(struct mlme_priv *pmlmepriv) rtw_free_mlme_ie_data(&pmlmepriv->p2p_assoc_req_ie, &pmlmepriv->p2p_assoc_req_ie_len); #endif - -#if defined(CONFIG_WFD) && defined(CONFIG_IOCTL_CFG80211) - rtw_free_mlme_ie_data(&pmlmepriv->wfd_beacon_ie, - &pmlmepriv->wfd_beacon_ie_len); - rtw_free_mlme_ie_data(&pmlmepriv->wfd_probe_req_ie, - &pmlmepriv->wfd_probe_req_ie_len); - rtw_free_mlme_ie_data(&pmlmepriv->wfd_probe_resp_ie, - &pmlmepriv->wfd_probe_resp_ie_len); - rtw_free_mlme_ie_data(&pmlmepriv->wfd_go_probe_resp_ie, - &pmlmepriv->wfd_go_probe_resp_ie_len); - rtw_free_mlme_ie_data(&pmlmepriv->wfd_assoc_req_ie, - &pmlmepriv->wfd_assoc_req_ie_len); -#endif } void _rtw_free_mlme_priv(struct mlme_priv *pmlmepriv) @@ -516,8 +498,6 @@ int rtw_is_same_ibss(struct rtw_adapter *adapter, struct wlan_network *pnetwork) static inline int is_same_ess(struct wlan_bssid_ex *a, struct wlan_bssid_ex *b) { - /* RT_TRACE(_module_rtl871x_mlme_c_,_drv_err_,("(%s,%d)(%s,%d)\n", */ - /* a->Ssid.Ssid,a->Ssid.SsidLength,b->Ssid.Ssid,b->Ssid.SsidLength)); */ return (a->Ssid.SsidLength == b->Ssid.SsidLength) && _rtw_memcmp(a->Ssid.Ssid, b->Ssid.Ssid, a->Ssid.SsidLength) == true; @@ -535,7 +515,6 @@ int is_same_network(struct wlan_bssid_ex *src, struct wlan_bssid_ex *dst) d_cap = le16_to_cpu(le_dcap); return ((src->Ssid.SsidLength == dst->Ssid.SsidLength) && - /* (src->Configuration.DSConfig == dst->Configuration.DSConfig) && */ ((_rtw_memcmp(src->MacAddress, dst->MacAddress, ETH_ALEN)) == true) && ((_rtw_memcmp (src->Ssid.Ssid, dst->Ssid.Ssid, @@ -796,18 +775,9 @@ static void rtw_add_network(struct rtw_adapter *adapter, struct mlme_priv *pmlmepriv = &(((struct rtw_adapter *)adapter)->mlmepriv); - /* spin_lock_bh(&queue->lock); */ - -#if defined(CONFIG_P2P) && defined(CONFIG_P2P_REMOVE_GROUP_INFO) - rtw_wlan_bssid_ex_remove_p2p_attr(pnetwork, P2P_ATTR_GROUP_INFO); -#endif - update_current_network(adapter, pnetwork); rtw_update_scanned_network(adapter, pnetwork); - - /* spin_unlock_bh(&queue->lock); */ - } /* select the desired network based on the capability of the (i)bss. */ @@ -1038,21 +1008,6 @@ void rtw_surveydone_event_callback(struct rtw_adapter *adapter, u8 *pbuf) NULL, 0) ) { rtw_set_roaming(adapter, 0); -#ifdef CONFIG_INTEL_WIDI - if (adapter->mlmepriv. - widi_state == - INTEL_WIDI_STATE_ROAMING) { - memset(pmlmepriv-> - sa_ext, 0x00, - L2SDTA_SERVICE_VE_LEN); - intel_widi_wk_cmd - (adapter, - INTEL_WIDI_LISTEN_WK, - NULL); - DBG_8192D - ("change to widi listen\n"); - } -#endif /* CONFIG_INTEL_WIDI */ rtw_free_assoc_resources (adapter, 1); rtw_indicate_disconnect @@ -1072,12 +1027,6 @@ void rtw_surveydone_event_callback(struct rtw_adapter *adapter, u8 *pbuf) spin_unlock_bh(&pmlmepriv->lock); -#ifdef CONFIG_P2P_PS - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) { - p2p_ps_wk_cmd(adapter, P2P_PS_SCAN_DONE, 0); - } -#endif /* CONFIG_P2P_PS */ - rtw_os_xmit_schedule(adapter); #ifdef CONFIG_CONCURRENT_MODE rtw_os_xmit_schedule(adapter->pbuddy_adapter); @@ -1091,9 +1040,6 @@ void rtw_surveydone_event_callback(struct rtw_adapter *adapter, u8 *pbuf) #endif #ifdef DBG_CONFIG_ERROR_DETECT -#ifdef CONFIG_INTEL_WIDI - if (adapter->mlmepriv.widi_state == INTEL_WIDI_STATE_NONE) -#endif { struct mlme_ext_priv *pmlmeext = &adapter->mlmeextpriv; if (pmlmeext->sitesurvey_res.bss_cnt == 0) { @@ -1102,10 +1048,7 @@ void rtw_surveydone_event_callback(struct rtw_adapter *adapter, u8 *pbuf) } #endif -#ifdef CONFIG_IOCTL_CFG80211 rtw_cfg80211_surveydone_event_callback(adapter); -#endif /* CONFIG_IOCTL_CFG80211 */ - } static void free_scanqueue(struct mlme_priv *pmlmepriv) @@ -1145,10 +1088,6 @@ void rtw_free_assoc_resources(struct rtw_adapter *adapter, struct sta_priv *pstapriv = &adapter->stapriv; struct wlan_network *tgt_network = &pmlmepriv->cur_network; -#ifdef CONFIG_TDLS - struct tdls_info *ptdlsinfo = &adapter->tdlsinfo; -#endif /* CONFIG_TDLS */ - RT_TRACE(_module_rtl871x_mlme_c_, _drv_notice_, ("+rtw_free_assoc_resources\n")); RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_, @@ -1163,19 +1102,9 @@ void rtw_free_assoc_resources(struct rtw_adapter *adapter, rtw_get_stainfo(&adapter->stapriv, tgt_network->network.MacAddress); -#ifdef CONFIG_TDLS - if (ptdlsinfo->setup_state != TDLS_STATE_NONE) { - rtw_tdls_cmd(adapter, myid(&(adapter->eeprompriv)), - TDLS_RS_RCR); - rtw_reset_tdls_info(adapter); - rtw_free_all_stainfo(adapter); - } else -#endif /* CONFIG_TDLS */ - { - spin_lock_bh(&(pstapriv->sta_hash_lock)); - rtw_free_stainfo(adapter, psta); - spin_unlock_bh(&(pstapriv->sta_hash_lock)); - } + spin_lock_bh(&(pstapriv->sta_hash_lock)); + rtw_free_stainfo(adapter, psta); + spin_unlock_bh(&(pstapriv->sta_hash_lock)); } if (check_fwstate @@ -1210,11 +1139,11 @@ void rtw_free_assoc_resources(struct rtw_adapter *adapter, (adapter->stapriv.asoc_sta_count == 1))) rtw_free_network_nolock(pmlmepriv, pwlan); + /* Sparse warning ifor context imbalance is OK here */ if (lock_scanned_queue) spin_unlock_bh(&(pmlmepriv->scanned_queue.lock)); pmlmepriv->key_mask = 0; - } /* @@ -1250,14 +1179,6 @@ void rtw_indicate_connect(struct rtw_adapter *padapter) rtw_set_roaming(padapter, 0); -#ifdef CONFIG_INTEL_WIDI - if (padapter->mlmepriv.widi_state == INTEL_WIDI_STATE_ROAMING) { - memset(pmlmepriv->sa_ext, 0x00, L2SDTA_SERVICE_VE_LEN); - intel_widi_wk_cmd(padapter, INTEL_WIDI_LISTEN_WK, NULL); - DBG_8192D("change to widi listen\n"); - } -#endif /* CONFIG_INTEL_WIDI */ - rtw_set_scan_deny(padapter, 3000); RT_TRACE(_module_rtl871x_mlme_c_, _drv_err_, @@ -1288,10 +1209,6 @@ void rtw_indicate_disconnect(struct rtw_adapter *padapter) rtw_led_control(padapter, LED_CTL_NO_LINK); rtw_clear_scan_deny(padapter); } -#ifdef CONFIG_P2P_PS - p2p_ps_wk_cmd(padapter, P2P_PS_DISABLE, 1); -#endif /* CONFIG_P2P_PS */ - #ifdef CONFIG_LPS #ifdef CONFIG_WOWLAN if (padapter->pwrctrlpriv.wowlan_mode == false) @@ -1769,16 +1686,12 @@ void rtw_stassoc_event_callback(struct rtw_adapter *adapter, u8 *pbuf) if (check_fwstate(pmlmepriv, WIFI_AP_STATE)) { psta = rtw_get_stainfo(&adapter->stapriv, pstassoc->macaddr); if (psta) { -#ifdef CONFIG_IOCTL_CFG80211 -#ifdef COMPAT_KERNEL_RELEASE - -#elif (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)) || defined(CONFIG_CFG80211_FORCE_COMPATIBLE_2_6_37_UNDER) u8 *passoc_req = NULL; u32 assoc_req_len; spin_lock_bh(&psta->lock); if (psta->passoc_req && psta->assoc_req_len > 0) { - passoc_req = kzalloc(psta->assoc_req_len, GFP_KERNEL); + passoc_req = kzalloc(psta->assoc_req_len, GFP_ATOMIC); if (passoc_req) { assoc_req_len = psta->assoc_req_len; memcpy(passoc_req, psta->passoc_req, @@ -1798,8 +1711,6 @@ void rtw_stassoc_event_callback(struct rtw_adapter *adapter, u8 *pbuf) kfree(passoc_req); } -#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37)) || defined(CONFIG_CFG80211_FORCE_COMPATIBLE_2_6_37_UNDER) */ -#endif /* CONFIG_IOCTL_CFG80211 */ ap_sta_info_defer_update(adapter, psta); } @@ -1868,19 +1779,13 @@ void rtw_stadel_event_callback(struct rtw_adapter *adapter, u8 *pbuf) struct sta_priv *pstapriv = &adapter->stapriv; struct wlan_network *tgt_network = &(pmlmepriv->cur_network); +#ifdef CONFIG_92D_AP_MODE if (check_fwstate(pmlmepriv, WIFI_AP_STATE)) { -#ifdef CONFIG_IOCTL_CFG80211 -#ifdef COMPAT_KERNEL_RELEASE - -#elif (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)) || defined(CONFIG_CFG80211_FORCE_COMPATIBLE_2_6_37_UNDER) rtw_cfg80211_indicate_sta_disassoc(adapter, pstadel->macaddr, *(u16 *)pstadel->rsvd); -#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37)) || defined(CONFIG_CFG80211_FORCE_COMPATIBLE_2_6_37_UNDER) */ -#endif /* CONFIG_IOCTL_CFG80211 */ - return; } - +#endif mlmeext_sta_del_event_callback(adapter); spin_lock_bh(&pmlmepriv->lock); @@ -1893,9 +1798,6 @@ void rtw_stadel_event_callback(struct rtw_adapter *adapter, u8 *pbuf) rtw_set_roaming(adapter, adapter->registrypriv. max_roaming_times); -#ifdef CONFIG_INTEL_WIDI - if (adapter->mlmepriv.widi_state != INTEL_WIDI_STATE_CONNECTED) -#endif /* CONFIG_INTEL_WIDI */ if (*((unsigned short *)(pstadel->rsvd)) != WLAN_REASON_EXPIRATION_CHK) rtw_set_roaming(adapter, 0); /* don't roam */ @@ -1918,10 +1820,6 @@ void rtw_stadel_event_callback(struct rtw_adapter *adapter, u8 *pbuf) _rtw_roaming(adapter, tgt_network); -#ifdef CONFIG_INTEL_WIDI - if (!rtw_to_roaming(adapter)) - process_intel_widi_disconnect(adapter, 1); -#endif /* CONFIG_INTEL_WIDI */ } if (check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE) || @@ -2025,17 +1923,6 @@ void _rtw_join_timeout_handler(struct rtw_adapter *adapter) } break; } else { -#ifdef CONFIG_INTEL_WIDI - if (adapter->mlmepriv.widi_state == - INTEL_WIDI_STATE_ROAMING) { - memset(pmlmepriv->sa_ext, 0x00, - L2SDTA_SERVICE_VE_LEN); - intel_widi_wk_cmd(adapter, - INTEL_WIDI_LISTEN_WK, - NULL); - DBG_8192D("change to widi listen\n"); - } -#endif /* CONFIG_INTEL_WIDI */ DBG_8192D("%s We've try roaming but fail\n", __func__); rtw_indicate_disconnect(adapter); @@ -2147,53 +2034,9 @@ void rtw_dynamic_check_timer_handlder(struct rtw_adapter *adapter) rtw_dynamic_chk_wk_cmd(adapter); if (pregistrypriv->wifi_spec == 1) { -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &adapter->wdinfo; - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) -#endif - { - /* auto site survey */ - rtw_auto_scan_handler(adapter); - } - } -#ifndef CONFIG_ACTIVE_KEEP_ALIVE_CHECK -#ifdef CONFIG_92D_AP_MODE - if (check_fwstate(pmlmepriv, WIFI_AP_STATE) == true) { - expire_timeout_chk(adapter); + /* auto site survey */ + rtw_auto_scan_handler(adapter); } -#endif -#endif /* CONFIG_ACTIVE_KEEP_ALIVE_CHECK */ - -#ifdef CONFIG_BR_EXT - -#if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 35)) - rcu_read_lock(); -#endif /* (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 35)) */ - -#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) - if (adapter->pnetdev->br_port && - check_fwstate(pmlmepriv, WIFI_STATION_STATE | WIFI_ADHOC_STATE)) { -#else /* (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) */ - if (rcu_dereference(adapter->pnetdev->rx_handler_data) && - check_fwstate(pmlmepriv, WIFI_STATION_STATE | WIFI_ADHOC_STATE)) { -#endif /* (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) */ - /* expire NAT2.5 entry */ - nat25_db_expire(adapter); - - if (adapter->pppoe_connection_in_progress > 0) { - adapter->pppoe_connection_in_progress--; - } - - /* due to rtw_dynamic_check_timer_handlder() is called every 2 seconds */ - if (adapter->pppoe_connection_in_progress > 0) { - adapter->pppoe_connection_in_progress--; - } - } -#if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 35)) - rcu_read_unlock(); -#endif /* (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 35)) */ - -#endif /* CONFIG_BR_EXT */ } #ifdef CONFIG_SET_SCAN_DENY_TIMER @@ -2821,23 +2664,31 @@ unsigned int rtw_restructure_ht_ie(struct rtw_adapter *padapter, u8 *in_ie, u8 *out_ie, uint in_len, uint *pout_len, u8 channel) { - u32 ielen; - unsigned char *p; + u32 ielen, out_len; + unsigned char *p, *pframe; struct rtw_ieee80211_ht_cap ht_capie; - unsigned char WMM_IE[] = { 0x00, 0x50, 0xf2, 0x02, 0x00, 0x01, 0x00 }; struct mlme_priv *pmlmepriv = &padapter->mlmepriv; struct qos_priv *pqospriv = &pmlmepriv->qospriv; struct ht_priv *phtpriv = &pmlmepriv->htpriv; struct registry_priv *pregpriv = &padapter->registrypriv; u8 cbw40_enable = 0; + unsigned char WMM_IE[] = {0x00, 0x50, 0xf2, 0x02, 0x00, 0x01, 0x00}; phtpriv->ht_option = false; p = rtw_get_ie(in_ie + 12, _HT_CAPABILITY_IE_, &ielen, in_len - 12); if (p && ielen > 0) { - if (pqospriv->qos_option == 0) + if (pqospriv->qos_option == 0) { + out_len = *pout_len; + pframe = + rtw_set_ie(out_ie + out_len, _VENDOR_SPECIFIC_IE_, + _WMM_IE_Length_, WMM_IE, pout_len); + pqospriv->qos_option = 1; + } + + out_len = *pout_len; memset(&ht_capie, 0, sizeof(struct rtw_ieee80211_ht_cap)); @@ -2875,15 +2726,24 @@ unsigned int rtw_restructure_ht_ie(struct rtw_adapter *padapter, u8 *in_ie, ht_capie.ampdu_params_info |= (IEEE80211_HT_CAP_AMPDU_DENSITY & 0x00); + pframe = rtw_set_ie(out_ie + out_len, _HT_CAPABILITY_IE_, + sizeof(struct rtw_ieee80211_ht_cap), + (unsigned char *)&ht_capie, pout_len); phtpriv->ht_option = true; p = rtw_get_ie(in_ie + 12, _HT_ADD_INFO_IE_, &ielen, in_len - 12); + if (p && (ielen == sizeof(struct ieee80211_ht_addt_info))) { + out_len = *pout_len; + pframe = + rtw_set_ie(out_ie + out_len, _HT_ADD_INFO_IE_, + ielen, p + 2, pout_len); + } } return phtpriv->ht_option; } -/* the fucntion is > passive_level (in critical_section) */ +/* the function is > passive_level (in critical_section) */ void rtw_update_ht_cap(struct rtw_adapter *padapter, u8 *pie, uint ie_len, u8 channel) { @@ -2964,26 +2824,9 @@ void rtw_update_ht_cap(struct rtw_adapter *padapter, u8 *pie, uint ie_len, pmlmeinfo->HT_caps.u.HT_cap_element. MCS_rate[i] &= MCS_rate_1R[i]; } else { -#ifdef CONFIG_DISABLE_MCS13TO15 - if (pmlmeext->cur_bwmode == HT_CHANNEL_WIDTH_40 && - pregistrypriv->wifi_spec != 1) { - pmlmeinfo->HT_caps.u.HT_cap_element. - MCS_rate[i] &= - MCS_rate_2R_MCS13TO15_OFF[i]; - } else - pmlmeinfo->HT_caps.u.HT_cap_element. - MCS_rate[i] &= MCS_rate_2R[i]; -#else pmlmeinfo->HT_caps.u.HT_cap_element. MCS_rate[i] &= MCS_rate_2R[i]; -#endif /* CONFIG_DISABLE_MCS13TO15 */ - } -#ifdef RTL8192C_RECONFIG_TO_1T1R - { - pmlmeinfo->HT_caps.u.HT_cap_element. - MCS_rate[i] &= MCS_rate_1R[i]; } -#endif if (pregistrypriv->special_rf_path) pmlmeinfo->HT_caps.u.HT_cap_element. MCS_rate[i] &= MCS_rate_1R[i]; diff --git a/core/rtw_mlme_ext.c b/core/rtw_mlme_ext.c index 1a8ed602..8779d403 100644 --- a/core/rtw_mlme_ext.c +++ b/core/rtw_mlme_ext.c @@ -106,21 +106,11 @@ extern unsigned char REALTEK_96B_IE[]; /******************************************************** MCS rate definitions *********************************************************/ -#ifdef CONFIG_DISABLE_MCS13TO15 -unsigned char MCS_rate_2R_MCS13TO15_OFF[16] = { - 0xff, 0x1f, 0x0, 0x0, 0x01, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, - 0x0, 0x0 -}; -unsigned char MCS_rate_2R[16] = { - 0xff, 0xff, 0x0, 0x0, 0x01, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, - 0x0, 0x0 -}; -#else /* CONFIG_DISABLE_MCS13TO15 */ unsigned char MCS_rate_2R[16] = { 0xff, 0xff, 0x0, 0x0, 0x01, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }; -#endif /* CONFIG_DISABLE_MCS13TO15 */ + unsigned char MCS_rate_1R[16] = { 0xff, 0x00, 0x0, 0x0, 0x01, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 @@ -532,10 +522,7 @@ int init_mlme_ext_priv(struct rtw_adapter *adapt) pmlmeext->chan_scan_time = SURVEY_TO; pmlmeext->mlmeext_init = true; -#ifdef CONFIG_ACTIVE_KEEP_ALIVE_CHECK pmlmeext->active_keep_alive_check = true; -#endif - return res; } @@ -621,17 +608,6 @@ void mgt_dispatcher(struct rtw_adapter *adapt, struct recv_frame_hdr *precv_fram index = GetFrameSubType(pframe) >> 4; -#ifdef CONFIG_TDLS - if ((index << 4) == WIFI_ACTION) { - /* category==RTW_WLAN_CATEGORY_PUBLIC, action==TDLS_DISCOVERY_RESPONSE */ - if (*(pframe + IEEE80211_MGMT_HDR_LEN) == RTW_WLAN_CATEGORY_PUBLIC && - *(pframe + IEEE80211_MGMT_HDR_LEN + 1) == TDLS_DISCOVERY_RESPONSE) { - DBG_8192D("recv tdls discovery response frame\n"); - On_TDLS_Dis_Rsp(adapt, precv_frame); - } - } -#endif /* CONFIG_TDLS */ - if (index > 13) { RT_TRACE(_module_rtl871x_mlme_c_, _drv_err_, ("Currently we do not support reserved sub-fr-type=%d\n", @@ -699,36 +675,6 @@ void mgt_dispatcher(struct rtw_adapter *adapt, struct recv_frame_hdr *precv_fram #endif } -#ifdef CONFIG_P2P -static u32 p2p_listen_state_process(struct rtw_adapter *adapt, unsigned char *da) -{ - bool response = true; - -#ifdef CONFIG_IOCTL_CFG80211 - if (wdev_to_priv(adapt->rtw_wdev)->p2p_enabled == false || - adapt->mlmepriv.wps_probe_resp_ie == NULL || - adapt->mlmepriv.p2p_probe_resp_ie == NULL) { - DBG_8192D - ("DON'T issue_probersp_p2p: p2p_enabled:%d, wps_probe_resp_ie:%p, p2p_probe_resp_ie:%p\n", - wdev_to_priv(adapt->rtw_wdev)->p2p_enabled, - adapt->mlmepriv.wps_probe_resp_ie, - adapt->mlmepriv.p2p_probe_resp_ie); - response = false; - } -#else - /* do nothing if the device name is empty */ - if (!adapt->wdinfo.device_name_len) { - response = false; - } -#endif - - if (response == true) - issue_probersp_p2p(adapt, da); - - return _SUCCESS; -} -#endif /* CONFIG_P2P */ - /**************************************************************************** Following are the callback functions for each subtype of the management frames @@ -748,53 +694,6 @@ unsigned int OnProbeReq(struct rtw_adapter *adapt, uint len = precv_frame->len; u8 is_valid_p2p_probereq = false; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - struct rx_pkt_attrib *pattrib = &precv_frame->attrib; - u8 wifi_test_chk_rate = 1; - - if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE) && - !rtw_p2p_chk_state(pwdinfo, P2P_STATE_IDLE) && - !rtw_p2p_chk_role(pwdinfo, P2P_ROLE_CLIENT) && - !rtw_p2p_chk_state(pwdinfo, P2P_STATE_FIND_PHASE_SEARCH) && - !rtw_p2p_chk_state(pwdinfo, P2P_STATE_SCAN) - ) { - /* Commented by Albert 2011/03/17 */ - /* mcs_rate = 0 -> CCK 1M rate */ - /* mcs_rate = 1 -> CCK 2M rate */ - /* mcs_rate = 2 -> CCK 5.5M rate */ - /* mcs_rate = 3 -> CCK 11M rate */ - /* In the P2P mode, the driver should not support the CCK rate */ - - /* Commented by Kurt 2012/10/16 */ - /* IOT issue: Google Nexus7 use 1M rate to send p2p_probe_req after GO nego completed and Nexus7 is client */ -#ifdef CONFIG_WIFI_TEST - if (pattrib->mcs_rate <= 3) { - wifi_test_chk_rate = 0; - } -#endif /* CONFIG_WIFI_TEST */ - - if (wifi_test_chk_rate == 1) { - is_valid_p2p_probereq = process_probe_req_p2p_ie(pwdinfo, pframe, len); - if (is_valid_p2p_probereq == true) { - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_DEVICE)) { - p2p_listen_state_process(adapt, - get_sa - (pframe)); - - return _SUCCESS; - } - - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) { - goto _continue; - } - } - } - } - -_continue: -#endif /* CONFIG_P2P */ - if (check_fwstate(pmlmepriv, WIFI_STATION_STATE)) { return _SUCCESS; } @@ -850,70 +749,6 @@ unsigned int OnProbeRsp(struct rtw_adapter *adapt, struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); struct sta_priv *pstapriv = &adapt->stapriv; u8 *pframe = precv_frame->rx_data; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &adapt->wdinfo; -#endif - -#ifdef CONFIG_P2P - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_TX_PROVISION_DIS_REQ)) { - if (true == pwdinfo->tx_prov_disc_info.benable) { - if (_rtw_memcmp - (pwdinfo->tx_prov_disc_info.peerIFAddr, - GetAddr2Ptr(pframe), ETH_ALEN)) { - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_CLIENT)) { - pwdinfo->tx_prov_disc_info.benable = - false; - issue_p2p_provision_request(adapt, - pwdinfo-> - tx_prov_disc_info. - ssid.Ssid, - pwdinfo-> - tx_prov_disc_info. - ssid. - SsidLength, - pwdinfo-> - tx_prov_disc_info. - peerDevAddr); - } else - if (rtw_p2p_chk_role (pwdinfo, P2P_ROLE_DEVICE) || - rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) { - pwdinfo->tx_prov_disc_info.benable = false; - issue_p2p_provision_request(adapt, - NULL, 0, - pwdinfo-> - tx_prov_disc_info. - peerDevAddr); - } - } - } - return _SUCCESS; - } else if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_GONEGO_ING)) { - if (true == pwdinfo->nego_req_info.benable) { - DBG_8192D("[%s] P2P State is GONEGO ING!\n", __func__); - if (_rtw_memcmp - (pwdinfo->nego_req_info.peerDevAddr, - GetAddr2Ptr(pframe), ETH_ALEN)) { - pwdinfo->nego_req_info.benable = false; - issue_p2p_GO_request(adapt, - pwdinfo->nego_req_info. - peerDevAddr); - } - } - } else if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_TX_INVITE_REQ)) { - if (true == pwdinfo->invitereq_info.benable) { - DBG_8192D("[%s] P2P_STATE_TX_INVITE_REQ!\n", __func__); - if (_rtw_memcmp - (pwdinfo->invitereq_info.peer_macaddr, - GetAddr2Ptr(pframe), ETH_ALEN)) { - pwdinfo->invitereq_info.benable = false; - issue_p2p_invitation_request(adapt, - pwdinfo-> - invitereq_info. - peer_macaddr); - } - } - } -#endif if (pmlmeext->sitesurvey_res.state == SCAN_PROCESS) { report_survey_event(adapt, precv_frame); @@ -965,11 +800,6 @@ unsigned int OnBeacon(struct rtw_adapter *adapt, len - sizeof(struct rtw_ieee80211_hdr_3addr)); -#ifdef CONFIG_P2P_PS - /* do P2P PS Before link ? , ToDo */ - /*process_p2p_ps_ie(adapt, (pframe + WLAN_HDR_A3_LEN), (len - WLAN_HDR_A3_LEN)); */ -#endif /* CONFIG_P2P_PS */ - /* update TSF Value */ update_TSF(pmlmeext, pframe, len); @@ -1013,12 +843,6 @@ unsigned int OnBeacon(struct rtw_adapter *adapt, #ifdef CONFIG_DFS process_csa_ie(adapt, pframe, len); /* channel switch announcement */ #endif /* CONFIG_DFS */ - -#ifdef CONFIG_P2P_PS - process_p2p_ps_ie(adapt, - (pframe + WLAN_HDR_A3_LEN), - (len - WLAN_HDR_A3_LEN)); -#endif /* CONFIG_P2P_PS */ } } else if ((pmlmeinfo->state & 0x03) == WIFI_FW_ADHOC_STATE) { psta = rtw_get_stainfo(pstapriv, GetAddr2Ptr(pframe)); @@ -1365,17 +1189,6 @@ unsigned int OnAssocReq(struct rtw_adapter *adapt, struct sta_priv *pstapriv = &adapt->stapriv; u8 *pframe = precv_frame->rx_data; uint pkt_len = precv_frame->len; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - u8 p2p_status_code = P2P_STATUS_SUCCESS; - u8 *p2pie; - u32 p2pielen = 0; -#ifdef CONFIG_WFD - u8 wfd_ie[128] = { 0x00 }; - u32 wfd_ielen = 0; -#endif /* CONFIG_WFD */ -#endif /* CONFIG_P2P */ - #ifdef CONFIG_CONCURRENT_MODE if (((pmlmeinfo->state & 0x03) == WIFI_FW_AP_STATE) && check_buddy_fwstate(adapt, _FW_UNDER_LINKING | _FW_UNDER_SURVEY)) { @@ -1753,45 +1566,6 @@ unsigned int OnAssocReq(struct rtw_adapter *adapt, if (status != _STATS_SUCCESSFUL_) goto OnAssocReqFail; -#ifdef CONFIG_P2P - pstat->is_p2p_device = false; - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) { - p2pie = rtw_get_p2p_ie(pframe + WLAN_HDR_A3_LEN + ie_offset, pkt_len - WLAN_HDR_A3_LEN - ie_offset, NULL, &p2pielen); - if (p2pie) { - pstat->is_p2p_device = true; - p2p_status_code = (u8)process_assoc_req_p2p_ie(pwdinfo, pframe, pkt_len, pstat); - if (p2p_status_code > 0) { - pstat->p2p_status_code = p2p_status_code; - status = _STATS_CAP_FAIL_; - goto OnAssocReqFail; - } - } -#ifdef CONFIG_WFD - if (rtw_get_wfd_ie - (pframe + WLAN_HDR_A3_LEN + ie_offset, - pkt_len - WLAN_HDR_A3_LEN - ie_offset, wfd_ie, - &wfd_ielen)) { - u8 attr_content[10] = { 0x00 }; - u32 attr_contentlen = 0; - - DBG_8192D("[%s] WFD IE Found!!\n", __func__); - rtw_get_wfd_attr_content(wfd_ie, wfd_ielen, - WFD_ATTR_DEVICE_INFO, - attr_content, - &attr_contentlen); - if (attr_contentlen) { - pwdinfo->wfd_info->peer_rtsp_ctrlport = - RTW_GET_BE16(attr_content + 2); - DBG_8192D("[%s] Peer PORT NUM = %d\n", __func__, - pwdinfo->wfd_info-> - peer_rtsp_ctrlport); - } - } -#endif - } - pstat->p2p_status_code = p2p_status_code; -#endif /* CONFIG_P2P */ - /* TODO: identify_proprietary_vendor_ie(); */ /* Realtek proprietary IE */ /* identify if this is Broadcom sta */ @@ -1855,32 +1629,17 @@ unsigned int OnAssocReq(struct rtw_adapter *adapt, /* 2 - report to upper layer */ DBG_8192D("indicate_sta_join_event to upper layer - hostapd\n"); -#ifdef CONFIG_IOCTL_CFG80211 - if (1) { -#ifdef COMPAT_KERNEL_RELEASE - rtw_cfg80211_indicate_sta_assoc(adapt, pframe, - pkt_len); -#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) && !defined(CONFIG_CFG80211_FORCE_COMPATIBLE_2_6_37_UNDER) - rtw_cfg80211_indicate_sta_assoc(adapt, pframe, - pkt_len); -#else /* LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) && !defined(CONFIG_CFG80211_FORCE_COMPATIBLE_2_6_37_UNDER) */ - spin_lock_bh(&pstat->lock); - kfree(pstat->passoc_req); - pstat->passoc_req = NULL; - pstat->assoc_req_len = 0; - - pstat->passoc_req = kzalloc(pkt_len, GFP_ATOMIC); - if (pstat->passoc_req) { - memcpy(pstat->passoc_req, pframe, pkt_len); - pstat->assoc_req_len = pkt_len; - } - spin_unlock_bh(&pstat->lock); -#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) && !defined(CONFIG_CFG80211_FORCE_COMPATIBLE_2_6_37_UNDER) */ - } else -#endif /* CONFIG_IOCTL_CFG80211 */ - { - rtw_indicate_sta_assoc_event(adapt, pstat); + spin_lock_bh(&pstat->lock); + kfree(pstat->passoc_req); + pstat->passoc_req = NULL; + pstat->assoc_req_len = 0; + + pstat->passoc_req = kzalloc(pkt_len, GFP_ATOMIC); + if (pstat->passoc_req) { + memcpy(pstat->passoc_req, pframe, pkt_len); + pstat->assoc_req_len = pkt_len; } + spin_unlock_bh(&pstat->lock); /* 3-(1) report sta add event */ report_add_sta_event(adapt, pstat->hwaddr, pstat->aid); @@ -1975,12 +1734,6 @@ unsigned int OnAssocRsp(struct rtw_adapter *adapt, if (_rtw_memcmp(pIE->data, WMM_PARA_OUI, 6)) { /* WMM */ WMM_param_handler(adapt, pIE); } -#if defined(CONFIG_P2P) && defined(CONFIG_WFD) - else if (_rtw_memcmp(pIE->data, WFD_OUI, 4)) { /* WFD */ - DBG_8192D("[%s] Found WFD IE\n", __func__); - WFD_info_handler(adapt, pIE); - } -#endif break; case _HT_CAPABILITY_IE_: /* HT caps */ @@ -2028,9 +1781,6 @@ unsigned int OnDeAuth(struct rtw_adapter *adapt, struct mlme_ext_priv *pmlmeext = &adapt->mlmeextpriv; struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); u8 *pframe = precv_frame->rx_data; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); -#endif /* CONFIG_P2P */ /* check A3 */ if (! @@ -2039,13 +1789,6 @@ unsigned int OnDeAuth(struct rtw_adapter *adapt, ETH_ALEN))) return _SUCCESS; -#ifdef CONFIG_P2P - if (pwdinfo->rx_invitereq_info.scan_op_ch_only) { - _cancel_timer_ex(&pwdinfo->reset_ch_sitesurvey); - _set_timer(&pwdinfo->reset_ch_sitesurvey, 10); - } -#endif /* CONFIG_P2P */ - reason = le16_to_cpu(*(__le16 *)(pframe + WLAN_HDR_A3_LEN)); DBG_8192D("%s Reason code(%d)\n", __func__, reason); @@ -2093,9 +1836,6 @@ unsigned int OnDisassoc(struct rtw_adapter *adapt, struct mlme_ext_priv *pmlmeext = &adapt->mlmeextpriv; struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); u8 *pframe = precv_frame->rx_data; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); -#endif /* CONFIG_P2P */ /* check A3 */ if (! @@ -2104,13 +1844,6 @@ unsigned int OnDisassoc(struct rtw_adapter *adapt, ETH_ALEN))) return _SUCCESS; -#ifdef CONFIG_P2P - if (pwdinfo->rx_invitereq_info.scan_op_ch_only) { - _cancel_timer_ex(&pwdinfo->reset_ch_sitesurvey); - _set_timer(&pwdinfo->reset_ch_sitesurvey, 10); - } -#endif /* CONFIG_P2P */ - reason = le16_to_cpu(*(__le16 *)(pframe + WLAN_HDR_A3_LEN)); DBG_8192D("%s Reason code(%d)\n", __func__, reason); @@ -2314,13 +2047,6 @@ unsigned int OnAction_back(struct rtw_adapter *adapt, category = frame_body[0]; if (category == RTW_WLAN_CATEGORY_BACK) { /* representing Block Ack */ -#ifdef CONFIG_TDLS - if ((psta->tdls_sta_state & TDLS_LINKED_STATE) && - (psta->htpriv.ht_option == true) && - (psta->htpriv.ampdu_enable == true)) { - /* do nothing; just don't want to return _SUCCESS; */ - } else -#endif /* CONFIG_TDLS */ if (!pmlmeinfo->HT_enable) { return _SUCCESS; } @@ -2397,3345 +2123,58 @@ unsigned int OnAction_back(struct rtw_adapter *adapt, return _SUCCESS; } -#ifdef CONFIG_P2P - -static int get_reg_classes_full_count(struct p2p_channels channel_list) -{ - int cnt = 0; - int i; - - for (i = 0; i < channel_list.reg_classes; i++) { - cnt += channel_list.reg_class[i].channels; - } - - return cnt; -} - -static void get_channel_cnt_24g_5gl_5gh(struct mlme_ext_priv *pmlmeext, - u8 *p24g_cnt, u8 *p5gl_cnt, - u8 *p5gh_cnt) -{ - int i = 0; - - *p24g_cnt = 0; - *p5gl_cnt = 0; - *p5gh_cnt = 0; - - for (i = 0; i < pmlmeext->max_chan_nums; i++) { - if (pmlmeext->channel_set[i].ChannelNum <= 14) { - (*p24g_cnt)++; - } else if ((pmlmeext->channel_set[i].ChannelNum > 14) && - (pmlmeext->channel_set[i].ChannelNum <= 48)) { - /* Just include the channel 36, 40, 44, 48 channels for 5G low */ - (*p5gl_cnt)++; - } else if ((pmlmeext->channel_set[i].ChannelNum >= 149) && - (pmlmeext->channel_set[i].ChannelNum <= 161)) { - /* Just include the channel 149, 153, 157, 161 channels for 5G high */ - (*p5gh_cnt)++; - } - } -} - -void issue_p2p_GO_request(struct rtw_adapter *adapt, u8 *raddr) +static s32 rtw_action_public_decache(struct recv_frame_hdr *recv_frame, s32 token) { - unsigned char category = RTW_WLAN_CATEGORY_PUBLIC; - u8 action = P2P_PUB_ACTION_ACTION; - __be32 p2poui = cpu_to_be32(P2POUI); - u8 oui_subtype = P2P_GO_NEGO_REQ; - u8 wpsie[255] = { 0x00 }, p2pie[255] = { - 0x00}; - u8 wpsielen = 0, p2pielen = 0, i; - u8 channel_cnt_24g = 0, channel_cnt_5gl = 0, channel_cnt_5gh = 0; - u16 len_channellist_attr = 0; -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ - - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - DBG_8192D("[%s] In\n", __func__); - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(adapt, pattrib); - - 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; - - memcpy(pwlanhdr->addr1, raddr, ETH_ALEN); - memcpy(pwlanhdr->addr2, myid(&(adapt->eeprompriv)), ETH_ALEN); - memcpy(pwlanhdr->addr3, myid(&(adapt->eeprompriv)), ETH_ALEN); - - 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); - - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), - &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen)); - pwdinfo->negotiation_dialog_token = 1; /* Initialize the dialog value */ - pframe = - rtw_set_fixed_ie(pframe, 1, &pwdinfo->negotiation_dialog_token, - &(pattrib->pktlen)); - - /* WPS Section */ - wpsielen = 0; - /* WPS OUI */ - *(__be32 *)(wpsie) = cpu_to_be32(WPSOUI); - wpsielen += 4; - - /* WPS version */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_VER1); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0001); - wpsielen += 2; - - /* Value: */ - wpsie[wpsielen++] = WPS_VERSION_1; /* Version 1.0 */ - - /* Device Password ID */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_DEVICE_PWID); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0002); - wpsielen += 2; - - /* Value: */ - - if (pwdinfo->ui_got_wps_info == P2P_GOT_WPSINFO_PEER_DISPLAY_PIN) { - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_DPID_USER_SPEC); - } else if (pwdinfo->ui_got_wps_info == P2P_GOT_WPSINFO_SELF_DISPLAY_PIN) { - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_DPID_REGISTRAR_SPEC); - } else if (pwdinfo->ui_got_wps_info == P2P_GOT_WPSINFO_PBC) { - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_DPID_PBC); - } - - wpsielen += 2; - - pframe = - rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, wpsielen, - (unsigned char *)wpsie, &pattrib->pktlen); - - /* P2P IE Section. */ - - /* P2P OUI */ - p2pielen = 0; - p2pie[p2pielen++] = 0x50; - p2pie[p2pielen++] = 0x6F; - p2pie[p2pielen++] = 0x9A; - p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */ - - /* Commented by Albert 20110306 */ - /* According to the P2P Specification, the group negoitation request frame should contain 9 P2P attributes */ - /* 1. P2P Capability */ - /* 2. Group Owner Intent */ - /* 3. Configuration Timeout */ - /* 4. Listen Channel */ - /* 5. Extended Listen Timing */ - /* 6. Intended P2P Interface Address */ - /* 7. Channel List */ - /* 8. P2P Device Info */ - /* 9. Operating Channel */ - - /* P2P Capability */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CAPABILITY; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0002); - p2pielen += 2; - - /* Value: */ - /* Device Capability Bitmap, 1 byte */ - p2pie[p2pielen++] = DMP_P2P_DEVCAP_SUPPORT; - - /* Group Capability Bitmap, 1 byte */ - if (pwdinfo->persistent_supported) { - p2pie[p2pielen++] = - P2P_GRPCAP_CROSS_CONN | P2P_GRPCAP_PERSISTENT_GROUP; - } else { - p2pie[p2pielen++] = P2P_GRPCAP_CROSS_CONN; - } - - /* Group Owner Intent */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_GO_INTENT; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0001); - p2pielen += 2; - - /* Value: */ - /* Todo the tie breaker bit. */ - p2pie[p2pielen++] = ((pwdinfo->intent << 1) | BIT(0)); - - /* Configuration Timeout */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CONF_TIMEOUT; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0002); - p2pielen += 2; - - /* Value: */ - p2pie[p2pielen++] = 200; /* 2 seconds needed to be the P2P GO */ - p2pie[p2pielen++] = 200; /* 2 seconds needed to be the P2P Client */ - - /* Listen Channel */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_LISTEN_CH; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0005); - p2pielen += 2; - - /* Value: */ - /* Country String */ - p2pie[p2pielen++] = 'X'; - p2pie[p2pielen++] = 'X'; - - /* The third byte should be set to 0x04. */ - /* Described in the "Operating Channel Attribute" section. */ - p2pie[p2pielen++] = 0x04; - - /* Operating Class */ - p2pie[p2pielen++] = 0x51; /* Copy from SD7 */ - - /* Channel Number */ - p2pie[p2pielen++] = pwdinfo->listen_channel; /* listening channel number */ - - /* Extended Listen Timing ATTR */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_EX_LISTEN_TIMING; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0004); - p2pielen += 2; - - /* Value: */ - /* Availability Period */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0xFFFF); - p2pielen += 2; - - /* Availability Interval */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0xFFFF); - p2pielen += 2; - - /* Intended P2P Interface Address */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_INTENTED_IF_ADDR; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(ETH_ALEN); - p2pielen += 2; - - /* Value: */ - memcpy(p2pie + p2pielen, myid(&adapt->eeprompriv), ETH_ALEN); - p2pielen += ETH_ALEN; - - /* Channel List */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CH_LIST; - - /* Length: */ - /* Country String(3) */ - /* + (Operating Class (1) + Number of Channels(1)) * Operation Classes (?) */ - /* + number of channels in all classes */ - len_channellist_attr = 3 - + (1 + 1) * (u16) (pmlmeext->channel_list.reg_classes) - + get_reg_classes_full_count(pmlmeext->channel_list); - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(adapt, _FW_LINKED)) { - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(5 + 1); - } else { - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(len_channellist_attr); - } -#else - - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(len_channellist_attr); - -#endif - p2pielen += 2; - - /* Value: */ - /* Country String */ - p2pie[p2pielen++] = 'X'; - p2pie[p2pielen++] = 'X'; - - /* The third byte should be set to 0x04. */ - /* Described in the "Operating Channel Attribute" section. */ - p2pie[p2pielen++] = 0x04; - - /* Channel Entry List */ + struct rtw_adapter *adapter = recv_frame->adapter; + struct mlme_ext_priv *mlmeext = &(adapter->mlmeextpriv); + u8 *frame = recv_frame->rx_data; + u16 seq_ctrl = ((recv_frame->attrib.seq_num & 0xffff) << 4) | + (recv_frame->attrib.frag_num & 0xf); -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(adapt, _FW_LINKED)) { - struct rtw_adapter *pbuddy_adapter = adapt->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext = - &pbuddy_adapter->mlmeextpriv; - - /* Operating Class */ - if (pbuddy_mlmeext->cur_channel > 14) { - if (pbuddy_mlmeext->cur_channel >= 149) { - p2pie[p2pielen++] = 0x7c; - } else { - p2pie[p2pielen++] = 0x73; + if (GetRetry(frame)) { + if (token >= 0) { + if ((seq_ctrl == mlmeext->action_public_rxseq) && + (token == mlmeext->action_public_dialog_token)) { + DBG_8192D(FUNC_ADPT_FMT + " seq_ctrl=0x%x, rxseq=0x%x, token:%d\n", + FUNC_ADPT_ARG(adapter), seq_ctrl, + mlmeext->action_public_rxseq, token); + return _FAIL; } } else { - p2pie[p2pielen++] = 0x51; - } - - /* Number of Channels */ - /* Just support 1 channel and this channel is AP's channel */ - p2pie[p2pielen++] = 1; - - /* Channel List */ - p2pie[p2pielen++] = pbuddy_mlmeext->cur_channel; - } else { - int i, j; - for (j = 0; j < pmlmeext->channel_list.reg_classes; j++) { - /* Operating Class */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j].reg_class; - - /* Number of Channels */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j].channels; - - /* Channel List */ - for (i = 0; - i < pmlmeext->channel_list.reg_class[j].channels; - i++) { - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j]. - channel[i]; - } - } - } -#else /* CONFIG_CONCURRENT_MODE */ - { - int i, j; - for (j = 0; j < pmlmeext->channel_list.reg_classes; j++) { - /* Operating Class */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j].reg_class; - - /* Number of Channels */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j].channels; - - /* Channel List */ - for (i = 0; - i < pmlmeext->channel_list.reg_class[j].channels; - i++) { - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j]. - channel[i]; + if (seq_ctrl == mlmeext->action_public_rxseq) { + DBG_8192D(FUNC_ADPT_FMT + " seq_ctrl=0x%x, rxseq=0x%x\n", + FUNC_ADPT_ARG(adapter), seq_ctrl, + mlmeext->action_public_rxseq); + return _FAIL; } } } -#endif /* CONFIG_CONCURRENT_MODE */ - - /* Device Info */ - /* 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) */ - *(__le16 *)(p2pie + p2pielen) = - cpu_to_le16(21 + pwdinfo->device_name_len); - p2pielen += 2; - - /* Value: */ - /* P2P Device Address */ - memcpy(p2pie + p2pielen, myid(&adapt->eeprompriv), ETH_ALEN); - p2pielen += ETH_ALEN; - - /* Config Method */ - /* This field should be big endian. Noted by P2P specification. */ - - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(pwdinfo->supported_wps_cm); - - p2pielen += 2; - - /* Primary Device Type */ - /* Category ID */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(WPS_PDT_CID_MULIT_MEDIA); - p2pielen += 2; - - /* OUI */ - *(__be32 *)(p2pie + p2pielen) = cpu_to_be32(WPSOUI); - p2pielen += 4; - - /* Sub Category ID */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(WPS_PDT_SCID_MEDIA_SERVER); - p2pielen += 2; - - /* Number of Secondary Device Types */ - p2pie[p2pielen++] = 0x00; /* No Secondary Device Type List */ - - /* Device Name */ - /* Type: */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(WPS_ATTR_DEVICE_NAME); - p2pielen += 2; - - /* Length: */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(pwdinfo->device_name_len); - p2pielen += 2; - - /* Value: */ - memcpy(p2pie + p2pielen, pwdinfo->device_name, - pwdinfo->device_name_len); - p2pielen += pwdinfo->device_name_len; - - /* Operating Channel */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_OPERATING_CH; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0005); - p2pielen += 2; - - /* Value: */ - /* Country String */ - p2pie[p2pielen++] = 'X'; - p2pie[p2pielen++] = 'X'; - - /* The third byte should be set to 0x04. */ - /* Described in the "Operating Channel Attribute" section. */ - p2pie[p2pielen++] = 0x04; - - /* Operating Class */ - if (pwdinfo->operating_channel <= 14) { - /* Operating Class */ - p2pie[p2pielen++] = 0x51; - } else if ((pwdinfo->operating_channel >= 36) && - (pwdinfo->operating_channel <= 48)) { - /* Operating Class */ - p2pie[p2pielen++] = 0x73; - } else { - /* Operating Class */ - p2pie[p2pielen++] = 0x7c; - } - /* Channel Number */ - p2pie[p2pielen++] = pwdinfo->operating_channel; /* operating channel number */ - - pframe = - rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, - (unsigned char *)p2pie, &pattrib->pktlen); + mlmeext->action_public_rxseq = seq_ctrl; -#ifdef CONFIG_WFD - wfdielen = build_nego_req_wfd_ie(pwdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; -#endif /* CONFIG_WFD */ + if (token >= 0) + mlmeext->action_public_dialog_token = token; - pattrib->last_txcmdsz = pattrib->pktlen; - dump_mgntframe(adapt, pmgntframe); - return; + return _SUCCESS; } -static void issue_p2p_GO_response(struct rtw_adapter *adapt, u8 *raddr, - u8 *frame_body, uint len, u8 result) +static unsigned int on_action_public_p2p(struct recv_frame_hdr *precv_frame) { - unsigned char category = RTW_WLAN_CATEGORY_PUBLIC; - u8 action = P2P_PUB_ACTION_ACTION; - __be32 p2poui = cpu_to_be32(P2POUI); - u8 oui_subtype = P2P_GO_NEGO_RESP; - u8 wpsie[255] = { 0x00 }, p2pie[255] = { - 0x00}; - u8 p2pielen = 0, i; - uint wpsielen = 0; - u16 wps_devicepassword_id = 0x0000; - uint wps_devicepassword_id_len = 0; - __be16 be_tmp; - u8 channel_cnt_24g = 0, channel_cnt_5gl = 0, channel_cnt_5gh; - u16 len_channellist_attr = 0; - - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - DBG_8192D("[%s] In, result = %d\n", __func__, result); - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(adapt, pattrib); - - 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; - - memcpy(pwlanhdr->addr1, raddr, ETH_ALEN); - memcpy(pwlanhdr->addr2, myid(&(adapt->eeprompriv)), ETH_ALEN); - memcpy(pwlanhdr->addr3, myid(&(adapt->eeprompriv)), ETH_ALEN); - - 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); - - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), - &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen)); - pwdinfo->negotiation_dialog_token = frame_body[7]; /* The Dialog Token of provisioning discovery request frame. */ - pframe = - rtw_set_fixed_ie(pframe, 1, &(pwdinfo->negotiation_dialog_token), - &(pattrib->pktlen)); - - /* Commented by Albert 20110328 */ - /* Try to get the device password ID from the WPS IE of group negotiation request frame */ - /* WiFi Direct test plan 5.1.15 */ - rtw_get_wps_ie(frame_body + _PUBLIC_ACTION_IE_OFFSET_, - len - _PUBLIC_ACTION_IE_OFFSET_, wpsie, &wpsielen); - rtw_get_wps_attr_content(wpsie, wpsielen, WPS_ATTR_DEVICE_PWID, - (u8 *)&be_tmp, &wps_devicepassword_id_len); - wps_devicepassword_id = be16_to_cpu(be_tmp); - - memset(wpsie, 0x00, 255); - wpsielen = 0; - - /* WPS Section */ - wpsielen = 0; - /* WPS OUI */ - *(__be32 *)(wpsie) = cpu_to_be32(WPSOUI); - wpsielen += 4; - - /* WPS version */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_VER1); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0001); - wpsielen += 2; - - /* Value: */ - wpsie[wpsielen++] = WPS_VERSION_1; /* Version 1.0 */ - - /* Device Password ID */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_DEVICE_PWID); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0002); - wpsielen += 2; - - /* Value: */ - if (wps_devicepassword_id == WPS_DPID_USER_SPEC) { - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_DPID_REGISTRAR_SPEC); - } else if (wps_devicepassword_id == WPS_DPID_REGISTRAR_SPEC) { - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_DPID_USER_SPEC); - } else { - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_DPID_PBC); - } - wpsielen += 2; - - /* 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)) { - if (wps_devicepassword_id == WPS_DPID_USER_SPEC) { - memcpy(pwdinfo->rx_prov_disc_info. - strconfig_method_desc_of_prov_disc_req, "dis", - 3); - } else if (wps_devicepassword_id == WPS_DPID_REGISTRAR_SPEC) { - memcpy(pwdinfo->rx_prov_disc_info. - strconfig_method_desc_of_prov_disc_req, "pad", - 3); - } else { - memcpy(pwdinfo->rx_prov_disc_info. - strconfig_method_desc_of_prov_disc_req, "pbc", - 3); - } - } - - pframe = - rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, wpsielen, - (unsigned char *)wpsie, &pattrib->pktlen); - - /* P2P IE Section. */ - - /* P2P OUI */ - p2pielen = 0; - p2pie[p2pielen++] = 0x50; - p2pie[p2pielen++] = 0x6F; - p2pie[p2pielen++] = 0x9A; - p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */ - - /* Commented by Albert 20100908 */ - /* According to the P2P Specification, the group negoitation response frame should contain 9 P2P attributes */ - /* 1. Status */ - /* 2. P2P Capability */ - /* 3. Group Owner Intent */ - /* 4. Configuration Timeout */ - /* 5. Operating Channel */ - /* 6. Intended P2P Interface Address */ - /* 7. Channel List */ - /* 8. Device Info */ - /* 9. Group ID (Only GO) */ - - /* ToDo: */ - - /* P2P Status */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_STATUS; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0001); - p2pielen += 2; - - /* Value: */ - p2pie[p2pielen++] = result; - - /* P2P Capability */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CAPABILITY; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0002); - p2pielen += 2; - - /* Value: */ - /* Device Capability Bitmap, 1 byte */ - - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_CLIENT)) { - /* Commented by Albert 2011/03/08 */ - /* According to the P2P specification */ - /* if the sending device will be client, the P2P Capability should be reserved of group negotation response frame */ - p2pie[p2pielen++] = 0; - } else { - /* Be group owner or meet the error case */ - p2pie[p2pielen++] = DMP_P2P_DEVCAP_SUPPORT; - } - - /* Group Capability Bitmap, 1 byte */ - if (pwdinfo->persistent_supported) { - p2pie[p2pielen++] = - P2P_GRPCAP_CROSS_CONN | P2P_GRPCAP_PERSISTENT_GROUP; - } else { - p2pie[p2pielen++] = P2P_GRPCAP_CROSS_CONN; - } - - /* Group Owner Intent */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_GO_INTENT; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0001); - p2pielen += 2; - - /* Value: */ - if (pwdinfo->peer_intent & 0x01) { - /* Peer's tie breaker bit is 1, our tie breaker bit should be 0 */ - p2pie[p2pielen++] = (pwdinfo->intent << 1); - } else { - /* Peer's tie breaker bit is 0, our tie breaker bit should be 1 */ - p2pie[p2pielen++] = ((pwdinfo->intent << 1) | BIT(0)); - } - - /* Configuration Timeout */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CONF_TIMEOUT; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0002); - p2pielen += 2; - - /* Value: */ - p2pie[p2pielen++] = 200; /* 2 seconds needed to be the P2P GO */ - p2pie[p2pielen++] = 200; /* 2 seconds needed to be the P2P Client */ - - /* Operating Channel */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_OPERATING_CH; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0005); - p2pielen += 2; - - /* Value: */ - /* Country String */ - p2pie[p2pielen++] = 'X'; - p2pie[p2pielen++] = 'X'; - - /* The third byte should be set to 0x04. */ - /* Described in the "Operating Channel Attribute" section. */ - p2pie[p2pielen++] = 0x04; - - /* Operating Class */ - if (pwdinfo->operating_channel <= 14) { - /* Operating Class */ - p2pie[p2pielen++] = 0x51; - } else if ((pwdinfo->operating_channel >= 36) && - (pwdinfo->operating_channel <= 48)) { - /* Operating Class */ - p2pie[p2pielen++] = 0x73; - } else { - /* Operating Class */ - p2pie[p2pielen++] = 0x7c; - } - - /* Channel Number */ - p2pie[p2pielen++] = pwdinfo->operating_channel; /* operating channel number */ - - /* Intended P2P Interface Address */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_INTENTED_IF_ADDR; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(ETH_ALEN); - p2pielen += 2; - - /* Value: */ - memcpy(p2pie + p2pielen, myid(&adapt->eeprompriv), ETH_ALEN); - p2pielen += ETH_ALEN; - - /* Channel List */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CH_LIST; - - /* Country String(3) */ - /* + (Operating Class (1) + Number of Channels(1)) * Operation Classes (?) */ - /* + number of channels in all classes */ - len_channellist_attr = 3 - + (1 + 1) * (u16) pmlmeext->channel_list.reg_classes - + get_reg_classes_full_count(pmlmeext->channel_list); - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(adapt, _FW_LINKED)) { - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(5 + 1); - } else { - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(len_channellist_attr); - } -#else - - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(len_channellist_attr); - -#endif - p2pielen += 2; - - /* Value: */ - /* Country String */ - p2pie[p2pielen++] = 'X'; - p2pie[p2pielen++] = 'X'; - - /* The third byte should be set to 0x04. */ - /* Described in the "Operating Channel Attribute" section. */ - p2pie[p2pielen++] = 0x04; - - /* Channel Entry List */ - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(adapt, _FW_LINKED)) { - struct rtw_adapter *pbuddy_adapter = adapt->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext = - &pbuddy_adapter->mlmeextpriv; - - /* Operating Class */ - if (pbuddy_mlmeext->cur_channel > 14) { - if (pbuddy_mlmeext->cur_channel >= 149) { - p2pie[p2pielen++] = 0x7c; - } else { - p2pie[p2pielen++] = 0x73; - } - } else { - p2pie[p2pielen++] = 0x51; - } - - /* Number of Channels */ - /* Just support 1 channel and this channel is AP's channel */ - p2pie[p2pielen++] = 1; - - /* Channel List */ - p2pie[p2pielen++] = pbuddy_mlmeext->cur_channel; - } else { - int i, j; - for (j = 0; j < pmlmeext->channel_list.reg_classes; j++) { - /* Operating Class */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j].reg_class; - - /* Number of Channels */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j].channels; - - /* Channel List */ - for (i = 0; - i < pmlmeext->channel_list.reg_class[j].channels; - i++) { - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j]. - channel[i]; - } - } - } -#else /* CONFIG_CONCURRENT_MODE */ - { - int i, j; - for (j = 0; j < pmlmeext->channel_list.reg_classes; j++) { - /* Operating Class */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j].reg_class; - - /* Number of Channels */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j].channels; - - /* Channel List */ - for (i = 0; - i < pmlmeext->channel_list.reg_class[j].channels; - i++) { - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j]. - channel[i]; - } - } - } -#endif /* CONFIG_CONCURRENT_MODE */ - - /* Device Info */ - /* 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) */ - *(__le16 *)(p2pie + p2pielen) = - cpu_to_le16(21 + pwdinfo->device_name_len); - p2pielen += 2; - - /* Value: */ - /* P2P Device Address */ - memcpy(p2pie + p2pielen, myid(&adapt->eeprompriv), ETH_ALEN); - p2pielen += ETH_ALEN; - - /* Config Method */ - /* This field should be big endian. Noted by P2P specification. */ - - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(pwdinfo->supported_wps_cm); - - p2pielen += 2; - - /* Primary Device Type */ - /* Category ID */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(WPS_PDT_CID_MULIT_MEDIA); - p2pielen += 2; - - /* OUI */ - *(__be32 *)(p2pie + p2pielen) = cpu_to_be32(WPSOUI); - p2pielen += 4; - - /* Sub Category ID */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(WPS_PDT_SCID_MEDIA_SERVER); - p2pielen += 2; - - /* Number of Secondary Device Types */ - p2pie[p2pielen++] = 0x00; /* No Secondary Device Type List */ - - /* Device Name */ - /* Type: */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(WPS_ATTR_DEVICE_NAME); - p2pielen += 2; - - /* Length: */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(pwdinfo->device_name_len); - p2pielen += 2; - - /* Value: */ - memcpy(p2pie + p2pielen, pwdinfo->device_name, - pwdinfo->device_name_len); - p2pielen += pwdinfo->device_name_len; - - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) { - /* Group ID Attribute */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_GROUP_ID; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = - cpu_to_le16(ETH_ALEN + pwdinfo->nego_ssidlen); - p2pielen += 2; - - /* Value: */ - /* p2P Device Address */ - memcpy(p2pie + p2pielen, pwdinfo->device_addr, ETH_ALEN); - p2pielen += ETH_ALEN; - - /* SSID */ - memcpy(p2pie + p2pielen, pwdinfo->nego_ssid, - pwdinfo->nego_ssidlen); - p2pielen += pwdinfo->nego_ssidlen; - } - - pframe = - rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, - (unsigned char *)p2pie, &pattrib->pktlen); - -#ifdef CONFIG_WFD - wfdielen = build_nego_resp_wfd_ie(pwdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; -#endif /* CONFIG_WFD */ - - pattrib->last_txcmdsz = pattrib->pktlen; - - dump_mgntframe(adapt, pmgntframe); - - return; -} - -static void issue_p2p_GO_confirm(struct rtw_adapter *adapt, u8 *raddr, u8 result) -{ - unsigned char category = RTW_WLAN_CATEGORY_PUBLIC; - u8 action = P2P_PUB_ACTION_ACTION; - __be32 p2poui = cpu_to_be32(P2POUI); - u8 oui_subtype = P2P_GO_NEGO_CONF; - u8 wpsie[255] = { 0x00 }, p2pie[255] = { - 0x00}; - u8 wpsielen = 0, p2pielen = 0; - - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - DBG_8192D("[%s] In\n", __func__); - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(adapt, pattrib); - - 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; - - memcpy(pwlanhdr->addr1, raddr, ETH_ALEN); - memcpy(pwlanhdr->addr2, myid(&(adapt->eeprompriv)), ETH_ALEN); - memcpy(pwlanhdr->addr3, myid(&(adapt->eeprompriv)), ETH_ALEN); - - 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); - - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), - &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 1, &(pwdinfo->negotiation_dialog_token), - &(pattrib->pktlen)); - - /* P2P IE Section. */ - - /* P2P OUI */ - p2pielen = 0; - p2pie[p2pielen++] = 0x50; - p2pie[p2pielen++] = 0x6F; - p2pie[p2pielen++] = 0x9A; - p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */ - - /* Commented by Albert 20110306 */ - /* According to the P2P Specification, the group negoitation request frame should contain 5 P2P attributes */ - /* 1. Status */ - /* 2. P2P Capability */ - /* 3. Operating Channel */ - /* 4. Channel List */ - /* 5. Group ID (if this WiFi is GO) */ - - /* P2P Status */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_STATUS; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0001); - p2pielen += 2; - - /* Value: */ - p2pie[p2pielen++] = result; - - /* P2P Capability */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CAPABILITY; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0002); - p2pielen += 2; - - /* Value: */ - /* Device Capability Bitmap, 1 byte */ - p2pie[p2pielen++] = DMP_P2P_DEVCAP_SUPPORT; - - /* Group Capability Bitmap, 1 byte */ - if (pwdinfo->persistent_supported) { - p2pie[p2pielen++] = - P2P_GRPCAP_CROSS_CONN | P2P_GRPCAP_PERSISTENT_GROUP; - } else { - p2pie[p2pielen++] = P2P_GRPCAP_CROSS_CONN; - } - - /* Operating Channel */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_OPERATING_CH; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0005); - p2pielen += 2; - - /* Value: */ - /* Country String */ - p2pie[p2pielen++] = 'X'; - p2pie[p2pielen++] = 'X'; - - /* The third byte should be set to 0x04. */ - /* Described in the "Operating Channel Attribute" section. */ - p2pie[p2pielen++] = 0x04; - - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_CLIENT)) { - if (pwdinfo->peer_operating_ch <= 14) { - /* Operating Class */ - p2pie[p2pielen++] = 0x51; - } else if ((pwdinfo->peer_operating_ch >= 36) && - (pwdinfo->peer_operating_ch <= 48)) { - /* Operating Class */ - p2pie[p2pielen++] = 0x73; - } else { - /* Operating Class */ - p2pie[p2pielen++] = 0x7c; - } - - p2pie[p2pielen++] = pwdinfo->peer_operating_ch; - } else { - if (pwdinfo->operating_channel <= 14) { - /* Operating Class */ - p2pie[p2pielen++] = 0x51; - } else if ((pwdinfo->operating_channel >= 36) && - (pwdinfo->operating_channel <= 48)) { - /* Operating Class */ - p2pie[p2pielen++] = 0x73; - } else { - /* Operating Class */ - p2pie[p2pielen++] = 0x7c; - } - - /* Channel Number */ - p2pie[p2pielen++] = pwdinfo->operating_channel; /* Use the listen channel as the operating channel */ - } - - /* Channel List */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CH_LIST; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = - cpu_to_le16(pwdinfo->channel_list_attr_len); - p2pielen += 2; - - /* Value: */ - memcpy(p2pie + p2pielen, pwdinfo->channel_list_attr, - pwdinfo->channel_list_attr_len); - p2pielen += pwdinfo->channel_list_attr_len; - - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) { - /* Group ID Attribute */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_GROUP_ID; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = - cpu_to_le16(ETH_ALEN + pwdinfo->nego_ssidlen); - p2pielen += 2; - - /* Value: */ - /* p2P Device Address */ - memcpy(p2pie + p2pielen, pwdinfo->device_addr, ETH_ALEN); - p2pielen += ETH_ALEN; - - /* SSID */ - memcpy(p2pie + p2pielen, pwdinfo->nego_ssid, - pwdinfo->nego_ssidlen); - p2pielen += pwdinfo->nego_ssidlen; - } - - pframe = - rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, - (unsigned char *)p2pie, &pattrib->pktlen); - -#ifdef CONFIG_WFD - wfdielen = build_nego_confirm_wfd_ie(pwdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; -#endif /* CONFIG_WFD */ - - pattrib->last_txcmdsz = pattrib->pktlen; - - dump_mgntframe(adapt, pmgntframe); - - return; -} - -void issue_p2p_invitation_request(struct rtw_adapter *adapt, u8 *raddr) -{ - unsigned char category = RTW_WLAN_CATEGORY_PUBLIC; - u8 action = P2P_PUB_ACTION_ACTION; - __be32 p2poui = cpu_to_be32(P2POUI); - u8 oui_subtype = P2P_INVIT_REQ; - u8 p2pie[255] = { 0x00 }; - u8 p2pielen = 0, i; - u8 dialogToken = 3; - u8 channel_cnt_24g = 0, channel_cnt_5gl = 0, channel_cnt_5gh = 0; - u16 len_channellist_attr = 0; -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ -#ifdef CONFIG_CONCURRENT_MODE - struct rtw_adapter *pbuddy_adapter = adapt->pbuddy_adapter; - struct wifidirect_info *pbuddy_wdinfo = &pbuddy_adapter->wdinfo; - struct mlme_priv *pbuddy_mlmepriv = &pbuddy_adapter->mlmepriv; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; -#endif - - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(adapt, pattrib); - - 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; - - memcpy(pwlanhdr->addr1, raddr, ETH_ALEN); - memcpy(pwlanhdr->addr2, myid(&(adapt->eeprompriv)), ETH_ALEN); - memcpy(pwlanhdr->addr3, raddr, ETH_ALEN); - - 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); - - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), - &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen)); - - /* P2P IE Section. */ - - /* P2P OUI */ - p2pielen = 0; - p2pie[p2pielen++] = 0x50; - p2pie[p2pielen++] = 0x6F; - p2pie[p2pielen++] = 0x9A; - p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */ - - /* Commented by Albert 20101011 */ - /* According to the P2P Specification, the P2P Invitation request frame should contain 7 P2P attributes */ - /* 1. Configuration Timeout */ - /* 2. Invitation Flags */ - /* 3. Operating Channel (Only GO) */ - /* 4. P2P Group BSSID (Should be included if I am the GO) */ - /* 5. Channel List */ - /* 6. P2P Group ID */ - /* 7. P2P Device Info */ - - /* Configuration Timeout */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CONF_TIMEOUT; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0002); - p2pielen += 2; - - /* Value: */ - p2pie[p2pielen++] = 200; /* 2 seconds needed to be the P2P GO */ - p2pie[p2pielen++] = 200; /* 2 seconds needed to be the P2P Client */ - - /* Invitation Flags */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_INVITATION_FLAGS; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0001); - p2pielen += 2; - - /* Value: */ - p2pie[p2pielen++] = P2P_INVITATION_FLAGS_PERSISTENT; - - /* Operating Channel */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_OPERATING_CH; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0005); - p2pielen += 2; - - /* Value: */ - /* Country String */ - p2pie[p2pielen++] = 'X'; - p2pie[p2pielen++] = 'X'; - - /* The third byte should be set to 0x04. */ - /* Described in the "Operating Channel Attribute" section. */ - p2pie[p2pielen++] = 0x04; - - /* Operating Class */ - if (pwdinfo->invitereq_info.operating_ch <= 14) - p2pie[p2pielen++] = 0x51; - else if ((pwdinfo->invitereq_info.operating_ch >= 36) && - (pwdinfo->invitereq_info.operating_ch <= 48)) - p2pie[p2pielen++] = 0x73; - else - p2pie[p2pielen++] = 0x7c; - - /* Channel Number */ - p2pie[p2pielen++] = pwdinfo->invitereq_info.operating_ch; /* operating channel number */ - - if (_rtw_memcmp - (myid(&adapt->eeprompriv), pwdinfo->invitereq_info.go_bssid, - ETH_ALEN)) { - /* P2P Group BSSID */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_GROUP_BSSID; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(ETH_ALEN); - p2pielen += 2; - - /* Value: */ - /* P2P Device Address for GO */ - memcpy(p2pie + p2pielen, pwdinfo->invitereq_info.go_bssid, - ETH_ALEN); - p2pielen += ETH_ALEN; - } - - /* Channel List */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CH_LIST; - - /* Length: */ - /* Country String(3) */ - /* + (Operating Class (1) + Number of Channels(1)) * Operation Classes (?) */ - /* + number of channels in all classes */ - len_channellist_attr = 3 - + (1 + 1) * (u16) pmlmeext->channel_list.reg_classes - + get_reg_classes_full_count(pmlmeext->channel_list); - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(adapt, _FW_LINKED)) { - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(5 + 1); - } else { - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(len_channellist_attr); - } -#else - - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(len_channellist_attr); - -#endif - p2pielen += 2; - - /* Value: */ - /* Country String */ - p2pie[p2pielen++] = 'X'; - p2pie[p2pielen++] = 'X'; - - /* The third byte should be set to 0x04. */ - /* Described in the "Operating Channel Attribute" section. */ - p2pie[p2pielen++] = 0x04; - - /* Channel Entry List */ -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(adapt, _FW_LINKED)) { - struct rtw_adapter *pbuddy_adapter = adapt->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext = - &pbuddy_adapter->mlmeextpriv; - - /* Operating Class */ - if (pbuddy_mlmeext->cur_channel > 14) { - if (pbuddy_mlmeext->cur_channel >= 149) { - p2pie[p2pielen++] = 0x7c; - } else { - p2pie[p2pielen++] = 0x73; - } - } else { - p2pie[p2pielen++] = 0x51; - } - - /* Number of Channels */ - /* Just support 1 channel and this channel is AP's channel */ - p2pie[p2pielen++] = 1; - - /* Channel List */ - p2pie[p2pielen++] = pbuddy_mlmeext->cur_channel; - } else { - int i, j; - for (j = 0; j < pmlmeext->channel_list.reg_classes; j++) { - /* Operating Class */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j].reg_class; - - /* Number of Channels */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j].channels; - - /* Channel List */ - for (i = 0; - i < pmlmeext->channel_list.reg_class[j].channels; - i++) { - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j]. - channel[i]; - } - } - } -#else /* CONFIG_CONCURRENT_MODE */ - { - int i, j; - for (j = 0; j < pmlmeext->channel_list.reg_classes; j++) { - /* Operating Class */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j].reg_class; - - /* Number of Channels */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j].channels; - - /* Channel List */ - for (i = 0; - i < pmlmeext->channel_list.reg_class[j].channels; - i++) { - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j]. - channel[i]; - } - } - } -#endif /* CONFIG_CONCURRENT_MODE */ - - /* P2P Group ID */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_GROUP_ID; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = - cpu_to_le16(6 + pwdinfo->invitereq_info.ssidlen); - p2pielen += 2; - - /* Value: */ - /* P2P Device Address for GO */ - memcpy(p2pie + p2pielen, pwdinfo->invitereq_info.go_bssid, ETH_ALEN); - p2pielen += ETH_ALEN; - - /* SSID */ - memcpy(p2pie + p2pielen, pwdinfo->invitereq_info.go_ssid, - pwdinfo->invitereq_info.ssidlen); - p2pielen += pwdinfo->invitereq_info.ssidlen; - - /* Device Info */ - /* 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) */ - *(__le16 *)(p2pie + p2pielen) = - cpu_to_le16(21 + pwdinfo->device_name_len); - p2pielen += 2; - - /* Value: */ - /* P2P Device Address */ - memcpy(p2pie + p2pielen, myid(&adapt->eeprompriv), ETH_ALEN); - p2pielen += ETH_ALEN; - - /* Config Method */ - /* This field should be big endian. Noted by P2P specification. */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(WPS_CONFIG_METHOD_DISPLAY); - p2pielen += 2; - - /* Primary Device Type */ - /* Category ID */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(WPS_PDT_CID_MULIT_MEDIA); - p2pielen += 2; - - /* OUI */ - *(__be32 *)(p2pie + p2pielen) = cpu_to_be32(WPSOUI); - p2pielen += 4; - - /* Sub Category ID */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(WPS_PDT_SCID_MEDIA_SERVER); - p2pielen += 2; - - /* Number of Secondary Device Types */ - p2pie[p2pielen++] = 0x00; /* No Secondary Device Type List */ - - /* Device Name */ - /* Type: */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(WPS_ATTR_DEVICE_NAME); - p2pielen += 2; - - /* Length: */ - *(__be16 *)(p2pie + p2pielen) = cpu_to_be16(pwdinfo->device_name_len); - p2pielen += 2; - - /* Value: */ - memcpy(p2pie + p2pielen, pwdinfo->device_name, - pwdinfo->device_name_len); - p2pielen += pwdinfo->device_name_len; - - pframe = - rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, - (unsigned char *)p2pie, &pattrib->pktlen); - -#ifdef CONFIG_WFD - wfdielen = build_invitation_req_wfd_ie(pwdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; -#endif /* CONFIG_WFD */ - - pattrib->last_txcmdsz = pattrib->pktlen; - - dump_mgntframe(adapt, pmgntframe); - - return; -} - -void issue_p2p_invitation_response(struct rtw_adapter *adapt, u8 *raddr, - u8 dialogToken, u8 status_code) -{ - unsigned char category = RTW_WLAN_CATEGORY_PUBLIC; - u8 action = P2P_PUB_ACTION_ACTION; - __be32 p2poui = cpu_to_be32(P2POUI); - u8 oui_subtype = P2P_INVIT_RESP; - u8 p2pie[255] = { 0x00 }; - u8 p2pielen = 0, i; - u8 channel_cnt_24g = 0, channel_cnt_5gl = 0, channel_cnt_5gh = 0; - u16 len_channellist_attr = 0; -#ifdef CONFIG_CONCURRENT_MODE - struct rtw_adapter *pbuddy_adapter = adapt->pbuddy_adapter; - struct wifidirect_info *pbuddy_wdinfo = &pbuddy_adapter->wdinfo; - struct mlme_priv *pbuddy_mlmepriv = &pbuddy_adapter->mlmepriv; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; -#endif -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ - - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(adapt, pattrib); - - 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; - - memcpy(pwlanhdr->addr1, raddr, ETH_ALEN); - memcpy(pwlanhdr->addr2, myid(&(adapt->eeprompriv)), ETH_ALEN); - memcpy(pwlanhdr->addr3, raddr, ETH_ALEN); - - 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); - - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), - &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen)); - - /* P2P IE Section. */ - - /* P2P OUI */ - p2pielen = 0; - p2pie[p2pielen++] = 0x50; - p2pie[p2pielen++] = 0x6F; - p2pie[p2pielen++] = 0x9A; - p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */ - - /* Commented by Albert 20101005 */ - /* According to the P2P Specification, the P2P Invitation response frame should contain 5 P2P attributes */ - /* 1. Status */ - /* 2. Configuration Timeout */ - /* 3. Operating Channel (Only GO) */ - /* 4. P2P Group BSSID (Only GO) */ - /* 5. Channel List */ - - /* P2P Status */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_STATUS; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0001); - p2pielen += 2; - - /* Value: */ - /* When status code is P2P_STATUS_FAIL_INFO_UNAVAILABLE. */ - /* Sent the event receiving the P2P Invitation Req frame to DMP UI. */ - /* DMP had to compare the MAC address to find out the profile. */ - /* So, the WiFi driver will send the P2P_STATUS_FAIL_INFO_UNAVAILABLE to NB. */ - /* If the UI found the corresponding profile, the WiFi driver sends the P2P Invitation Req */ - /* to NB to rebuild the persistent group. */ - p2pie[p2pielen++] = status_code; - - /* Configuration Timeout */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CONF_TIMEOUT; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0002); - p2pielen += 2; - - /* Value: */ - p2pie[p2pielen++] = 200; /* 2 seconds needed to be the P2P GO */ - p2pie[p2pielen++] = 200; /* 2 seconds needed to be the P2P Client */ - - if (status_code == P2P_STATUS_SUCCESS) { - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) { - /* The P2P Invitation request frame asks this Wi-Fi device to be the P2P GO */ - /* In this case, the P2P Invitation response frame should carry the two more P2P attributes. */ - /* First one is operating channel attribute. */ - /* Second one is P2P Group BSSID attribute. */ - - /* Operating Channel */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_OPERATING_CH; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0005); - p2pielen += 2; - - /* Value: */ - /* Country String */ - p2pie[p2pielen++] = 'X'; - p2pie[p2pielen++] = 'X'; - - /* The third byte should be set to 0x04. */ - /* Described in the "Operating Channel Attribute" section. */ - p2pie[p2pielen++] = 0x04; - - /* Operating Class */ - p2pie[p2pielen++] = 0x51; /* Copy from SD7 */ - - /* Channel Number */ - p2pie[p2pielen++] = pwdinfo->operating_channel; /* operating channel number */ - - /* P2P Group BSSID */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_GROUP_BSSID; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(ETH_ALEN); - p2pielen += 2; - - /* Value: */ - /* P2P Device Address for GO */ - memcpy(p2pie + p2pielen, myid(&adapt->eeprompriv), - ETH_ALEN); - p2pielen += ETH_ALEN; - } - - /* Channel List */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CH_LIST; - - /* Length: */ - /* Country String(3) */ - /* + (Operating Class (1) + Number of Channels(1)) * Operation Classes (?) */ - /* + number of channels in all classes */ - len_channellist_attr = 3 - + (1 + 1) * (u16) pmlmeext->channel_list.reg_classes - + get_reg_classes_full_count(pmlmeext->channel_list); - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(adapt, _FW_LINKED)) { - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(5 + 1); - } else { - *(__le16 *)(p2pie + p2pielen) = - cpu_to_le16(len_channellist_attr); - } -#else - - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(len_channellist_attr); - -#endif - p2pielen += 2; - - /* Value: */ - /* Country String */ - p2pie[p2pielen++] = 'X'; - p2pie[p2pielen++] = 'X'; - - /* The third byte should be set to 0x04. */ - /* Described in the "Operating Channel Attribute" section. */ - p2pie[p2pielen++] = 0x04; - - /* Channel Entry List */ -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(adapt, _FW_LINKED)) { - struct rtw_adapter *pbuddy_adapter = - adapt->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext = - &pbuddy_adapter->mlmeextpriv; - - /* Operating Class */ - if (pbuddy_mlmeext->cur_channel > 14) { - if (pbuddy_mlmeext->cur_channel >= 149) { - p2pie[p2pielen++] = 0x7c; - } else { - p2pie[p2pielen++] = 0x73; - } - } else { - p2pie[p2pielen++] = 0x51; - } - - /* Number of Channels */ - /* Just support 1 channel and this channel is AP's channel */ - p2pie[p2pielen++] = 1; - - /* Channel List */ - p2pie[p2pielen++] = pbuddy_mlmeext->cur_channel; - } else { - int i, j; - for (j = 0; j < pmlmeext->channel_list.reg_classes; j++) { - /* Operating Class */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j]. - reg_class; - - /* Number of Channels */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j]. - channels; - - /* Channel List */ - for (i = 0; - i < - pmlmeext->channel_list.reg_class[j]. - channels; i++) { - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j]. - channel[i]; - } - } - } -#else /* CONFIG_CONCURRENT_MODE */ - { - int i, j; - for (j = 0; j < pmlmeext->channel_list.reg_classes; j++) { - /* Operating Class */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j]. - reg_class; - - /* Number of Channels */ - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j]. - channels; - - /* Channel List */ - for (i = 0; - i < - pmlmeext->channel_list.reg_class[j]. - channels; i++) { - p2pie[p2pielen++] = - pmlmeext->channel_list.reg_class[j]. - channel[i]; - } - } - } -#endif /* CONFIG_CONCURRENT_MODE */ - } - - pframe = - rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, - (unsigned char *)p2pie, &pattrib->pktlen); - -#ifdef CONFIG_WFD - wfdielen = build_invitation_resp_wfd_ie(pwdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; -#endif /* CONFIG_WFD */ - - pattrib->last_txcmdsz = pattrib->pktlen; - - dump_mgntframe(adapt, pmgntframe); - - return; -} - -void issue_p2p_provision_request(struct rtw_adapter *adapt, u8 *pssid, - u8 ussidlen, u8 *pdev_raddr) -{ - unsigned char category = RTW_WLAN_CATEGORY_PUBLIC; - u8 action = P2P_PUB_ACTION_ACTION; - u8 dialogToken = 1; - __be32 p2poui = cpu_to_be32(P2POUI); - u8 oui_subtype = P2P_PROVISION_DISC_REQ; - u8 wpsie[100] = { 0x00 }; - u8 wpsielen = 0; - u32 p2pielen = 0; -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ - - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - DBG_8192D("[%s] In\n", __func__); - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(adapt, pattrib); - - 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; - - memcpy(pwlanhdr->addr1, pdev_raddr, ETH_ALEN); - memcpy(pwlanhdr->addr2, myid(&(adapt->eeprompriv)), ETH_ALEN); - memcpy(pwlanhdr->addr3, pdev_raddr, ETH_ALEN); - - 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); - - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), - &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen)); - pframe = - rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen)); - - p2pielen = - build_prov_disc_request_p2p_ie(pwdinfo, pframe, pssid, ussidlen, - pdev_raddr); - - pframe += p2pielen; - pattrib->pktlen += p2pielen; - - wpsielen = 0; - /* WPS OUI */ - *(__be32 *)(wpsie) = cpu_to_be32(WPSOUI); - wpsielen += 4; - - /* WPS version */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_VER1); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0001); - wpsielen += 2; - - /* Value: */ - wpsie[wpsielen++] = WPS_VERSION_1; /* Version 1.0 */ - - /* Config Method */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_CONF_METHOD); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0002); - wpsielen += 2; - - /* Value: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(pwdinfo->tx_prov_disc_info.wps_config_method_request); - wpsielen += 2; - - pframe = - rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, wpsielen, - (unsigned char *)wpsie, &pattrib->pktlen); - -#ifdef CONFIG_WFD - wfdielen = build_provdisc_req_wfd_ie(pwdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; -#endif /* CONFIG_WFD */ - - pattrib->last_txcmdsz = pattrib->pktlen; - - dump_mgntframe(adapt, pmgntframe); - - return; -} - -static u8 is_matched_in_profilelist(u8 *peermacaddr, - struct profile_info *profileinfo) -{ - u8 i, match_result = 0; - - DBG_8192D("[%s] peermac = %.2X %.2X %.2X %.2X %.2X %.2X\n", __func__, - peermacaddr[0], peermacaddr[1], peermacaddr[2], - peermacaddr[3], peermacaddr[4], peermacaddr[5]); - - for (i = 0; i < P2P_MAX_PERSISTENT_GROUP_NUM; i++, profileinfo++) { - DBG_8192D - ("[%s] profileinfo_mac = %.2X %.2X %.2X %.2X %.2X %.2X\n", - __func__, profileinfo->peermac[0], profileinfo->peermac[1], - profileinfo->peermac[2], profileinfo->peermac[3], - profileinfo->peermac[4], profileinfo->peermac[5]); - if (_rtw_memcmp(peermacaddr, profileinfo->peermac, ETH_ALEN)) { - match_result = 1; - DBG_8192D("[%s] Match!\n", __func__); - break; - } - } - return match_result; -} - -void issue_probersp_p2p(struct rtw_adapter *adapt, unsigned char *da) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - unsigned char *mac; - struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - struct mlme_priv *pmlmepriv = &(adapt->mlmepriv); - /* struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); */ - u16 beacon_interval = 100; - u16 capInfo = 0; - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - u8 wpsie[255] = { 0x00 }; - u32 wpsielen = 0, p2pielen = 0; -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ -#ifdef CONFIG_IOCTL_CFG80211 - struct cfg80211_wifidirect_info *pcfg80211_wdinfo = - &adapt->cfg80211_wdinfo; - struct ieee80211_channel *ieee_ch = - &pcfg80211_wdinfo->remain_on_ch_channel; - u8 listen_channel = - (u8) ieee80211_frequency_to_channel(ieee_ch->center_freq); -#endif /* CONFIG_IOCTL_CFG80211 */ -#ifdef CONFIG_INTEL_WIDI - u8 zero_array_check[L2SDTA_SERVICE_VE_LEN] = { 0x00 }; -#endif /* CONFIG_INTEL_WIDI */ - - /* DBG_8192D("%s\n", __func__); */ - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(adapt, pattrib); - - memset(pmgntframe->buf_addr, 0, WLANHDR_OFFSET + TXDESC_OFFSET); - - pframe = (u8 *)(pmgntframe->buf_addr) + TXDESC_OFFSET; - pwlanhdr = (struct rtw_ieee80211_hdr *)pframe; - - mac = myid(&(adapt->eeprompriv)); - - fctrl = &(pwlanhdr->frame_ctl); - *(fctrl) = 0; - memcpy(pwlanhdr->addr1, da, ETH_ALEN); - memcpy(pwlanhdr->addr2, mac, ETH_ALEN); - - /* Use the device address for BSSID field. */ - memcpy(pwlanhdr->addr3, mac, ETH_ALEN); - - SetSeqNum(pwlanhdr, pmlmeext->mgnt_seq); - pmlmeext->mgnt_seq++; - SetFrameSubType(fctrl, WIFI_PROBERSP); - - pattrib->hdrlen = sizeof(struct rtw_ieee80211_hdr_3addr); - pattrib->pktlen = pattrib->hdrlen; - pframe += pattrib->hdrlen; - - /* timestamp will be inserted by hardware */ - pframe += 8; - pattrib->pktlen += 8; - - /* beacon interval: 2 bytes */ - memcpy(pframe, (unsigned char *)&beacon_interval, 2); - pframe += 2; - pattrib->pktlen += 2; - - /* capability info: 2 bytes */ - /* ESS and IBSS bits must be 0 (defined in the 3.1.2.1.1 of WiFi Direct Spec) */ - capInfo |= cap_ShortPremble; - capInfo |= cap_ShortSlot; - - memcpy(pframe, (unsigned char *)&capInfo, 2); - pframe += 2; - pattrib->pktlen += 2; - - /* SSID */ - pframe = - rtw_set_ie(pframe, _SSID_IE_, 7, pwdinfo->p2p_wildcard_ssid, - &pattrib->pktlen); - - /* supported rates... */ - /* Use the OFDM rate in the P2P probe response frame. (6(B), 9(B), 12, 18, 24, 36, 48, 54) */ - pframe = - rtw_set_ie(pframe, _SUPPORTEDRATES_IE_, 8, pwdinfo->support_rate, - &pattrib->pktlen); - - /* DS parameter set */ -#ifdef CONFIG_IOCTL_CFG80211 - if (wdev_to_priv(adapt->rtw_wdev)->p2p_enabled && - listen_channel != 0) { - pframe = - rtw_set_ie(pframe, _DSSET_IE_, 1, - (unsigned char *)&listen_channel, - &pattrib->pktlen); - } else -#endif /* CONFIG_IOCTL_CFG80211 */ - { - pframe = - rtw_set_ie(pframe, _DSSET_IE_, 1, - (unsigned char *)&pwdinfo->listen_channel, - &pattrib->pktlen); - } - -#ifdef CONFIG_IOCTL_CFG80211 - if (wdev_to_priv(adapt->rtw_wdev)->p2p_enabled) { - if (pmlmepriv->wps_probe_resp_ie != NULL && - pmlmepriv->p2p_probe_resp_ie != NULL) { - /* WPS IE */ - memcpy(pframe, pmlmepriv->wps_probe_resp_ie, - pmlmepriv->wps_probe_resp_ie_len); - pattrib->pktlen += pmlmepriv->wps_probe_resp_ie_len; - pframe += pmlmepriv->wps_probe_resp_ie_len; - - /* P2P IE */ - memcpy(pframe, pmlmepriv->p2p_probe_resp_ie, - pmlmepriv->p2p_probe_resp_ie_len); - pattrib->pktlen += pmlmepriv->p2p_probe_resp_ie_len; - pframe += pmlmepriv->p2p_probe_resp_ie_len; - } - } else -#endif /* CONFIG_IOCTL_CFG80211 */ - { - /* Todo: WPS IE */ - /* Noted by Albert 20100907 */ - /* According to the WPS specification, all the WPS attribute is presented by Big Endian. */ - - wpsielen = 0; - /* WPS OUI */ - *(__be32 *)(wpsie) = cpu_to_be32(WPSOUI); - wpsielen += 4; - - /* WPS version */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_VER1); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0001); - wpsielen += 2; - - /* Value: */ - wpsie[wpsielen++] = WPS_VERSION_1; /* Version 1.0 */ - -#ifdef CONFIG_INTEL_WIDI - /* Commented by Kurt */ - /* Appended WiDi info. only if we did issued_probereq_widi(), and then we saved ven. ext. in pmlmepriv->sa_ext. */ - if (_rtw_memcmp - (pmlmepriv->sa_ext, zero_array_check, - L2SDTA_SERVICE_VE_LEN) == false) { - /* Sec dev type */ - *(u16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_ATTR_SEC_DEV_TYPE_LIST); - wpsielen += 2; - - /* Length: */ - *(u16 *)(wpsie + wpsielen) = cpu_to_be16(0x0008); - wpsielen += 2; - - /* Value: */ - /* Category ID */ - *(u16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_PDT_CID_DISPLAYS); - wpsielen += 2; - - /* OUI */ - *(u32 *)(wpsie + wpsielen) = - cpu_to_be32(INTEL_DEV_TYPE_OUI); - wpsielen += 4; - - *(u16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_PDT_SCID_WIDI_CONSUMER_SINK); - wpsielen += 2; - - /* Vendor Extension */ - memcpy(wpsie + wpsielen, pmlmepriv->sa_ext, - L2SDTA_SERVICE_VE_LEN); - wpsielen += L2SDTA_SERVICE_VE_LEN; - } -#endif /* CONFIG_INTEL_WIDI */ - - /* WiFi Simple Config State */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_ATTR_SIMPLE_CONF_STATE); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0001); - wpsielen += 2; - - /* Value: */ - wpsie[wpsielen++] = WPS_WSC_STATE_NOT_CONFIG; /* Not Configured. */ - - /* Response Type */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_RESP_TYPE); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0001); - wpsielen += 2; - - /* Value: */ - wpsie[wpsielen++] = WPS_RESPONSE_TYPE_8021X; - - /* UUID-E */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_UUID_E); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0010); - wpsielen += 2; - - /* Value: */ - memcpy(wpsie + wpsielen, myid(&adapt->eeprompriv), ETH_ALEN); - wpsielen += 0x10; - - /* Manufacturer */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_ATTR_MANUFACTURER); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0007); - wpsielen += 2; - - /* Value: */ - memcpy(wpsie + wpsielen, "Realtek", 7); - wpsielen += 7; - - /* Model Name */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_MODEL_NAME); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0006); - wpsielen += 2; - - /* Value: */ - memcpy(wpsie + wpsielen, "8192CU", 6); - wpsielen += 6; - - /* Model Number */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_ATTR_MODEL_NUMBER); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0001); - wpsielen += 2; - - /* Value: */ - wpsie[wpsielen++] = 0x31; /* character 1 */ - - /* Serial Number */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_ATTR_SERIAL_NUMBER); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(ETH_ALEN); - wpsielen += 2; - - /* Value: */ - memcpy(wpsie + wpsielen, "123456", ETH_ALEN); - wpsielen += ETH_ALEN; - - /* Primary Device Type */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_ATTR_PRIMARY_DEV_TYPE); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0008); - wpsielen += 2; - - /* Value: */ - /* Category ID */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_PDT_CID_RTK_WIDI); - wpsielen += 2; - - /* OUI */ - *(__be32 *)(wpsie + wpsielen) = cpu_to_be32(WPSOUI); - wpsielen += 4; - - /* Sub Category ID */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_PDT_SCID_RTK_DMP); - wpsielen += 2; - - /* Device Name */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_DEVICE_NAME); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(pwdinfo->device_name_len); - wpsielen += 2; - - /* Value: */ - memcpy(wpsie + wpsielen, pwdinfo->device_name, - pwdinfo->device_name_len); - wpsielen += pwdinfo->device_name_len; - - /* Config Method */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_CONF_METHOD); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0002); - wpsielen += 2; - - /* Value: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(pwdinfo->supported_wps_cm); - wpsielen += 2; - - pframe = - rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, wpsielen, - (unsigned char *)wpsie, &pattrib->pktlen); - - p2pielen = build_probe_resp_p2p_ie(pwdinfo, pframe); - pframe += p2pielen; - pattrib->pktlen += p2pielen; - } - -#ifdef CONFIG_WFD -#ifdef CONFIG_IOCTL_CFG80211 - if (true == pwdinfo->wfd_info->wfd_enable) -#endif /* CONFIG_IOCTL_CFG80211 */ - { - wfdielen = build_probe_resp_wfd_ie(pwdinfo, pframe, 0); - pframe += wfdielen; - pattrib->pktlen += wfdielen; - } -#ifdef CONFIG_IOCTL_CFG80211 - else if (pmlmepriv->wfd_probe_resp_ie != NULL && - pmlmepriv->wfd_probe_resp_ie_len > 0) { - /* WFD IE */ - memcpy(pframe, pmlmepriv->wfd_probe_resp_ie, - pmlmepriv->wfd_probe_resp_ie_len); - pattrib->pktlen += pmlmepriv->wfd_probe_resp_ie_len; - pframe += pmlmepriv->wfd_probe_resp_ie_len; - } -#endif /* CONFIG_IOCTL_CFG80211 */ -#endif /* CONFIG_WFD */ - - pattrib->last_txcmdsz = pattrib->pktlen; - - dump_mgntframe(adapt, pmgntframe); - - return; -} - -static int _issue_probereq_p2p(struct rtw_adapter *adapt, u8 *da, int wait_ack) -{ - int ret = _FAIL; - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - unsigned char *mac; - unsigned char bssrate[NUMRATES]; - struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - int bssrate_len = 0; - u8 bc_addr[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - u8 wpsie[255] = { 0x00 }, p2pie[255] = { - 0x00}; - u16 wpsielen = 0, p2pielen = 0; -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ - - struct mlme_priv *pmlmepriv = &(adapt->mlmepriv); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - goto exit; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(adapt, pattrib); - - memset(pmgntframe->buf_addr, 0, WLANHDR_OFFSET + TXDESC_OFFSET); - - pframe = (u8 *)(pmgntframe->buf_addr) + TXDESC_OFFSET; - pwlanhdr = (struct rtw_ieee80211_hdr *)pframe; - - mac = myid(&(adapt->eeprompriv)); - - fctrl = &(pwlanhdr->frame_ctl); - *(fctrl) = 0; - - if (da) { - memcpy(pwlanhdr->addr1, da, ETH_ALEN); - memcpy(pwlanhdr->addr3, da, ETH_ALEN); - } else { - if ((pwdinfo->p2p_info.scan_op_ch_only) || - (pwdinfo->rx_invitereq_info.scan_op_ch_only)) { - /* This two flags will be set when this is only the P2P client mode. */ - memcpy(pwlanhdr->addr1, - pwdinfo->p2p_peer_interface_addr, ETH_ALEN); - memcpy(pwlanhdr->addr3, - pwdinfo->p2p_peer_interface_addr, ETH_ALEN); - } else { - /* broadcast probe request frame */ - memcpy(pwlanhdr->addr1, bc_addr, ETH_ALEN); - memcpy(pwlanhdr->addr3, bc_addr, ETH_ALEN); - } - } - memcpy(pwlanhdr->addr2, mac, ETH_ALEN); - - SetSeqNum(pwlanhdr, pmlmeext->mgnt_seq); - pmlmeext->mgnt_seq++; - SetFrameSubType(pframe, WIFI_PROBEREQ); - - pframe += sizeof(struct rtw_ieee80211_hdr_3addr); - pattrib->pktlen = sizeof(struct rtw_ieee80211_hdr_3addr); - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_TX_PROVISION_DIS_REQ)) { - pframe = - rtw_set_ie(pframe, _SSID_IE_, - pwdinfo->tx_prov_disc_info.ssid.SsidLength, - pwdinfo->tx_prov_disc_info.ssid.Ssid, - &(pattrib->pktlen)); - } else { - pframe = - rtw_set_ie(pframe, _SSID_IE_, P2P_WILDCARD_SSID_LEN, - pwdinfo->p2p_wildcard_ssid, &(pattrib->pktlen)); - } - /* Use the OFDM rate in the P2P probe request frame. (6(B), 9(B), 12(B), 24(B), 36, 48, 54) */ - pframe = - rtw_set_ie(pframe, _SUPPORTEDRATES_IE_, 8, pwdinfo->support_rate, - &pattrib->pktlen); - -#ifdef CONFIG_IOCTL_CFG80211 - if (wdev_to_priv(adapt->rtw_wdev)->p2p_enabled) { - if (pmlmepriv->wps_probe_req_ie != NULL && - pmlmepriv->p2p_probe_req_ie != NULL) { - /* WPS IE */ - memcpy(pframe, pmlmepriv->wps_probe_req_ie, - pmlmepriv->wps_probe_req_ie_len); - pattrib->pktlen += pmlmepriv->wps_probe_req_ie_len; - pframe += pmlmepriv->wps_probe_req_ie_len; - - /* P2P IE */ - memcpy(pframe, pmlmepriv->p2p_probe_req_ie, - pmlmepriv->p2p_probe_req_ie_len); - pattrib->pktlen += pmlmepriv->p2p_probe_req_ie_len; - pframe += pmlmepriv->p2p_probe_req_ie_len; - } - } else -#endif /* CONFIG_IOCTL_CFG80211 */ - { - /* WPS IE */ - /* Noted by Albert 20110221 */ - /* According to the WPS specification, all the WPS attribute is presented by Big Endian. */ - - wpsielen = 0; - /* WPS OUI */ - *(__be32 *)(wpsie) = cpu_to_be32(WPSOUI); - wpsielen += 4; - - /* WPS version */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_VER1); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0001); - wpsielen += 2; - - /* Value: */ - wpsie[wpsielen++] = WPS_VERSION_1; /* Version 1.0 */ - - if (pmlmepriv->wps_probe_req_ie == NULL) { - /* UUID-E */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_ATTR_UUID_E); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0010); - wpsielen += 2; - - /* Value: */ - memcpy(wpsie + wpsielen, myid(&adapt->eeprompriv), - ETH_ALEN); - wpsielen += 0x10; - - /* Config Method */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_ATTR_CONF_METHOD); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0002); - wpsielen += 2; - - /* Value: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(pwdinfo->supported_wps_cm); - wpsielen += 2; - } - - /* Device Name */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_DEVICE_NAME); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(pwdinfo->device_name_len); - wpsielen += 2; - - /* Value: */ - memcpy(wpsie + wpsielen, pwdinfo->device_name, - pwdinfo->device_name_len); - wpsielen += pwdinfo->device_name_len; - - /* Primary Device Type */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_ATTR_PRIMARY_DEV_TYPE); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0008); - wpsielen += 2; - - /* Value: */ - /* Category ID */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_PDT_CID_MULIT_MEDIA); - wpsielen += 2; - - /* OUI */ - *(__be32 *)(wpsie + wpsielen) = cpu_to_be32(WPSOUI); - wpsielen += 4; - - /* Sub Category ID */ - *(__be16 *)(wpsie + wpsielen) = - cpu_to_be16(WPS_PDT_SCID_MEDIA_SERVER); - wpsielen += 2; - - /* Device Password ID */ - /* Type: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_DEVICE_PWID); - wpsielen += 2; - - /* Length: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(0x0002); - wpsielen += 2; - - /* Value: */ - *(__be16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_DPID_REGISTRAR_SPEC); /* Registrar-specified */ - wpsielen += 2; - - pframe = - rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, wpsielen, - (unsigned char *)wpsie, &pattrib->pktlen); - - /* P2P OUI */ - p2pielen = 0; - p2pie[p2pielen++] = 0x50; - p2pie[p2pielen++] = 0x6F; - p2pie[p2pielen++] = 0x9A; - p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */ - - /* Commented by Albert 20110221 */ - /* According to the P2P Specification, the probe request frame should contain 5 P2P attributes */ - /* 1. P2P Capability */ - /* 2. P2P Device ID if this probe request wants to find the specific P2P device */ - /* 3. Listen Channel */ - /* 4. Extended Listen Timing */ - /* 5. Operating Channel if this WiFi is working as the group owner now */ - - /* P2P Capability */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CAPABILITY; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0002); - p2pielen += 2; - - /* Value: */ - /* Device Capability Bitmap, 1 byte */ - p2pie[p2pielen++] = DMP_P2P_DEVCAP_SUPPORT; - - /* Group Capability Bitmap, 1 byte */ - if (pwdinfo->persistent_supported) - p2pie[p2pielen++] = - P2P_GRPCAP_PERSISTENT_GROUP | - DMP_P2P_GRPCAP_SUPPORT; - else - p2pie[p2pielen++] = DMP_P2P_GRPCAP_SUPPORT; - - /* Listen Channel */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_LISTEN_CH; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0005); - p2pielen += 2; - - /* Value: */ - /* Country String */ - p2pie[p2pielen++] = 'X'; - p2pie[p2pielen++] = 'X'; - - /* The third byte should be set to 0x04. */ - /* Described in the "Operating Channel Attribute" section. */ - p2pie[p2pielen++] = 0x04; - - /* Operating Class */ - p2pie[p2pielen++] = 0x51; /* Copy from SD7 */ - - /* Channel Number */ - p2pie[p2pielen++] = pwdinfo->listen_channel; /* listen channel */ - - /* Extended Listen Timing */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_EX_LISTEN_TIMING; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0004); - p2pielen += 2; - - /* Value: */ - /* Availability Period */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0xFFFF); - p2pielen += 2; - - /* Availability Interval */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0xFFFF); - p2pielen += 2; - - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) { - /* Operating Channel (if this WiFi is working as the group owner now) */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_OPERATING_CH; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0005); - p2pielen += 2; - - /* Value: */ - /* Country String */ - p2pie[p2pielen++] = 'X'; - p2pie[p2pielen++] = 'X'; - - /* The third byte should be set to 0x04. */ - /* Described in the "Operating Channel Attribute" section. */ - p2pie[p2pielen++] = 0x04; - - /* Operating Class */ - p2pie[p2pielen++] = 0x51; - - /* Channel Number */ - p2pie[p2pielen++] = pwdinfo->operating_channel; - } - - pframe = - rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, - (unsigned char *)p2pie, &pattrib->pktlen); - - if (pmlmepriv->wps_probe_req_ie != NULL) { - /* WPS IE */ - memcpy(pframe, pmlmepriv->wps_probe_req_ie, - pmlmepriv->wps_probe_req_ie_len); - pattrib->pktlen += pmlmepriv->wps_probe_req_ie_len; - pframe += pmlmepriv->wps_probe_req_ie_len; - } - } - -#ifdef CONFIG_WFD -#ifdef CONFIG_IOCTL_CFG80211 - if (true == pwdinfo->wfd_info->wfd_enable) -#endif - { - wfdielen = build_probe_req_wfd_ie(pwdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; - } -#ifdef CONFIG_IOCTL_CFG80211 - else if (pmlmepriv->wfd_probe_req_ie != NULL && - pmlmepriv->wfd_probe_req_ie_len > 0) { - /* WFD IE */ - memcpy(pframe, pmlmepriv->wfd_probe_req_ie, - pmlmepriv->wfd_probe_req_ie_len); - pattrib->pktlen += pmlmepriv->wfd_probe_req_ie_len; - pframe += pmlmepriv->wfd_probe_req_ie_len; - } -#endif /* CONFIG_IOCTL_CFG80211 */ -#endif /* CONFIG_WFD */ - - pattrib->last_txcmdsz = pattrib->pktlen; - - RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_, - ("issuing probe_req, tx_len=%d\n", pattrib->last_txcmdsz)); - - if (wait_ack) { - ret = dump_mgntframe_and_wait_ack(adapt, pmgntframe); - } else { - dump_mgntframe(adapt, pmgntframe); - ret = _SUCCESS; - } - -exit: - return ret; -} - -inline void issue_probereq_p2p(struct rtw_adapter *adapter, u8 *da) -{ - _issue_probereq_p2p(adapter, da, false); -} - -int issue_probereq_p2p_ex(struct rtw_adapter *adapter, u8 *da, int try_cnt, - int wait_ms) -{ - int ret; - int i = 0; - u32 start = rtw_get_current_time(); - - do { - ret = - _issue_probereq_p2p(adapter, da, - wait_ms > 0 ? true : false); - - i++; - - if (adapter->bDriverStopped || adapter->bSurpriseRemoved) - break; - - if (i < try_cnt && wait_ms > 0 && ret == _FAIL) - rtw_msleep_os(wait_ms); - - } while ((i < try_cnt) && ((ret == _FAIL) || (wait_ms == 0))); - - if (ret != _FAIL) { - ret = _SUCCESS; -#ifndef DBG_XMIT_ACK - goto exit; -#endif - } - - if (try_cnt && wait_ms) { - if (da) - DBG_8192D(FUNC_ADPT_FMT - " to %pM, ch:%u%s, %d/%d in %u ms\n", - FUNC_ADPT_ARG(adapter), da, - rtw_get_oper_ch(adapter), - ret == _SUCCESS ? ", acked" : "", i, try_cnt, - rtw_get_passing_time_ms(start)); - else - DBG_8192D(FUNC_ADPT_FMT ", ch:%u%s, %d/%d in %u ms\n", - FUNC_ADPT_ARG(adapter), - rtw_get_oper_ch(adapter), - ret == _SUCCESS ? ", acked" : "", i, try_cnt, - rtw_get_passing_time_ms(start)); - } -exit: - return ret; -} - -#endif /* CONFIG_P2P */ - -static s32 rtw_action_public_decache(struct recv_frame_hdr *recv_frame, s32 token) -{ - struct rtw_adapter *adapter = recv_frame->adapter; - struct mlme_ext_priv *mlmeext = &(adapter->mlmeextpriv); - u8 *frame = recv_frame->rx_data; - u16 seq_ctrl = ((recv_frame->attrib.seq_num & 0xffff) << 4) | - (recv_frame->attrib.frag_num & 0xf); - - if (GetRetry(frame)) { - if (token >= 0) { - if ((seq_ctrl == mlmeext->action_public_rxseq) && - (token == mlmeext->action_public_dialog_token)) { - DBG_8192D(FUNC_ADPT_FMT - " seq_ctrl=0x%x, rxseq=0x%x, token:%d\n", - FUNC_ADPT_ARG(adapter), seq_ctrl, - mlmeext->action_public_rxseq, token); - return _FAIL; - } - } else { - if (seq_ctrl == mlmeext->action_public_rxseq) { - DBG_8192D(FUNC_ADPT_FMT - " seq_ctrl=0x%x, rxseq=0x%x\n", - FUNC_ADPT_ARG(adapter), seq_ctrl, - mlmeext->action_public_rxseq); - return _FAIL; - } - } - } - - mlmeext->action_public_rxseq = seq_ctrl; - - if (token >= 0) - mlmeext->action_public_dialog_token = token; - - return _SUCCESS; -} - -static unsigned int on_action_public_p2p(struct recv_frame_hdr *precv_frame) -{ - struct rtw_adapter *adapt = precv_frame->adapter; - u8 *pframe = precv_frame->rx_data; - uint len = precv_frame->len; - u8 *frame_body; - u8 dialogToken = 0; -#ifdef CONFIG_P2P - u8 *p2p_ie; - u32 p2p_ielen, wps_ielen; - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - u8 result = P2P_STATUS_SUCCESS; - u8 empty_addr[ETH_ALEN] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; -#endif /* CONFIG_P2P */ + struct rtw_adapter *adapt = precv_frame->adapter; + u8 *pframe = precv_frame->rx_data; + uint len = precv_frame->len; + u8 *frame_body; + u8 dialogToken = 0; frame_body = - (unsigned char *)(pframe + sizeof(struct rtw_ieee80211_hdr_3addr)); - - dialogToken = frame_body[7]; - - if (rtw_action_public_decache(precv_frame, dialogToken) == _FAIL) - return _FAIL; - -#ifdef CONFIG_P2P - _cancel_timer_ex(&pwdinfo->reset_ch_sitesurvey); -#ifdef CONFIG_IOCTL_CFG80211 - if (wdev_to_priv(adapt->rtw_wdev)->p2p_enabled) { - rtw_cfg80211_rx_p2p_action_public(adapt, pframe, len); - } else -#endif /* CONFIG_IOCTL_CFG80211 */ - { - /* Do nothing if the driver doesn't enable the P2P function. */ - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE) || - rtw_p2p_chk_state(pwdinfo, P2P_STATE_IDLE)) - return _SUCCESS; - - len -= sizeof(struct rtw_ieee80211_hdr_3addr); - - switch (frame_body[6]) { /* OUI Subtype */ - case P2P_GO_NEGO_REQ: - DBG_8192D("[%s] Got GO Nego Req Frame\n", - __func__); - memset(&pwdinfo->groupid_info, 0x00, - sizeof(struct group_id_info)); - - if (rtw_p2p_chk_state - (pwdinfo, P2P_STATE_RX_PROVISION_DIS_REQ)) { - rtw_p2p_set_state(pwdinfo, - rtw_p2p_pre_state - (pwdinfo)); - } - - if (rtw_p2p_chk_state - (pwdinfo, P2P_STATE_GONEGO_FAIL)) { - /* Commented by Albert 20110526 */ - /* In this case, this means the previous nego fail doesn't be reset yet. */ - _cancel_timer_ex(&pwdinfo-> - restore_p2p_state_timer); - /* Restore the previous p2p state */ - rtw_p2p_set_state(pwdinfo, - rtw_p2p_pre_state - (pwdinfo)); - DBG_8192D - ("[%s] Restore the previous p2p state to %d\n", - __func__, rtw_p2p_state(pwdinfo)); - } -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(adapt, _FW_LINKED)) { - _cancel_timer_ex(&pwdinfo-> - ap_p2p_switch_timer); - } -#endif /* CONFIG_CONCURRENT_MODE */ - - /* Commented by Kurt 20110902 */ - /* Add if statement to avoid receiving duplicate prov disc req. such that pre_p2p_state would be covered. */ - if (!rtw_p2p_chk_state - (pwdinfo, P2P_STATE_GONEGO_ING)) - rtw_p2p_set_pre_state(pwdinfo, - rtw_p2p_state - (pwdinfo)); - - /* Commented by Kurt 20120113 */ - /* Get peer_dev_addr here if peer doesn't issue prov_disc frame. */ -/* XXXXXXXX */ - if (_rtw_memcmp(pwdinfo->rx_prov_disc_info.peerDevAddr, empty_addr, ETH_ALEN)) - memcpy(pwdinfo->rx_prov_disc_info.peerDevAddr, - GetAddr2Ptr(pframe), ETH_ALEN); - - result = - process_p2p_group_negotation_req(pwdinfo, - frame_body, - len); - issue_p2p_GO_response(adapt, - GetAddr2Ptr(pframe), - frame_body, len, result); -#ifdef CONFIG_INTEL_WIDI - if ((adapt->mlmepriv.widi_state == INTEL_WIDI_STATE_LISTEN) && - (adapt->mlmepriv.widi_state != INTEL_WIDI_STATE_WFD_CONNECTION)) { - adapt->mlmepriv.widi_state = - INTEL_WIDI_STATE_WFD_CONNECTION; - intel_widi_wk_cmd(adapt, - INTEL_WIDI_LISTEN_STOP_WK, - NULL); - } -#endif /* CONFIG_INTEL_WIDI */ - - /* Commented by Albert 20110718 */ - /* No matter negotiating or negotiation failure, the driver should set up the restore P2P state timer. */ -#ifdef CONFIG_CONCURRENT_MODE - /* Commented by Albert 20120107 */ - _set_timer(&pwdinfo->restore_p2p_state_timer, - 3000); -#else /* CONFIG_CONCURRENT_MODE */ - _set_timer(&pwdinfo->restore_p2p_state_timer, - 5000); -#endif /* CONFIG_CONCURRENT_MODE */ - break; - case P2P_GO_NEGO_RESP: - DBG_8192D("[%s] Got GO Nego Resp Frame\n", - __func__); - - if (rtw_p2p_chk_state - (pwdinfo, P2P_STATE_GONEGO_ING)) { - /* Commented by Albert 20110425 */ - /* The restore timer is enabled when issuing the nego request frame of rtw_p2p_connect function. */ - _cancel_timer_ex(&pwdinfo-> - restore_p2p_state_timer); - pwdinfo->nego_req_info.benable = false; - result = - process_p2p_group_negotation_resp - (pwdinfo, frame_body, len); - issue_p2p_GO_confirm(pwdinfo->padapter, - GetAddr2Ptr - (pframe), result); - if (P2P_STATUS_SUCCESS == result) { - if (rtw_p2p_role(pwdinfo) == - P2P_ROLE_CLIENT) { - pwdinfo->p2p_info. - operation_ch[0] = - pwdinfo-> - peer_operating_ch; - pwdinfo->p2p_info. - scan_op_ch_only = 1; - _set_timer(&pwdinfo-> - reset_ch_sitesurvey2, - P2P_RESET_SCAN_CH); - } - } - - /* Reset the dialog token for group negotiation frames. */ - pwdinfo->negotiation_dialog_token = 1; - - if (rtw_p2p_chk_state - (pwdinfo, P2P_STATE_GONEGO_FAIL)) { - _set_timer(&pwdinfo-> - restore_p2p_state_timer, - 5000); - } - } else { - DBG_8192D - ("[%s] Skipped GO Nego Resp Frame (p2p_state != P2P_STATE_GONEGO_ING)\n", - __func__); - } - - break; - case P2P_GO_NEGO_CONF: - DBG_8192D("[%s] Got GO Nego Confirm Frame\n", - __func__); - result = - process_p2p_group_negotation_confirm - (pwdinfo, frame_body, len); - if (P2P_STATUS_SUCCESS == result) { - if (rtw_p2p_role(pwdinfo) == - P2P_ROLE_CLIENT) { - pwdinfo->p2p_info. - operation_ch[0] = - pwdinfo->peer_operating_ch; - pwdinfo->p2p_info. - scan_op_ch_only = 1; - _set_timer(&pwdinfo-> - reset_ch_sitesurvey2, - P2P_RESET_SCAN_CH); - } - } - break; - case P2P_INVIT_REQ: - /* Added by Albert 2010/10/05 */ - /* Received the P2P Invite Request frame. */ - - DBG_8192D("[%s] Got invite request frame!\n", - __func__); - p2p_ie = rtw_get_p2p_ie(frame_body + _PUBLIC_ACTION_IE_OFFSET_, - len - _PUBLIC_ACTION_IE_OFFSET_, - NULL, &p2p_ielen); - if (p2p_ie) { - /* Parse the necessary information from the P2P Invitation Request frame. */ - /* For example: The MAC address of sending this P2P Invitation Request frame. */ - u32 attr_contentlen = 0; - u8 status_code = - P2P_STATUS_FAIL_INFO_UNAVAILABLE; - struct group_id_info group_id; - u8 invitation_flag = 0; - - rtw_get_p2p_attr_content(p2p_ie, - p2p_ielen, - P2P_ATTR_INVITATION_FLAGS, - &invitation_flag, - &attr_contentlen); - if (attr_contentlen) { - rtw_get_p2p_attr_content(p2p_ie, - p2p_ielen, - P2P_ATTR_GROUP_BSSID, - pwdinfo-> - p2p_peer_interface_addr, - &attr_contentlen); - /* Commented by Albert 20120510 */ - /* Copy to the pwdinfo->p2p_peer_interface_addr. */ - /* So that the WFD UI (or Sigma) can get the peer interface address by using the following command. */ - /* #> iwpriv wlan0 p2p_get peer_ifa */ - /* After having the peer interface address, the sigma can find the correct conf file for wpa_supplicant. */ - - if (attr_contentlen) { - DBG_8192D - ("[%s] GO's BSSID = %.2X %.2X %.2X %.2X %.2X %.2X\n", - __func__, - pwdinfo-> - p2p_peer_interface_addr - [0], - pwdinfo-> - p2p_peer_interface_addr - [1], - pwdinfo-> - p2p_peer_interface_addr - [2], - pwdinfo-> - p2p_peer_interface_addr - [3], - pwdinfo-> - p2p_peer_interface_addr - [4], - pwdinfo-> - p2p_peer_interface_addr - [5]); - } - if (invitation_flag & - P2P_INVITATION_FLAGS_PERSISTENT) { - /* Re-invoke the persistent group. */ - - memset(&group_id, 0x00, - sizeof(struct - group_id_info)); - rtw_get_p2p_attr_content - (p2p_ie, p2p_ielen, - P2P_ATTR_GROUP_ID, - (u8 *)&group_id, - &attr_contentlen); - if (attr_contentlen) { - if (_rtw_memcmp(group_id.go_device_addr, myid - (&adapt->eeprompriv), ETH_ALEN)) { - /* The p2p device sending this p2p invitation - * request wants this Wi-Fi device to be the - * persistent GO. */ - rtw_p2p_set_state - (pwdinfo, - P2P_STATE_RECV_INVITE_REQ_GO); - rtw_p2p_set_role - (pwdinfo, - P2P_ROLE_GO); - status_code - = - P2P_STATUS_SUCCESS; - } else { - /* The p2p device sending this p2p invitation request wants to be the persistent GO. */ - if (is_matched_in_profilelist(pwdinfo->p2p_peer_interface_addr, &pwdinfo->profileinfo[0])) { - u8 operatingch_info[5] = { 0x00 }; - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_OPERATING_CH, operatingch_info, &attr_contentlen)) { - if (rtw_ch_set_search_ch(adapt->mlmeextpriv.channel_set, (u32) operatingch_info[4])) { - /* The operating channel is acceptable for this device. */ - pwdinfo-> - rx_invitereq_info. - operation_ch - [0] - = - operatingch_info - [4]; - pwdinfo-> - rx_invitereq_info. - scan_op_ch_only - = - 1; - _set_timer - (&pwdinfo-> - reset_ch_sitesurvey, - P2P_RESET_SCAN_CH); - rtw_p2p_set_state - (pwdinfo, - P2P_STATE_RECV_INVITE_REQ_MATCH); - rtw_p2p_set_role - (pwdinfo, - P2P_ROLE_CLIENT); - status_code - = - P2P_STATUS_SUCCESS; - } else { - /* The operating channel isn't supported by this device. */ - rtw_p2p_set_state - (pwdinfo, - P2P_STATE_RECV_INVITE_REQ_DISMATCH); - rtw_p2p_set_role - (pwdinfo, - P2P_ROLE_DEVICE); - status_code - = - P2P_STATUS_FAIL_NO_COMMON_CH; - _set_timer - (&pwdinfo-> - restore_p2p_state_timer, - 3000); - } - } else { - /* Commented by Albert 20121130 */ - /* Intel will use the different P2P IE to store the operating channel information */ - /* Workaround for Intel WiDi 3.5 */ - rtw_p2p_set_state - (pwdinfo, - P2P_STATE_RECV_INVITE_REQ_MATCH); - rtw_p2p_set_role - (pwdinfo, - P2P_ROLE_CLIENT); - status_code - = - P2P_STATUS_SUCCESS; - } - } else { - rtw_p2p_set_state - (pwdinfo, - P2P_STATE_RECV_INVITE_REQ_DISMATCH); -#ifdef CONFIG_INTEL_WIDI - memcpy - (pwdinfo-> - p2p_peer_device_addr, - group_id. - go_device_addr, - ETH_ALEN); - rtw_p2p_set_role - (pwdinfo, - P2P_ROLE_CLIENT); -#endif /* CONFIG_INTEL_WIDI */ - - status_code - = - P2P_STATUS_FAIL_UNKNOWN_P2PGROUP; - } - } - } else { - DBG_8192D - ("[%s] P2P Group ID Attribute NOT FOUND!\n", - __func__); - status_code = - P2P_STATUS_FAIL_INFO_UNAVAILABLE; - } - } else { - /* Received the invitation to join a P2P group. */ - - memset(&group_id, 0x00, - sizeof(struct - group_id_info)); - rtw_get_p2p_attr_content - (p2p_ie, p2p_ielen, - P2P_ATTR_GROUP_ID, - (u8 *)&group_id, - &attr_contentlen); - if (attr_contentlen) { - if (_rtw_memcmp(group_id.go_device_addr, - myid (&adapt->eeprompriv), ETH_ALEN)) { - /* In this case, the GO can't be myself. */ - rtw_p2p_set_state - (pwdinfo, - P2P_STATE_RECV_INVITE_REQ_DISMATCH); - status_code - = - P2P_STATUS_FAIL_INFO_UNAVAILABLE; - } else { - /* The p2p device sending this p2p invitation request wants to join an existing P2P group */ - /* Commented by Albert 2012/06/28 */ - /* In this case, this Wi-Fi device should use the iwpriv command to get the peer device address. */ - /* The peer device address should be the destination address for the provisioning discovery request. */ - /* Then, this Wi-Fi device should use the iwpriv command to get the peer interface address. */ - /* The peer interface address should be the address for WPS mac address */ - memcpy - (pwdinfo-> - p2p_peer_device_addr, - group_id. - go_device_addr, - ETH_ALEN); - rtw_p2p_set_role - (pwdinfo, - P2P_ROLE_CLIENT); - rtw_p2p_set_state - (pwdinfo, - P2P_STATE_RECV_INVITE_REQ_JOIN); - status_code - = - P2P_STATUS_SUCCESS; - } - } else { - DBG_8192D - ("[%s] P2P Group ID Attribute NOT FOUND!\n", - __func__); - status_code = - P2P_STATUS_FAIL_INFO_UNAVAILABLE; - } - } - } else { - DBG_8192D - ("[%s] P2P Invitation Flags Attribute NOT FOUND!\n", - __func__); - status_code = - P2P_STATUS_FAIL_INFO_UNAVAILABLE; - } - - DBG_8192D("[%s] status_code = %d\n", - __func__, status_code); - - pwdinfo->inviteresp_info.token = - frame_body[7]; - issue_p2p_invitation_response(adapt, - GetAddr2Ptr - (pframe), - pwdinfo-> - inviteresp_info. - token, - status_code); - } -#ifdef CONFIG_INTEL_WIDI - if ((adapt->mlmepriv.widi_state == INTEL_WIDI_STATE_LISTEN) && - (adapt->mlmepriv.widi_state != INTEL_WIDI_STATE_WFD_CONNECTION)) { - adapt->mlmepriv.widi_state = - INTEL_WIDI_STATE_WFD_CONNECTION; - intel_widi_wk_cmd(adapt, - INTEL_WIDI_LISTEN_STOP_WK, - NULL); - } -#endif /* CONFIG_INTEL_WIDI */ - break; - case P2P_INVIT_RESP: - { - u8 attr_content = 0x00; - u32 attr_contentlen = 0; - - DBG_8192D("[%s] Got invite response frame!\n", - __func__); - _cancel_timer_ex(&pwdinfo->restore_p2p_state_timer); - p2p_ie = rtw_get_p2p_ie(frame_body + _PUBLIC_ACTION_IE_OFFSET_, - len - _PUBLIC_ACTION_IE_OFFSET_, - NULL, &p2p_ielen); - if (p2p_ie) { - rtw_get_p2p_attr_content(p2p_ie, - p2p_ielen, - P2P_ATTR_STATUS, - &attr_content, - &attr_contentlen); - - if (attr_contentlen == 1) { - DBG_8192D("[%s] Status = %d\n", - __func__, - attr_content); - pwdinfo->invitereq_info. - benable = false; - - if (attr_content == - P2P_STATUS_SUCCESS) { - if (_rtw_memcmp - (pwdinfo-> - invitereq_info. - go_bssid, - myid(&adapt-> - eeprompriv), - ETH_ALEN)) { - rtw_p2p_set_role - (pwdinfo, - P2P_ROLE_GO); - } else { - rtw_p2p_set_role - (pwdinfo, - P2P_ROLE_CLIENT); - } - rtw_p2p_set_state - (pwdinfo, - P2P_STATE_RX_INVITE_RESP_OK); - } else { - rtw_p2p_set_role - (pwdinfo, - P2P_ROLE_DEVICE); - rtw_p2p_set_state - (pwdinfo, - P2P_STATE_RX_INVITE_RESP_FAIL); - } - } else { - rtw_p2p_set_role(pwdinfo, - P2P_ROLE_DEVICE); - rtw_p2p_set_state(pwdinfo, - P2P_STATE_RX_INVITE_RESP_FAIL); - } - } else { - rtw_p2p_set_role(pwdinfo, - P2P_ROLE_DEVICE); - rtw_p2p_set_state(pwdinfo, - P2P_STATE_RX_INVITE_RESP_FAIL); - } - - if (rtw_p2p_chk_state - (pwdinfo, P2P_STATE_RX_INVITE_RESP_FAIL)) { - _set_timer(&pwdinfo-> - restore_p2p_state_timer, - 5000); - } - break; - } - case P2P_DEVDISC_REQ: - - process_p2p_devdisc_req(pwdinfo, pframe, len); - - break; - - case P2P_DEVDISC_RESP: - break; - case P2P_PROVISION_DISC_REQ: - DBG_8192D - ("[%s] Got Provisioning Discovery Request Frame\n", - __func__); - process_p2p_provdisc_req(pwdinfo, pframe, len); - memcpy(pwdinfo->rx_prov_disc_info.peerDevAddr, - GetAddr2Ptr(pframe), ETH_ALEN); - - /* Add the following statement to avoid receiving - * duplicate prov disc req. such that pre_p2p_state - * would be covered. */ - if (!rtw_p2p_chk_state - (pwdinfo, P2P_STATE_RX_PROVISION_DIS_REQ)) - rtw_p2p_set_pre_state(pwdinfo, - rtw_p2p_state(pwdinfo)); - - rtw_p2p_set_state(pwdinfo, - P2P_STATE_RX_PROVISION_DIS_REQ); - _set_timer(&pwdinfo->restore_p2p_state_timer, - P2P_PROVISION_TIMEOUT); -#ifdef CONFIG_INTEL_WIDI - if ((adapt->mlmepriv.widi_state == INTEL_WIDI_STATE_LISTEN) && - (adapt->mlmepriv.widi_state != INTEL_WIDI_STATE_WFD_CONNECTION)) { - adapt->mlmepriv.widi_state = - INTEL_WIDI_STATE_WFD_CONNECTION; - intel_widi_wk_cmd(adapt, - INTEL_WIDI_LISTEN_STOP_WK, - NULL); - } -#endif /* CONFIG_INTEL_WIDI */ - break; + (unsigned char *)(pframe + sizeof(struct rtw_ieee80211_hdr_3addr)); - case P2P_PROVISION_DISC_RESP: - /* Commented by Albert 20110707 */ - /* Should we check the pwdinfo->tx_prov_disc_info.bsent flag here?? */ - DBG_8192D - ("[%s] Got Provisioning Discovery Response Frame\n", - __func__); - /* Commented by Albert 20110426 */ - /* The restore timer is enabled when issuing the - * provisioing request frame in rtw_p2p_prov_disc - * function. */ - _cancel_timer_ex(&pwdinfo->restore_p2p_state_timer); - rtw_p2p_set_state(pwdinfo, - P2P_STATE_RX_PROVISION_DIS_RSP); - _set_timer(&pwdinfo->restore_p2p_state_timer, - P2P_PROVISION_TIMEOUT); - break; - } - } -#endif /* CONFIG_P2P */ + dialogToken = frame_body[7]; + if (rtw_action_public_decache(precv_frame, dialogToken) == _FAIL) + return _FAIL; return _SUCCESS; } @@ -5769,12 +2208,10 @@ static unsigned int on_action_public_default(struct recv_frame_hdr *precv_frame, if (rtw_action_public_decache(precv_frame, token) == _FAIL) goto exit; -#ifdef CONFIG_IOCTL_CFG80211 cnt += sprintf((msg + cnt), "%s(token:%u)", action_public_str(action), token); rtw_cfg80211_rx_action(adapter, pframe, frame_len, msg); -#endif ret = _SUCCESS; @@ -5829,54 +2266,6 @@ unsigned int OnAction_wmm(struct rtw_adapter *adapt, unsigned int OnAction_p2p(struct rtw_adapter *adapt, struct recv_frame_hdr *precv_frame) { -#ifdef CONFIG_P2P - u8 *frame_body; - u8 category, OUI_Subtype; - u8 *pframe = precv_frame->rx_data; - uint len = precv_frame->len; - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - - DBG_8192D("%s\n", __func__); - - /* check RA matches or not */ - if (!_rtw_memcmp(myid(&(adapt->eeprompriv)), GetAddr1Ptr(pframe), ETH_ALEN)) /* for if1, sta/ap mode */ - return _SUCCESS; - - frame_body = - (unsigned char *)(pframe + sizeof(struct rtw_ieee80211_hdr_3addr)); - - category = frame_body[0]; - if (category != RTW_WLAN_CATEGORY_P2P) - return _SUCCESS; - - if (be32_to_cpu(*((__be32 *)(frame_body + 1))) != P2POUI) - return _SUCCESS; - -#ifdef CONFIG_IOCTL_CFG80211 - if (wdev_to_priv(adapt->rtw_wdev)->p2p_enabled) { - rtw_cfg80211_rx_action_p2p(adapt, pframe, len); - return _SUCCESS; - } else -#endif /* CONFIG_IOCTL_CFG80211 */ - { - len -= sizeof(struct rtw_ieee80211_hdr_3addr); - OUI_Subtype = frame_body[5]; - switch (OUI_Subtype) { - case P2P_NOTICE_OF_ABSENCE: - break; - case P2P_PRESENCE_REQUEST: - process_p2p_presence_req(pwdinfo, pframe, len); - break; - case P2P_PRESENCE_RESPONSE: - break; - case P2P_GO_DISC_REQUEST: - break; - default: - break; - } - } -#endif /* CONFIG_P2P */ - return _SUCCESS; } @@ -6092,28 +2481,21 @@ void issue_beacon(struct rtw_adapter *adapt) struct pkt_attrib *pattrib; unsigned char *pframe; struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; + __le16 *fctrl; unsigned int rate_len; struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); -#if defined (CONFIG_92D_AP_MODE) && defined (CONFIG_NATIVEAP_MLME) struct mlme_priv *pmlmepriv = &(adapt->mlmepriv); -#endif /* if defined (CONFIG_92D_AP_MODE) && defined (CONFIG_NATIVEAP_MLME) */ struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); u8 bc_addr[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); -#endif /* CONFIG_P2P */ pmgntframe = alloc_mgtxmitframe(pxmitpriv); if (pmgntframe == NULL) { DBG_8192D("%s, alloc mgnt frame fail\n", __func__); return; } -#if defined (CONFIG_92D_AP_MODE) && defined (CONFIG_NATIVEAP_MLME) spin_lock_bh(&pmlmepriv->bcn_update_lock); -#endif /* if defined (CONFIG_92D_AP_MODE) && defined (CONFIG_NATIVEAP_MLME) */ /* update attribute */ pattrib = &pmgntframe->attrib; @@ -6140,122 +2522,6 @@ void issue_beacon(struct rtw_adapter *adapt) pattrib->pktlen = sizeof(struct rtw_ieee80211_hdr_3addr); if ((pmlmeinfo->state & 0x03) == WIFI_FW_AP_STATE) { - /* DBG_8192D("ie len=%d\n", cur_network->IELength); */ -#ifdef CONFIG_P2P - /* for P2P : Primary Device Type & Device Name */ - u32 wpsielen = 0, insert_len = 0; - u8 *wpsie = NULL; - wpsie = - rtw_get_wps_ie(cur_network->IEs + _FIXED_IE_LENGTH_, - cur_network->IELength - _FIXED_IE_LENGTH_, - NULL, &wpsielen); - - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO) && wpsie && wpsielen > 0) { - uint wps_offset, remainder_ielen; - u8 *premainder_ie, *pframe_wscie; - - wps_offset = (uint) (wpsie - cur_network->IEs); - - premainder_ie = wpsie + wpsielen; - - remainder_ielen = - cur_network->IELength - wps_offset - wpsielen; - -#ifdef CONFIG_IOCTL_CFG80211 - if (wdev_to_priv(adapt->rtw_wdev)->p2p_enabled) { - if (pmlmepriv->wps_beacon_ie && pmlmepriv->wps_beacon_ie_len > 0) { - memcpy(pframe, cur_network->IEs, - wps_offset); - pframe += wps_offset; - pattrib->pktlen += wps_offset; - - memcpy(pframe, pmlmepriv->wps_beacon_ie, - pmlmepriv->wps_beacon_ie_len); - pframe += pmlmepriv->wps_beacon_ie_len; - pattrib->pktlen += - pmlmepriv->wps_beacon_ie_len; - - /* copy remainder_ie to pframe */ - memcpy(pframe, premainder_ie, - remainder_ielen); - pframe += remainder_ielen; - pattrib->pktlen += remainder_ielen; - } else { - memcpy(pframe, cur_network->IEs, - cur_network->IELength); - pframe += cur_network->IELength; - pattrib->pktlen += - cur_network->IELength; - } - } else -#endif /* CONFIG_IOCTL_CFG80211 */ - { - pframe_wscie = pframe + wps_offset; - memcpy(pframe, cur_network->IEs, - wps_offset + wpsielen); - pframe += (wps_offset + wpsielen); - pattrib->pktlen += (wps_offset + wpsielen); - - /* now pframe is end of wsc ie, insert Primary Device Type & Device Name */ - /* Primary Device Type */ - /* Type: */ - *(__be16 *)(pframe + insert_len) = - cpu_to_be16(WPS_ATTR_PRIMARY_DEV_TYPE); - insert_len += 2; - - /* Length: */ - *(__be16 *)(pframe + insert_len) = - cpu_to_be16(0x0008); - insert_len += 2; - - /* Value: */ - /* Category ID */ - *(__be16 *)(pframe + insert_len) = - cpu_to_be16(WPS_PDT_CID_MULIT_MEDIA); - insert_len += 2; - - /* OUI */ - *(__be32 *)(pframe + insert_len) = - cpu_to_be32(WPSOUI); - insert_len += 4; - - /* Sub Category ID */ - *(__be16 *)(pframe + insert_len) = - cpu_to_be16(WPS_PDT_SCID_MEDIA_SERVER); - insert_len += 2; - - /* Device Name */ - /* Type: */ - *(__be16 *)(pframe + insert_len) = - cpu_to_be16(WPS_ATTR_DEVICE_NAME); - insert_len += 2; - - /* Length: */ - *(__be16 *)(pframe + insert_len) = - cpu_to_be16(pwdinfo->device_name_len); - insert_len += 2; - - /* Value: */ - memcpy(pframe + insert_len, - pwdinfo->device_name, - pwdinfo->device_name_len); - insert_len += pwdinfo->device_name_len; - - /* update wsc ie length */ - *(pframe_wscie + 1) = - (wpsielen - 2) + insert_len; - - /*pframe move to end */ - pframe += insert_len; - pattrib->pktlen += insert_len; - - /* copy remainder_ie to pframe */ - memcpy(pframe, premainder_ie, remainder_ielen); - pframe += remainder_ielen; - pattrib->pktlen += remainder_ielen; - } - } else -#endif /* CONFIG_P2P */ { int len_diff; memcpy(pframe, cur_network->IEs, cur_network->IELength); @@ -6294,46 +2560,6 @@ void issue_beacon(struct rtw_adapter *adapt) _clr_fwstate_(pmlmepriv, WIFI_UNDER_WPS); } -#ifdef CONFIG_P2P - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) { - u32 len; -#ifdef CONFIG_IOCTL_CFG80211 - if (wdev_to_priv(adapt->rtw_wdev)->p2p_enabled) { - len = pmlmepriv->p2p_beacon_ie_len; - if (pmlmepriv->p2p_beacon_ie && len > 0) - memcpy(pframe, pmlmepriv->p2p_beacon_ie, - len); - } else -#endif /* CONFIG_IOCTL_CFG80211 */ - { - len = build_beacon_p2p_ie(pwdinfo, pframe); - } - - pframe += len; - pattrib->pktlen += len; -#ifdef CONFIG_WFD -#ifdef CONFIG_IOCTL_CFG80211 - if (true == pwdinfo->wfd_info->wfd_enable) -#endif /* CONFIG_IOCTL_CFG80211 */ - { - len = build_beacon_wfd_ie(pwdinfo, pframe); - } -#ifdef CONFIG_IOCTL_CFG80211 - else { - len = 0; - if (pmlmepriv->wfd_beacon_ie && - pmlmepriv->wfd_beacon_ie_len > 0) { - len = pmlmepriv->wfd_beacon_ie_len; - memcpy(pframe, pmlmepriv->wfd_beacon_ie, - len); - } - } -#endif /* CONFIG_IOCTL_CFG80211 */ - pframe += len; - pattrib->pktlen += len; -#endif /* CONFIG_WFD */ - } -#endif /* CONFIG_P2P */ goto _issue_bcn; } @@ -6409,11 +2635,9 @@ void issue_beacon(struct rtw_adapter *adapt) _issue_bcn: -#if defined (CONFIG_92D_AP_MODE) && defined (CONFIG_NATIVEAP_MLME) pmlmepriv->update_bcn = false; spin_unlock_bh(&pmlmepriv->bcn_update_lock); -#endif /* if defined (CONFIG_92D_AP_MODE) && defined (CONFIG_NATIVEAP_MLME) */ if ((pattrib->pktlen + TXDESC_SIZE) > 512) { DBG_8192D("beacon frame too large\n"); @@ -6422,8 +2646,6 @@ void issue_beacon(struct rtw_adapter *adapt) pattrib->last_txcmdsz = pattrib->pktlen; - /* DBG_8192D("issue bcn_sz=%d\n", pattrib->last_txcmdsz); */ - dump_mgntframe(adapt, pmgntframe); } @@ -6434,7 +2656,7 @@ void issue_probersp(struct rtw_adapter *adapt, unsigned char *da, struct pkt_attrib *pattrib; unsigned char *pframe; struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; + __le16 *fctrl; unsigned char *mac, *bssid; struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); #if defined (CONFIG_92D_AP_MODE) && defined (CONFIG_NATIVEAP_MLME) @@ -6446,12 +2668,6 @@ void issue_probersp(struct rtw_adapter *adapt, unsigned char *da, struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); unsigned int rate_len; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ -#endif /* CONFIG_P2P */ /* DBG_8192D("%s\n", __func__); */ @@ -6650,49 +2866,6 @@ void issue_probersp(struct rtw_adapter *adapt, unsigned char *da, } } -#ifdef CONFIG_P2P - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO) && is_valid_p2p_probereq) { - u32 len; -#ifdef CONFIG_IOCTL_CFG80211 - if (wdev_to_priv(adapt->rtw_wdev)->p2p_enabled) { - /* if pwdinfo->role == P2P_ROLE_DEVICE will call issue_probersp_p2p() */ - len = pmlmepriv->p2p_go_probe_resp_ie_len; - if (pmlmepriv->p2p_go_probe_resp_ie && len > 0) - memcpy(pframe, pmlmepriv->p2p_go_probe_resp_ie, - len); - } else -#endif /* CONFIG_IOCTL_CFG80211 */ - { - len = build_probe_resp_p2p_ie(pwdinfo, pframe); - } - - pframe += len; - pattrib->pktlen += len; - -#ifdef CONFIG_WFD -#ifdef CONFIG_IOCTL_CFG80211 - if (true == pwdinfo->wfd_info->wfd_enable) -#endif /* CONFIG_IOCTL_CFG80211 */ - { - len = build_probe_resp_wfd_ie(pwdinfo, pframe, 0); - } -#ifdef CONFIG_IOCTL_CFG80211 - else { - len = 0; - if (pmlmepriv->wfd_probe_resp_ie && - pmlmepriv->wfd_probe_resp_ie_len > 0) { - len = pmlmepriv->wfd_probe_resp_ie_len; - memcpy(pframe, pmlmepriv->wfd_probe_resp_ie, - len); - } - } -#endif /* CONFIG_IOCTL_CFG80211 */ - pframe += len; - pattrib->pktlen += len; -#endif /* CONFIG_WFD */ - } -#endif /* CONFIG_P2P */ - pattrib->last_txcmdsz = pattrib->pktlen; dump_mgntframe(adapt, pmgntframe); @@ -6708,7 +2881,7 @@ static int _issue_probereq(struct rtw_adapter *adapt, struct pkt_attrib *pattrib; unsigned char *pframe; struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; + __le16 *fctrl; unsigned char *mac; unsigned char bssrate[NUMRATES]; struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); @@ -6868,7 +3041,7 @@ void issue_auth(struct rtw_adapter *adapt, struct sta_info *psta, struct pkt_attrib *pattrib; unsigned char *pframe; struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; + __le16 *fctrl; unsigned int val32; unsigned short val16; int use_shared_key = 0; @@ -7037,7 +3210,7 @@ void issue_asocrsp(struct rtw_adapter *adapt, unsigned short status, struct pkt_attrib *pattrib; unsigned char *pbuf, *pframe; unsigned short val; - unsigned short *fctrl; + __le16 *fctrl; struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); struct mlme_priv *pmlmepriv = &(adapt->mlmepriv); struct mlme_ext_priv *pmlmeext = &adapt->mlmeextpriv; @@ -7045,12 +3218,6 @@ void issue_asocrsp(struct rtw_adapter *adapt, unsigned short status, struct wlan_bssid_ex *pnetwork = &(pmlmeinfo->network); u8 *ie = pnetwork->IEs; __le16 leval, lestatus; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ -#endif /* CONFIG_P2P */ DBG_8192D("%s\n", __func__); @@ -7186,32 +3353,6 @@ void issue_asocrsp(struct rtw_adapter *adapt, unsigned short status, pframe += pmlmepriv->wps_assoc_resp_ie_len; pattrib->pktlen += pmlmepriv->wps_assoc_resp_ie_len; } -#ifdef CONFIG_P2P -#ifndef CONFIG_IOCTL_CFG80211 - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO) && pstat->is_p2p_device) { - u32 len; - - len = - build_assoc_resp_p2p_ie(pwdinfo, pframe, - pstat->p2p_status_code); - - pframe += len; - pattrib->pktlen += len; - } -#endif /* CONFIG_IOCTL_CFG80211 */ -#ifdef CONFIG_WFD - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO) -#ifdef CONFIG_IOCTL_CFG80211 - && (true == pwdinfo->wfd_info->wfd_enable) -#endif /* CONFIG_IOCTL_CFG80211 */ - ) { - wfdielen = build_assoc_resp_wfd_ie(pwdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; - } -#endif /* CONFIG_WFD */ -#endif /* CONFIG_P2P */ - pattrib->last_txcmdsz = pattrib->pktlen; dump_mgntframe(adapt, pmgntframe); @@ -7226,7 +3367,7 @@ void issue_assocreq(struct rtw_adapter *adapt) struct pkt_attrib *pattrib; unsigned char *pframe, *p; struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; + __le16 *fctrl; unsigned short val16; __le16 le_tmp; unsigned int i, j, ie_len, index = 0; @@ -7239,15 +3380,6 @@ void issue_assocreq(struct rtw_adapter *adapt) struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); int bssrate_len = 0, sta_bssrate_len = 0; u8 cbw40_enable = 0; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - u8 p2pie[255] = { 0x00 }; - u16 p2pielen = 0; -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ -#endif /* CONFIG_P2P */ - #ifdef CONFIG_DFS u16 cap; u8 pow_cap_ele[2] = { 0x00 }; @@ -7476,28 +3608,10 @@ void issue_assocreq(struct rtw_adapter *adapt) ("declare supporting RX STBC\n"); pmlmeinfo->HT_caps.u.HT_cap_element.HT_caps_info |= cpu_to_le16(0x0200); /* RX STBC two spatial stream */ } -#ifdef CONFIG_DISABLE_MCS13TO15 - if (pmlmeext->cur_bwmode == HT_CHANNEL_WIDTH_40 && (pregpriv->wifi_spec != 1)) - memcpy(pmlmeinfo->HT_caps.u. - HT_cap_element.MCS_rate, - MCS_rate_2R_MCS13TO15_OFF, 16); - else - memcpy(pmlmeinfo->HT_caps.u. - HT_cap_element.MCS_rate, - MCS_rate_2R, 16); -#else /* CONFIG_DISABLE_MCS13TO15 */ memcpy(pmlmeinfo->HT_caps.u.HT_cap_element. MCS_rate, MCS_rate_2R, 16); -#endif /* CONFIG_DISABLE_MCS13TO15 */ break; } -#ifdef RTL8192C_RECONFIG_TO_1T1R - if (pregpriv->rx_stbc) - pmlmeinfo->HT_caps.u.HT_cap_element.HT_caps_info |= cpu_to_le16(0x0100); /* RX STBC One spatial stream */ - - memcpy(pmlmeinfo->HT_caps.u.HT_cap_element.MCS_rate, - MCS_rate_1R, 16); -#endif pmlmeinfo->HT_caps.u.HT_cap_element.HT_caps_info = pmlmeinfo->HT_caps.u.HT_cap_element.HT_caps_info; pframe = @@ -7547,193 +3661,6 @@ void issue_assocreq(struct rtw_adapter *adapt) rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, 6, REALTEK_96B_IE, &(pattrib->pktlen)); } -#ifdef CONFIG_P2P - -#ifdef CONFIG_IOCTL_CFG80211 - if (wdev_to_priv(adapt->rtw_wdev)->p2p_enabled) { - if (pmlmepriv->p2p_assoc_req_ie && - pmlmepriv->p2p_assoc_req_ie_len > 0) { - memcpy(pframe, pmlmepriv->p2p_assoc_req_ie, - pmlmepriv->p2p_assoc_req_ie_len); - pframe += pmlmepriv->p2p_assoc_req_ie_len; - pattrib->pktlen += pmlmepriv->p2p_assoc_req_ie_len; - } - } else -#endif /* CONFIG_IOCTL_CFG80211 */ - { - if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE) && - !rtw_p2p_chk_state(pwdinfo, P2P_STATE_IDLE)) { - /* Should add the P2P IE in the association request frame. */ - /* P2P OUI */ - - p2pielen = 0; - p2pie[p2pielen++] = 0x50; - p2pie[p2pielen++] = 0x6F; - p2pie[p2pielen++] = 0x9A; - p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */ - - /* Commented by Albert 20101109 */ - /* According to the P2P Specification, the association request frame should contain 3 P2P attributes */ - /* 1. P2P Capability */ - /* 2. Extended Listen Timing */ - /* 3. Device Info */ - /* Commented by Albert 20110516 */ - /* 4. P2P Interface */ - - /* P2P Capability */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_CAPABILITY; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0002); - p2pielen += 2; - - /* Value: */ - /* Device Capability Bitmap, 1 byte */ - p2pie[p2pielen++] = DMP_P2P_DEVCAP_SUPPORT; - - /* Group Capability Bitmap, 1 byte */ - if (pwdinfo->persistent_supported) - p2pie[p2pielen++] = - P2P_GRPCAP_PERSISTENT_GROUP | - DMP_P2P_GRPCAP_SUPPORT; - else - p2pie[p2pielen++] = DMP_P2P_GRPCAP_SUPPORT; - - /* Extended Listen Timing */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_EX_LISTEN_TIMING; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x0004); - p2pielen += 2; - - /* Value: */ - /* Availability Period */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0xFFFF); - p2pielen += 2; - - /* Availability Interval */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0xFFFF); - p2pielen += 2; - - /* Device Info */ - /* 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) */ - *(__le16 *)(p2pie + p2pielen) = - cpu_to_le16(21 + pwdinfo->device_name_len); - p2pielen += 2; - - /* Value: */ - /* P2P Device Address */ - memcpy(p2pie + p2pielen, myid(&adapt->eeprompriv), - ETH_ALEN); - p2pielen += ETH_ALEN; - - /* Config Method */ - /* This field should be big endian. Noted by P2P specification. */ - if ((pwdinfo->ui_got_wps_info == P2P_GOT_WPSINFO_PEER_DISPLAY_PIN) || - (pwdinfo->ui_got_wps_info == P2P_GOT_WPSINFO_SELF_DISPLAY_PIN)) { - *(__be16 *)(p2pie + p2pielen) = - cpu_to_be16(WPS_CONFIG_METHOD_DISPLAY); - } else { - *(__be16 *)(p2pie + p2pielen) = - cpu_to_be16(WPS_CONFIG_METHOD_PBC); - } - - p2pielen += 2; - - /* Primary Device Type */ - /* Category ID */ - *(__be16 *)(p2pie + p2pielen) = - cpu_to_be16(WPS_PDT_CID_MULIT_MEDIA); - p2pielen += 2; - - /* OUI */ - *(__be32 *)(p2pie + p2pielen) = cpu_to_be32(WPSOUI); - p2pielen += 4; - - /* Sub Category ID */ - *(__be16 *)(p2pie + p2pielen) = - cpu_to_be16(WPS_PDT_SCID_MEDIA_SERVER); - p2pielen += 2; - - /* Number of Secondary Device Types */ - p2pie[p2pielen++] = 0x00; /* No Secondary Device Type List */ - - /* Device Name */ - /* Type: */ - *(__be16 *)(p2pie + p2pielen) = - cpu_to_be16(WPS_ATTR_DEVICE_NAME); - p2pielen += 2; - - /* Length: */ - *(__be16 *)(p2pie + p2pielen) = - cpu_to_be16(pwdinfo->device_name_len); - p2pielen += 2; - - /* Value: */ - memcpy(p2pie + p2pielen, pwdinfo->device_name, - pwdinfo->device_name_len); - p2pielen += pwdinfo->device_name_len; - - /* P2P Interface */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_INTERFACE; - - /* Length: */ - *(__le16 *)(p2pie + p2pielen) = cpu_to_le16(0x000D); - p2pielen += 2; - - /* Value: */ - memcpy(p2pie + p2pielen, pwdinfo->device_addr, ETH_ALEN); /* P2P Device Address */ - p2pielen += ETH_ALEN; - - p2pie[p2pielen++] = 1; /* P2P Interface Address Count */ - - memcpy(p2pie + p2pielen, pwdinfo->device_addr, ETH_ALEN); /* P2P Interface Address List */ - p2pielen += ETH_ALEN; - - pframe = - rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, - (unsigned char *)p2pie, - &pattrib->pktlen); - -#ifdef CONFIG_WFD - /* wfdielen = build_assoc_req_wfd_ie(pwdinfo, pframe); */ - /*pframe += wfdielen; */ - /*pattrib->pktlen += wfdielen; */ -#endif /* CONFIG_WFD */ - } - } - -#endif /* CONFIG_P2P */ - -#ifdef CONFIG_WFD -#ifdef CONFIG_IOCTL_CFG80211 - if (true == pwdinfo->wfd_info->wfd_enable) -#endif /* CONFIG_IOCTL_CFG80211 */ - { - wfdielen = build_assoc_req_wfd_ie(pwdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; - } -#ifdef CONFIG_IOCTL_CFG80211 - else if (pmlmepriv->wfd_assoc_req_ie != NULL && - pmlmepriv->wfd_assoc_req_ie_len > 0) { - /* WFD IE */ - memcpy(pframe, pmlmepriv->wfd_assoc_req_ie, - pmlmepriv->wfd_assoc_req_ie_len); - pattrib->pktlen += pmlmepriv->wfd_assoc_req_ie_len; - pframe += pmlmepriv->wfd_assoc_req_ie_len; - } -#endif /* CONFIG_IOCTL_CFG80211 */ -#endif /* CONFIG_WFD */ - pattrib->last_txcmdsz = pattrib->pktlen; dump_mgntframe(adapt, pmgntframe); @@ -7758,7 +3685,7 @@ static int _issue_nulldata(struct rtw_adapter *adapt, unsigned char *da, struct pkt_attrib *pattrib; unsigned char *pframe; struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; + __le16 *fctrl; struct xmit_priv *pxmitpriv; struct mlme_ext_priv *pmlmeext; struct mlme_ext_info *pmlmeinfo; @@ -7888,7 +3815,8 @@ static int _issue_qos_nulldata(struct rtw_adapter *adapt, unsigned char *da, struct pkt_attrib *pattrib; unsigned char *pframe; struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl, *qc; + __le16 *fctrl; + u16 *qc; struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); @@ -8021,23 +3949,12 @@ static int _issue_deauth(struct rtw_adapter *adapt, unsigned char *da, struct pkt_attrib *pattrib; unsigned char *pframe; struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; + __le16 *fctrl; struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); int ret = _FAIL; __le16 le_tmp; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); -#endif /* CONFIG_P2P */ - -#ifdef CONFIG_P2P - if (!(rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) && - (pwdinfo->rx_invitereq_info.scan_op_ch_only)) { - _cancel_timer_ex(&pwdinfo->reset_ch_sitesurvey); - _set_timer(&pwdinfo->reset_ch_sitesurvey, 10); - } -#endif /* CONFIG_P2P */ pmgntframe = alloc_mgtxmitframe(pxmitpriv); if (pmgntframe == NULL) @@ -8148,7 +4065,7 @@ void issue_action_spct_ch_switch(struct rtw_adapter *adapt, u8 *ra, struct pkt_attrib *pattrib; unsigned char *pframe; struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; + __le16 *fctrl; struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); struct mlme_priv *pmlmepriv = &adapt->mlmepriv; struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); @@ -8220,7 +4137,7 @@ void issue_action_BA(struct rtw_adapter *adapt, unsigned char *raddr, struct pkt_attrib *pattrib; u8 *pframe; struct rtw_ieee80211_hdr *pwlanhdr; - u16 *fctrl; + __le16 *fctrl; struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); struct mlme_ext_priv *pmlmeext = &(adapt->mlmeextpriv); struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); @@ -8324,7 +4241,9 @@ void issue_action_BA(struct rtw_adapter *adapt, unsigned char *raddr, (unsigned char *)(&status), &(pattrib->pktlen)); - le_tmp = cpu_to_le16((pmlmeinfo->ADDBA_req.BA_para_set & 0x3f) | 0x1000); /* 64 buffer size */ + BA_para_set = + (le16_to_cpu(pmlmeinfo->ADDBA_req.BA_para_set) & + 0x3f) | 0x1000;/*64 buffer size*/ if (pregpriv->ampdu_amsdu == 0) /* disabled */ le_tmp = cpu_to_le16(BA_para_set & ~BIT(0)); @@ -8370,7 +4289,7 @@ static void issue_action_BSSCoexistPacket(struct rtw_adapter *adapt) struct pkt_attrib *pattrib; unsigned char *pframe; struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; + __le16 *fctrl; struct wlan_network *pnetwork = NULL; struct xmit_priv *pxmitpriv = &(adapt->xmitpriv); struct mlme_priv *pmlmepriv = &adapt->mlmepriv; @@ -8629,51 +4548,6 @@ void site_survey(struct rtw_adapter *adapt) struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); u32 initialgain = 0; -#ifdef CONFIG_P2P - -#ifdef CONFIG_CONCURRENT_MODE - -#ifdef CONFIG_STA_MODE_SCAN_UNDER_AP_MODE - u8 stay_buddy_ch = 0; -#endif /* CONFIG_STA_MODE_SCAN_UNDER_AP_MODE */ - - struct mlme_priv *pmlmepriv = &(adapt->mlmepriv); - struct rtw_adapter *pbuddy_adapter = adapt->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; - -#endif /* CONFIG_CONCURRENT_MODE */ - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); - static unsigned char prev_survey_channel; - static unsigned int p2p_scan_count; - - if ((pwdinfo->rx_invitereq_info.scan_op_ch_only) || - (pwdinfo->p2p_info.scan_op_ch_only)) { - if (pwdinfo->rx_invitereq_info.scan_op_ch_only) { - survey_channel = - pwdinfo->rx_invitereq_info.operation_ch[pmlmeext-> - sitesurvey_res. - channel_idx]; - } else { - survey_channel = - pwdinfo->p2p_info.operation_ch[pmlmeext-> - sitesurvey_res. - channel_idx]; - } - ScanType = SCAN_ACTIVE; - } else if (rtw_p2p_findphase_ex_is_social(pwdinfo)) { - /* Commented by Albert 2011/06/03 */ - /* The driver is in the find phase, it should go through the social channel. */ - int ch_set_idx; - survey_channel = - pwdinfo->social_chan[pmlmeext->sitesurvey_res.channel_idx]; - ch_set_idx = - rtw_ch_set_search_ch(pmlmeext->channel_set, survey_channel); - if (ch_set_idx >= 0) - ScanType = pmlmeext->channel_set[ch_set_idx].ScanType; - else - ScanType = SCAN_ACTIVE; - } else -#endif /* CONFIG_P2P */ { struct rtw_ieee80211_channel *ch; if (pmlmeext->sitesurvey_res.channel_idx < @@ -8735,16 +4609,6 @@ void site_survey(struct rtw_adapter *adapt) #endif /* CONFIG_STA_MODE_SCAN_UNDER_AP_MODE */ if (ScanType == SCAN_ACTIVE) { /* obey the channel plan setting... */ -#ifdef CONFIG_P2P - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_SCAN) || - rtw_p2p_chk_state(pwdinfo, - P2P_STATE_FIND_PHASE_SEARCH) - ) { - issue_probereq_p2p(adapt, NULL); - issue_probereq_p2p(adapt, NULL); - issue_probereq_p2p(adapt, NULL); - } else -#endif /* CONFIG_P2P */ { int i; for (i = 0; i < RTW_SSID_SCAN_AMOUNT; i++) { @@ -8810,43 +4674,6 @@ void site_survey(struct rtw_adapter *adapt) } #endif -#ifdef CONFIG_P2P - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_SCAN) || - rtw_p2p_chk_state(pwdinfo, - P2P_STATE_FIND_PHASE_SEARCH)) { - if ((pwdinfo->rx_invitereq_info.scan_op_ch_only) || - (pwdinfo->p2p_info.scan_op_ch_only)) { - /* Set the find_phase_state_exchange_cnt to P2P_FINDPHASE_EX_CNT. */ - /* This will let the following flow to run the scanning end. */ - rtw_p2p_findphase_ex_set(pwdinfo, - P2P_FINDPHASE_EX_MAX); - } -#ifdef CONFIG_DBG_P2P - DBG_8192D("[%s] find phase exchange cnt = %d\n", - __func__, - pwdinfo->find_phase_state_exchange_cnt); -#endif - } - - if (rtw_p2p_findphase_ex_is_needed(pwdinfo)) { - /* Set the P2P State to the listen state of find phase and set the current channel to the listen channel */ - set_channel_bwmode(adapt, pwdinfo->listen_channel, - HAL_PRIME_CHNL_OFFSET_DONT_CARE, - HT_CHANNEL_WIDTH_20); - rtw_p2p_set_state(pwdinfo, P2P_STATE_FIND_PHASE_LISTEN); - pmlmeext->sitesurvey_res.state = SCAN_DISABLE; - - initialgain = 0xff; /* restore RX GAIN */ - rtw_hal_set_hwreg(adapt, HW_VAR_INITIAL_GAIN, - (u8 *)(&initialgain)); - /* turn on dynamic functions */ - Restore_DM_Func_Flag(adapt); - /* Switch_DM_Func(adapt, DYNAMIC_FUNC_DIG|DYNAMIC_FUNC_HP|DYNAMIC_FUNC_SS, true); */ - - _set_timer(&pwdinfo->find_phase_timer, - (u32) ((u32) (pwdinfo->listen_dwell) * 100)); - } else -#endif /* CONFIG_P2P */ { #ifdef CONFIG_STA_MODE_SCAN_UNDER_AP_MODE pmlmeinfo->scan_cnt = 0; @@ -8865,28 +4692,6 @@ void site_survey(struct rtw_adapter *adapt) return; } #endif - -#ifdef CONFIG_P2P - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_SCAN) || rtw_p2p_chk_state(pwdinfo, - P2P_STATE_FIND_PHASE_SEARCH)) { -#ifdef CONFIG_CONCURRENT_MODE -#ifndef CONFIG_IOCTL_CFG80211 - if (check_buddy_fwstate(adapt, _FW_LINKED)) { - _set_timer(&pwdinfo-> - ap_p2p_switch_timer, 500); - } -#endif /* CONFIG_IOCTL_CFG80211 */ - rtw_p2p_set_state(pwdinfo, - rtw_p2p_pre_state(pwdinfo)); -#else - rtw_p2p_set_state(pwdinfo, - rtw_p2p_pre_state(pwdinfo)); -#endif - } - rtw_p2p_findphase_ex_set(pwdinfo, - P2P_FINDPHASE_EX_NONE); -#endif /* CONFIG_P2P */ - pmlmeext->sitesurvey_res.state = SCAN_COMPLETE; /* switch back to the original channel */ @@ -8896,16 +4701,6 @@ void site_survey(struct rtw_adapter *adapt) #ifdef CONFIG_DUALMAC_CONCURRENT dc_set_channel_bwmode_survey_done(adapt); #else -#ifndef CONFIG_IOCTL_CFG80211 - if (rtw_p2p_chk_state - (pwdinfo, P2P_STATE_LISTEN)) { - set_channel_bwmode(adapt, - pwdinfo-> - listen_channel, - HAL_PRIME_CHNL_OFFSET_DONT_CARE, - HT_CHANNEL_WIDTH_20); - } else -#endif /* CONFIG_IOCTL_CFG80211 */ #ifdef CONFIG_CONCURRENT_MODE set_channel_bwmode(adapt, cur_channel, @@ -9155,12 +4950,6 @@ u8 collect_bss_info(struct rtw_adapter *adapt, pmlmepriv->num_sta_no_ht++; } } -#ifdef CONFIG_INTEL_WIDI - /*process_intel_widi_query_or_tigger(adapt, bssid); */ - if (process_intel_widi_query_or_tigger(adapt, bssid)) { - return _FAIL; - } -#endif /* CONFIG_INTEL_WIDI */ #if defined(DBG_RX_SIGNAL_DISPLAY_PROCESSING) & 1 if (strcmp(bssid->Ssid.Ssid, DBG_RX_SIGNAL_DISPLAY_SSID_MONITORED) == 0) { @@ -10273,35 +6062,17 @@ void linked_status_chk(struct rtw_adapter *adapt) int tx_chk = _SUCCESS, rx_chk = _SUCCESS; int rx_chk_limit; -#if defined(DBG_ROAMING_TEST) - rx_chk_limit = 1; -#elif defined(CONFIG_ACTIVE_KEEP_ALIVE_CHECK) rx_chk_limit = 4; -#else - rx_chk_limit = 8; -#endif - -#ifdef CONFIG_INTEL_WIDI - if (adapt->mlmepriv.widi_state != INTEL_WIDI_STATE_NONE) - rx_chk_limit = 1; -#endif psta = rtw_get_stainfo(pstapriv, pmlmeinfo->network.MacAddress); if (psta != NULL) { bool is_p2p_enable = false; -#ifdef CONFIG_P2P - is_p2p_enable = - !rtw_p2p_chk_state(&adapt->wdinfo, - P2P_STATE_NONE); -#endif - if (chk_ap_is_alive(adapt, psta) == false) rx_chk = _FAIL; if (pxmitpriv->last_tx_pkts == pxmitpriv->tx_pkts) tx_chk = _FAIL; -#ifdef CONFIG_ACTIVE_KEEP_ALIVE_CHECK if (pmlmeext->active_keep_alive_check && (rx_chk == _FAIL || tx_chk == _FAIL)) { u8 backup_oper_channel = 0; @@ -10337,9 +6108,7 @@ void linked_status_chk(struct rtw_adapter *adapt) SelectChannel(adapt, backup_oper_channel); - } else -#endif /* CONFIG_ACTIVE_KEEP_ALIVE_CHECK */ - { + } else { if (rx_chk != _SUCCESS) { if (pmlmeext->retry == 0) { issue_probereq(adapt, @@ -10430,9 +6199,6 @@ void survey_timer_hdl(struct rtw_adapter *adapt) struct sitesurvey_parm *psurveyPara; struct cmd_priv *pcmdpriv = &adapt->cmdpriv; struct mlme_ext_priv *pmlmeext = &adapt->mlmeextpriv; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(adapt->wdinfo); -#endif /* issue rtw_sitesurvey_cmd */ if (pmlmeext->sitesurvey_res.state > SCAN_START) { @@ -10445,24 +6211,10 @@ void survey_timer_hdl(struct rtw_adapter *adapt) } if (pmlmeext->scan_abort == true) { -#ifdef CONFIG_P2P - if (!rtw_p2p_chk_state - (&adapt->wdinfo, P2P_STATE_NONE)) { - rtw_p2p_findphase_ex_set(pwdinfo, - P2P_FINDPHASE_EX_MAX); - pmlmeext->sitesurvey_res.channel_idx = 3; - DBG_8192D("%s idx:%d, cnt:%u\n", __func__, - pmlmeext->sitesurvey_res.channel_idx, - pwdinfo-> - find_phase_state_exchange_cnt); - } else -#endif - { - pmlmeext->sitesurvey_res.channel_idx = - pmlmeext->sitesurvey_res.ch_num; - DBG_8192D("%s idx:%d\n", __func__, - pmlmeext->sitesurvey_res.channel_idx); - } + pmlmeext->sitesurvey_res.channel_idx = + pmlmeext->sitesurvey_res.ch_num; + DBG_8192D("%s idx:%d\n", __func__, + pmlmeext->sitesurvey_res.channel_idx); pmlmeext->scan_abort = false; /* reset */ } @@ -10925,10 +6677,6 @@ u8 sitesurvey_cmd_hdl(struct rtw_adapter *adapt, u8 *pbuf) u32 initialgain; u32 i; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &adapt->wdinfo; -#endif - if (pmlmeext->sitesurvey_res.state == SCAN_DISABLE) { /* for first time sitesurvey_cmd */ rtw_hal_set_hwreg(adapt, HW_VAR_CHECK_TXBUF, NULL); @@ -10980,14 +6728,6 @@ u8 sitesurvey_cmd_hdl(struct rtw_adapter *adapt, u8 *pbuf) #ifdef CONFIG_CONCURRENT_MODE else if (is_client_associated_to_ap(adapt->pbuddy_adapter) == true) { -#ifdef CONFIG_TDLS - if (adapt->pbuddy_adapter->wdinfo.wfd_tdls_enable == - 1) { - issue_tunneled_probe_req(adapt-> - pbuddy_adapter); - } -#endif /* CONFIG_TDLS */ - pmlmeext->sitesurvey_res.state = SCAN_TXNULL; issue_nulldata(adapt->pbuddy_adapter, NULL, 1, 3, @@ -11013,22 +6753,10 @@ u8 sitesurvey_cmd_hdl(struct rtw_adapter *adapt, u8 *pbuf) Switch_DM_Func(adapt, DYNAMIC_FUNC_DISABLE, false); /* config the initial gain under scaning, need to write the BB registers */ -#ifdef CONFIG_IOCTL_CFG80211 if ((wdev_to_priv(adapt->rtw_wdev))->p2p_enabled == true) initialgain = 0x27; else initialgain = 0x17; -#else /* go through the WEXT interface CONFIG_IOCTL_CFG80211 */ -#ifdef CONFIG_P2P - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - initialgain = 0x17; - else - initialgain = 0x28; -#else /* CONFIG_P2P */ - initialgain = 0x17; -#endif /* CONFIG_P2P */ -#endif /* CONFIG_IOCTL_CFG80211 */ - rtw_hal_set_hwreg(adapt, HW_VAR_INITIAL_GAIN, (u8 *)(&initialgain)); @@ -11088,11 +6816,6 @@ u8 set_stakey_hdl(struct rtw_adapter *adapt, u8 *pbuf) struct mlme_ext_priv *pmlmeext = &adapt->mlmeextpriv; struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); struct set_stakey_parm *pparm = (struct set_stakey_parm *)pbuf; -#ifdef CONFIG_TDLS - struct tdls_info *ptdlsinfo = &adapt->tdlsinfo; - struct sta_priv *pstapriv = &adapt->stapriv; - struct sta_info *psta; -#endif /* CONFIG_TDLS */ /* cam_entry: */ /* 0~3 for default key */ @@ -11169,21 +6892,7 @@ u8 set_stakey_hdl(struct rtw_adapter *adapt, u8 *pbuf) ctrl = BIT(15) | ((pparm->algorithm) << 2); -#ifdef CONFIG_TDLS - if (ptdlsinfo->clear_cam != 0) { - clear_cam_entry(adapt, ptdlsinfo->clear_cam); - ptdlsinfo->clear_cam = 0; - - return H2C_SUCCESS; - } - - psta = rtw_get_stainfo(pstapriv, pparm->addr); /* Get TDLS Peer STA */ - if (psta->tdls_sta_state & TDLS_LINKED_STATE) { - write_cam(adapt, psta->mac_id, ctrl, pparm->addr, - pparm->key); - } else -#endif /* CONFIG_TDLS */ - write_cam(adapt, cam_id, ctrl, pparm->addr, pparm->key); + write_cam(adapt, cam_id, ctrl, pparm->addr, pparm->key); pmlmeinfo->enc_algo = pparm->algorithm; @@ -11211,18 +6920,7 @@ u8 add_ba_hdl(struct rtw_adapter *adapt, unsigned char *pbuf) RTW_WLAN_ACTION_ADDBA_REQ, (u16) pparm->tid); /* _set_timer(&pmlmeext->ADDBA_timer, ADDBA_TO); */ _set_timer(&psta->addba_retry_timer, ADDBA_TO); - } -#ifdef CONFIG_TDLS - else if ((psta->tdls_sta_state & TDLS_LINKED_STATE) && - (psta->htpriv.ht_option == true) && - (psta->htpriv.ampdu_enable == true)) { - issue_action_BA(adapt, pparm->addr, - RTW_WLAN_ACTION_ADDBA_REQ, (u16) pparm->tid); - /* _set_timer(&pmlmeext->ADDBA_timer, ADDBA_TO); */ - _set_timer(&psta->addba_retry_timer, ADDBA_TO); - } -#endif /* CONFIG */ - else { + } else { psta->htpriv.candidate_tid_bitmap &= ~BIT(pparm->tid); } @@ -11417,13 +7115,17 @@ void change_band_update_ie(struct rtw_adapter *adapt, network_type = WIRELESS_11A; total_rate_len = IEEE80211_NUM_OFDM_RATESLEN; DBG_8192D("%s(): change to 5G Band\n", __func__); +#ifdef CONFIG_92D_AP_MODE rtw_remove_bcn_ie(adapt, pnetwork, _ERPINFO_IE_); +#endif } else { network_type = WIRELESS_11BG; total_rate_len = IEEE80211_CCK_RATE_LEN + IEEE80211_NUM_OFDM_RATESLEN; DBG_8192D("%s(): change to 2.4G Band\n", __func__); +#ifdef CONFIG_92D_AP_MODE rtw_add_bcn_ie(adapt, pnetwork, _ERPINFO_IE_, &erpinfo, 1); +#endif } rtw_set_supported_rate(pnetwork->SupportedRates, network_type); @@ -11440,6 +7142,7 @@ void change_band_update_ie(struct rtw_adapter *adapt, remainder_rate_len = 0; } +#ifdef CONFIG_92D_AP_MODE rtw_add_bcn_ie(adapt, pnetwork, _SUPPORTEDRATES_IE_, pnetwork->SupportedRates, rate_len); @@ -11450,6 +7153,7 @@ void change_band_update_ie(struct rtw_adapter *adapt, } else { rtw_remove_bcn_ie(adapt, pnetwork, _EXT_SUPPORTEDRATES_IE_); } +#endif } #ifdef CONFIG_DUALMAC_CONCURRENT @@ -12129,12 +7833,6 @@ int concurrent_chk_start_clnt_join(struct rtw_adapter *adapt) rtw_hal_set_hwreg(adapt, HW_VAR_CHECK_TXBUF, 0); } } else if (check_fwstate(pbuddy_mlmepriv, _FW_LINKED) == true && check_fwstate(pbuddy_mlmepriv, WIFI_STATION_STATE) == true) { /* for Client Mode/p2p client */ -#if defined(CONFIG_P2P) && defined(CONFIG_IOCTL_CFG80211) - struct wifidirect_info *pbuddy_wdinfo = - &(pbuddy_adapter->wdinfo); - if (!rtw_p2p_chk_state(pbuddy_wdinfo, P2P_STATE_NONE)) - return _SUCCESS; /* wlan0-sta mode has higher priority than p2p0-p2p client */ -#endif /* CONFIG_P2P && CONFIG_IOCTL_CFG80211 */ if (pmlmeext->cur_channel != pbuddy_mlmeext->cur_channel) { DBG_8192D @@ -12529,170 +8227,5 @@ u8 set_csa_hdl(struct rtw_adapter *adapt, unsigned char *pbuf) /* TDLS_FREE_STA : free tdls sta */ u8 tdls_hdl(struct rtw_adapter *adapt, unsigned char *pbuf) { -#ifdef CONFIG_TDLS - struct tdls_info *ptdlsinfo = &adapt->tdlsinfo; - struct TDLSoption_param *TDLSoption; - struct sta_info *ptdls_sta; - struct mlme_ext_priv *pmlmeext = &adapt->mlmeextpriv; - struct mlme_ext_info *pmlmeinfo = &pmlmeext->mlmext_info; - u8 survey_channel, i, min, option; - - if (!pbuf) - return H2C_PARAMETERS_ERROR; - - TDLSoption = (struct TDLSoption_param *)pbuf; - - ptdls_sta = rtw_get_stainfo(&(adapt->stapriv), TDLSoption->addr); - option = TDLSoption->option; - - if (ptdls_sta == NULL) { - if (option != TDLS_RS_RCR) - return H2C_REJECTED; - } - - /* spin_lock_bh(&(ptdlsinfo->hdl_lock)); */ - DBG_8192D("[%s] option:%d\n", __func__, option); - - switch (option) { - case TDLS_WRCR: - /* As long as TDLS handshake success, we should set RCR_CBSSID_DATA bit to 0 */ - /* such we can receive all kinds of data frames. */ - rtw_hal_set_hwreg(adapt, HW_VAR_TDLS_WRCR, 0); - DBG_8192D("TDLS with %pM\n", ptdls_sta->hwaddr); - - pmlmeinfo->FW_sta_info[ptdls_sta->mac_id].psta = ptdls_sta; - /* set TDLS sta rate. */ - set_sta_rate(adapt, ptdls_sta); - break; - case TDLS_SD_PTI: - issue_tdls_peer_traffic_indication(adapt, ptdls_sta); - break; - case TDLS_CS_OFF: - _cancel_timer_ex(&ptdls_sta->base_ch_timer); - _cancel_timer_ex(&ptdls_sta->off_ch_timer); - SelectChannel(adapt, pmlmeext->cur_channel); - ptdls_sta->tdls_sta_state &= ~(TDLS_CH_SWITCH_ON_STATE | - TDLS_PEER_AT_OFF_STATE | - TDLS_AT_OFF_CH_STATE); - DBG_8192D("go back to base channel\n "); - issue_nulldata(adapt, NULL, 0, 0, 0); - break; - case TDLS_INIT_CH_SEN: - rtw_hal_set_hwreg(adapt, HW_VAR_TDLS_INIT_CH_SEN, 0); - pmlmeext->sitesurvey_res.channel_idx = 0; - ptdls_sta->option = TDLS_DONE_CH_SEN; - rtw_tdls_cmd(adapt, ptdls_sta->hwaddr, TDLS_DONE_CH_SEN); - break; - case TDLS_DONE_CH_SEN: - survey_channel = - pmlmeext->channel_set[pmlmeext->sitesurvey_res.channel_idx]. - ChannelNum; - if (survey_channel) { - SelectChannel(adapt, survey_channel); - ptdlsinfo->cur_channel = survey_channel; - pmlmeext->sitesurvey_res.channel_idx++; - _set_timer(&ptdls_sta->option_timer, SURVEY_TO); - } else { - SelectChannel(adapt, pmlmeext->cur_channel); - - rtw_hal_set_hwreg(adapt, HW_VAR_TDLS_DONE_CH_SEN, 0); - - if (ptdlsinfo->ch_sensing == 1) { - ptdlsinfo->ch_sensing = 0; - ptdlsinfo->cur_channel = 1; - min = ptdlsinfo->collect_pkt_num[0]; - for (i = 1; i < MAX_CHANNEL_NUM - 1; i++) { - if (min > ptdlsinfo->collect_pkt_num[i]) { - ptdlsinfo->cur_channel = i + 1; - min = - ptdlsinfo-> - collect_pkt_num[i]; - } - ptdlsinfo->collect_pkt_num[i] = 0; - } - ptdlsinfo->collect_pkt_num[0] = 0; - ptdlsinfo->candidate_ch = - ptdlsinfo->cur_channel; - DBG_8192D - ("TDLS channel sensing done, candidate channel: %02x\n", - ptdlsinfo->candidate_ch); - ptdlsinfo->cur_channel = 0; - } - - if (ptdls_sta->tdls_sta_state & TDLS_PEER_SLEEP_STATE) { - ptdls_sta->tdls_sta_state |= - TDLS_APSD_CHSW_STATE; - } else { - /* send null data with pwrbit==1 before send ch_switching_req to peer STA. */ - issue_nulldata(adapt, NULL, 1, 0, 0); - - ptdls_sta->tdls_sta_state |= - TDLS_CH_SW_INITIATOR_STATE; - - issue_tdls_ch_switch_req(adapt, - ptdls_sta->hwaddr); - DBG_8192D("issue tdls ch switch req\n"); - } - } - break; - case TDLS_OFF_CH: - issue_nulldata(adapt, NULL, 1, 0, 0); - SelectChannel(adapt, ptdls_sta->off_ch); - - DBG_8192D("change channel to tar ch:%02x\n", ptdls_sta->off_ch); - ptdls_sta->tdls_sta_state |= TDLS_AT_OFF_CH_STATE; - ptdls_sta->tdls_sta_state &= ~(TDLS_PEER_AT_OFF_STATE); - _set_timer(&ptdls_sta->option_timer, - (u32) ptdls_sta->ch_switch_time); - break; - case TDLS_BASE_CH: - _cancel_timer_ex(&ptdls_sta->base_ch_timer); - _cancel_timer_ex(&ptdls_sta->off_ch_timer); - SelectChannel(adapt, pmlmeext->cur_channel); - ptdls_sta->tdls_sta_state &= ~(TDLS_CH_SWITCH_ON_STATE | - TDLS_PEER_AT_OFF_STATE | - TDLS_AT_OFF_CH_STATE); - DBG_8192D("go back to base channel\n "); - issue_nulldata(adapt, NULL, 0, 0, 0); - _set_timer(&ptdls_sta->option_timer, - (u32) ptdls_sta->ch_switch_time); - break; - case TDLS_P_OFF_CH: - SelectChannel(adapt, pmlmeext->cur_channel); - issue_nulldata(adapt, NULL, 0, 0, 0); - DBG_8192D("change channel to base ch:%02x\n", - pmlmeext->cur_channel); - ptdls_sta->tdls_sta_state &= - ~(TDLS_PEER_AT_OFF_STATE | TDLS_AT_OFF_CH_STATE); - _set_timer(&ptdls_sta->off_ch_timer, TDLS_STAY_TIME); - break; - case TDLS_P_BASE_CH: - issue_nulldata(ptdls_sta->adapt, NULL, 1, 0, 0); - SelectChannel(adapt, ptdls_sta->off_ch); - DBG_8192D("change channel to off ch:%02x\n", ptdls_sta->off_ch); - ptdls_sta->tdls_sta_state |= TDLS_AT_OFF_CH_STATE; - if ((ptdls_sta->tdls_sta_state & TDLS_PEER_AT_OFF_STATE) != - TDLS_PEER_AT_OFF_STATE) { - issue_nulldata_to_TDLS_peer_STA(adapt, ptdls_sta, 0); - } - _set_timer(&ptdls_sta->base_ch_timer, TDLS_STAY_TIME); - break; - case TDLS_RS_RCR: - rtw_hal_set_hwreg(adapt, HW_VAR_TDLS_RS_RCR, 0); - DBG_8192D("wirte REG_RCR, set bit6 on\n"); - break; - case TDLS_CKALV_PH1: - _set_timer(&ptdls_sta->alive_timer2, TDLS_ALIVE_TIMER_PH2); - break; - case TDLS_CKALV_PH2: - _set_timer(&ptdls_sta->alive_timer1, TDLS_ALIVE_TIMER_PH1); - break; - case TDLS_FREE_STA: - free_tdls_sta(adapt, ptdls_sta); - break; - } - return H2C_SUCCESS; -#else return H2C_REJECTED; -#endif /* CONFIG_TDLS */ } diff --git a/core/rtw_p2p.c b/core/rtw_p2p.c index 0d73d77d..be3195d1 100644 --- a/core/rtw_p2p.c +++ b/core/rtw_p2p.c @@ -19,4109 +19,10 @@ #include #include -#ifdef CONFIG_P2P - -static int rtw_p2p_is_channel_list_ok(u8 desired_ch, u8 *ch_list, u8 ch_cnt) -{ - int found = 0, i = 0; - - for (i = 0; i < ch_cnt; i++) { - if (ch_list[i] == desired_ch) { - found = 1; - break; - } - } - return found; -} - -static int is_any_client_associated(struct rtw_adapter *padapter) -{ - struct list_head *phead, *plist; - int intFound = false; - - struct sta_priv *pstapriv = &padapter->stapriv; - - spin_lock_bh(&pstapriv->asoc_list_lock); - phead = &pstapriv->asoc_list; - plist = phead->next; - - if (rtw_end_of_queue_search(phead, plist) == true) - intFound = false; - else - intFound = true; - - if ((intFound == false && pstapriv->asoc_list_cnt) || - (intFound == true && !pstapriv->asoc_list_cnt)) - DBG_8192D("%s intFound:%d, asoc_list_cnt:%u mismatch\n", - __func__, intFound, pstapriv->asoc_list_cnt); - - spin_unlock_bh(&pstapriv->asoc_list_lock); - - return intFound; -} - -static u32 go_add_group_info_attr(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - struct list_head *phead, *plist; - u32 len = 0; - u16 attr_len = 0; - u8 tmplen, *pdata_attr, *pstart, *pcur; - struct sta_info *psta = NULL; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct sta_priv *pstapriv = &padapter->stapriv; - - DBG_8192D("%s\n", __func__); - - pdata_attr = kzalloc(MAX_P2P_IE_LEN, GFP_KERNEL); - - pstart = pdata_attr; - pcur = pdata_attr; - - spin_lock_bh(&pstapriv->asoc_list_lock); - phead = &pstapriv->asoc_list; - plist = phead->next; - - /* look up sta asoc_queue */ - while ((rtw_end_of_queue_search(phead, plist)) == false) { - psta = container_of(plist, struct sta_info, asoc_list); - - plist = plist->next; - - if (psta->is_p2p_device) { - tmplen = 0; - - pcur++; - - /* P2P device address */ - memcpy(pcur, psta->dev_addr, ETH_ALEN); - pcur += ETH_ALEN; - - /* P2P interface address */ - memcpy(pcur, psta->hwaddr, ETH_ALEN); - pcur += ETH_ALEN; - - *pcur = psta->dev_cap; - pcur++; - - RTW_PUT_BE16(pcur, psta->config_methods); - pcur += 2; - - memcpy(pcur, psta->primary_dev_type, 8); - pcur += 8; - - *pcur = psta->num_of_secdev_type; - pcur++; - - memcpy(pcur, psta->secdev_types_list, psta->num_of_secdev_type*8); - pcur += psta->num_of_secdev_type*8; - - if (psta->dev_name_len > 0) { - RTW_PUT_BE16(pcur, WPS_ATTR_DEVICE_NAME); - pcur += 2; - - RTW_PUT_BE16(pcur, psta->dev_name_len); - pcur += 2; - - memcpy(pcur, psta->dev_name, psta->dev_name_len); - pcur += psta->dev_name_len; - } - - tmplen = (u8)(pcur-pstart); - - *pstart = (tmplen-1); - - attr_len += tmplen; - - /* pstart += tmplen; */ - pstart = pcur; - } - } - spin_unlock_bh(&pstapriv->asoc_list_lock); - - if (attr_len > 0) - len = rtw_set_p2p_attr_content(pbuf, P2P_ATTR_GROUP_INFO, attr_len, pdata_attr); - - kfree(pdata_attr); - - 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; - unsigned short *fctrl; - struct rtw_adapter *padapter = pwdinfo->padapter; - 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_GO_DISC_REQUEST; - u8 dialogToken = 0; - - DBG_8192D("[%s]\n", __func__); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(padapter, pattrib); - - 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; - - memcpy(pwlanhdr->addr1, da, ETH_ALEN); - memcpy(pwlanhdr->addr2, pwdinfo->interface_addr, ETH_ALEN); - memcpy(pwlanhdr->addr3, pwdinfo->interface_addr, ETH_ALEN); - - 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); - - /* Build P2P action frame header */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen)); - - /* there is no IE in this P2P action frame */ - - 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) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); - unsigned char category = RTW_WLAN_CATEGORY_PUBLIC; - u8 action = P2P_PUB_ACTION_ACTION; - __be32 p2poui = cpu_to_be32(P2POUI); - u8 oui_subtype = P2P_DEVDISC_RESP; - u8 p2pie[8] = { 0x00 }; - u32 p2pielen = 0; - - DBG_8192D("[%s]\n", __func__); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(padapter, pattrib); - - 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; - - memcpy(pwlanhdr->addr1, da, ETH_ALEN); - memcpy(pwlanhdr->addr2, pwdinfo->device_addr, ETH_ALEN); - memcpy(pwlanhdr->addr3, pwdinfo->device_addr, ETH_ALEN); - - 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); - - /* Build P2P public action frame header */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen)); - - /* Build P2P IE */ - /* P2P OUI */ - p2pielen = 0; - p2pie[p2pielen++] = 0x50; - p2pie[p2pielen++] = 0x6F; - p2pie[p2pielen++] = 0x9A; - p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */ - - /* P2P_ATTR_STATUS */ - p2pielen += rtw_set_p2p_attr_content(&p2pie[p2pielen], P2P_ATTR_STATUS, 1, &status); - - pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, p2pie, &pattrib->pktlen); - - pattrib->last_txcmdsz = pattrib->pktlen; - - dump_mgntframe(padapter, pmgntframe); -} - -static void issue_p2p_provision_resp(struct wifidirect_info *pwdinfo, u8 *raddr, u8 *frame_body, u16 config_method) -{ - struct rtw_adapter *padapter = pwdinfo->padapter; - unsigned char category = RTW_WLAN_CATEGORY_PUBLIC; - u8 action = P2P_PUB_ACTION_ACTION; - u8 dialogToken = frame_body[7]; /* The Dialog Token of provisioning discovery request frame. */ - __be32 p2poui = cpu_to_be32(P2POUI); - u8 oui_subtype = P2P_PROVISION_DISC_RESP; - u8 wpsie[100] = { 0x00 }; - u8 wpsielen = 0; -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ - - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(padapter, pattrib); - - 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; - - memcpy(pwlanhdr->addr1, raddr, ETH_ALEN); - memcpy(pwlanhdr->addr2, myid(&(padapter->eeprompriv)), ETH_ALEN); - memcpy(pwlanhdr->addr3, myid(&(padapter->eeprompriv)), ETH_ALEN); - - 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); - - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen)); - - wpsielen = 0; - /* WPS OUI */ - RTW_PUT_BE32(wpsie, WPSOUI); - wpsielen += 4; - - /* Config Method */ - /* Type: */ - RTW_PUT_BE16(wpsie + wpsielen, WPS_ATTR_CONF_METHOD); - wpsielen += 2; - - /* Length: */ - RTW_PUT_BE16(wpsie + wpsielen, 0x0002); - wpsielen += 2; - - /* Value: */ - RTW_PUT_BE16(wpsie + wpsielen, config_method); - wpsielen += 2; - - pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, wpsielen, (unsigned char *)wpsie, &pattrib->pktlen); - -#ifdef CONFIG_WFD - wfdielen = build_provdisc_resp_wfd_ie(pwdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; -#endif /* CONFIG_WFD */ - - pattrib->last_txcmdsz = pattrib->pktlen; - - dump_mgntframe(padapter, pmgntframe); - - return; -} - -static void issue_p2p_presence_resp(struct wifidirect_info *pwdinfo, u8 *da, u8 status, u8 dialogToken) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - struct rtw_adapter *padapter = pwdinfo->padapter; - 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; - u8 p2pie[MAX_P2P_IE_LEN] = { 0x00 }; - u8 noa_attr_content[32] = { 0x00 }; - u32 p2pielen = 0; - - DBG_8192D("[%s]\n", __func__); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(padapter, pattrib); - - 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; - - memcpy(pwlanhdr->addr1, da, ETH_ALEN); - memcpy(pwlanhdr->addr2, pwdinfo->interface_addr, ETH_ALEN); - memcpy(pwlanhdr->addr3, pwdinfo->interface_addr, ETH_ALEN); - - 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); - - /* Build P2P action frame header */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 4, (unsigned char *)&(p2poui), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen)); - - /* Add P2P IE header */ - /* P2P OUI */ - p2pielen = 0; - p2pie[p2pielen++] = 0x50; - p2pie[p2pielen++] = 0x6F; - p2pie[p2pielen++] = 0x9A; - p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */ - - /* Add Status attribute in P2P IE */ - p2pielen += rtw_set_p2p_attr_content(&p2pie[p2pielen], P2P_ATTR_STATUS, 1, &status); - - /* Add NoA attribute in P2P IE */ - noa_attr_content[0] = 0x1;/* index */ - noa_attr_content[1] = 0x0;/* CTWindow and OppPS Parameters */ - - /* todo: Notice of Absence Descriptor(s) */ - - p2pielen += rtw_set_p2p_attr_content(&p2pie[p2pielen], P2P_ATTR_NOA, 2, noa_attr_content); - - pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, p2pie, &(pattrib->pktlen)); - - pattrib->last_txcmdsz = pattrib->pktlen; - - dump_mgntframe(padapter, pmgntframe); -} - -u32 build_beacon_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 p2pie[MAX_P2P_IE_LEN] = { 0x00 }; - u16 capability = 0; - u32 len = 0, p2pielen = 0; - __le16 le_tmp; - - /* P2P OUI */ - p2pielen = 0; - 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 */ - 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); - - le_tmp = cpu_to_le16(capability); - - p2pielen += rtw_set_p2p_attr_content(&p2pie[p2pielen], P2P_ATTR_CAPABILITY, 2, (u8 *)&le_tmp); - - /* P2P Device ID ATTR */ - p2pielen += rtw_set_p2p_attr_content(&p2pie[p2pielen], P2P_ATTR_DEVICE_ID, ETH_ALEN, pwdinfo->device_addr); - - /* Notice of Absence ATTR */ - /* Type: */ - /* Length: */ - /* Value: */ - - /* go_add_noa_attr(pwdinfo); */ - - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, p2pielen, (unsigned char *)p2pie, &len); - - return len; -} - -#ifdef CONFIG_WFD -u32 build_beacon_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 wfdie[MAX_WFD_IE_LEN] = { 0x00 }; - u32 len = 0, wfdielen = 0; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct wifi_display_info *pwfd_info = padapter->wdinfo.wfd_info; - - /* WFD OUI */ - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110812 */ - /* According to the WFD Specification, the beacon frame should contain 4 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID */ - /* 3. Coupled Sink Information */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - - if (P2P_ROLE_GO == pwdinfo->role) { - if (is_any_client_associated(pwdinfo->padapter)) { - /* WFD primary sink + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | WFD_DEVINFO_WSD); - } else { - /* WFD primary sink + available for WFD session + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | WFD_DEVINFO_SESSION_AVAIL | WFD_DEVINFO_WSD); - } - - } else { - /* WFD primary sink + available for WFD session + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | WFD_DEVINFO_SESSION_AVAIL | WFD_DEVINFO_WSD); - } - - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - wfdielen += ETH_ALEN; - - /* Coupled Sink Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_COUPLED_SINK_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0007); - wfdielen += 2; - - /* Value: */ - /* Coupled Sink Status bitmap */ - /* Not coupled/available for Coupling */ - wfdie[wfdielen++] = 0; - /* MAC Addr. */ - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, wfdielen, (unsigned char *)wfdie, &len); - - return len; -} - -u32 build_probe_req_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 wfdie[MAX_WFD_IE_LEN] = { 0x00 }; - u32 len = 0, wfdielen = 0; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct wifi_display_info *pwfd_info = padapter->wdinfo.wfd_info; - - /* WFD OUI */ - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110812 */ - /* According to the WFD Specification, the probe request frame should contain 4 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID */ - /* 3. Coupled Sink Information */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - - if (1 == pwdinfo->wfd_tdls_enable) { - /* WFD primary sink + available for WFD session + WiFi TDLS mode + WSC (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | - WFD_DEVINFO_SESSION_AVAIL | - WFD_DEVINFO_WSD | - WFD_DEVINFO_PC_TDLS); - } else { - /* WFD primary sink + available for WFD session + WiFi Direct mode + WSC (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | - WFD_DEVINFO_SESSION_AVAIL | - WFD_DEVINFO_WSD); - } - - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - wfdielen += ETH_ALEN; - - /* Coupled Sink Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_COUPLED_SINK_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0007); - wfdielen += 2; - - /* Value: */ - /* Coupled Sink Status bitmap */ - /* Not coupled/available for Coupling */ - wfdie[wfdielen++] = 0; - /* MAC Addr. */ - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, wfdielen, (unsigned char *)wfdie, &len); - - return len; -} - -u32 build_probe_resp_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf, u8 tunneled) -{ - u8 wfdie[MAX_WFD_IE_LEN] = { 0x00 }; - u32 len = 0, wfdielen = 0; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct wifi_display_info *pwfd_info = padapter->wdinfo.wfd_info; - - /* WFD OUI */ - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110812 */ - /* According to the WFD Specification, the probe response frame should contain 4 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID */ - /* 3. Coupled Sink Information */ - /* 4. WFD Session Information */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - /* WFD primary sink + available for WFD session + WiFi Direct mode */ - - if (true == pwdinfo->session_available) { - if (P2P_ROLE_GO == pwdinfo->role) { - if (is_any_client_associated(pwdinfo->padapter)) { - if (pwdinfo->wfd_tdls_enable) { - /* WFD primary sink + TDLS mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, WFD_DEVINFO_PSINK | WFD_DEVINFO_WSD | WFD_DEVINFO_PC_TDLS | WFD_DEVINFO_HDCP_SUPPORT); - } else { - /* WFD primary sink + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, WFD_DEVINFO_PSINK | WFD_DEVINFO_WSD | WFD_DEVINFO_HDCP_SUPPORT); - } - } else { - if (pwdinfo->wfd_tdls_enable) { - /* WFD primary sink + available for WFD session + TDLS mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, WFD_DEVINFO_PSINK | WFD_DEVINFO_SESSION_AVAIL | WFD_DEVINFO_WSD | WFD_DEVINFO_PC_TDLS | WFD_DEVINFO_HDCP_SUPPORT); - } else { - /* WFD primary sink + available for WFD session + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, WFD_DEVINFO_PSINK | WFD_DEVINFO_SESSION_AVAIL | WFD_DEVINFO_WSD | WFD_DEVINFO_HDCP_SUPPORT); - } - } - } else { - if (pwdinfo->wfd_tdls_enable) { - /* WFD primary sink + available for WFD session + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, WFD_DEVINFO_PSINK | WFD_DEVINFO_SESSION_AVAIL | WFD_DEVINFO_WSD | WFD_DEVINFO_PC_TDLS | WFD_DEVINFO_HDCP_SUPPORT); - } else { - /* WFD primary sink + available for WFD session + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, WFD_DEVINFO_PSINK | WFD_DEVINFO_SESSION_AVAIL | WFD_DEVINFO_WSD | WFD_DEVINFO_HDCP_SUPPORT); - } - } - } else { - if (pwdinfo->wfd_tdls_enable) - RTW_PUT_BE16(wfdie + wfdielen, WFD_DEVINFO_PSINK | - WFD_DEVINFO_WSD | WFD_DEVINFO_PC_TDLS | - WFD_DEVINFO_HDCP_SUPPORT); - else - RTW_PUT_BE16(wfdie + wfdielen, WFD_DEVINFO_PSINK | - WFD_DEVINFO_WSD | WFD_DEVINFO_HDCP_SUPPORT); - } - - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - wfdielen += ETH_ALEN; - - /* Coupled Sink Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_COUPLED_SINK_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0007); - wfdielen += 2; - - /* Value: */ - /* Coupled Sink Status bitmap */ - /* Not coupled/available for Coupling */ - wfdie[wfdielen++] = 0; - /* MAC Addr. */ - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - - if (P2P_ROLE_GO == pwdinfo->role) { - /* WFD Session Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_SESSION_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0000); - wfdielen += 2; - - /* Todo: to add the list of WFD device info descriptor in WFD group. */ - } -#ifdef CONFIG_CONCURRENT_MODE -#ifdef CONFIG_TDLS - if ((tunneled == 0) && (padapter->pbuddy_adapter->wdinfo.wfd_tdls_enable == 1)) { - /* Alternative MAC Address ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ALTER_MAC; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, ETH_ALEN); - wfdielen += 2; - - /* Value: */ - /* Alternative MAC Address */ - memcpy(wfdie + wfdielen, &padapter->pbuddy_adapter->eeprompriv.mac_addr[0], ETH_ALEN); - /* This mac address is used to make the WFD session when TDLS is enable. */ - - wfdielen += ETH_ALEN; - } -#endif /* CONFIG_TDLS */ -#endif /* CONFIG_CONCURRENT_MODE */ - - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, wfdielen, (unsigned char *)wfdie, &len); - - return len; -} - -u32 build_assoc_req_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 wfdie[MAX_WFD_IE_LEN] = { 0x00 }; - u32 len = 0, wfdielen = 0; - struct rtw_adapter *padapter = NULL; - struct mlme_priv *pmlmepriv = NULL; - struct wifi_display_info *pwfd_info = NULL; - - /* WFD OUI */ - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE) || rtw_p2p_chk_state(pwdinfo, P2P_STATE_IDLE)) - return 0; - - padapter = pwdinfo->padapter; - pmlmepriv = &padapter->mlmepriv; - pwfd_info = padapter->wdinfo.wfd_info; - - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110812 */ - /* According to the WFD Specification, the probe request frame should contain 4 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID */ - /* 3. Coupled Sink Information */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - /* WFD primary sink + available for WFD session + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | WFD_DEVINFO_SESSION_AVAIL | WFD_DEVINFO_WSD); - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - wfdielen += ETH_ALEN; - - /* Coupled Sink Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_COUPLED_SINK_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0007); - wfdielen += 2; - - /* Value: */ - /* Coupled Sink Status bitmap */ - /* Not coupled/available for Coupling */ - wfdie[wfdielen++] = 0; - /* MAC Addr. */ - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, wfdielen, (unsigned char *)wfdie, &len); - - return len; -} - -u32 build_assoc_resp_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 wfdie[MAX_WFD_IE_LEN] = {0x00}; - u32 len = 0, wfdielen = 0; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct wifi_display_info *pwfd_info = padapter->wdinfo.wfd_info; - - /* WFD OUI */ - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110812 */ - /* According to the WFD Specification, the probe request frame should contain 4 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID */ - /* 3. Coupled Sink Information */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - /* WFD primary sink + available for WFD session + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | WFD_DEVINFO_SESSION_AVAIL | WFD_DEVINFO_WSD); - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - wfdielen += ETH_ALEN; - - /* Coupled Sink Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_COUPLED_SINK_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0007); - wfdielen += 2; - - /* Value: */ - /* Coupled Sink Status bitmap */ - /* Not coupled/available for Coupling */ - wfdie[wfdielen++] = 0; - /* MAC Addr. */ - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, wfdielen, (unsigned char *)wfdie, &len); - - return len; -} - -u32 build_nego_req_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 wfdie[MAX_WFD_IE_LEN] = { 0x00 }; - u32 len = 0, wfdielen = 0; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct wifi_display_info *pwfd_info = padapter->wdinfo.wfd_info; - - /* WFD OUI */ - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110825 */ - /* According to the WFD Specification, the negotiation request frame should contain 3 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID (Optional) */ - /* 3. Local IP Adress (Optional) */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - /* WFD primary sink + WiFi Direct mode + WSD (WFD Service Discovery) + WFD Session Available */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | WFD_DEVINFO_WSD | WFD_DEVINFO_SESSION_AVAIL); - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - wfdielen += ETH_ALEN; - - /* Coupled Sink Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_COUPLED_SINK_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0007); - wfdielen += 2; - - /* Value: */ - /* Coupled Sink Status bitmap */ - /* Not coupled/available for Coupling */ - wfdie[wfdielen++] = 0; - /* MAC Addr. */ - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, wfdielen, (unsigned char *)wfdie, &len); - - return len; -} - -u32 build_nego_resp_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 wfdie[MAX_WFD_IE_LEN] = { 0x00 }; - u32 len = 0, wfdielen = 0; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct wifi_display_info *pwfd_info = padapter->wdinfo.wfd_info; - - /* WFD OUI */ - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110825 */ - /* According to the WFD Specification, the negotiation request frame should contain 3 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID (Optional) */ - /* 3. Local IP Adress (Optional) */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - /* WFD primary sink + WiFi Direct mode + WSD (WFD Service Discovery) + WFD Session Available */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | WFD_DEVINFO_WSD | WFD_DEVINFO_SESSION_AVAIL); - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - wfdielen += ETH_ALEN; - - /* Coupled Sink Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_COUPLED_SINK_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0007); - wfdielen += 2; - - /* Value: */ - /* Coupled Sink Status bitmap */ - /* Not coupled/available for Coupling */ - wfdie[wfdielen++] = 0; - /* MAC Addr. */ - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, wfdielen, (unsigned char *)wfdie, &len); - - return len; -} - -u32 build_nego_confirm_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 wfdie[MAX_WFD_IE_LEN] = {0x00}; - u32 len = 0, wfdielen = 0; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct wifi_display_info *pwfd_info = padapter->wdinfo.wfd_info; - - /* WFD OUI */ - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110825 */ - /* According to the WFD Specification, the negotiation request frame should contain 3 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID (Optional) */ - /* 3. Local IP Adress (Optional) */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - /* WFD primary sink + WiFi Direct mode + WSD (WFD Service Discovery) + WFD Session Available */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | WFD_DEVINFO_WSD | WFD_DEVINFO_SESSION_AVAIL); - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - wfdielen += ETH_ALEN; - - /* Coupled Sink Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_COUPLED_SINK_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0007); - wfdielen += 2; - - /* Value: */ - /* Coupled Sink Status bitmap */ - /* Not coupled/available for Coupling */ - wfdie[wfdielen++] = 0; - /* MAC Addr. */ - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, wfdielen, (unsigned char *)wfdie, &len); - return len; -} - -u32 build_invitation_req_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 wfdie[MAX_WFD_IE_LEN] = { 0x00 }; - u32 len = 0, wfdielen = 0; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct wifi_display_info *pwfd_info = padapter->wdinfo.wfd_info; - - /* WFD OUI */ - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110825 */ - /* According to the WFD Specification, the provision discovery request frame should contain 3 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID (Optional) */ - /* 3. Local IP Adress (Optional) */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - /* WFD primary sink + available for WFD session + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | WFD_DEVINFO_SESSION_AVAIL | WFD_DEVINFO_WSD); - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - wfdielen += ETH_ALEN; - - /* Coupled Sink Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_COUPLED_SINK_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0007); - wfdielen += 2; - - /* Value: */ - /* Coupled Sink Status bitmap */ - /* Not coupled/available for Coupling */ - wfdie[wfdielen++] = 0; - /* MAC Addr. */ - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - - if (P2P_ROLE_GO == pwdinfo->role) { - /* WFD Session Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_SESSION_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0000); - wfdielen += 2; - - /* Todo: to add the list of WFD device info descriptor in WFD group. */ - } - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, wfdielen, (unsigned char *)wfdie, &len); - return len; -} - -u32 build_invitation_resp_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 wfdie[MAX_WFD_IE_LEN] = {0x00}; - u32 len = 0, wfdielen = 0; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct wifi_display_info *pwfd_info = padapter->wdinfo.wfd_info; - - /* WFD OUI */ - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110825 */ - /* According to the WFD Specification, the provision discovery request frame should contain 3 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID (Optional) */ - /* 3. Local IP Adress (Optional) */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - /* WFD primary sink + available for WFD session + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | WFD_DEVINFO_SESSION_AVAIL | WFD_DEVINFO_WSD); - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - wfdielen += ETH_ALEN; - - /* Coupled Sink Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_COUPLED_SINK_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0007); - wfdielen += 2; - - /* Value: */ - /* Coupled Sink Status bitmap */ - /* Not coupled/available for Coupling */ - wfdie[wfdielen++] = 0; - /* MAC Addr. */ - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - - if (P2P_ROLE_GO == pwdinfo->role) { - /* WFD Session Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_SESSION_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0000); - wfdielen += 2; - /* Todo: to add the list of WFD device info descriptor in WFD group. */ - } - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, wfdielen, (unsigned char *)wfdie, &len); - return len; -} - -u32 build_provdisc_req_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 wfdie[MAX_WFD_IE_LEN] = { 0x00 }; - u32 len = 0, wfdielen = 0; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct wifi_display_info *pwfd_info = padapter->wdinfo.wfd_info; - - /* WFD OUI */ - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110825 */ - /* According to the WFD Specification, the provision discovery request frame should contain 3 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID (Optional) */ - /* 3. Local IP Adress (Optional) */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - /* WFD primary sink + available for WFD session + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | WFD_DEVINFO_SESSION_AVAIL | WFD_DEVINFO_WSD); - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - wfdielen += ETH_ALEN; - - /* Coupled Sink Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_COUPLED_SINK_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0007); - wfdielen += 2; - - /* Value: */ - /* Coupled Sink Status bitmap */ - /* Not coupled/available for Coupling */ - wfdie[wfdielen++] = 0; - /* MAC Addr. */ - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, wfdielen, (unsigned char *)wfdie, &len); - return len; -} - -u32 build_provdisc_resp_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 wfdie[MAX_WFD_IE_LEN] = { 0x00 }; - u32 len = 0, wfdielen = 0; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct wifi_display_info *pwfd_info = padapter->wdinfo.wfd_info; - - /* WFD OUI */ - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110825 */ - /* According to the WFD Specification, the provision discovery response frame should contain 3 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID (Optional) */ - /* 3. Local IP Adress (Optional) */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - /* WFD primary sink + available for WFD session + WiFi Direct mode + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->wfd_device_type | WFD_DEVINFO_SESSION_AVAIL | WFD_DEVINFO_WSD); - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - wfdielen += ETH_ALEN; - - /* Coupled Sink Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_COUPLED_SINK_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0007); - wfdielen += 2; - - /* Value: */ - /* Coupled Sink Status bitmap */ - /* Not coupled/available for Coupling */ - wfdie[wfdielen++] = 0; - /* MAC Addr. */ - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - wfdie[wfdielen++] = 0; - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, wfdielen, (unsigned char *)wfdie, &len); - return len; -} - -#endif /* CONFIG_WFD */ - -u32 build_probe_resp_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u8 p2pie[MAX_P2P_IE_LEN] = { 0x00 }; - u32 len = 0, p2pielen = 0; -#ifdef CONFIG_INTEL_WIDI - u8 zero_array_check[L2SDTA_SERVICE_VE_LEN] = { 0x00 }; -#endif /* CONFIG_INTEL_WIDI */ - - /* P2P OUI */ - p2pielen = 0; - 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: */ - RTW_PUT_LE16(p2pie + p2pielen, 0x0002); - p2pielen += 2; - - /* Value: */ - /* Device Capability Bitmap, 1 byte */ - p2pie[p2pielen++] = DMP_P2P_DEVCAP_SUPPORT; - - /* Group Capability Bitmap, 1 byte */ - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) { - p2pie[p2pielen] = (P2P_GRPCAP_GO | P2P_GRPCAP_INTRABSS); - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_PROVISIONING_ING)) - p2pie[p2pielen] |= P2P_GRPCAP_GROUP_FORMATION; - p2pielen++; - } 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; - else - p2pie[p2pielen++] = DMP_P2P_GRPCAP_SUPPORT; - } - - /* Extended Listen Timing ATTR */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_EX_LISTEN_TIMING; - - /* Length: */ - RTW_PUT_LE16(p2pie + p2pielen, 0x0004); - p2pielen += 2; - - /* Value: */ - /* Availability Period */ - RTW_PUT_LE16(p2pie + p2pielen, 0xFFFF); - p2pielen += 2; - - /* Availability Interval */ - RTW_PUT_LE16(p2pie + p2pielen, 0xFFFF); - p2pielen += 2; - - /* Notice of Absence ATTR */ - /* 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) */ -#ifdef CONFIG_INTEL_WIDI - if (_rtw_memcmp(pwdinfo->padapter->mlmepriv.sa_ext, zero_array_check, L2SDTA_SERVICE_VE_LEN) == false) - RTW_PUT_LE16(p2pie + p2pielen, 21 + 8 + pwdinfo->device_name_len); - else -#endif /* CONFIG_INTEL_WIDI */ - RTW_PUT_LE16(p2pie + p2pielen, 21 + pwdinfo->device_name_len); - p2pielen += 2; - - /* Value: */ - /* P2P Device Address */ - memcpy(p2pie + p2pielen, pwdinfo->device_addr, ETH_ALEN); - p2pielen += ETH_ALEN; - - /* Config Method */ - /* This field should be big endian. Noted by P2P specification. */ - RTW_PUT_BE16(p2pie + p2pielen, pwdinfo->supported_wps_cm); - p2pielen += 2; - - /* Primary Device Type */ - /* Category ID */ - RTW_PUT_BE16(p2pie + p2pielen, WPS_PDT_CID_MULIT_MEDIA); - p2pielen += 2; - - /* OUI */ - RTW_PUT_BE32(p2pie + p2pielen, WPSOUI); - p2pielen += 4; - - /* Sub Category ID */ - RTW_PUT_BE16(p2pie + p2pielen, WPS_PDT_SCID_MEDIA_SERVER); - p2pielen += 2; - - /* Number of Secondary Device Types */ -#ifdef CONFIG_INTEL_WIDI - if (_rtw_memcmp(pwdinfo->padapter->mlmepriv.sa_ext, zero_array_check, L2SDTA_SERVICE_VE_LEN) == false) { - p2pie[p2pielen++] = 0x01; - - RTW_PUT_BE16(p2pie + p2pielen, WPS_PDT_CID_DISPLAYS); - p2pielen += 2; - - RTW_PUT_BE32(p2pie + p2pielen, INTEL_DEV_TYPE_OUI); - p2pielen += 4; - - RTW_PUT_BE16(p2pie + p2pielen, P2P_SCID_WIDI_CONSUMER_SINK); - p2pielen += 2; - } else -#endif /* CONFIG_INTEL_WIDI */ - p2pie[p2pielen++] = 0x00; /* No Secondary Device Type List */ - - /* Device Name */ - /* Type: */ - RTW_PUT_BE16(p2pie + p2pielen, WPS_ATTR_DEVICE_NAME); - p2pielen += 2; - - /* Length: */ - RTW_PUT_BE16(p2pie + p2pielen, pwdinfo->device_name_len); - p2pielen += 2; - - /* Value: */ - memcpy(p2pie + p2pielen, pwdinfo->device_name, pwdinfo->device_name_len); - p2pielen += pwdinfo->device_name_len; - - /* Group Info ATTR */ - /* Type: */ - /* Length: */ - /* Value: */ - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) - p2pielen += go_add_group_info_attr(pwdinfo, p2pie + p2pielen); - - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, p2pielen, (unsigned char *)p2pie, &len); - - return len; -} - -u32 build_prov_disc_request_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf, u8 *pssid, u8 ussidlen, u8 *pdev_raddr) -{ - u8 p2pie[MAX_P2P_IE_LEN] = { 0x00 }; - u32 len = 0, p2pielen = 0; - - /* P2P OUI */ - p2pielen = 0; - 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: */ - RTW_PUT_LE16(p2pie + p2pielen, 0x0002); - p2pielen += 2; - - /* Value: */ - /* Device Capability Bitmap, 1 byte */ - p2pie[p2pielen++] = DMP_P2P_DEVCAP_SUPPORT; - - /* Group Capability Bitmap, 1 byte */ - if (pwdinfo->persistent_supported) - p2pie[p2pielen++] = P2P_GRPCAP_PERSISTENT_GROUP | DMP_P2P_GRPCAP_SUPPORT; - else - p2pie[p2pielen++] = DMP_P2P_GRPCAP_SUPPORT; - - /* 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) */ - RTW_PUT_LE16(p2pie + p2pielen, 21 + pwdinfo->device_name_len); - p2pielen += 2; - - /* Value: */ - /* P2P Device Address */ - memcpy(p2pie + p2pielen, pwdinfo->device_addr, ETH_ALEN); - p2pielen += ETH_ALEN; - - /* Config Method */ - /* This field should be big endian. Noted by P2P specification. */ - if (pwdinfo->ui_got_wps_info == P2P_GOT_WPSINFO_PBC) - RTW_PUT_BE16(p2pie + p2pielen, WPS_CONFIG_METHOD_PBC); - else - RTW_PUT_BE16(p2pie + p2pielen, WPS_CONFIG_METHOD_DISPLAY); - - p2pielen += 2; - - /* Primary Device Type */ - /* Category ID */ - RTW_PUT_BE16(p2pie + p2pielen, WPS_PDT_CID_MULIT_MEDIA); - p2pielen += 2; - - /* OUI */ - RTW_PUT_BE32(p2pie + p2pielen, WPSOUI); - p2pielen += 4; - - /* Sub Category ID */ - RTW_PUT_BE16(p2pie + p2pielen, WPS_PDT_SCID_MEDIA_SERVER); - p2pielen += 2; - - /* Number of Secondary Device Types */ - p2pie[p2pielen++] = 0x00; /* No Secondary Device Type List */ - - /* Device Name */ - /* Type: */ - RTW_PUT_BE16(p2pie + p2pielen, WPS_ATTR_DEVICE_NAME); - p2pielen += 2; - - /* Length: */ - RTW_PUT_BE16(p2pie + p2pielen, pwdinfo->device_name_len); - p2pielen += 2; - - /* Value: */ - memcpy(p2pie + p2pielen, pwdinfo->device_name, pwdinfo->device_name_len); - p2pielen += pwdinfo->device_name_len; - - 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. */ - - /* P2P Group ID ATTR */ - /* Type: */ - p2pie[p2pielen++] = P2P_ATTR_GROUP_ID; - - /* Length: */ - RTW_PUT_LE16(p2pie + p2pielen, ETH_ALEN + ussidlen); - p2pielen += 2; - - /* Value: */ - memcpy(p2pie + p2pielen, pdev_raddr, ETH_ALEN); - p2pielen += ETH_ALEN; - - memcpy(p2pie + p2pielen, pssid, ussidlen); - p2pielen += ussidlen; - } - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, p2pielen, (unsigned char *)p2pie, &len); - return len; -} - -u32 build_assoc_resp_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf, u8 status_code) -{ - u8 p2pie[MAX_P2P_IE_LEN] = { 0x00 }; - u32 len = 0, p2pielen = 0; - - /* P2P OUI */ - p2pielen = 0; - p2pie[p2pielen++] = 0x50; - p2pie[p2pielen++] = 0x6F; - p2pie[p2pielen++] = 0x9A; - p2pie[p2pielen++] = 0x09; /* WFA P2P v1.0 */ - - /* According to the P2P Specification, the Association response frame should contain 2 P2P attributes */ - /* 1. Status */ - /* 2. Extended Listen Timing (optional) */ - - /* Status ATTR */ - p2pielen += rtw_set_p2p_attr_content(&p2pie[p2pielen], P2P_ATTR_STATUS, 1, &status_code); - - /* Extended Listen Timing ATTR */ - /* Type: */ - /* Length: */ - /* Value: */ - - pbuf = rtw_set_ie(pbuf, _VENDOR_SPECIFIC_IE_, p2pielen, (unsigned char *)p2pie, &len); - return len; -} - -u32 build_deauth_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf) -{ - u32 len = 0; - - return len; -} - -u32 process_probe_req_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pframe, uint len) -{ - u8 *p; - u32 ret = false; - u8 *p2pie; - u32 p2pielen = 0; - int ssid_len = 0, rate_cnt = 0; - - 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_); - - 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)) - g_rate = 1; - } - - 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. */ - return ret; - } - } 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. */ - } - - /* 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) */ - - p = rtw_get_ie(pframe + WLAN_HDR_A3_LEN + _PROBEREQ_IE_OFFSET_, _SSID_IE_, (int *)&ssid_len, - len - WLAN_HDR_A3_LEN - _PROBEREQ_IE_OFFSET_); - - 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)) { - /* todo: */ - /* Check Requested Device Type attributes in WSC IE. */ - /* Check Device ID attribute in P2P IE */ - - ret = true; - } else if ((p != NULL) && (ssid_len == 0)) { - ret = true; - } - } else { - /* non -p2p device */ - } - } - 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; - u8 *pbuf, *pattr_content = NULL; - u32 attr_contentlen = 0; - u16 cap_attr = 0; - unsigned short frame_type, ie_offset = 0; - u8 *ies; - u32 ies_len; - u8 *p2p_ie; - u32 p2p_ielen = 0; - __be16 be_tmp; - __le16 le_tmp; - - if (!rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) - return P2P_STATUS_FAIL_REQUEST_UNABLE; - - frame_type = GetFrameSubType(pframe); - if (frame_type == WIFI_ASSOCREQ) - ie_offset = _ASOCREQ_IE_OFFSET_; - else /* WIFI_REASSOCREQ */ - ie_offset = _REASOCREQ_IE_OFFSET_; - - 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); - - if (!p2p_ie) { - DBG_8192D("[%s] P2P IE not Found!!\n", __func__); - status_code = P2P_STATUS_FAIL_INVALID_PARAM; - } else { - DBG_8192D("[%s] P2P IE Found!!\n", __func__); - } - - while (p2p_ie) { - /* Check P2P Capability ATTR */ - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CAPABILITY, (u8 *)&le_tmp, (uint *)&attr_contentlen)) { - DBG_8192D("[%s] Got P2P Capability Attr!!\n", __func__); - cap_attr = le16_to_cpu(le_tmp); - psta->dev_cap = cap_attr&0xff; - } - - /* Check Extended Listen Timing ATTR */ - - /* Check P2P Device Info ATTR */ - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_DEVICE_INFO, NULL, (uint *)&attr_contentlen)) { - DBG_8192D("[%s] Got P2P DEVICE INFO Attr!!\n", __func__); - pattr_content = kzalloc(attr_contentlen, GFP_KERNEL); - pbuf = pattr_content; - if (pattr_content) { - u8 num_of_secdev_type; - u16 dev_name_len; - - rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_DEVICE_INFO, pattr_content, (uint *)&attr_contentlen); - - memcpy(psta->dev_addr, pattr_content, ETH_ALEN);/* P2P Device Address */ - - pattr_content += ETH_ALEN; - - memcpy(&be_tmp, pattr_content, 2);/* Config Methods */ - psta->config_methods = be16_to_cpu(be_tmp); - - pattr_content += 2; - - memcpy(psta->primary_dev_type, pattr_content, 8); - - pattr_content += 8; - - num_of_secdev_type = *pattr_content; - pattr_content += 1; - - if (num_of_secdev_type == 0) { - psta->num_of_secdev_type = 0; - } else { - u32 len; - - psta->num_of_secdev_type = num_of_secdev_type; - - len = (sizeof(psta->secdev_types_list) < (num_of_secdev_type*8)) ? - (sizeof(psta->secdev_types_list)) : (num_of_secdev_type*8); - memcpy(psta->secdev_types_list, pattr_content, len); - pattr_content += (num_of_secdev_type*8); - } - psta->dev_name_len = 0; - if (WPS_ATTR_DEVICE_NAME == be16_to_cpu(*(__be16 *)pattr_content)) { - dev_name_len = be16_to_cpu(*(__be16 *)(pattr_content+2)); - psta->dev_name_len = (sizeof(psta->dev_name) < dev_name_len) ? sizeof(psta->dev_name) : dev_name_len; - memcpy(psta->dev_name, pattr_content+4, psta->dev_name_len); - } - kfree(pbuf); - } - } - /* Get the next P2P IE */ - p2p_ie = rtw_get_p2p_ie(p2p_ie+p2p_ielen, ies_len - (p2p_ie - ies + p2p_ielen), NULL, &p2p_ielen); - } - 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; - struct rtw_adapter *padapter = pwdinfo->padapter; - struct sta_priv *pstapriv = &padapter->stapriv; - u8 *p2p_ie; - u32 p2p_ielen = 0; - - frame_body = (unsigned char *)(pframe + sizeof(struct rtw_ieee80211_hdr_3addr)); - - dialogToken = frame_body[7]; - status = P2P_STATUS_FAIL_UNKNOWN_P2PGROUP; - - 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 }; - u8 dev_addr[ETH_ALEN] = { 0x00 }; - u32 attr_contentlen = 0; - - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_GROUP_ID, groupid, &attr_contentlen)) { - if (_rtw_memcmp(pwdinfo->device_addr, groupid, ETH_ALEN) && - _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)) { - struct list_head *phead, *plist; - - spin_lock_bh(&pstapriv->asoc_list_lock); - phead = &pstapriv->asoc_list; - plist = phead->next; - - /* look up sta asoc_queue */ - while ((rtw_end_of_queue_search(phead, plist)) == false) { - psta = container_of(plist, struct sta_info, asoc_list); - - plist = plist->next; - - if (psta->is_p2p_device && (psta->dev_cap&P2P_DEVCAP_CLIENT_DISCOVERABILITY) && - _rtw_memcmp(psta->dev_addr, dev_addr, ETH_ALEN)) { - issue_group_disc_req(pwdinfo, psta->hwaddr); - status = P2P_STATUS_SUCCESS; - break; - } else { - status = P2P_STATUS_FAIL_INFO_UNAVAILABLE; - } - } - spin_unlock_bh(&pstapriv->asoc_list_lock); - } else { - status = P2P_STATUS_FAIL_INVALID_PARAM; - } - - } else { - status = P2P_STATUS_FAIL_INVALID_PARAM; - } - } - } - /* issue Device Discoverability Response */ - issue_p2p_devdisc_resp(pwdinfo, GetAddr2Ptr(pframe), status, dialogToken); - return (status == P2P_STATUS_SUCCESS) ? true : false; -} - -u8 process_p2p_provdisc_req(struct wifidirect_info *pwdinfo, u8 *pframe, uint len) -{ - u8 *frame_body; - u8 *wpsie; - uint wps_ielen = 0, attr_contentlen = 0; - u16 uconfig_method = 0; - __be16 be_tmp; - - frame_body = (pframe + sizeof(struct rtw_ieee80211_hdr_3addr)); - - 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)) { - uconfig_method = be16_to_cpu(be_tmp); - switch (uconfig_method) { - case WPS_CM_DISPLYA: - memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "dis", 3); - break; - case WPS_CM_LABEL: - memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "lab", 3); - break; - case WPS_CM_PUSH_BUTTON: - memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "pbc", 3); - break; - case WPS_CM_KEYPAD: - memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "pad", 3); - break; - } - issue_p2p_provision_resp(pwdinfo, GetAddr2Ptr(pframe), frame_body, uconfig_method); - } - } - DBG_8192D("[%s] config method = %s\n", __func__, pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req); - return true; -} - -static u8 rtw_p2p_get_peer_ch_list(struct wifidirect_info *pwdinfo, u8 *ch_content, u8 ch_cnt, u8 *peer_ch_list) -{ - u8 i = 0, j = 0; - u8 temp = 0; - u8 ch_no = 0; - ch_content += 3; - ch_cnt -= 3; - - while (ch_cnt > 0) { - ch_content += 1; - ch_cnt -= 1; - temp = *ch_content; - for (i = 0; i < temp; i++, j++) - peer_ch_list[j] = *(ch_content + 1 + i); - ch_content += (temp + 1); - ch_cnt -= (temp + 1); - ch_no += temp; - } - - return ch_no; -} - -static u8 rtw_p2p_check_peer_oper_ch(struct mlme_ext_priv *pmlmeext, u8 ch) -{ - u8 i = 0; - - for (i = 0; i < pmlmeext->max_chan_nums; i++) { - if (pmlmeext->channel_set[i].ChannelNum == ch) - return _SUCCESS; - } - - return _FAIL; -} - -static u8 rtw_p2p_ch_inclusion(struct mlme_ext_priv *pmlmeext, u8 *peer_ch_list, u8 peer_ch_num, u8 *ch_list_inclusioned) -{ - int i = 0, j = 0, temp = 0; - u8 ch_no = 0; - - 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); - temp = j; - break; - } - } - } - - return ch_no; -} - -u8 process_p2p_group_negotation_req(struct wifidirect_info *pwdinfo, u8 *pframe, uint len) -{ - struct rtw_adapter *padapter = pwdinfo->padapter; - u8 result = P2P_STATUS_SUCCESS; - u32 p2p_ielen = 0, wps_ielen = 0; - u8 *ies; - u32 ies_len; - u8 *p2p_ie; - u8 *wpsie; - u16 wps_devicepassword_id = 0x0000; - uint wps_devicepassword_id_len = 0; - __be16 be_tmp; -#ifdef CONFIG_WFD - u8 wfd_ie[128] = { 0x00 }; - u32 wfd_ielen = 0; -#ifdef CONFIG_TDLS - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; -#endif /* CONFIG_TDLS */ -#endif /* CONFIG_WFD */ -#ifdef CONFIG_CONCURRENT_MODE - struct rtw_adapter *pbuddy_adapter = pwdinfo->padapter->pbuddy_adapter; - struct wifidirect_info *pbuddy_wdinfo = &pbuddy_adapter->wdinfo; - struct mlme_priv *pbuddy_mlmepriv = &pbuddy_adapter->mlmepriv; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; -#endif - - 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)) { - 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); - - if (wps_devicepassword_id == WPS_DPID_USER_SPEC) - memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "dis", 3); - else if (wps_devicepassword_id == WPS_DPID_REGISTRAR_SPEC) - memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "pad", 3); - else - memcpy(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, "pbc", 3); - } - } else { - DBG_8192D("[%s] WPS IE not Found!!\n", __func__); - result = P2P_STATUS_FAIL_INCOMPATIBLE_PARAM; - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL); - return result; - } - - if (pwdinfo->ui_got_wps_info == P2P_NO_WPSINFO) { - result = P2P_STATUS_FAIL_INFO_UNAVAILABLE; - rtw_p2p_set_state(pwdinfo, P2P_STATE_TX_INFOR_NOREADY); - return result; - } - - ies = pframe + _PUBLIC_ACTION_IE_OFFSET_; - ies_len = len - _PUBLIC_ACTION_IE_OFFSET_; - - p2p_ie = rtw_get_p2p_ie(ies, ies_len, NULL, &p2p_ielen); - - if (!p2p_ie) { - DBG_8192D("[%s] P2P IE not Found!!\n", __func__); - result = P2P_STATUS_FAIL_INCOMPATIBLE_PARAM; - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL); - } - - while (p2p_ie) { - 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; - u16 cap_attr; - __le16 le_tmp; - - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_ING); - - /* Check P2P Capability ATTR */ - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CAPABILITY, (u8 *)&le_tmp, (uint *)&attr_contentlen)) { - cap_attr = le16_to_cpu(le_tmp); - -#if defined(CONFIG_WFD) && defined(CONFIG_TDLS) - if (!(cap_attr & P2P_GRPCAP_INTRABSS)) - ptdlsinfo->ap_prohibited = true; -#endif /* defined(CONFIG_WFD) && defined(CONFIG_TDLS) */ - } - - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_GO_INTENT, &attr_content, &attr_contentlen)) { - DBG_8192D("[%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) { - rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE); - result = P2P_STATUS_FAIL_BOTH_GOINTENT_15; - } else { - if (attr_content & 0x01) - rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT); - else - rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO); - } - } else if (pwdinfo->intent > (pwdinfo->peer_intent >> 1)) { - rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO); - } else { - rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT); - } - - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) { - /* Store the group id information. */ - memcpy(pwdinfo->groupid_info.go_device_addr, pwdinfo->device_addr, ETH_ALEN); - memcpy(pwdinfo->groupid_info.ssid, pwdinfo->nego_ssid, pwdinfo->nego_ssidlen); - } - } - - attr_contentlen = 0; - 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) - memset(pwdinfo->p2p_peer_interface_addr, 0x00, ETH_ALEN); - } - - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CH_LIST, ch_content, &ch_cnt)) { - 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); - - if (ch_num_inclusioned == 0) { - DBG_8192D("[%s] No common channel in channel list!\n", __func__); - result = P2P_STATUS_FAIL_NO_COMMON_CH; - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL); - break; - } - - 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)) { -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) { - DBG_8192D("[%s] desired channel NOT Found!\n", __func__); - result = P2P_STATUS_FAIL_NO_COMMON_CH; - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL); - break; - } else -#endif /* CONFIG_CONCURRENT_MODE */ - { - u8 operatingch_info[5] = { 0x00 }, peer_operating_ch = 0; - attr_contentlen = 0; - - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_OPERATING_CH, operatingch_info, &attr_contentlen)) - peer_operating_ch = operatingch_info[4]; - - if (rtw_p2p_is_channel_list_ok(peer_operating_ch, ch_list_inclusioned, ch_num_inclusioned)) { - /** - * Change our operating channel as peer's for compatibility. - */ - pwdinfo->operating_channel = peer_operating_ch; - DBG_8192D("[%s] Change op ch to %02x as peer's\n", __func__, pwdinfo->operating_channel); - } else { - /* Take first channel of ch_list_inclusioned as operating channel */ - pwdinfo->operating_channel = ch_list_inclusioned[0]; - DBG_8192D("[%s] Change op ch to %02x\n", __func__, pwdinfo->operating_channel); - } - } - } - } - } - - /* Get the next P2P IE */ - p2p_ie = rtw_get_p2p_ie(p2p_ie+p2p_ielen, ies_len - (p2p_ie - ies + p2p_ielen), NULL, &p2p_ielen); - } - -#ifdef CONFIG_WFD - /* Added by Albert 20110823 */ - /* Try to get the TCP port information when receiving the negotiation request. */ - if (rtw_get_wfd_ie(pframe + _PUBLIC_ACTION_IE_OFFSET_, len - _PUBLIC_ACTION_IE_OFFSET_, wfd_ie, &wfd_ielen)) { - u8 attr_content[10] = {0x00}; - u32 attr_contentlen = 0; - - DBG_8192D("[%s] WFD IE Found!!\n", __func__); - rtw_get_wfd_attr_content(wfd_ie, wfd_ielen, WFD_ATTR_DEVICE_INFO, attr_content, &attr_contentlen); - if (attr_contentlen) { - pwdinfo->wfd_info->peer_rtsp_ctrlport = RTW_GET_BE16(attr_content + 2); - DBG_8192D("[%s] Peer PORT NUM = %d\n", __func__, pwdinfo->wfd_info->peer_rtsp_ctrlport); - } - } -#endif /* CONFIG_WFD */ - - return result; -} - -u8 process_p2p_group_negotation_resp(struct wifidirect_info *pwdinfo, u8 *pframe, uint len) -{ - struct rtw_adapter *padapter = pwdinfo->padapter; - u8 result = P2P_STATUS_SUCCESS; - u32 p2p_ielen, wps_ielen; - u8 *ies; - u32 ies_len; - u8 *p2p_ie; -#ifdef CONFIG_WFD - u8 wfd_ie[128] = { 0x00 }; - u32 wfd_ielen = 0; -#ifdef CONFIG_TDLS - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; -#endif /* CONFIG_TDLS */ -#endif /* CONFIG_WFD */ - - ies = pframe + _PUBLIC_ACTION_IE_OFFSET_; - ies_len = len - _PUBLIC_ACTION_IE_OFFSET_; - - /* Be able to know which one is the P2P GO and which one is P2P client. */ - - if (rtw_get_wps_ie(ies, ies_len, NULL, &wps_ielen)) { - ; - } else { - DBG_8192D("[%s] WPS IE not Found!!\n", __func__); - result = P2P_STATUS_FAIL_INCOMPATIBLE_PARAM; - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL); - } - - p2p_ie = rtw_get_p2p_ie(ies, ies_len, NULL, &p2p_ielen); - if (!p2p_ie) { - rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE); - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL); - result = P2P_STATUS_FAIL_INCOMPATIBLE_PARAM; - } else { - u8 attr_content = 0x00; - u32 attr_contentlen = 0; - u8 operatingch_info[5] = { 0x00 }; - uint ch_cnt = 0; - u8 ch_content[50] = { 0x00 }; - u8 groupid[38]; - u16 cap_attr; - u8 peer_ch_list[50] = { 0x00 }; - u8 peer_ch_num = 0; - u8 ch_list_inclusioned[50] = { 0x00 }; - u8 ch_num_inclusioned = 0; - __le16 le_tmp; - - while (p2p_ie) { - /* Check P2P Capability ATTR */ - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CAPABILITY, (u8 *)&le_tmp, (uint *)&attr_contentlen)) { - cap_attr = le16_to_cpu(le_tmp); -#if defined(CONFIG_WFD) && defined(CONFIG_TDLS) - if (!(cap_attr & P2P_GRPCAP_INTRABSS)) - ptdlsinfo->ap_prohibited = true; -#endif /* defined(CONFIG_WFD) && defined(CONFIG_TDLS) */ - } - - rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_STATUS, &attr_content, &attr_contentlen); - if (attr_contentlen == 1) { - DBG_8192D("[%s] Status = %d\n", __func__, attr_content); - if (attr_content == P2P_STATUS_SUCCESS) { - ; /* Do nothing. */ - } else { - if (P2P_STATUS_FAIL_INFO_UNAVAILABLE == attr_content) - 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; - } - } - - /* Try to get the peer's interface address */ - attr_contentlen = 0; - 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) - memset(pwdinfo->p2p_peer_interface_addr, 0x00, ETH_ALEN); - } - - /* Try to get the peer's intent and tie breaker value. */ - attr_content = 0x00; - attr_contentlen = 0; - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_GO_INTENT, &attr_content, &attr_contentlen)) { - DBG_8192D("[%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) { - rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE); - result = P2P_STATUS_FAIL_BOTH_GOINTENT_15; - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL); - } else { - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_OK); - rtw_p2p_set_pre_state(pwdinfo, P2P_STATE_GONEGO_OK); - if (attr_content & 0x01) - rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT); - else - rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO); - } - } else if (pwdinfo->intent > (pwdinfo->peer_intent >> 1)) { - 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); - } else { - 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); - } - - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) { - /* Store the group id information. */ - memcpy(pwdinfo->groupid_info.go_device_addr, pwdinfo->device_addr, ETH_ALEN); - memcpy(pwdinfo->groupid_info.ssid, pwdinfo->nego_ssid, pwdinfo->nego_ssidlen); - } - } - - /* Try to get the operation channel information */ - - attr_contentlen = 0; - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_OPERATING_CH, operatingch_info, &attr_contentlen)) { - DBG_8192D("[%s] Peer's operating channel = %d\n", __func__, operatingch_info[4]); - pwdinfo->peer_operating_ch = operatingch_info[4]; - } - - /* 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_8192D("[%s] channel list attribute found, len = %d\n", __func__, pwdinfo->channel_list_attr_len); - - 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); - - if (ch_num_inclusioned == 0) { - DBG_8192D("[%s] No common channel in channel list!\n", __func__); - result = P2P_STATUS_FAIL_NO_COMMON_CH; - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL); - break; - } - - 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)) { -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) { - DBG_8192D("[%s] desired channel NOT Found!\n", __func__); - result = P2P_STATUS_FAIL_NO_COMMON_CH; - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL); - break; - } else -#endif /* CONFIG_CONCURRENT_MODE */ - { - u8 operatingch_info[5] = { 0x00 }, peer_operating_ch = 0; - attr_contentlen = 0; - - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_OPERATING_CH, - operatingch_info, &attr_contentlen)) - peer_operating_ch = operatingch_info[4]; - - if (rtw_p2p_is_channel_list_ok(peer_operating_ch, ch_list_inclusioned, ch_num_inclusioned)) { - /** - * Change our operating channel as peer's for compatibility. - */ - pwdinfo->operating_channel = peer_operating_ch; - DBG_8192D("[%s] Change op ch to %02x as peer's\n", __func__, pwdinfo->operating_channel); - } else { - /* Take first channel of ch_list_inclusioned as operating channel */ - pwdinfo->operating_channel = ch_list_inclusioned[0]; - DBG_8192D("[%s] Change op ch to %02x\n", __func__, pwdinfo->operating_channel); - } - } - } - } - - } else { - DBG_8192D("[%s] channel list attribute not found!\n", __func__); - } - - /* Try to get the group id information if peer is GO */ - attr_contentlen = 0; - memset(groupid, 0x00, 38); - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_GROUP_ID, groupid, &attr_contentlen)) { - memcpy(pwdinfo->groupid_info.go_device_addr, &groupid[0], ETH_ALEN); - memcpy(pwdinfo->groupid_info.ssid, &groupid[6], attr_contentlen - ETH_ALEN); - } - - /* Get the next P2P IE */ - p2p_ie = rtw_get_p2p_ie(p2p_ie+p2p_ielen, ies_len - (p2p_ie - ies + p2p_ielen), NULL, &p2p_ielen); - } - } - -#ifdef CONFIG_WFD - /* Added by Albert 20111122 */ - /* Try to get the TCP port information when receiving the negotiation response. */ - if (rtw_get_wfd_ie(pframe + _PUBLIC_ACTION_IE_OFFSET_, len - _PUBLIC_ACTION_IE_OFFSET_, wfd_ie, &wfd_ielen)) { - u8 attr_content[10] = { 0x00 }; - u32 attr_contentlen = 0; - - DBG_8192D("[%s] WFD IE Found!!\n", __func__); - rtw_get_wfd_attr_content(wfd_ie, wfd_ielen, WFD_ATTR_DEVICE_INFO, attr_content, &attr_contentlen); - if (attr_contentlen) { - pwdinfo->wfd_info->peer_rtsp_ctrlport = RTW_GET_BE16(attr_content + 2); - DBG_8192D("[%s] Peer PORT NUM = %d\n", __func__, pwdinfo->wfd_info->peer_rtsp_ctrlport); - } - } -#endif /* CONFIG_WFD */ - - return result; -} - -u8 process_p2p_group_negotation_confirm(struct wifidirect_info *pwdinfo, u8 *pframe, uint len) -{ - u8 *ies; - u32 ies_len; - u8 *p2p_ie; - u32 p2p_ielen = 0; - u8 result = P2P_STATUS_SUCCESS; - ies = pframe + _PUBLIC_ACTION_IE_OFFSET_; - ies_len = len - _PUBLIC_ACTION_IE_OFFSET_; - - p2p_ie = rtw_get_p2p_ie(ies, ies_len, NULL, &p2p_ielen); - while (p2p_ie) { - u8 attr_content = 0x00, operatingch_info[5] = { 0x00 }; - u8 groupid[38] = { 0x00 }; - 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); - if (attr_contentlen == 1) { - DBG_8192D("[%s] Status = %d\n", __func__, attr_content); - result = attr_content; - - if (attr_content == P2P_STATUS_SUCCESS) { - u8 bcancelled = 0; - - _cancel_timer(&pwdinfo->restore_p2p_state_timer, &bcancelled); - - /* Commented by Albert 20100911 */ - /* Todo: Need to handle the case which both Intents are the same. */ - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_OK); - rtw_p2p_set_pre_state(pwdinfo, P2P_STATE_GONEGO_OK); - if ((pwdinfo->intent) > (pwdinfo->peer_intent >> 1)) { - rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO); - } else if ((pwdinfo->intent) < (pwdinfo->peer_intent >> 1)) { - rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT); - } else { - /* Have to compare the Tie Breaker */ - if (pwdinfo->peer_intent & 0x01) - rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT); - else - rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO); - } - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(pwdinfo->padapter, _FW_LINKED)) { - /* Switch back to the AP channel soon. */ - _set_timer(&pwdinfo->ap_p2p_switch_timer, 100); - } -#endif - } else { - rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE); - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_FAIL); - break; - } - } - - /* Try to get the group id information */ - attr_contentlen = 0; - memset(groupid, 0x00, 38); - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_GROUP_ID, groupid, &attr_contentlen)) { - DBG_8192D("[%s] Ssid = %s, ssidlen = %d\n", __func__, &groupid[ETH_ALEN], (u32)strlen(&groupid[ETH_ALEN])); - memcpy(pwdinfo->groupid_info.go_device_addr, &groupid[0], ETH_ALEN); - memcpy(pwdinfo->groupid_info.ssid, &groupid[6], attr_contentlen - ETH_ALEN); - } - - attr_contentlen = 0; - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_OPERATING_CH, operatingch_info, &attr_contentlen)) { - DBG_8192D("[%s] Peer's operating channel = %d\n", __func__, operatingch_info[4]); - pwdinfo->peer_operating_ch = operatingch_info[4]; - } - - /* Get the next P2P IE */ - p2p_ie = rtw_get_p2p_ie(p2p_ie+p2p_ielen, ies_len - (p2p_ie - ies + p2p_ielen), NULL, &p2p_ielen); - } - return result; -} - -u8 process_p2p_presence_req(struct wifidirect_info *pwdinfo, u8 *pframe, uint len) -{ - u8 *frame_body; - u8 dialogToken = 0; - u8 status = P2P_STATUS_SUCCESS; - - frame_body = (unsigned char *)(pframe + sizeof(struct rtw_ieee80211_hdr_3addr)); - - dialogToken = frame_body[6]; - - /* todo: check NoA attribute */ - - issue_p2p_presence_resp(pwdinfo, GetAddr2Ptr(pframe), status, dialogToken); - - return true; -} - -static void find_phase_handler(struct rtw_adapter *padapter) -{ - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct ndis_802_11_ssid ssid; - - memset((unsigned char *)&ssid, 0, sizeof(struct ndis_802_11_ssid)); - memcpy(ssid.Ssid, pwdinfo->p2p_wildcard_ssid, P2P_WILDCARD_SSID_LEN); - ssid.SsidLength = P2P_WILDCARD_SSID_LEN; - - rtw_p2p_set_state(pwdinfo, P2P_STATE_FIND_PHASE_SEARCH); - - spin_lock_bh(&pmlmepriv->lock); - rtw_sitesurvey_cmd(padapter, &ssid, 1, NULL, 0); - spin_unlock_bh(&pmlmepriv->lock); - -} - -void p2p_concurrent_handler(struct rtw_adapter *padapter); - -static void restore_p2p_state_handler(struct rtw_adapter *padapter) -{ - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_GONEGO_ING) || - rtw_p2p_chk_state(pwdinfo, P2P_STATE_GONEGO_FAIL)) - rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE); - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) { - struct rtw_adapter *pbuddy_adapter = padapter->pbuddy_adapter; - struct mlme_priv *pbuddy_mlmepriv = &pbuddy_adapter->mlmepriv; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_TX_PROVISION_DIS_REQ) || rtw_p2p_chk_state(pwdinfo, P2P_STATE_RX_PROVISION_DIS_RSP)) { - set_channel_bwmode(padapter, pbuddy_mlmeext->cur_channel, pbuddy_mlmeext->cur_ch_offset, pbuddy_mlmeext->cur_bwmode); - - issue_nulldata(pbuddy_adapter, NULL, 0, 3, 500); - } - } -#endif - - rtw_p2p_set_state(pwdinfo, rtw_p2p_pre_state(pwdinfo)); - - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_DEVICE)) { -#ifdef CONFIG_CONCURRENT_MODE - p2p_concurrent_handler(padapter); -#else - /* 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); -#endif - } - -} - -static void pre_tx_invitereq_handler(struct rtw_adapter *padapter) -{ - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - u8 val8 = 1; - - set_channel_bwmode(padapter, pwdinfo->invitereq_info.peer_ch, 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); - _set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT); - -} - -static void pre_tx_provdisc_handler(struct rtw_adapter *padapter) -{ - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - u8 val8 = 1; - - 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); - _set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT); - -} - -static void pre_tx_negoreq_handler(struct rtw_adapter *padapter) -{ - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - u8 val8 = 1; - - set_channel_bwmode(padapter, pwdinfo->nego_req_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); - _set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT); - -} - -#ifdef CONFIG_CONCURRENT_MODE -void p2p_concurrent_handler(struct rtw_adapter *padapter) -{ - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - /* _adapter *pbuddy_adapter = padapter->pbuddy_adapter; */ - /* struct wifidirect_info *pbuddy_wdinfo = &pbuddy_adapter->wdinfo; */ - /* struct mlme_priv *pbuddy_mlmepriv = &pbuddy_adapter->mlmepriv; */ - /* struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; */ - u8 val8; - - if (check_buddy_fwstate(padapter, _FW_LINKED)) { - struct rtw_adapter *pbuddy_adapter = padapter->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; - - pwdinfo->operating_channel = pbuddy_mlmeext->cur_channel; -#ifdef CONFIG_IOCTL_CFG80211 - - DBG_8192D("%s, switch ch back to buddy's cur_channel =%d\n", __func__, pbuddy_mlmeext->cur_channel); - - set_channel_bwmode(padapter, pbuddy_mlmeext->cur_channel, pbuddy_mlmeext->cur_ch_offset, pbuddy_mlmeext->cur_bwmode); - - issue_nulldata(pbuddy_adapter, NULL, 0, 3, 500); - -#else /* CONFIG_IOCTL_CFG80211 */ - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_IDLE)) { - /* Now, the driver stays on the AP's channel. */ - /* If the pwdinfo->ext_listen_period = 0, that means the P2P listen state is not available on listen channel. */ - if (pwdinfo->ext_listen_period > 0) { - DBG_8192D("[%s] P2P_STATE_IDLE, ext_listen_period = %d\n", __func__, pwdinfo->ext_listen_period); - - if (pbuddy_mlmeext->cur_channel != pwdinfo->listen_channel) { - /* Will switch to listen channel so that need to send the NULL data with PW bit to AP. */ - issue_nulldata(pbuddy_adapter, NULL, 1, 3, 500); - set_channel_bwmode(padapter, pwdinfo->listen_channel, HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20); - } - - rtw_p2p_set_state(pwdinfo, P2P_STATE_LISTEN); - val8 = 1; - rtw_hal_set_hwreg(padapter, HW_VAR_MLME_SITESURVEY, (u8 *)(&val8)); - - /* Todo: To check the value of pwdinfo->ext_listen_period is equal to 0 or not. */ - _set_timer(&pwdinfo->ap_p2p_switch_timer, pwdinfo->ext_listen_period); - } - } else if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_LISTEN) || - rtw_p2p_chk_state(pwdinfo, P2P_STATE_GONEGO_FAIL) || - (rtw_p2p_chk_state(pwdinfo, P2P_STATE_GONEGO_ING) && pwdinfo->nego_req_info.benable == false) || - rtw_p2p_chk_state(pwdinfo, P2P_STATE_RX_PROVISION_DIS_REQ)) { - /* Now, the driver is in the listen state of P2P mode. */ - DBG_8192D("[%s] P2P_STATE_IDLE, ext_listen_interval = %d\n", __func__, pwdinfo->ext_listen_interval); - - /* Commented by Albert 2012/11/01 */ - /* If the AP's channel is the same as the listen channel, we should still be in the listen state */ - /* Other P2P device is still able to find this device out even this device is in the AP's channel. */ - /* So, configure this device to be able to receive the probe request frame and set it to listen state. */ - if (pbuddy_mlmeext->cur_channel != pwdinfo->listen_channel) { - set_channel_bwmode(padapter, pbuddy_mlmeext->cur_channel, pbuddy_mlmeext->cur_ch_offset, pbuddy_mlmeext->cur_bwmode); - val8 = 0; - padapter->HalFunc.SetHwRegHandler(padapter, HW_VAR_MLME_SITESURVEY, (u8 *)(&val8)); - rtw_p2p_set_state(pwdinfo, P2P_STATE_IDLE); - issue_nulldata(pbuddy_adapter, NULL, 0, 3, 500); - } - - /* Todo: To check the value of pwdinfo->ext_listen_interval is equal to 0 or not. */ - _set_timer(&pwdinfo->ap_p2p_switch_timer, pwdinfo->ext_listen_interval); - } else if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_GONEGO_OK)) { - /* The driver had finished the P2P handshake successfully. */ - val8 = 0; - rtw_hal_set_hwreg(padapter, HW_VAR_MLME_SITESURVEY, (u8 *)(&val8)); - set_channel_bwmode(padapter, pbuddy_mlmeext->cur_channel, pbuddy_mlmeext->cur_ch_offset, pbuddy_mlmeext->cur_bwmode); - issue_nulldata(pbuddy_adapter, NULL, 0, 3, 500); - } else if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_TX_PROVISION_DIS_REQ)) { - val8 = 1; - 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); - _set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT); - } else if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_GONEGO_ING) && pwdinfo->nego_req_info.benable == true) { - val8 = 1; - set_channel_bwmode(padapter, pwdinfo->nego_req_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); - _set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT); - } else if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_TX_INVITE_REQ) && pwdinfo->invitereq_info.benable == true) { - ; - } -#endif /* CONFIG_IOCTL_CFG80211 */ - } else { - set_channel_bwmode(padapter, pwdinfo->listen_channel, HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20); - } - -} -#endif - -#ifdef CONFIG_IOCTL_CFG80211 -static void ro_ch_handler(struct rtw_adapter *padapter) -{ - struct cfg80211_wifidirect_info *pcfg80211_wdinfo = &padapter->cfg80211_wdinfo; - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv; - struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) { - struct rtw_adapter *pbuddy_adapter = padapter->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; - - DBG_8192D("%s, switch ch back to buddy's cur_channel =%d\n", __func__, pbuddy_mlmeext->cur_channel); - - set_channel_bwmode(padapter, pbuddy_mlmeext->cur_channel, pbuddy_mlmeext->cur_ch_offset, pbuddy_mlmeext->cur_bwmode); - - pmlmeext->cur_channel = pbuddy_mlmeext->cur_channel; - - } else -#endif /* CONFIG_CONCURRENT_MODE */ - if (pcfg80211_wdinfo->restore_channel != pmlmeext->cur_channel) { - if (!check_fwstate(&padapter->mlmepriv, _FW_LINKED)) - pmlmeext->cur_channel = pcfg80211_wdinfo->restore_channel; - - set_channel_bwmode(padapter, pmlmeext->cur_channel, HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20); - } - - rtw_p2p_set_state(pwdinfo, rtw_p2p_pre_state(pwdinfo)); -#ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("%s, role =%d, p2p_state =%d\n", __func__, - rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo)); -#endif - - pcfg80211_wdinfo->is_ro_ch = false; - - DBG_8192D("cfg80211_remain_on_channel_expired\n"); - - rtw_cfg80211_remain_on_channel_expired(padapter, - pcfg80211_wdinfo->remain_on_ch_cookie, - &pcfg80211_wdinfo->remain_on_ch_channel, - pcfg80211_wdinfo->remain_on_ch_type, GFP_KERNEL); - -} - -static void ro_ch_timer_process (void *FunctionContext) -{ - struct rtw_adapter *adapter = (struct rtw_adapter *)FunctionContext; - struct rtw_wdev_priv *pwdev_priv = wdev_to_priv(adapter->rtw_wdev); - -#ifdef CONFIG_CONCURRENT_MODE - ATOMIC_SET(&pwdev_priv->ro_ch_to, 1); -#endif - - p2p_protocol_wk_cmd(adapter, P2P_RO_CH_WK); -} - -static void rtw_cfg80211_adjust_p2pie_channel(struct rtw_adapter *padapter, const u8 *frame_body, u32 len) -{ -#ifdef CONFIG_CONCURRENT_MODE - u8 *ies, *p2p_ie; - u32 ies_len, p2p_ielen; - struct rtw_adapter *pbuddy_adapter = padapter->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; - - ies = (u8 *)(frame_body + _PUBLIC_ACTION_IE_OFFSET_); - ies_len = len - _PUBLIC_ACTION_IE_OFFSET_; - - p2p_ie = rtw_get_p2p_ie(ies, ies_len, NULL, &p2p_ielen); - - while (p2p_ie) { - u32 attr_contentlen = 0; - u8 *pattr = NULL; - - /* Check P2P_ATTR_CH_LIST */ - pattr = rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CH_LIST, NULL, (uint *)&attr_contentlen); - if (pattr != NULL) { - int i; - u32 num_of_ch; - u8 *pattr_temp = pattr + 3; - - attr_contentlen -= 3; - - while (attr_contentlen > 0) { - num_of_ch = *(pattr_temp+1); - - for (i = 0; i < num_of_ch; i++) - *(pattr_temp+2+i) = pbuddy_mlmeext->cur_channel;/* forcing to the same channel */ - - pattr_temp += (2+num_of_ch); - attr_contentlen -= (2+num_of_ch); - } - } - - /* Check P2P_ATTR_OPERATING_CH */ - attr_contentlen = 0; - pattr = rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_OPERATING_CH, NULL, (uint *)&attr_contentlen); - if (pattr != NULL) - *(pattr+4) = pbuddy_mlmeext->cur_channel;/* forcing to the same channel */ - - /* Get the next P2P IE */ - p2p_ie = rtw_get_p2p_ie(p2p_ie+p2p_ielen, ies_len - (p2p_ie - ies + p2p_ielen), NULL, &p2p_ielen); - } -#endif -} - -#ifdef CONFIG_WFD -void rtw_append_wfd_ie(struct rtw_adapter *padapter, u8 *buf, u32 *len) -{ - unsigned char *frame_body; - u8 category, action, OUI_Subtype, dialogToken = 0; - u32 wfdielen = 0; - struct rtw_wdev_priv *pwdev_priv = wdev_to_priv(padapter->rtw_wdev); - - frame_body = (unsigned char *)(buf + sizeof(struct rtw_ieee80211_hdr_3addr)); - category = frame_body[0]; - - if (category == RTW_WLAN_CATEGORY_PUBLIC) { - action = frame_body[1]; - if (action == ACT_PUBLIC_VENDOR && - _rtw_memcmp(frame_body+2, P2P_OUI, 4) == true) { - OUI_Subtype = frame_body[6]; - dialogToken = frame_body[7]; - switch (OUI_Subtype) { - case P2P_GO_NEGO_REQ: - wfdielen = build_nego_req_wfd_ie(&padapter->wdinfo, buf + (*len)); - (*len) += wfdielen; - break; - case P2P_GO_NEGO_RESP: - wfdielen = build_nego_resp_wfd_ie(&padapter->wdinfo, buf + (*len)); - (*len) += wfdielen; - break; - case P2P_GO_NEGO_CONF: - wfdielen = build_nego_confirm_wfd_ie(&padapter->wdinfo, buf + (*len)); - (*len) += wfdielen; - break; - case P2P_INVIT_REQ: - wfdielen = build_invitation_req_wfd_ie(&padapter->wdinfo, buf + (*len)); - (*len) += wfdielen; - break; - case P2P_INVIT_RESP: - wfdielen = build_invitation_resp_wfd_ie(&padapter->wdinfo, buf + (*len)); - (*len) += wfdielen; - break; - case P2P_DEVDISC_REQ: - break; - case P2P_DEVDISC_RESP: - break; - case P2P_PROVISION_DISC_REQ: - wfdielen = build_provdisc_req_wfd_ie(&padapter->wdinfo, buf + (*len)); - (*len) += wfdielen; - break; - case P2P_PROVISION_DISC_RESP: - wfdielen = build_provdisc_resp_wfd_ie(&padapter->wdinfo, buf + (*len)); - (*len) += wfdielen; - break; - default: - break; - } - } - } else if (category == RTW_WLAN_CATEGORY_P2P) { - OUI_Subtype = frame_body[5]; - dialogToken = frame_body[6]; - -#ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("ACTION_CATEGORY_P2P: OUI = 0x%x, OUI_Subtype =%d, dialogToken =%d\n", - cpu_to_be32(*((u32 *)(frame_body + 1))), OUI_Subtype, dialogToken); -#endif - - switch (OUI_Subtype) { - case P2P_NOTICE_OF_ABSENCE: - break; - case P2P_PRESENCE_REQUEST: - break; - case P2P_PRESENCE_RESPONSE: - break; - case P2P_GO_DISC_REQUEST: - break; - default: - break; - } - } else { - DBG_8192D("%s, action frame category =%d\n", - __func__, category); - /* is_p2p_frame = (-1); */ - } - - return; -} -#endif - -int rtw_p2p_check_frames(struct rtw_adapter *padapter, const u8 *buf, u32 len, u8 tx) -{ - int is_p2p_frame = (-1); - unsigned char *frame_body; - u8 category, action, OUI_Subtype, dialogToken = 0; - u8 *p2p_ie = NULL; - uint p2p_ielen = 0; - struct rtw_wdev_priv *pwdev_priv = wdev_to_priv(padapter->rtw_wdev); - - frame_body = (unsigned char *)(buf + sizeof(struct rtw_ieee80211_hdr_3addr)); - category = frame_body[0]; - /* just for check */ - if (category == RTW_WLAN_CATEGORY_PUBLIC) { - action = frame_body[1]; - if (action == ACT_PUBLIC_VENDOR && - _rtw_memcmp(frame_body+2, P2P_OUI, 4) == true) { - OUI_Subtype = frame_body[6]; - dialogToken = frame_body[7]; - is_p2p_frame = OUI_Subtype; - #ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("ACTION_CATEGORY_PUBLIC: ACT_PUBLIC_VENDOR, OUI = 0x%x, OUI_Subtype =%d, dialogToken =%d\n", - cpu_to_be32(*((u32 *)(frame_body + 2))), OUI_Subtype, dialogToken); - #endif - - p2p_ie = rtw_get_p2p_ie( - (u8 *)buf+sizeof(struct rtw_ieee80211_hdr_3addr)+_PUBLIC_ACTION_IE_OFFSET_, - len-sizeof(struct rtw_ieee80211_hdr_3addr)-_PUBLIC_ACTION_IE_OFFSET_, - NULL, &p2p_ielen); - - switch (OUI_Subtype) { - u8 *cont; - uint cont_len; - case P2P_GO_NEGO_REQ: - DBG_8192D("RTW_%s:P2P_GO_NEGO_REQ, dialogToken =%d\n", - tx ? "Tx" : "Rx", dialogToken); - - if (tx) { -#ifdef CONFIG_DRV_ISSUE_PROV_REQ /* IOT FOR S2 */ - if (pwdev_priv->provdisc_req_issued == false) { - rtw_cfg80211_issue_p2p_provision_request(padapter, buf, len); - pwdev_priv->provdisc_req_issued = true; - rtw_msleep_os(200); - } -#endif /* CONFIG_DRV_ISSUE_PROV_REQ */ - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - rtw_cfg80211_adjust_p2pie_channel(padapter, frame_body, len-sizeof(struct rtw_ieee80211_hdr_3addr)); -#endif - } - - break; - case P2P_GO_NEGO_RESP: - cont = rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_STATUS, NULL, &cont_len); - DBG_8192D("RTW_%s:P2P_GO_NEGO_RESP, dialogToken =%d, status:%d\n", - tx ? "Tx" : "Rx", dialogToken, cont ? *cont : -1); - - if (!tx) - pwdev_priv->provdisc_req_issued = false; -#ifdef CONFIG_CONCURRENT_MODE - else { - if (check_buddy_fwstate(padapter, _FW_LINKED)) - rtw_cfg80211_adjust_p2pie_channel(padapter, frame_body, len-sizeof(struct rtw_ieee80211_hdr_3addr)); - } -#endif - break; - case P2P_GO_NEGO_CONF: - cont = rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_STATUS, NULL, &cont_len); - DBG_8192D("RTW_%s:P2P_GO_NEGO_CONF, dialogToken =%d, status:%d\n", - tx ? "Tx" : "Rx", dialogToken, cont ? *cont : -1); -#ifdef CONFIG_CONCURRENT_MODE - if (tx) { - if (check_buddy_fwstate(padapter, _FW_LINKED)) - rtw_cfg80211_adjust_p2pie_channel(padapter, frame_body, len-sizeof(struct rtw_ieee80211_hdr_3addr)); - } -#endif - break; - case P2P_INVIT_REQ: { - struct rtw_wdev_invit_info *invit_info = &pwdev_priv->invit_info; - int flags = -1; - int op_ch = 0; - - if (tx) { - #ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - rtw_cfg80211_adjust_p2pie_channel(padapter, frame_body, len-sizeof(struct rtw_ieee80211_hdr_3addr)); - #endif - } - - cont = rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_INVITATION_FLAGS, NULL, &cont_len); - if (cont) - flags = *cont; - cont = rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_OPERATING_CH, NULL, &cont_len); - if (cont) - op_ch = *(cont+4); - - if (invit_info->token != dialogToken) - rtw_wdev_invit_info_init(invit_info); - - invit_info->token = dialogToken; - invit_info->flags = (flags == -1) ? 0x0 : flags; - invit_info->req_op_ch = op_ch; - - DBG_8192D("RTW_%s:P2P_INVIT_REQ, dialogToken =%d, flags:0x%02x, op_ch:%d\n", - tx ? "Tx" : "Rx", dialogToken, flags, op_ch); - break; - } - case P2P_INVIT_RESP: { - struct rtw_wdev_invit_info *invit_info = &pwdev_priv->invit_info; - int status = -1; - int op_ch = 0; - - if (tx) { - #ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - rtw_cfg80211_adjust_p2pie_channel(padapter, frame_body, len-sizeof(struct rtw_ieee80211_hdr_3addr)); - #endif - } - - cont = rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_STATUS, NULL, &cont_len); - if (cont) - status = *cont; - cont = rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_OPERATING_CH, NULL, &cont_len); - if (cont) - op_ch = *(cont+4); - - if (invit_info->token != dialogToken) { - rtw_wdev_invit_info_init(invit_info); - } else { - invit_info->token = 0; - invit_info->status = (status == -1) ? 0xff : status; - invit_info->rsp_op_ch = op_ch; - } - - DBG_8192D("RTW_%s:P2P_INVIT_RESP, dialogToken =%d, status:%d, op_ch:%d\n", - tx ? "Tx" : "Rx", dialogToken, status, op_ch); - break; - } - case P2P_DEVDISC_REQ: - DBG_8192D("RTW_%s:P2P_DEVDISC_REQ, dialogToken =%d\n", - tx ? "Tx" : "Rx", dialogToken); - break; - case P2P_DEVDISC_RESP: - cont = rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_STATUS, NULL, &cont_len); - DBG_8192D("RTW_%s:P2P_DEVDISC_RESP, dialogToken =%d, status:%d\n", - tx ? "Tx" : "Rx", dialogToken, cont ? *cont : -1); - break; - case P2P_PROVISION_DISC_REQ: { - size_t frame_body_len = len - sizeof(struct rtw_ieee80211_hdr_3addr); - u8 *p2p_ie; - uint p2p_ielen = 0; - uint contentlen = 0; - - DBG_8192D("RTW_%s:P2P_PROVISION_DISC_REQ, dialogToken =%d\n", - tx ? "Tx" : "Rx", dialogToken); - - pwdev_priv->provdisc_req_issued = false; - - p2p_ie = rtw_get_p2p_ie(frame_body + _PUBLIC_ACTION_IE_OFFSET_, - frame_body_len - _PUBLIC_ACTION_IE_OFFSET_, - NULL, &p2p_ielen); - if (p2p_ie) { - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_GROUP_ID, NULL, &contentlen)) { - pwdev_priv->provdisc_req_issued = false;/* case: p2p_client join p2p GO */ - } else { - #ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("provdisc_req_issued is true\n"); - #endif /* CONFIG_DEBUG_CFG80211 */ - pwdev_priv->provdisc_req_issued = true;/* case: p2p_devices connection before Nego req. */ - } - } - break; - } - case P2P_PROVISION_DISC_RESP: - DBG_8192D("RTW_%s:P2P_PROVISION_DISC_RESP, dialogToken =%d\n", - tx ? "Tx" : "Rx", dialogToken); - break; - default: - DBG_8192D("RTW_%s:OUI_Subtype =%d, dialogToken =%d\n", - tx ? "Tx" : "Rx", OUI_Subtype, dialogToken); - break; - } - } - } else if (category == RTW_WLAN_CATEGORY_P2P) { - OUI_Subtype = frame_body[5]; - dialogToken = frame_body[6]; - - #ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("ACTION_CATEGORY_P2P: OUI = 0x%x, OUI_Subtype =%d, dialogToken =%d\n", - cpu_to_be32(*((u32 *)(frame_body + 1))), OUI_Subtype, dialogToken); - #endif - - is_p2p_frame = OUI_Subtype; - - switch (OUI_Subtype) { - case P2P_NOTICE_OF_ABSENCE: - DBG_8192D("RTW_%s:P2P_NOTICE_OF_ABSENCE, dialogToken =%d\n", tx ? "TX" : "RX", dialogToken); - break; - case P2P_PRESENCE_REQUEST: - DBG_8192D("RTW_%s:P2P_PRESENCE_REQUEST, dialogToken =%d\n", tx ? "TX" : "RX", dialogToken); - break; - case P2P_PRESENCE_RESPONSE: - DBG_8192D("RTW_%s:P2P_PRESENCE_RESPONSE, dialogToken =%d\n", tx ? "TX" : "RX", dialogToken); - break; - case P2P_GO_DISC_REQUEST: - DBG_8192D("RTW_%s:P2P_GO_DISC_REQUEST, dialogToken =%d\n", tx ? "TX" : "RX", dialogToken); - break; - default: - DBG_8192D("RTW_%s:OUI_Subtype =%d, dialogToken =%d\n", tx ? "TX" : "RX", OUI_Subtype, dialogToken); - break; - } - - } else { - DBG_8192D("RTW_%s:action frame category =%d\n", tx ? "TX" : "RX", category); - /* is_p2p_frame = (-1); */ - } - - return is_p2p_frame; -} - -void rtw_init_cfg80211_wifidirect_info(struct rtw_adapter *padapter) -{ - struct cfg80211_wifidirect_info *pcfg80211_wdinfo = &padapter->cfg80211_wdinfo; - - memset(pcfg80211_wdinfo, 0x00, sizeof(struct cfg80211_wifidirect_info)); - - _init_timer(&pcfg80211_wdinfo->remain_on_ch_timer, padapter->pnetdev, ro_ch_timer_process, padapter); -} -#endif /* CONFIG_IOCTL_CFG80211 */ - -void p2p_protocol_wk_hdl(struct rtw_adapter *padapter, int intCmdType) -{ - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - switch (intCmdType) { - case P2P_FIND_PHASE_WK: - find_phase_handler(padapter); - break; - case P2P_RESTORE_STATE_WK: - restore_p2p_state_handler(padapter); - break; - case P2P_PRE_TX_PROVDISC_PROCESS_WK: -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - p2p_concurrent_handler(padapter); - else - pre_tx_provdisc_handler(padapter); -#else - pre_tx_provdisc_handler(padapter); -#endif - break; - case P2P_PRE_TX_INVITEREQ_PROCESS_WK: -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - p2p_concurrent_handler(padapter); - else - pre_tx_invitereq_handler(padapter); -#else - pre_tx_invitereq_handler(padapter); -#endif - break; - case P2P_PRE_TX_NEGOREQ_PROCESS_WK: -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - p2p_concurrent_handler(padapter); - else - pre_tx_negoreq_handler(padapter); -#else - pre_tx_negoreq_handler(padapter); -#endif - break; -#ifdef CONFIG_P2P -#ifdef CONFIG_CONCURRENT_MODE - case P2P_AP_P2P_CH_SWITCH_PROCESS_WK: - p2p_concurrent_handler(padapter); - break; -#endif -#endif -#ifdef CONFIG_IOCTL_CFG80211 - case P2P_RO_CH_WK: - ro_ch_handler(padapter); - break; -#endif /* CONFIG_IOCTL_CFG80211 */ - } - -} - -#ifdef CONFIG_P2P_PS -void process_p2p_ps_ie(struct rtw_adapter *padapter, u8 *IEs, u32 IELength) -{ - u8 *ies; - u32 ies_len; - u8 *p2p_ie; - u32 p2p_ielen = 0; - u8 noa_attr[MAX_P2P_IE_LEN] = {0x00};/* NoA length should be n*(13) + 2 */ - u32 attr_contentlen = 0; - - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - u8 find_p2p = false, find_p2p_ps = false; - u8 noa_offset, noa_num, noa_index; - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - return; - -#ifdef CONFIG_CONCURRENT_MODE - if (padapter->iface_type != IFACE_PORT0) - return; -#endif - if (IELength <= _BEACON_IE_OFFSET_) - return; - - ies = IEs + _BEACON_IE_OFFSET_; - ies_len = IELength - _BEACON_IE_OFFSET_; - - p2p_ie = rtw_get_p2p_ie(ies, ies_len, NULL, &p2p_ielen); - - while (p2p_ie) { - find_p2p = true; - /* Get Notice of Absence IE. */ - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_NOA, noa_attr, &attr_contentlen)) { - find_p2p_ps = true; - noa_index = noa_attr[0]; - - if ((pwdinfo->p2p_ps_mode == P2P_PS_NONE) || - (noa_index != pwdinfo->noa_index)) { - /* if index change, driver should reconfigure related setting. */ - pwdinfo->noa_index = noa_index; - pwdinfo->opp_ps = noa_attr[1] >> 7; - pwdinfo->ctwindow = noa_attr[1] & 0x7F; - - noa_offset = 2; - noa_num = 0; - /* NoA length should be n*(13) + 2 */ - if (attr_contentlen > 2) { - while (noa_offset < attr_contentlen) { - /* memcpy(&wifidirect_info->noa_count[noa_num], &noa_attr[noa_offset], 1); */ - pwdinfo->noa_count[noa_num] = noa_attr[noa_offset]; - noa_offset += 1; - - memcpy(&pwdinfo->noa_duration[noa_num], &noa_attr[noa_offset], 4); - noa_offset += 4; - - memcpy(&pwdinfo->noa_interval[noa_num], &noa_attr[noa_offset], 4); - noa_offset += 4; - - memcpy(&pwdinfo->noa_start_time[noa_num], &noa_attr[noa_offset], 4); - noa_offset += 4; - - noa_num++; - } - } - pwdinfo->noa_num = noa_num; - - if (pwdinfo->opp_ps == 1) { - pwdinfo->p2p_ps_mode = P2P_PS_CTWINDOW; - /* driver should wait LPS for entering CTWindow */ - if (padapter->pwrctrlpriv.bFwCurrentInPSMode == true) - p2p_ps_wk_cmd(padapter, P2P_PS_ENABLE, 1); - } else if (pwdinfo->noa_num > 0) { - pwdinfo->p2p_ps_mode = P2P_PS_NOA; - p2p_ps_wk_cmd(padapter, P2P_PS_ENABLE, 1); - } else if (pwdinfo->p2p_ps_mode > P2P_PS_NONE) { - p2p_ps_wk_cmd(padapter, P2P_PS_DISABLE, 1); - } - } - break; /* find target, just break. */ - } - - /* Get the next P2P IE */ - p2p_ie = rtw_get_p2p_ie(p2p_ie+p2p_ielen, ies_len - (p2p_ie - ies + p2p_ielen), NULL, &p2p_ielen); - } - - if (find_p2p == true) { - if ((pwdinfo->p2p_ps_mode > P2P_PS_NONE) && (find_p2p_ps == false)) - p2p_ps_wk_cmd(padapter, P2P_PS_DISABLE, 1); - } - -} - -void p2p_ps_wk_hdl(struct rtw_adapter *padapter, u8 p2p_ps_state) -{ - struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - 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 == true) { - 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) { - pwdinfo->p2p_ps_state = p2p_ps_state; - - if (pwdinfo->ctwindow > 0) { - if (pwrpriv->smart_ps != 0) { - pwrpriv->smart_ps = 0; - DBG_8192D("%s(): Enter CTW, change SmartPS\n", __func__); - rtw_hal_set_hwreg(padapter, HW_VAR_H2C_FW_PWRMODE, (u8 *)(&(padapter->pwrctrlpriv.pwr_mode))); - } - } - 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; - } - -} - -u8 p2p_ps_wk_cmd(struct rtw_adapter *padapter, u8 p2p_ps_state, u8 enqueue) -{ - struct cmd_obj *ph2c; - struct drvextra_cmd_parm *pdrvextra_cmd_parm; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - struct cmd_priv *pcmdpriv = &padapter->cmdpriv; - u8 res = _SUCCESS; - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE) -#ifdef CONFIG_CONCURRENT_MODE - || (padapter->iface_type != IFACE_PORT0) -#endif - ) - return res; - - if (enqueue) { - ph2c = (struct cmd_obj *)kzalloc(sizeof(struct cmd_obj), GFP_KERNEL); - if (ph2c == NULL) { - res = _FAIL; - goto exit; - } - - pdrvextra_cmd_parm = (struct drvextra_cmd_parm *)kzalloc(sizeof(struct drvextra_cmd_parm), GFP_KERNEL); - if (pdrvextra_cmd_parm == NULL) { - kfree(ph2c); - res = _FAIL; - 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); - } else { - p2p_ps_wk_hdl(padapter, p2p_ps_state); - } - -exit: - - return res; -} -#endif /* CONFIG_P2P_PS */ - -static void reset_ch_sitesurvey_timer_process(void *FunctionContext) -{ - struct rtw_adapter *adapter = (struct rtw_adapter *)FunctionContext; - struct wifidirect_info *pwdinfo = &adapter->wdinfo; - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - return; - - DBG_8192D("[%s] In\n", __func__); - /* Reset the operation channel information */ - 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) -{ - struct rtw_adapter *adapter = (struct rtw_adapter *)FunctionContext; - struct wifidirect_info *pwdinfo = &adapter->wdinfo; - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - return; - - DBG_8192D("[%s] In\n", __func__); - /* Reset the operation channel information */ - pwdinfo->p2p_info.operation_ch[0] = 0; - pwdinfo->p2p_info.scan_op_ch_only = 0; -} - -static void restore_p2p_state_timer_process(void *FunctionContext) -{ - struct rtw_adapter *adapter = (struct rtw_adapter *)FunctionContext; - struct wifidirect_info *pwdinfo = &adapter->wdinfo; - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - return; - - p2p_protocol_wk_cmd(adapter, P2P_RESTORE_STATE_WK); -} - -static void pre_tx_scan_timer_process(void *FunctionContext) -{ - struct rtw_adapter *adapter = (struct rtw_adapter *)FunctionContext; - struct wifidirect_info *pwdinfo = &adapter->wdinfo; - struct mlme_priv *pmlmepriv = &adapter->mlmepriv; - u8 _status = 0; - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - return; - - spin_lock_bh(&pmlmepriv->lock); - - /* Commented by Albert 20110805 */ - /* Todo: Use the issuing probe request directly instead of using the rtw_sitesurvey_cmd!! */ - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_TX_PROVISION_DIS_REQ)) { - if (true == 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); - /* issue_probereq_p2p(adapter, NULL); */ - /* _set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT); */ - } - } else if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_GONEGO_ING)) { - if (true == pwdinfo->nego_req_info.benable) { - p2p_protocol_wk_cmd(adapter, P2P_PRE_TX_NEGOREQ_PROCESS_WK); - /* issue_probereq_p2p(adapter, NULL); */ - /* _set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT); */ - } - } else if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_TX_INVITE_REQ)) { - if (true == pwdinfo->invitereq_info.benable) - p2p_protocol_wk_cmd(adapter, P2P_PRE_TX_INVITEREQ_PROCESS_WK); - } else { - DBG_8192D("[%s] p2p_state is %d, ignore!!\n", __func__, rtw_p2p_state(pwdinfo)); - } - - spin_unlock_bh(&pmlmepriv->lock); -} - -static void find_phase_timer_process(void *FunctionContext) -{ - struct rtw_adapter *adapter = (struct rtw_adapter *)FunctionContext; - struct wifidirect_info *pwdinfo = &adapter->wdinfo; - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - return; - - adapter->wdinfo.find_phase_state_exchange_cnt++; - - p2p_protocol_wk_cmd(adapter, P2P_FIND_PHASE_WK); -} - -#ifdef CONFIG_CONCURRENT_MODE -static void ap_p2p_switch_timer_process(void *FunctionContext) -{ - struct rtw_adapter *adapter = (struct rtw_adapter *)FunctionContext; - struct wifidirect_info *pwdinfo = &adapter->wdinfo; -#ifdef CONFIG_IOCTL_CFG80211 - struct rtw_wdev_priv *pwdev_priv = wdev_to_priv(adapter->rtw_wdev); -#endif - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - return; - -#ifdef CONFIG_IOCTL_CFG80211 - ATOMIC_SET(&pwdev_priv->switch_ch_to, 1); -#endif - - p2p_protocol_wk_cmd(adapter, P2P_AP_P2P_CH_SWITCH_PROCESS_WK); -} -#endif - -void reset_global_wifidirect_info(struct rtw_adapter *padapter) -{ - struct wifidirect_info *pwdinfo; - - pwdinfo = &padapter->wdinfo; - pwdinfo->persistent_supported = 0; - pwdinfo->session_available = true; - pwdinfo->wfd_tdls_enable = 0; - pwdinfo->wfd_tdls_weaksec = 0; -} - -#ifdef CONFIG_WFD -int rtw_init_wifi_display_info(struct rtw_adapter *padapter) -{ - int res = _SUCCESS; - struct wifi_display_info *pwfd_info = &padapter->wfd_info; - - /* Used in P2P and TDLS */ - pwfd_info->rtsp_ctrlport = 554; - pwfd_info->peer_rtsp_ctrlport = 0; /* Reset to 0 */ - pwfd_info->wfd_enable = false; - pwfd_info->wfd_device_type = WFD_DEVINFO_PSINK; - pwfd_info->scan_result_type = SCAN_RESULT_P2P_ONLY; - - /* Used in P2P */ - pwfd_info->peer_session_avail = true; - pwfd_info->wfd_pc = false; - - /* Used in TDLS */ - memset(pwfd_info->ip_address, 0x00, 4); - memset(pwfd_info->peer_ip_address, 0x00, 4); - return res; -} -#endif /* CONFIG_WFD */ - -void rtw_init_wifidirect_timers(struct rtw_adapter *padapter) -{ - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - - _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); -#ifdef CONFIG_CONCURRENT_MODE - _init_timer(&pwdinfo->ap_p2p_switch_timer, padapter->pnetdev, ap_p2p_switch_timer_process, padapter); -#endif -} - void rtw_init_wifidirect_addrs(struct rtw_adapter *padapter, u8 *dev_addr, u8 *iface_addr) { -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - - if (dev_addr) - memcpy(pwdinfo->device_addr, dev_addr, ETH_ALEN); - if (iface_addr) - memcpy(pwdinfo->interface_addr, iface_addr, ETH_ALEN); -#endif -} - -void init_wifidirect_info(struct rtw_adapter *padapter, enum P2P_ROLE role) -{ - struct wifidirect_info *pwdinfo; -#ifdef CONFIG_WFD - struct wifi_display_info *pwfd_info = &padapter->wfd_info; -#endif -#ifdef CONFIG_CONCURRENT_MODE - struct rtw_adapter *pbuddy_adapter = padapter->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext; -#endif - - pwdinfo = &padapter->wdinfo; - - pwdinfo->padapter = padapter; - - /* 1, 6, 11 are the social channel defined in the WiFi Direct specification. */ - pwdinfo->social_chan[0] = 1; - pwdinfo->social_chan[1] = 6; - pwdinfo->social_chan[2] = 11; - pwdinfo->social_chan[3] = 0; /* channel 0 for scanning ending in site survey function. */ - -#ifdef CONFIG_CONCURRENT_MODE - if (pbuddy_adapter) - pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; - - if ((check_buddy_fwstate(padapter, _FW_LINKED) == true) && - ((pbuddy_mlmeext->cur_channel == 1) || - (pbuddy_mlmeext->cur_channel == 6) || - (pbuddy_mlmeext->cur_channel == 11))) { - /* Use the AP's channel as the listen channel */ - /* This will avoid the channel switch between AP's channel and listen channel. */ - pwdinfo->listen_channel = pbuddy_mlmeext->cur_channel; - } else -#endif /* CONFIG_CONCURRENT_MODE */ - { - /* Use the channel 11 as the listen channel */ - pwdinfo->listen_channel = 11; - } - - if (role == P2P_ROLE_DEVICE) { - rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE); - #ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED) == true) - rtw_p2p_set_state(pwdinfo, P2P_STATE_IDLE); - else - #endif - rtw_p2p_set_state(pwdinfo, P2P_STATE_LISTEN); - pwdinfo->intent = 1; - rtw_p2p_set_pre_state(pwdinfo, P2P_STATE_LISTEN); - } else if (role == P2P_ROLE_CLIENT) { - 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); - } else if (role == P2P_ROLE_GO) { - 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); - } - -/* 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 */ - - memcpy((void *)pwdinfo->p2p_wildcard_ssid, "DIRECT-", 7); - - memset(pwdinfo->device_name, 0x00, WPS_MAX_DEVICE_NAME_LEN); - pwdinfo->device_name_len = 0; - - memset(&pwdinfo->invitereq_info, 0x00, sizeof(struct tx_invite_req_info)); - pwdinfo->invitereq_info.token = 3; /* Token used for P2P invitation request frame. */ - - memset(&pwdinfo->inviteresp_info, 0x00, sizeof(struct tx_invite_resp_info)); - pwdinfo->inviteresp_info.token = 0; - - pwdinfo->profileindex = 0; - memset(&pwdinfo->profileinfo[0], 0x00, sizeof(struct profile_info) * P2P_MAX_PERSISTENT_GROUP_NUM); - - rtw_p2p_findphase_ex_set(pwdinfo, P2P_FINDPHASE_EX_NONE); - - pwdinfo->listen_dwell = (u8) ((rtw_get_current_time() % 3) + 1); - /* DBG_8192D("[%s] listen_dwell time is %d00ms\n", __func__, pwdinfo->listen_dwell); */ - - memset(&pwdinfo->tx_prov_disc_info, 0x00, sizeof(struct tx_provdisc_req_info)); - pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_NONE; - - memset(&pwdinfo->nego_req_info, 0x00, sizeof(struct tx_nego_req_info)); - - pwdinfo->device_password_id_for_nego = WPS_DPID_PBC; - pwdinfo->negotiation_dialog_token = 1; - - memset(pwdinfo->nego_ssid, 0x00, WLAN_SSID_MAXLEN); - pwdinfo->nego_ssidlen = 0; - - pwdinfo->ui_got_wps_info = P2P_NO_WPSINFO; -#ifdef CONFIG_WFD - pwdinfo->supported_wps_cm = WPS_CONFIG_METHOD_DISPLAY | WPS_CONFIG_METHOD_PBC; - pwdinfo->wfd_info = pwfd_info; -#else - pwdinfo->supported_wps_cm = WPS_CONFIG_METHOD_DISPLAY | WPS_CONFIG_METHOD_PBC | WPS_CONFIG_METHOD_KEYPAD; -#endif /* CONFIG_WFD */ - pwdinfo->channel_list_attr_len = 0; - memset(pwdinfo->channel_list_attr, 0x00, 100); - - memset(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, 0x00, 4); - memset(pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req, '0', 3); - memset(&pwdinfo->groupid_info, 0x00, sizeof(struct group_id_info)); -#ifdef CONFIG_CONCURRENT_MODE -#ifdef CONFIG_IOCTL_CFG80211 - pwdinfo->ext_listen_interval = 1000; /* The interval to be available with legacy AP during p2p0-find/scan */ - pwdinfo->ext_listen_period = 3000; /* The time period to be available for P2P during nego */ -#else /* CONFIG_IOCTL_CFG80211 */ - pwdinfo->ext_listen_interval = 1000; - pwdinfo->ext_listen_period = 1000; -#endif /* CONFIG_IOCTL_CFG80211 */ -#endif - pwdinfo->wfd_tdls_enable = 0; - memset(pwdinfo->p2p_peer_interface_addr, 0x00, ETH_ALEN); - memset(pwdinfo->p2p_peer_device_addr, 0x00, ETH_ALEN); - - pwdinfo->rx_invitereq_info.operation_ch[0] = 0; - pwdinfo->rx_invitereq_info.operation_ch[1] = 0; /* Used to indicate the scan end in site survey function */ - pwdinfo->rx_invitereq_info.scan_op_ch_only = 0; - pwdinfo->p2p_info.operation_ch[0] = 0; - pwdinfo->p2p_info.operation_ch[1] = 0; /* Used to indicate the scan end in site survey function */ - pwdinfo->p2p_info.scan_op_ch_only = 0; -} - -#ifdef CONFIG_DBG_P2P -char *p2p_role_str[] = { - "P2P_ROLE_DISABLE", - "P2P_ROLE_DEVICE", - "P2P_ROLE_CLIENT", - "P2P_ROLE_GO" -}; - -char *p2p_state_str[] = { - "P2P_STATE_NONE", - "P2P_STATE_IDLE", - "P2P_STATE_LISTEN", - "P2P_STATE_SCAN", - "P2P_STATE_FIND_PHASE_LISTEN", - "P2P_STATE_FIND_PHASE_SEARCH", - "P2P_STATE_TX_PROVISION_DIS_REQ", - "P2P_STATE_RX_PROVISION_DIS_RSP", - "P2P_STATE_RX_PROVISION_DIS_REQ", - "P2P_STATE_GONEGO_ING", - "P2P_STATE_GONEGO_OK", - "P2P_STATE_GONEGO_FAIL", - "P2P_STATE_RECV_INVITE_REQ_MATCH", - "P2P_STATE_PROVISIONING_ING", - "P2P_STATE_PROVISIONING_DONE" - "P2P_STATE_RECV_INVITE_REQ_DISMATCH", - "P2P_STATE_RECV_INVITE_REQ_GO", -}; - -void dbg_rtw_p2p_set_state(struct wifidirect_info *wdinfo, enum P2P_STATE state, const char *caller, int line) -{ - if (!_rtw_p2p_chk_state(wdinfo, state)) { - enum P2P_STATE old_state = _rtw_p2p_state(wdinfo); - _rtw_p2p_set_state(wdinfo, state); - DBG_8192D("[CONFIG_DBG_P2P]%s:%d set_state from %s to %s\n", caller, line - , p2p_state_str[old_state], p2p_state_str[_rtw_p2p_state(wdinfo)] - ); - } else { - DBG_8192D("[CONFIG_DBG_P2P]%s:%d set_state to same state %s\n", caller, line - , p2p_state_str[_rtw_p2p_state(wdinfo)] - ); - } -} -void dbg_rtw_p2p_set_pre_state(struct wifidirect_info *wdinfo, enum P2P_STATE state, const char *caller, int line) -{ - if (_rtw_p2p_pre_state(wdinfo) != state) { - enum P2P_STATE old_state = _rtw_p2p_pre_state(wdinfo); - _rtw_p2p_set_pre_state(wdinfo, state); - DBG_8192D("[CONFIG_DBG_P2P]%s:%d set_pre_state from %s to %s\n", caller, line - , p2p_state_str[old_state], p2p_state_str[_rtw_p2p_pre_state(wdinfo)] - ); - } else { - DBG_8192D("[CONFIG_DBG_P2P]%s:%d set_pre_state to same state %s\n", caller, line - , p2p_state_str[_rtw_p2p_pre_state(wdinfo)] - ); - } -} - -void dbg_rtw_p2p_set_role(struct wifidirect_info *wdinfo, enum P2P_ROLE role, const char *caller, int line) -{ - if (wdinfo->role != role) { - enum P2P_ROLE old_role = wdinfo->role; - _rtw_p2p_set_role(wdinfo, role); - DBG_8192D("[CONFIG_DBG_P2P]%s:%d set_role from %s to %s\n", caller, line - , p2p_role_str[old_role], p2p_role_str[wdinfo->role] - ); - } else { - DBG_8192D("[CONFIG_DBG_P2P]%s:%d set_role to same role %s\n", caller, line - , p2p_role_str[wdinfo->role] - ); - } } -#endif /* CONFIG_DBG_P2P */ -int rtw_p2p_enable(struct rtw_adapter *padapter, enum P2P_ROLE role) +void p2p_protocol_wk_hdl(struct rtw_adapter *padapter, int intCmdType) { - int ret = _SUCCESS; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv; - - if (role == P2P_ROLE_DEVICE || role == P2P_ROLE_CLIENT || - role == P2P_ROLE_GO) { - u8 channel, ch_offset; - u16 bwmode; - -#ifdef CONFIG_CONCURRENT_MODE - struct rtw_adapter *pbuddy_adapter = padapter->pbuddy_adapter; - struct wifidirect_info *pbuddy_wdinfo = &pbuddy_adapter->wdinfo; - /* Commented by Albert 2011/12/30 */ - /* The driver just supports 1 P2P group operation. */ - /* So, this function will do nothing if the buddy adapter had enabled the P2P function. */ - if (!rtw_p2p_chk_state(pbuddy_wdinfo, P2P_STATE_NONE)) { - /* The buddy adapter had enabled the P2P function. */ - return ret; - } -#endif /* CONFIG_CONCURRENT_MODE */ - - /* leave IPS/Autosuspend */ - if (_FAIL == rtw_pwr_wakeup(padapter)) { - ret = _FAIL; - goto exit; - } - - /* 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 */ - update_tx_basic_rate(padapter, WIRELESS_11AGN); - - /* Enable P2P function */ - init_wifidirect_info(padapter, role); - } else if (role == P2P_ROLE_DISABLE) { - if (_FAIL == rtw_pwr_wakeup(padapter)) { - ret = _FAIL; - goto exit; - } - - /* Disable P2P function */ - 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); - #ifdef CONFIG_CONCURRENT_MODE - _cancel_timer_ex(&pwdinfo->ap_p2p_switch_timer); - #endif - rtw_p2p_set_state(pwdinfo, P2P_STATE_NONE); - rtw_p2p_set_role(pwdinfo, P2P_ROLE_DISABLE); - memset(&pwdinfo->rx_prov_disc_info, 0x00, sizeof(struct rx_provdisc_req_info)); - } - - /* Restore to initial setting. */ - update_tx_basic_rate(padapter, padapter->registrypriv.wireless_mode); - } - -exit: - return ret; } - -#endif /* CONFIG_P2P */ diff --git a/core/rtw_pwrctrl.c b/core/rtw_pwrctrl.c index ede46990..21b2ca66 100644 --- a/core/rtw_pwrctrl.c +++ b/core/rtw_pwrctrl.c @@ -108,23 +108,10 @@ extern void autosuspend_enter(struct rtw_adapter *padapter); extern int autoresume_enter(struct rtw_adapter *padapter); #endif -#ifdef SUPPORT_HW_RFOFF_DETECTED -int rtw_hw_suspend(struct rtw_adapter *padapter); -int rtw_hw_resume(struct rtw_adapter *padapter); -#endif - static bool rtw_pwr_unassociated_idle(struct rtw_adapter *adapter) { struct rtw_adapter *buddy = adapter->pbuddy_adapter; struct mlme_priv *pmlmepriv = &(adapter->mlmepriv); -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(adapter->wdinfo); -#ifdef CONFIG_IOCTL_CFG80211 - struct cfg80211_wifidirect_info *pcfg80211_wdinfo = - &adapter->cfg80211_wdinfo; -#endif -#endif - bool ret = false; if (adapter->pwrctrlpriv.ips_deny_time >= rtw_get_current_time()) { @@ -135,33 +122,16 @@ static bool rtw_pwr_unassociated_idle(struct rtw_adapter *adapter) if (check_fwstate(pmlmepriv, WIFI_ASOC_STATE | WIFI_SITE_MONITOR) || check_fwstate(pmlmepriv, WIFI_UNDER_LINKING | WIFI_UNDER_WPS) || check_fwstate(pmlmepriv, WIFI_AP_STATE) || -#if defined(CONFIG_P2P) && defined(CONFIG_IOCTL_CFG80211) && defined(CONFIG_P2P_IPS) - pcfg80211_wdinfo->is_ro_ch || -#elif defined(CONFIG_P2P) - !rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE) || -#endif check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE | WIFI_ADHOC_STATE)) goto exit; /* consider buddy, if exist */ if (buddy) { struct mlme_priv *b_pmlmepriv = &(buddy->mlmepriv); -#ifdef CONFIG_P2P - struct wifidirect_info *b_pwdinfo = &(buddy->wdinfo); -#ifdef CONFIG_IOCTL_CFG80211 - struct cfg80211_wifidirect_info *b_pcfg80211_wdinfo = - &buddy->cfg80211_wdinfo; -#endif -#endif if (check_fwstate(b_pmlmepriv, WIFI_ASOC_STATE | WIFI_SITE_MONITOR) || check_fwstate(b_pmlmepriv, WIFI_UNDER_LINKING | WIFI_UNDER_WPS) || check_fwstate(b_pmlmepriv, WIFI_AP_STATE) || -#if defined(CONFIG_P2P) && defined(CONFIG_IOCTL_CFG80211) && defined(CONFIG_P2P_IPS) - b_pcfg80211_wdinfo->is_ro_ch || -#elif defined(CONFIG_P2P) - !rtw_p2p_chk_state(b_pwdinfo, P2P_STATE_NONE) || -#endif check_fwstate(b_pmlmepriv, WIFI_ADHOC_MASTER_STATE | WIFI_ADHOC_STATE)) { goto exit; } @@ -174,72 +144,11 @@ static bool rtw_pwr_unassociated_idle(struct rtw_adapter *adapter) void rtw_ps_processor(struct rtw_adapter *padapter) { -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); -#endif /* CONFIG_P2P */ struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv; struct mlme_priv *pmlmepriv = &(padapter->mlmepriv); -#ifdef SUPPORT_HW_RFOFF_DETECTED - rt_rf_power_state rfpwrstate; -#endif /* SUPPORT_HW_RFOFF_DETECTED */ pwrpriv->ps_processing = true; -#ifdef SUPPORT_HW_RFOFF_DETECTED - if (pwrpriv->bips_processing == true) - goto exit; - - /* DBG_8192D("==> fw report state(0x%x)\n",rtw_read8(padapter,0x1ca)); */ - if (padapter->pwrctrlpriv.bHWPwrPindetect) { -#ifdef CONFIG_AUTOSUSPEND - if (padapter->registrypriv.usbss_enable) { - if (pwrpriv->rf_pwrstate == rf_on) { - if (padapter->net_closed == true) - pwrpriv->ps_flag = true; - - rfpwrstate = RfOnOffDetect(padapter); - DBG_8192D("@@@@- #1 %s==> rfstate:%s\n", - __func__, - (rfpwrstate == - rf_on) ? "rf_on" : "rf_off"); - if (rfpwrstate != pwrpriv->rf_pwrstate) { - if (rfpwrstate == rf_off) { - pwrpriv->change_rfpwrstate = - rf_off; - - pwrpriv->bkeepfwalive = true; - pwrpriv->brfoffbyhw = true; - - autosuspend_enter(padapter); - } - } - } - } else -#endif /* CONFIG_AUTOSUSPEND */ - { - rfpwrstate = RfOnOffDetect(padapter); - DBG_8192D("@@@@- #2 %s==> rfstate:%s\n", __func__, - (rfpwrstate == rf_on) ? "rf_on" : "rf_off"); - - if (rfpwrstate != pwrpriv->rf_pwrstate) { - if (rfpwrstate == rf_off) { - pwrpriv->change_rfpwrstate = rf_off; - pwrpriv->brfoffbyhw = true; - padapter->bCardDisableWOHSM = true; - rtw_hw_suspend(padapter); - } else { - pwrpriv->change_rfpwrstate = rf_on; - rtw_hw_resume(padapter); - } - DBG_8192D("current rf_pwrstate(%s)\n", - (pwrpriv->rf_pwrstate == - rf_off) ? "rf_off" : "rf_on"); - } - } - pwrpriv->pwr_state_check_cnts++; - } -#endif /* SUPPORT_HW_RFOFF_DETECTED */ - if (pwrpriv->ips_mode_req == IPS_NONE #ifdef CONFIG_CONCURRENT_MODE || padapter->pbuddy_adapter->pwrctrlpriv.ips_mode_req == IPS_NONE @@ -364,10 +273,8 @@ static u8 ps_rdy_check(struct rtw_adapter *padapter) DBG_8192D("Group handshake still in progress !!!\n"); return false; } -#ifdef CONFIG_IOCTL_CFG80211 if (!rtw_cfg80211_pwr_mgmt(padapter)) return false; -#endif return true; } @@ -375,15 +282,6 @@ static u8 ps_rdy_check(struct rtw_adapter *padapter) void rtw_set_ps_mode(struct rtw_adapter *padapter, u8 ps_mode, u8 smart_ps) { struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); -#endif /* CONFIG_P2P */ -#ifdef CONFIG_TDLS - struct sta_priv *pstapriv = &padapter->stapriv; - int i, j; - _list *plist, *phead; - struct sta_info *ptdls_sta; -#endif /* CONFIG_TDLS */ RT_TRACE(_module_rtl871x_pwrctrl_c_, _drv_notice_, ("%s: PowerMode=%d Smart_PS=%d\n", @@ -401,9 +299,6 @@ void rtw_set_ps_mode(struct rtw_adapter *padapter, u8 ps_mode, u8 smart_ps) /* if (pwrpriv->pwr_mode == PS_MODE_ACTIVE) */ if (ps_mode == PS_MODE_ACTIVE) { -#ifdef CONFIG_P2P_PS - if (pwdinfo->opp_ps == 0) -#endif /* CONFIG_P2P_PS */ { #ifdef CONFIG_LPS_LCLK _enter_pwrlock(&pwrpriv->lock); @@ -411,31 +306,6 @@ void rtw_set_ps_mode(struct rtw_adapter *padapter, u8 ps_mode, u8 smart_ps) DBG_8192D ("rtw_set_ps_mode(): Busy Traffic , Leave 802.11 power save..\n"); -#ifdef CONFIG_TDLS - spin_lock_bh(&pstapriv->sta_hash_lock); - - for (i = 0; i < NUM_STA; i++) { - phead = &(pstapriv->sta_hash[i]); - plist = phead->next; - - while ((rtw_end_of_queue_search(phead, plist)) - == false) { - ptdls_sta = - container_of(plist, - struct sta_info, - hash_list); - - if (ptdls_sta-> - tdls_sta_state & TDLS_LINKED_STATE) - issue_nulldata_to_TDLS_peer_STA - (padapter, ptdls_sta, 0); - plist = plist->next; - } - } - - spin_unlock_bh(&pstapriv->sta_hash_lock); -#endif /* CONFIG_TDLS */ - pwrpriv->smart_ps = smart_ps; pwrpriv->pwr_mode = ps_mode; @@ -472,40 +342,10 @@ void rtw_set_ps_mode(struct rtw_adapter *padapter, u8 ps_mode, u8 smart_ps) DBG_8192D ("rtw_set_ps_mode(): Enter 802.11 power save mode...\n"); -#ifdef CONFIG_TDLS - spin_lock_bh(&pstapriv->sta_hash_lock); - - for (i = 0; i < NUM_STA; i++) { - phead = &(pstapriv->sta_hash[i]); - plist = phead->next; - - while ((rtw_end_of_queue_search(phead, plist)) - == false) { - ptdls_sta = - container_of(plist, - struct sta_info, - hash_list); - - if (ptdls_sta-> - tdls_sta_state & TDLS_LINKED_STATE) - issue_nulldata_to_TDLS_peer_STA - (padapter, ptdls_sta, 1); - plist = plist->next; - } - } - - spin_unlock_bh(&pstapriv->sta_hash_lock); -#endif /* CONFIG_TDLS */ - pwrpriv->smart_ps = smart_ps; pwrpriv->pwr_mode = ps_mode; pwrpriv->bFwCurrentInPSMode = true; rtw_hal_set_hwreg(padapter, HW_VAR_H2C_FW_PWRMODE, (u8 *)(&ps_mode)); -#ifdef CONFIG_P2P_PS - /* Set CTWindow after LPS */ - if (pwdinfo->opp_ps == 1) - p2p_ps_wk_cmd(padapter, P2P_PS_ENABLE, 0); -#endif /* CONFIG_P2P_PS */ #ifdef CONFIG_LPS_LCLK if (pwrpriv->alives == 0) rtw_set_rpwm(padapter, PS_STATE_S0); @@ -541,24 +381,12 @@ void rtw_lps_enter(struct rtw_adapter *padapter) /* consider buddy, if exist */ if (buddy) { struct mlme_priv *b_pmlmepriv = &(buddy->mlmepriv); -#ifdef CONFIG_P2P - struct wifidirect_info *b_pwdinfo = &(buddy->wdinfo); -#ifdef CONFIG_IOCTL_CFG80211 - struct cfg80211_wifidirect_info *b_pcfg80211_wdinfo = - &buddy->cfg80211_wdinfo; -#endif -#endif if (check_fwstate (b_pmlmepriv, WIFI_ASOC_STATE | WIFI_SITE_MONITOR) || check_fwstate(b_pmlmepriv, WIFI_UNDER_LINKING | WIFI_UNDER_WPS) || check_fwstate(b_pmlmepriv, WIFI_AP_STATE) || check_fwstate(b_pmlmepriv, WIFI_ADHOC_MASTER_STATE | WIFI_ADHOC_STATE) || -#if defined(CONFIG_P2P) && defined(CONFIG_IOCTL_CFG80211) && defined(CONFIG_P2P_IPS) - b_pcfg80211_wdinfo->is_ro_ch || -#elif defined(CONFIG_P2P) - !rtw_p2p_chk_state(b_pwdinfo, P2P_STATE_NONE) || -#endif rtw_is_scan_deny(buddy)) return; } @@ -645,9 +473,6 @@ void LeaveAllPowerSaveMode(struct rtw_adapter *adapter) /* DBG_8192D("%s.....\n",__func__); */ if (check_fwstate(pmlmepriv, _FW_LINKED) == true) { /* connect */ -#ifdef CONFIG_P2P_PS - p2p_ps_wk_cmd(adapter, P2P_PS_DISABLE, 0); -#endif /* CONFIG_P2P_PS */ #ifdef CONFIG_LPS /* DBG_8192D("==> leave LPS.......\n"); */ rtw_lps_leave(adapter); @@ -973,13 +798,6 @@ void rtw_init_pwrctrl_priv(struct rtw_adapter *padapter) pwrctrlpriv->bInSuspend = false; pwrctrlpriv->bkeepfwalive = false; -#ifdef CONFIG_AUTOSUSPEND -#ifdef SUPPORT_HW_RFOFF_DETECTED - pwrctrlpriv->pwr_state_check_interval = - (pwrctrlpriv->bHWPwrPindetect) ? 1000 : 2000; -#endif -#endif - pwrctrlpriv->LpsIdleCount = 0; pwrctrlpriv->power_mgnt = padapter->registrypriv.power_mgnt; /* PS_MODE_MIN; */ pwrctrlpriv->bLeisurePs = diff --git a/core/rtw_recv.c b/core/rtw_recv.c index cdf36d1d..aaeadd4c 100644 --- a/core/rtw_recv.c +++ b/core/rtw_recv.c @@ -788,19 +788,11 @@ void process_wmmps_data(struct rtw_adapter *padapter, if (!psta) return; -#ifdef CONFIG_TDLS - if (!(psta->tdls_sta_state & TDLS_LINKED_STATE)) { -#endif /* CONFIG_TDLS */ - - if (!psta->qos_option) - return; - - if (!(psta->qos_info & 0xf)) - return; + if (!psta->qos_option) + return; -#ifdef CONFIG_TDLS - } -#endif /* CONFIG_TDLS */ + if (!(psta->qos_info & 0xf)) + return; if (psta->state & WIFI_SLEEP_STATE) { u8 wmmps_ac = 0; @@ -841,92 +833,6 @@ void process_wmmps_data(struct rtw_adapter *padapter, #endif } -#ifdef CONFIG_TDLS -int OnTDLS(struct rtw_adapter *adapter, struct recv_frame_hdr *precv_frame) -{ - struct rx_pkt_attrib *pattrib = &precv_frame->attrib; - int ret = _SUCCESS; - u8 *paction = get_recvframe_data(precv_frame); - u8 category_field = 1; -#ifdef CONFIG_WFD - u8 WFA_OUI[3] = { 0x50, 0x6f, 0x9a }; -#endif /* CONFIG_WFD */ - struct tdls_info *ptdlsinfo = &(adapter->tdlsinfo); - - /* point to action field */ - paction += pattrib->hdrlen - + pattrib->iv_len - + SNAP_SIZE + ETH_TYPE_LEN + PAYLOAD_TYPE_LEN + category_field; - - if (ptdlsinfo->enable == 0) { - DBG_8192D("recv tdls frame, " "but tdls haven't enabled\n"); - ret = _FAIL; - return ret; - } - - switch (*paction) { - case TDLS_SETUP_REQUEST: - DBG_8192D("recv tdls setup request frame\n"); - ret = On_TDLS_Setup_Req(adapter, precv_frame); - break; - case TDLS_SETUP_RESPONSE: - DBG_8192D("recv tdls setup response frame\n"); - ret = On_TDLS_Setup_Rsp(adapter, precv_frame); - break; - case TDLS_SETUP_CONFIRM: - DBG_8192D("recv tdls setup confirm frame\n"); - ret = On_TDLS_Setup_Cfm(adapter, precv_frame); - break; - case TDLS_TEARDOWN: - DBG_8192D("recv tdls teardown, free sta_info\n"); - ret = On_TDLS_Teardown(adapter, precv_frame); - break; - case TDLS_DISCOVERY_REQUEST: - DBG_8192D("recv tdls discovery request frame\n"); - ret = On_TDLS_Dis_Req(adapter, precv_frame); - break; - case TDLS_PEER_TRAFFIC_RESPONSE: - DBG_8192D("recv tdls peer traffic response frame\n"); - ret = On_TDLS_Peer_Traffic_Rsp(adapter, precv_frame); - break; - case TDLS_CHANNEL_SWITCH_REQUEST: - DBG_8192D("recv tdls channel switch request frame\n"); - ret = On_TDLS_Ch_Switch_Req(adapter, precv_frame); - break; - case TDLS_CHANNEL_SWITCH_RESPONSE: - DBG_8192D("recv tdls channel switch response frame\n"); - ret = On_TDLS_Ch_Switch_Rsp(adapter, precv_frame); - break; -#ifdef CONFIG_WFD - case 0x50: /* First byte of WFA OUI */ - if (_rtw_memcmp(WFA_OUI, (paction), 3)) { - if (*(paction + 3) == 0x04) { /* Probe request frame */ - /* WFDTDLS: for sigma test, do not setup direct link automatically */ - ptdlsinfo->dev_discovered = 1; - DBG_8192D - ("recv tunneled probe request frame\n"); - issue_tunneled_probe_rsp(adapter, precv_frame); - } - if (*(paction + 3) == 0x05) { /* Probe response frame */ - /* WFDTDLS: for sigma test, do not setup direct link automatically */ - ptdlsinfo->dev_discovered = 1; - DBG_8192D - ("recv tunneled probe response frame\n"); - } - } - break; -#endif /* CONFIG_WFD */ - default: - DBG_8192D("receive TDLS frame but not supported\n"); - ret = _FAIL; - break; - } - -exit: - return ret; -} -#endif /* CONFIG_TDLS */ - static void count_rx_stats(struct rtw_adapter *padapter, struct recv_frame_hdr *prframe, struct sta_info *sta) { @@ -970,13 +876,6 @@ static int sta2sta_data_frame(struct rtw_adapter *adapter, u8 *sta_addr = NULL; int bmcast = IS_MCAST(pattrib->dst); -#ifdef CONFIG_TDLS - struct tdls_info *ptdlsinfo = &adapter->tdlsinfo; - struct sta_info *ptdls_sta = NULL; - u8 *psnap_type = ptr + pattrib->hdrlen + pattrib->iv_len + SNAP_SIZE; - u8 *pframe_body = psnap_type + ETH_TYPE_LEN + PAYLOAD_TYPE_LEN; -#endif /* CONFIG_TDLS */ - if ((check_fwstate(pmlmepriv, WIFI_ADHOC_STATE) == true) || (check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE) == true)) { /* filter packets that SA is myself or multicast or broadcast */ @@ -1002,105 +901,15 @@ static int sta2sta_data_frame(struct rtw_adapter *adapter, sta_addr = pattrib->src; } else if (check_fwstate(pmlmepriv, WIFI_STATION_STATE) == true) { -#ifdef CONFIG_TDLS - /* direct link data transfer */ - if (ptdlsinfo->setup_state == TDLS_LINKED_STATE) { - ptdls_sta = rtw_get_stainfo(pstapriv, pattrib->src); - if (ptdls_sta == NULL) { - ret = _FAIL; - goto exit; - } else if (ptdls_sta-> - tdls_sta_state & TDLS_LINKED_STATE) { - /* drop QoS-SubType Data, including QoS NULL, excluding QoS-Data */ - if ((GetFrameSubType(ptr) & WIFI_QOS_DATA_TYPE) - == WIFI_QOS_DATA_TYPE) { - if (GetFrameSubType(ptr) & - (BIT(4) | BIT(5) | BIT(6))) { - DBG_8192D - ("drop QoS-Sybtype Data\n"); - ret = _FAIL; - goto exit; - } - } - /* filter packets that SA is myself or multicast or broadcast */ - if (_rtw_memcmp - (myhwaddr, pattrib->src, ETH_ALEN)) { - ret = _FAIL; - goto exit; - } - /* da should be for me */ - if ((!_rtw_memcmp (myhwaddr, pattrib->dst, ETH_ALEN)) && - (!bmcast)) { - ret = _FAIL; - goto exit; - } - /* check BSSID */ - if (_rtw_memcmp(pattrib->bssid, "\x0\x0\x0\x0\x0\x0", ETH_ALEN) || - _rtw_memcmp(mybssid, "\x0\x0\x0\x0\x0\x0", ETH_ALEN) || - (!_rtw_memcmp(pattrib->bssid, mybssid, ETH_ALEN))) { - ret = _FAIL; - goto exit; - } - - /* process UAPSD tdls sta */ - process_pwrbit_data(adapter, precv_frame); - - /* if NULL-frame, check pwrbit */ - if ((GetFrameSubType(ptr)) == WIFI_DATA_NULL) { - /* NULL-frame with pwrbit=1, buffer_STA should buffer frames for sleep_STA */ - if (GetPwrMgt(ptr)) { - DBG_8192D - ("TDLS: recv peer null frame with pwr bit 1\n"); - ptdls_sta->tdls_sta_state |= - TDLS_PEER_SLEEP_STATE; - } - /* it would be triggered when we are off channel and receiving NULL DATA */ - /* we can confirm that peer STA is at off channel */ - else if (ptdls_sta-> - tdls_sta_state & - TDLS_CH_SWITCH_ON_STATE) { - if ((ptdls_sta-> - tdls_sta_state & - TDLS_PEER_AT_OFF_STATE) != - TDLS_PEER_AT_OFF_STATE) { - issue_nulldata_to_TDLS_peer_STA - (adapter, ptdls_sta, - 0); - ptdls_sta-> - tdls_sta_state |= - TDLS_PEER_AT_OFF_STATE; - On_TDLS_Peer_Traffic_Rsp - (adapter, - precv_frame); - } - } - - ret = _FAIL; - goto exit; - } - /* receive some of all TDLS management frames, process it at ON_TDLS */ - if ((_rtw_memcmp(psnap_type, SNAP_ETH_TYPE_TDLS, 2))) { - ret = OnTDLS(adapter, precv_frame); - goto exit; - } - } - - sta_addr = pattrib->src; - - } else -#endif /* CONFIG_TDLS */ - { - /* For Station mode, sa and bssid should always be BSSID, and DA is my mac-address */ - if (!_rtw_memcmp - (pattrib->bssid, pattrib->src, ETH_ALEN)) { - RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, - ("bssid != TA under STATION_MODE; drop pkt\n")); - ret = _FAIL; - goto exit; - } - - sta_addr = pattrib->bssid; + /* For Station mode, sa and bssid should always be BSSID, and DA is my mac-address */ + if (!_rtw_memcmp + (pattrib->bssid, pattrib->src, ETH_ALEN)) { + RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, + ("bssid != TA under STATION_MODE; drop pkt\n")); + ret = _FAIL; + goto exit; } + sta_addr = pattrib->bssid; } else if (check_fwstate(pmlmepriv, WIFI_AP_STATE) == true) { if (bmcast) { /* For AP mode, if DA == MCAST, then BSSID should be also MCAST */ @@ -1137,11 +946,6 @@ static int sta2sta_data_frame(struct rtw_adapter *adapter, else *psta = rtw_get_stainfo(pstapriv, sta_addr); /* get ap_info */ -#ifdef CONFIG_TDLS - if (ptdls_sta != NULL) - *psta = ptdls_sta; -#endif /* CONFIG_TDLS */ - if (*psta == NULL) { RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("can't get psta under sta2sta_data_frame ; drop pkt\n")); @@ -1173,15 +977,6 @@ static int ap2sta_data_frame(struct rtw_adapter *adapter, if (_rtw_memcmp(myhwaddr, pattrib->src, ETH_ALEN)) { RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, (" SA==myself\n")); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D - ("DBG_RX_DROP_FRAME %s SA=%x:%x:%x:%x:%x:%x, myhwaddr= %x:%x:%x:%x:%x:%x\n", - __func__, pattrib->src[0], pattrib->src[1], - pattrib->src[2], pattrib->src[3], pattrib->src[4], - pattrib->src[5], *(myhwaddr), *(myhwaddr + 1), - *(myhwaddr + 2), *(myhwaddr + 3), *(myhwaddr + 4), - *(myhwaddr + 5)); -#endif ret = _FAIL; goto exit; } @@ -1191,10 +986,6 @@ static int ap2sta_data_frame(struct rtw_adapter *adapter, RT_TRACE(_module_rtl871x_recv_c_, _drv_info_, (" ap2sta_data_frame: compare DA fail; DA=%pM\n", pattrib->dst)); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D("DBG_RX_DROP_FRAME %s DA=%pM\n", __func__, - pattrib->dst); -#endif ret = _FAIL; goto exit; } @@ -1208,15 +999,6 @@ static int ap2sta_data_frame(struct rtw_adapter *adapter, pattrib->bssid)); RT_TRACE(_module_rtl871x_recv_c_, _drv_info_, ("mybssid=%pM\n", mybssid)); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D - ("DBG_RX_DROP_FRAME %s BSSID=%pM, mybssid=%pM\n", - __func__, pattrib->bssid, mybssid); - DBG_8192D("this adapter = %d, buddy adapter = %d\n", - adapter->adapter_type, - adapter->pbuddy_adapter->adapter_type); -#endif - if (!bmcast) { DBG_8192D ("issue_deauth to the nonassociated ap=%pM for the reason(7)\n", @@ -1237,11 +1019,6 @@ static int ap2sta_data_frame(struct rtw_adapter *adapter, if (*psta == NULL) { RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("ap2sta: can't get psta under STATION_MODE ; drop pkt\n")); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D - ("DBG_RX_DROP_FRAME %s can't get psta under STATION_MODE ; drop pkt\n", - __func__); -#endif ret = _FAIL; goto exit; } @@ -1268,11 +1045,6 @@ static int ap2sta_data_frame(struct rtw_adapter *adapter, if (*psta == NULL) { RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("can't get psta under MP_MODE ; drop pkt\n")); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D - ("DBG_RX_DROP_FRAME %s can't get psta under WIFI_MP_STATE ; drop pkt\n", - __func__); -#endif ret = _FAIL; goto exit; } @@ -1295,10 +1067,6 @@ static int ap2sta_data_frame(struct rtw_adapter *adapter, } ret = _FAIL; -#ifdef DBG_RX_DROP_FRAME - DBG_8192D("DBG_RX_DROP_FRAME %s fw_state:0x%x\n", __func__, - get_fwstate(pmlmepriv)); -#endif } exit: @@ -1559,9 +1327,6 @@ static int validate_recv_data_frame(struct rtw_adapter *adapter, struct rx_pkt_attrib *pattrib = &precv_frame->attrib; struct security_priv *psecuritypriv = &adapter->securitypriv; int ret = _SUCCESS; -#ifdef CONFIG_TDLS - struct tdls_info *ptdlsinfo = &adapter->tdlsinfo; -#endif /* CONFIG_TDLS */ bretry = GetRetry(ptr); pda = get_da(ptr); @@ -1606,10 +1371,6 @@ static int validate_recv_data_frame(struct rtw_adapter *adapter, } if (ret == _FAIL) { -#ifdef DBG_RX_DROP_FRAME - DBG_8192D("DBG_RX_DROP_FRAME %s case:%d, res:%d\n", __func__, - pattrib->to_fr_ds, ret); -#endif goto exit; } else if (ret == RTW_RX_HANDLED) { goto exit; @@ -1666,14 +1427,8 @@ static int validate_recv_data_frame(struct rtw_adapter *adapter, ("\n ^^^^^^^^^^^IS_MCAST(pattrib->ra(0x%02x))=%d^^^^^^^^^^^^^^^6\n", pattrib->ra[0], IS_MCAST(pattrib->ra))); -#ifdef CONFIG_TDLS - if ((psta->tdls_sta_state & TDLS_LINKED_STATE) && - (psta->dot118021XPrivacy == _AES_)) { - pattrib->encrypt = psta->dot118021XPrivacy; - } else -#endif /* CONFIG_TDLS */ - GET_ENCRY_ALGO(psecuritypriv, psta, pattrib->encrypt, - IS_MCAST(pattrib->ra)); + GET_ENCRY_ALGO(psecuritypriv, psta, pattrib->encrypt, + IS_MCAST(pattrib->ra)); RT_TRACE(_module_rtl871x_recv_c_, _drv_info_, ("\n pattrib->encrypt=%d\n", pattrib->encrypt)); @@ -1694,25 +1449,19 @@ static int validate_recv_data_frame(struct rtw_adapter *adapter, static int validate_recv_frame(struct rtw_adapter *adapter, struct recv_frame_hdr *precv_frame) { - /* shall check frame subtype, to / from ds, da, bssid */ - - /* then call check if rx seq/frag. duplicated. */ - - u8 type; - u8 subtype; - int retval = _SUCCESS; - + /* shall check frame subtype, to / from ds, da, bssid + * then call check if rx seq/frag. duplicated. */ struct rx_pkt_attrib *pattrib = &precv_frame->attrib; - - u8 *ptr = precv_frame->rx_data; - u8 ver = (unsigned char)(*ptr) & 0x3; + struct sk_buff *skb = precv_frame->pkt; + struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; #ifdef CONFIG_FIND_BEST_CHANNEL struct mlme_ext_priv *pmlmeext = &adapter->mlmeextpriv; #endif - -#ifdef CONFIG_TDLS - struct tdls_info *ptdlsinfo = &adapter->tdlsinfo; -#endif /* CONFIG_TDLS */ + u8 type; + u8 subtype; + int retval = _SUCCESS; + u16 seq_ctrl, fctl; + u8 ver; #ifdef CONFIG_FIND_BEST_CHANNEL if (pmlmeext->sitesurvey_res.state == SCAN_PROCESS) { @@ -1724,10 +1473,10 @@ static int validate_recv_frame(struct rtw_adapter *adapter, } #endif -#ifdef CONFIG_TDLS - if (ptdlsinfo->ch_sensing == 1 && ptdlsinfo->cur_channel != 0) - ptdlsinfo->collect_pkt_num[ptdlsinfo->cur_channel - 1]++; -#endif /* CONFIG_TDLS */ + fctl = le16_to_cpu(hdr->frame_control); + ver = fctl & IEEE80211_FCTL_VERS; + type = fctl & IEEE80211_FCTL_FTYPE; + subtype = fctl & IEEE80211_FCTL_STYPE; /* add version chk */ if (ver != 0) { @@ -1737,35 +1486,34 @@ static int validate_recv_frame(struct rtw_adapter *adapter, goto exit; } - type = GetFrameType(ptr); - subtype = GetFrameSubType(ptr); /* bit(7)~bit(2) */ + seq_ctrl = le16_to_cpu(hdr->seq_ctrl); + pattrib->frag_num = seq_ctrl & IEEE80211_SCTL_FRAG; + pattrib->seq_num = seq_ctrl >> 4; - pattrib->to_fr_ds = get_tofr_ds(ptr); + pattrib->to_fr_ds = get_tofr_ds(precv_frame->rx_data); - pattrib->frag_num = GetFragNum(ptr); - pattrib->seq_num = GetSequence(ptr); + pattrib->pw_save = ieee80211_has_pm(hdr->frame_control); + pattrib->mfrag = ieee80211_has_morefrags(hdr->frame_control); + pattrib->mdata = ieee80211_has_moredata(hdr->frame_control); + pattrib->privacy = ieee80211_has_protected(hdr->frame_control); + pattrib->order = ieee80211_has_order(hdr->frame_control); - pattrib->pw_save = GetPwrMgt(ptr); - pattrib->mfrag = GetMFrag(ptr); - pattrib->mdata = GetMData(ptr); - pattrib->privacy = GetPrivacy(ptr); - pattrib->order = GetOrder(ptr); switch (type) { - case WIFI_MGT_TYPE: /* mgnt */ + case IEEE80211_FTYPE_MGMT: retval = validate_recv_mgnt_frame(adapter, precv_frame); if (retval == _FAIL) RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("validate_recv_mgnt_frame fail\n")); retval = _FAIL; /* only data frame return _SUCCESS */ break; - case WIFI_CTRL_TYPE: /* ctrl */ + case IEEE80211_FTYPE_CTL: retval = validate_recv_ctrl_frame(adapter, precv_frame); if (retval == _FAIL) RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("validate_recv_ctrl_frame fail\n")); retval = _FAIL; /* only data frame return _SUCCESS */ break; - case WIFI_DATA_TYPE: /* data */ + case IEEE80211_FTYPE_DATA: rtw_led_control(adapter, LED_CTL_RX); pattrib->qos = (subtype & BIT(7)) ? 1 : 0; retval = validate_recv_data_frame(adapter, precv_frame); @@ -1779,11 +1527,6 @@ static int validate_recv_frame(struct rtw_adapter *adapter, default: RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("validate_recv_data_frame fail! type=0x%x\n", type)); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D - ("DBG_RX_DROP_FRAME validate_recv_data_frame fail! type=0x%x\n", - type); -#endif retval = _FAIL; break; } @@ -2180,51 +1923,21 @@ static int amsdu_to_msdu(struct rtw_adapter *padapter, struct recv_frame_hdr *pr } /* Indicat the packets to upper layer */ - { - -#ifdef CONFIG_BR_EXT - /* Insert NAT2.5 RX here! */ - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - void *br_port = NULL; - -#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) - br_port = padapter->pnetdev->br_port; -#else /* (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) */ - rcu_read_lock(); - br_port = - rcu_dereference(padapter->pnetdev->rx_handler_data); - rcu_read_unlock(); -#endif /* (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) */ - - if (br_port && - (check_fwstate(pmlmepriv, WIFI_STATION_STATE | - WIFI_ADHOC_STATE) == true)) { - if (nat25_handle_frame(padapter, sub_skb) == -1) { - /* priv->ext_stats.rx_data_drops++; */ - /* DEBUG_ERR("RX DROP: nat25_handle_frame fail!\n"); */ - /* return FAIL; */ - - /* bypass this frame to upper layer!! */ - } - } -#endif /* CONFIG_BR_EXT */ - - sub_skb->protocol = - eth_type_trans(sub_skb, padapter->pnetdev); - sub_skb->dev = padapter->pnetdev; + sub_skb->protocol = + eth_type_trans(sub_skb, padapter->pnetdev); + sub_skb->dev = padapter->pnetdev; #ifdef CONFIG_TCP_CSUM_OFFLOAD_RX - if ((pattrib->tcpchk_valid == 1) && - (pattrib->tcp_chkrpt == 1)) - sub_skb->ip_summed = CHECKSUM_UNNECESSARY; - else - sub_skb->ip_summed = CHECKSUM_NONE; -#else /* !CONFIG_TCP_CSUM_OFFLOAD_RX */ + if ((pattrib->tcpchk_valid == 1) && + (pattrib->tcp_chkrpt == 1)) + sub_skb->ip_summed = CHECKSUM_UNNECESSARY; + else sub_skb->ip_summed = CHECKSUM_NONE; +#else /* !CONFIG_TCP_CSUM_OFFLOAD_RX */ + sub_skb->ip_summed = CHECKSUM_NONE; #endif /* CONFIG_TCP_CSUM_OFFLOAD_RX */ - netif_rx(sub_skb); - } + netif_rx(sub_skb); } exit: @@ -2251,14 +1964,8 @@ static int check_indicate_seq(struct recv_reorder_ctrl *preorder_ctrl, u16 seq_n } /* Drop out the packet which SeqNum is smaller than WinStart */ - if (SN_LESS(seq_num, preorder_ctrl->indicate_seq)) { -#ifdef DBG_RX_DROP_FRAME - DBG_8192D("%s IndicateSeq: %d > NewSeq: %d\n", __func__, - preorder_ctrl->indicate_seq, seq_num); -#endif - + if (SN_LESS(seq_num, preorder_ctrl->indicate_seq)) return false; - } /* */ /* Sliding window manipulation. Conditions includes: */ @@ -2563,30 +2270,12 @@ static int process_recv_indicatepkts(struct rtw_adapter *padapter, /* struct recv_priv *precvpriv = &padapter->recvpriv; */ /* struct rx_pkt_attrib *pattrib = &prframe->attrib; */ struct mlme_priv *pmlmepriv = &padapter->mlmepriv; -#ifdef CONFIG_TDLS - struct sta_info *psta = prframe->psta; -#endif /* CONFIG_TDLS */ - #ifdef CONFIG_80211N_HT - struct ht_priv *phtpriv = &pmlmepriv->htpriv; -#ifdef CONFIG_TDLS - if ((phtpriv->ht_option == true) || - ((psta->tdls_sta_state & TDLS_LINKED_STATE) && - (psta->htpriv.ht_option == true) && - (psta->htpriv.ampdu_enable == true))) /* B/G/N Mode */ -#else if (phtpriv->ht_option == true) /* B/G/N Mode */ -#endif /* CONFIG_TDLS */ { if (recv_indicatepkt_reorder(padapter, prframe) != _SUCCESS) { /* including perform A-MPDU Rx Ordering Buffer Control */ -#ifdef DBG_RX_DROP_FRAME - DBG_8192D - ("DBG_RX_DROP_FRAME %s recv_indicatepkt_reorder error!\n", - __func__); -#endif - if ((padapter->bDriverStopped == false) && (padapter->bSurpriseRemoved == false)) { retval = _FAIL; @@ -2600,11 +2289,6 @@ static int process_recv_indicatepkts(struct rtw_adapter *padapter, if (retval != _SUCCESS) { RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("wlanhdr_to_ethhdr: drop pkt\n")); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D - ("DBG_RX_DROP_FRAME %s wlanhdr_to_ethhdr error!\n", - __func__); -#endif return retval; } @@ -2659,11 +2343,6 @@ static int recv_func_posthandle(struct rtw_adapter *padapter, struct recv_priv *precvpriv = &padapter->recvpriv; struct __queue *pfree_recv_queue = &padapter->recvpriv.free_recv_queue; -#ifdef CONFIG_TDLS - u8 *psnap_type, *pcategory; - struct sta_info *ptdls_sta = NULL; -#endif /* CONFIG_TDLS */ - /* DATA FRAME */ rtw_led_control(padapter, LED_CTL_RX); @@ -2671,36 +2350,13 @@ static int recv_func_posthandle(struct rtw_adapter *padapter, if (prframe == NULL) { RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("decryptor: drop pkt\n")); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D("DBG_RX_DROP_FRAME %s decryptor: drop pkt\n", - __func__); -#endif ret = _FAIL; goto _recv_data_drop; } -#ifdef CONFIG_TDLS - /* check TDLS frame */ - psnap_type = get_recvframe_data(orig_prframe); - psnap_type += pattrib->hdrlen + pattrib->iv_len + SNAP_SIZE; - pcategory = psnap_type + ETH_TYPE_LEN + PAYLOAD_TYPE_LEN; - - if ((_rtw_memcmp(psnap_type, SNAP_ETH_TYPE_TDLS, ETH_TYPE_LEN)) && - ((*pcategory == RTW_WLAN_CATEGORY_TDLS) || - (*pcategory == RTW_WLAN_CATEGORY_P2P))) { - ret = OnTDLS(padapter, prframe); /* all of functions will return _FAIL */ - goto _exit_recv_func; - } -#endif /* CONFIG_TDLS */ - prframe = recvframe_chk_defrag(padapter, prframe); if (prframe == NULL) { RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("recvframe_chk_defrag: drop pkt\n")); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D - ("DBG_RX_DROP_FRAME %s recvframe_chk_defrag: drop pkt\n", - __func__); -#endif goto _recv_data_drop; } @@ -2708,20 +2364,10 @@ static int recv_func_posthandle(struct rtw_adapter *padapter, if (prframe == NULL) { RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("portctrl: drop pkt\n")); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D("DBG_RX_DROP_FRAME %s portctrl: drop pkt\n", - __func__); -#endif ret = _FAIL; goto _recv_data_drop; } -#ifdef CONFIG_TDLS - if (padapter->tdlsinfo.setup_state == TDLS_LINKED_STATE) - ptdls_sta = rtw_get_stainfo(&padapter->stapriv, pattrib->src); - count_rx_stats(padapter, prframe, ptdls_sta); -#else count_rx_stats(padapter, prframe, NULL); -#endif /* CONFIG_TDLS */ #ifdef CONFIG_80211N_HT @@ -2729,11 +2375,6 @@ static int recv_func_posthandle(struct rtw_adapter *padapter, if (ret != _SUCCESS) { RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("recv_func: process_recv_indicatepkts fail!\n")); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D - ("DBG_RX_DROP_FRAME %s recv_func: process_recv_indicatepkts fail!\n", - __func__); -#endif rtw_free_recvframe(orig_prframe, pfree_recv_queue); /* free this recv_frame */ goto _recv_data_drop; } @@ -2744,11 +2385,6 @@ static int recv_func_posthandle(struct rtw_adapter *padapter, if (ret != _SUCCESS) { RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("wlanhdr_to_ethhdr: drop pkt\n")); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D - ("DBG_RX_DROP_FRAME %s wlanhdr_to_ethhdr: drop pkt\n", - __func__); -#endif rtw_free_recvframe(orig_prframe, pfree_recv_queue); /* free this recv_frame */ goto _recv_data_drop; } @@ -2759,14 +2395,8 @@ static int recv_func_posthandle(struct rtw_adapter *padapter, ("@@@@ recv_func: recv_func rtw_recv_indicatepkt\n")); /* indicate this recv_frame */ ret = rtw_recv_indicatepkt(padapter, prframe); - if (ret != _SUCCESS) { -#ifdef DBG_RX_DROP_FRAME - DBG_8192D - ("DBG_RX_DROP_FRAME %s rtw_recv_indicatepkt fail!\n", - __func__); -#endif + if (ret != _SUCCESS) goto _recv_data_drop; - } } else { RT_TRACE(_module_rtl871x_recv_c_, _drv_alert_, ("@@@@ recv_func: rtw_free_recvframe\n")); @@ -2774,12 +2404,6 @@ static int recv_func_posthandle(struct rtw_adapter *padapter, ("recv_func:bDriverStopped(%d) OR bSurpriseRemoved(%d)", padapter->bDriverStopped, padapter->bSurpriseRemoved)); -#ifdef DBG_RX_DROP_FRAME - DBG_8192D - ("DBG_RX_DROP_FRAME %s ecv_func:bDriverStopped(%d) OR bSurpriseRemoved(%d)\n", - __func__, padapter->bDriverStopped, - padapter->bSurpriseRemoved); -#endif ret = _FAIL; rtw_free_recvframe(orig_prframe, pfree_recv_queue); /* free this recv_frame */ } @@ -2787,18 +2411,10 @@ static int recv_func_posthandle(struct rtw_adapter *padapter, } else if (pattrib->amsdu == 1) { ret = amsdu_to_msdu(padapter, prframe); if (ret != _SUCCESS) { -#ifdef DBG_RX_DROP_FRAME - DBG_8192D("DBG_RX_DROP_FRAME %s amsdu_to_msdu fail\n", - __func__); -#endif rtw_free_recvframe(orig_prframe, pfree_recv_queue); goto _recv_data_drop; } } else { -#ifdef DBG_RX_DROP_FRAME - DBG_8192D("DBG_RX_DROP_FRAME %s what is this condition??\n", - __func__); -#endif goto _recv_data_drop; } #endif /* CONFIG_80211N_HT */ diff --git a/core/rtw_security.c b/core/rtw_security.c index fd60a901..3290d10b 100644 --- a/core/rtw_security.c +++ b/core/rtw_security.c @@ -1395,21 +1395,6 @@ u32 rtw_aes_encrypt(struct rtw_adapter *padapter, u8 *pxmitframe) prwskey = &stainfo->dot118021x_UncstKey.skey[0]; } -#ifdef CONFIG_TDLS /* swencryption */ - { - struct sta_info *ptdls_sta; - ptdls_sta = - rtw_get_stainfo(&padapter->stapriv, - &pattrib->dst[0]); - if ((ptdls_sta != NULL) && - (ptdls_sta->tdls_sta_state & TDLS_LINKED_STATE)) { - DBG_8192D("[%s] for tdls link\n", - __func__); - prwskey = &ptdls_sta->tpk.tk[0]; - } - } -#endif /* CONFIG_TDLS */ - for (curfragnum = 0; curfragnum < pattrib->nr_frags; curfragnum++) { if ((curfragnum + 1) == pattrib->nr_frags) { /* 4 the last fragment */ @@ -2445,116 +2430,6 @@ static int omac1_aes_128(u8 *key, u8 *data, size_t data_len, u8 *mac) return omac1_aes_128_vector(key, 1, &data, &data_len, mac); } -#ifdef CONFIG_TDLS -void wpa_tdls_generate_tpk(struct rtw_adapter *padapter, struct sta_info *psta) -{ - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - u8 *SNonce = psta->SNonce; - u8 *ANonce = psta->ANonce; - - u8 key_input[SHA256_MAC_LEN]; - u8 *nonce[2]; - size_t len[2]; - u8 data[3 * ETH_ALEN]; - - /* IEEE Std 802.11z-2010 8.5.9.1: - * TPK-Key-Input = SHA-256(min(SNonce, ANonce) || max(SNonce, ANonce)) - */ - len[0] = 32; - len[1] = 32; - if (os_memcmp(SNonce, ANonce, 32) < 0) { - nonce[0] = SNonce; - nonce[1] = ANonce; - } else { - nonce[0] = ANonce; - nonce[1] = SNonce; - } - - sha256_vector(2, nonce, len, key_input); - - /* - * TPK-Key-Data = KDF-N_KEY(TPK-Key-Input, "TDLS PMK", - * min(MAC_I, MAC_R) || max(MAC_I, MAC_R) || BSSID || N_KEY) - * TODO: is N_KEY really included in KDF Context and if so, in which - * presentation format (little endian 16-bit?) is it used? It gets - * added by the KDF anyway.. - */ - - if (os_memcmp(myid(&(padapter->eeprompriv)), psta->hwaddr, ETH_ALEN) < 0) { - memcpy(data, myid(&(padapter->eeprompriv)), ETH_ALEN); - memcpy(data + ETH_ALEN, psta->hwaddr, ETH_ALEN); - } else { - memcpy(data, psta->hwaddr, ETH_ALEN); - memcpy(data + ETH_ALEN, myid(&(padapter->eeprompriv)), - ETH_ALEN); - } - memcpy(data + 2 * ETH_ALEN, get_bssid(pmlmepriv), ETH_ALEN); - - sha256_prf(key_input, SHA256_MAC_LEN, "TDLS PMK", data, sizeof(data), - (u8 *)&psta->tpk, sizeof(psta->tpk)); -} - -int tdls_verify_mic(u8 *kck, u8 trans_seq, - u8 *lnkid, u8 *rsnie, u8 *timeoutie, u8 *ftie) -{ - u8 *buf, *pos; - int len; - u8 mic[16]; - int ret; - u8 *rx_ftie, *tmp_ftie; - - if (lnkid == NULL || rsnie == NULL || timeoutie == NULL || ftie == NULL) - return 0; - - len = 2 * ETH_ALEN + 1 + 2 + 18 + 2 + *(rsnie + 1) + 2 + - *(timeoutie + 1) + 2 + *(ftie + 1); - - buf = kzalloc(len, GFP_KERNEL); - if (buf == NULL) - return 0; - - pos = buf; - /* 1) TDLS initiator STA MAC address */ - memcpy(pos, lnkid + ETH_ALEN + 2, ETH_ALEN); - pos += ETH_ALEN; - /* 2) TDLS responder STA MAC address */ - memcpy(pos, lnkid + 2 * ETH_ALEN + 2, ETH_ALEN); - pos += ETH_ALEN; - /* 3) Transaction Sequence number */ - *pos++ = trans_seq; - /* 4) Link Identifier IE */ - memcpy(pos, lnkid, 2 + 18); - pos += 2 + 18; - /* 5) RSN IE */ - memcpy(pos, rsnie, 2 + *(rsnie + 1)); - pos += 2 + *(rsnie + 1); - /* 6) Timeout Interval IE */ - memcpy(pos, timeoutie, 2 + *(timeoutie + 1)); - pos += 2 + *(timeoutie + 1); - /* 7) FTIE, with the MIC field of the FTIE set to 0 */ - memcpy(pos, ftie, 2 + *(ftie + 1)); - pos += 2; - tmp_ftie = (u8 *)(pos + 2); - memset(tmp_ftie, 0, 16); - pos += *(ftie + 1); - - ret = omac1_aes_128(kck, buf, pos - buf, mic); - kfree(buf); - if (ret) - return 0; - rx_ftie = ftie + 4; - - if (os_memcmp(mic, rx_ftie, 16) == 0) { - /* Valid MIC */ - return 1; - } - - /* Invalid MIC */ - DBG_8192D("[%s] Invalid MIC\n", __func__); - return 0; -} -#endif /* CONFIG_TDLS */ - void rtw_use_tkipkey_handler(void *FunctionContext) { struct rtw_adapter *padapter = (struct rtw_adapter *)FunctionContext; diff --git a/core/rtw_sta_mgt.c b/core/rtw_sta_mgt.c index 22bccf01..4111d698 100644 --- a/core/rtw_sta_mgt.c +++ b/core/rtw_sta_mgt.c @@ -116,11 +116,7 @@ u32 _rtw_init_sta_priv(struct sta_priv *pstapriv) pstapriv->auth_to = 3; /* 3*2 = 6 sec */ pstapriv->assoc_to = 3; -#ifdef CONFIG_ACTIVE_KEEP_ALIVE_CHECK pstapriv->expire_to = 3; /* 3*2 = 6 sec */ -#else - pstapriv->expire_to = 60;/* 60*2 = 120 sec = 2 min, expire after no any traffic. */ -#endif pstapriv->max_num_sta = NUM_STA; #endif @@ -328,16 +324,6 @@ struct sta_info *rtw_alloc_stainfo(struct sta_priv *pstapriv, u8 *hwaddr) init_addba_retry_timer(pstapriv->padapter, psta); -#ifdef CONFIG_TDLS - psta->padapter = pstapriv->padapter; - init_TPK_timer(pstapriv->padapter, psta); - init_ch_switch_timer(pstapriv->padapter, psta); - init_base_ch_timer(pstapriv->padapter, psta); - init_off_ch_timer(pstapriv->padapter, psta); - init_handshake_timer(pstapriv->padapter, psta); - init_tdls_alive_timer(pstapriv->padapter, psta); -#endif /* CONFIG_TDLS */ - /* for A-MPDU Rx reordering buffer control */ for (i = 0; i < 16; i++) { reorder = &psta->recvreorder_ctrl[i]; @@ -424,15 +410,6 @@ u32 rtw_free_stainfo(struct rtw_adapter *padapter, struct sta_info *psta) _cancel_timer_ex(&psta->addba_retry_timer); -#ifdef CONFIG_TDLS - _cancel_timer_ex(&psta->TPK_timer); - _cancel_timer_ex(&psta->option_timer); - _cancel_timer_ex(&psta->base_ch_timer); - _cancel_timer_ex(&psta->off_ch_timer); - _cancel_timer_ex(&psta->alive_timer1); - _cancel_timer_ex(&psta->alive_timer2); -#endif /* CONFIG_TDLS */ - /* for A-MPDU Rx reordering buffer control, cancel reorder_ctrl_timer */ for (i = 0; i < 16; i++) { struct list_head *phead, *plist; diff --git a/core/rtw_tdls.c b/core/rtw_tdls.c deleted file mode 100644 index 41665f84..00000000 --- a/core/rtw_tdls.c +++ /dev/null @@ -1,2695 +0,0 @@ -/****************************************************************************** - * - * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. - * - * 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. - * - * - ******************************************************************************/ -#define _RTW_TDLS_C_ - -#include -#include -#include -#include -#include - -#ifdef CONFIG_TDLS -extern unsigned char MCS_rate_2R[16]; -extern unsigned char MCS_rate_1R[16]; - -void rtw_reset_tdls_info(_adapter *padapter) -{ - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - - ptdlsinfo->ap_prohibited = false; - ptdlsinfo->setup_state = TDLS_STATE_NONE; - ptdlsinfo->sta_cnt = 0; - ptdlsinfo->sta_maximum = false; - ptdlsinfo->macid_index = 6; - ptdlsinfo->clear_cam = 0; - ptdlsinfo->ch_sensing = 0; - ptdlsinfo->cur_channel = 0; - ptdlsinfo->candidate_ch = 1; /* when inplement channel switching, default candidate channel is 1 */ - ptdlsinfo->watchdog_count = 0; - ptdlsinfo->dev_discovered = 0; - -#ifdef CONFIG_WFD - ptdlsinfo->wfd_info = &padapter->wfd_info; -#endif /* CONFIG_WFD */ -} - -int rtw_init_tdls_info(_adapter *padapter) -{ - int res = _SUCCESS; - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - - ptdlsinfo->enable = 1; - rtw_reset_tdls_info(padapter); - - _rtw_spinlock_init(&ptdlsinfo->cmd_lock); - _rtw_spinlock_init(&ptdlsinfo->hdl_lock); - - return res; -} - -void rtw_free_tdls_info(struct tdls_info *ptdlsinfo) -{ - _rtw_spinlock_free(&ptdlsinfo->cmd_lock); - _rtw_spinlock_free(&ptdlsinfo->hdl_lock); - - memset(ptdlsinfo, 0, sizeof(struct tdls_info)); -} - -void issue_nulldata_to_TDLS_peer_STA(_adapter *padapter, struct sta_info *ptdls_sta, unsigned int power_mode) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(padapter, pattrib); - - 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; - if (power_mode) - SetPwrMgt(fctrl); - - memcpy(pwlanhdr->addr1, ptdls_sta->hwaddr, ETH_ALEN); - memcpy(pwlanhdr->addr2, myid(&(padapter->eeprompriv)), ETH_ALEN); - memcpy(pwlanhdr->addr3, get_my_bssid(&(pmlmeinfo->network)), ETH_ALEN); - - ptdls_sta->sta_xmitpriv.txseq_tid[pattrib->priority]++; - ptdls_sta->sta_xmitpriv.txseq_tid[pattrib->priority] &= 0xFFF; - pattrib->seqnum = ptdls_sta->sta_xmitpriv.txseq_tid[pattrib->priority]; - SetSeqNum(pwlanhdr, pattrib->seqnum); - - SetFrameSubType(pframe, WIFI_DATA_NULL); - - pframe += sizeof(struct rtw_ieee80211_hdr_3addr); - pattrib->pktlen = sizeof(struct rtw_ieee80211_hdr_3addr); - - pattrib->last_txcmdsz = pattrib->pktlen; - dump_mgntframe(padapter, pmgntframe); - - return; -} - -s32 update_tdls_attrib(_adapter *padapter, struct pkt_attrib *pattrib) -{ - struct sta_info *psta = NULL; - struct sta_priv *pstapriv = &padapter->stapriv; - struct security_priv *psecuritypriv = &padapter->securitypriv; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct qos_priv *pqospriv = &pmlmepriv->qospriv; - - s32 res = _SUCCESS; - int bmcast; - - bmcast = IS_MCAST(pattrib->ra); - - psta = rtw_get_stainfo(pstapriv, pattrib->ra); - if (psta == NULL) { - res = _FAIL; - goto exit; - } - - pattrib->mac_id = psta->mac_id; - - pattrib->psta = psta; - - pattrib->ack_policy = 0; - /* get ether_hdr_len */ - pattrib->pkt_hdrlen = ETH_HLEN;/* pattrib->ether_type == 0x8100) ? (14 + 4): 14; vlan tag */ - - if (pqospriv->qos_option && psta->qos_option) { - pattrib->priority = 1; /* tdls management frame should be AC_BK */ - pattrib->hdrlen = WLAN_HDR_A3_QOS_LEN; - pattrib->subtype = WIFI_QOS_DATA_TYPE; - } else { - pattrib->hdrlen = WLAN_HDR_A3_LEN; - pattrib->subtype = WIFI_DATA_TYPE; - pattrib->priority = 0; - } - - if (psta->ieee8021x_blocked == true) { - pattrib->encrypt = 0; - } else { - GET_ENCRY_ALGO(psecuritypriv, psta, pattrib->encrypt, bmcast); - - switch (psecuritypriv->dot11AuthAlgrthm) { - case dot11AuthAlgrthm_Open: - case dot11AuthAlgrthm_Shared: - case dot11AuthAlgrthm_Auto: - pattrib->key_idx = (u8)psecuritypriv->dot11PrivacyKeyIndex; - break; - case dot11AuthAlgrthm_8021X: - pattrib->key_idx = 0; - break; - default: - pattrib->key_idx = 0; - break; - } - } - - switch (pattrib->encrypt) { - case _WEP40_: - case _WEP104_: - pattrib->iv_len = 4; - pattrib->icv_len = 4; - break; - case _TKIP_: - pattrib->iv_len = 8; - pattrib->icv_len = 4; - if (padapter->securitypriv.busetkipkey == _FAIL) { - res = _FAIL; - goto exit; - } - break; - case _AES_: - pattrib->iv_len = 8; - pattrib->icv_len = 8; - break; - default: - pattrib->iv_len = 0; - pattrib->icv_len = 0; - break; - } - - if (pattrib->encrypt && - ((padapter->securitypriv.sw_encrypt == true) || - (psecuritypriv->hw_decrypted == false))) - pattrib->bswenc = true; - else - pattrib->bswenc = false; - - /* qos_en, ht_en, init rate, , bw, ch_offset, sgi */ - pattrib->qos_en = psta->qos_option; - pattrib->ht_en = psta->htpriv.ht_option; - pattrib->raid = psta->raid; - pattrib->bwmode = psta->htpriv.bwmode; - pattrib->ch_offset = psta->htpriv.ch_offset; - pattrib->sgi = psta->htpriv.sgi; - pattrib->ampdu_en = false; -exit: - return res; -} - -void free_tdls_sta(_adapter *padapter, struct sta_info *ptdls_sta) -{ - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - struct sta_priv *pstapriv = &padapter->stapriv; - - /* free peer sta_info */ - spin_lock_bh(&(pstapriv->sta_hash_lock)); - if (ptdlsinfo->sta_cnt != 0) - ptdlsinfo->sta_cnt--; - spin_unlock_bh(&(pstapriv->sta_hash_lock)); - if (ptdlsinfo->sta_cnt < (NUM_STA - 2)) { /* -2: AP + BC/MC sta */ - ptdlsinfo->sta_maximum = false; - memset(&ptdlsinfo->ss_record, 0x00, sizeof(struct tdls_ss_record)); - } - /* ready to clear cam */ - if (ptdls_sta->mac_id != 0) { - ptdlsinfo->clear_cam = ptdls_sta->mac_id; - rtw_setstakey_cmd(padapter, (u8 *)ptdls_sta, true); - } - - if (ptdlsinfo->sta_cnt == 0) { - rtw_tdls_cmd(padapter, myid(&(padapter->eeprompriv)), TDLS_RS_RCR); - ptdlsinfo->setup_state = TDLS_STATE_NONE; - } else { - DBG_871X("Remain tdls sta:%02x\n", ptdlsinfo->sta_cnt); - } - - rtw_free_stainfo(padapter, ptdls_sta); -} - -/* cam entry will be the same as mac_id */ -void rtw_tdls_set_mac_id(struct tdls_info *ptdlsinfo, struct sta_info *ptdls_sta) -{ - if (ptdls_sta->mac_id == 0) { - ptdls_sta->mac_id = ptdlsinfo->macid_index; - if ((++ptdlsinfo->macid_index) > (NUM_STA - 2)) - ptdlsinfo->macid_index = TDLS_INI_MACID_ENTRY; - } -} - -/* TDLS encryption(if needed) will always be CCMP */ -void rtw_tdls_set_key(_adapter *adapter, struct rx_pkt_attrib *prx_pkt_attrib, struct sta_info *ptdls_sta) -{ - if (prx_pkt_attrib->encrypt) { - ptdls_sta->dot118021XPrivacy = _AES_; - rtw_setstakey_cmd(adapter, (u8 *)ptdls_sta, true); - } -} - -void rtw_tdls_process_ht_cap(_adapter *adapter, struct sta_info *ptdls_sta, u8 *data, u8 Length) -{ - /* save HT capabilities in the sta object */ - memset(&ptdls_sta->htpriv.ht_cap, 0, sizeof(struct rtw_ieee80211_ht_cap)); - if (data && Length >= sizeof(struct rtw_ieee80211_ht_cap)) { - ptdls_sta->flags |= WLAN_STA_HT; - - ptdls_sta->flags |= WLAN_STA_WME; - - memcpy(&ptdls_sta->htpriv.ht_cap, data, sizeof(struct rtw_ieee80211_ht_cap)); - - } else { - ptdls_sta->flags &= ~WLAN_STA_HT; - } - - if (ptdls_sta->flags & WLAN_STA_HT) { - if (adapter->registrypriv.ht_enable == true) { - ptdls_sta->htpriv.ht_option = true; - } else { - ptdls_sta->htpriv.ht_option = false; - ptdls_sta->stat_code = _STATS_FAILURE_; - } - } - - /* HT related cap */ - if (ptdls_sta->htpriv.ht_option) { - /* check if sta supports rx ampdu */ - if (adapter->registrypriv.ampdu_enable == 1) - ptdls_sta->htpriv.ampdu_enable = true; - - /* check if sta support s Short GI */ - if (ptdls_sta->htpriv.ht_cap.cap_info & (IEEE80211_HT_CAP_SGI_20|IEEE80211_HT_CAP_SGI_40)) - ptdls_sta->htpriv.sgi = true; - - /* bwmode would still followed AP's setting */ - if (ptdls_sta->htpriv.ht_cap.cap_info & IEEE80211_HT_CAP_SUP_WIDTH) { - ptdls_sta->htpriv.bwmode = adapter->mlmeextpriv.cur_bwmode; - ptdls_sta->htpriv.ch_offset = adapter->mlmeextpriv.cur_ch_offset; - } - } -} - -u8 *rtw_tdls_set_ht_cap(_adapter *padapter, u8 *pframe, struct pkt_attrib *pattrib) -{ - struct rtw_ieee80211_ht_cap ht_capie; - u8 rf_type; - u32 rx_packet_offset, max_recvbuf_sz; - - /* HT capabilities */ - memset(&ht_capie, 0, sizeof(struct rtw_ieee80211_ht_cap)); - - ht_capie.cap_info = IEEE80211_HT_CAP_SUP_WIDTH | - IEEE80211_HT_CAP_SGI_20 | IEEE80211_HT_CAP_SM_PS | - IEEE80211_HT_CAP_SGI_40 | IEEE80211_HT_CAP_TX_STBC | - IEEE80211_HT_CAP_DSSSCCK40; - - rtw_hal_get_def_var(padapter, HAL_DEF_RX_PACKET_OFFSET, &rx_packet_offset); - rtw_hal_get_def_var(padapter, HAL_DEF_MAX_RECVBUF_SZ, &max_recvbuf_sz); - if (max_recvbuf_sz-rx_packet_offset > (8191-256)) - ht_capie.cap_info = ht_capie.cap_info | IEEE80211_HT_CAP_MAX_AMSDU; - - ht_capie.ampdu_params_info = (IEEE80211_HT_CAP_AMPDU_FACTOR&0x03); - - rtw_hal_get_hwreg(padapter, HW_VAR_RF_TYPE, (u8 *)(&rf_type)); - switch (rf_type) { - case RF_1T1R: - ht_capie.cap_info |= 0x0100;/* RX STBC One spatial stream */ - memcpy(ht_capie.supp_mcs_set, MCS_rate_1R, 16); - break; - case RF_2T2R: - case RF_1T2R: - default: - ht_capie.cap_info |= 0x0200;/* RX STBC two spatial stream */ - memcpy(ht_capie.supp_mcs_set, MCS_rate_2R, 16); - break; - } - - return(rtw_set_ie(pframe, _HT_CAPABILITY_IE_, - sizeof(struct rtw_ieee80211_ht_cap), - (unsigned char *)&ht_capie, &(pattrib->pktlen))); -} - -u8 *rtw_tdls_set_sup_ch(struct mlme_ext_priv *pmlmeext, u8 *pframe, struct pkt_attrib *pattrib) -{ - u8 sup_ch[30 * 2] = { 0x00 }, sup_ch_idx = 0, idx_5g = 2; /* For supported channel */ - do { - if (pmlmeext->channel_set[sup_ch_idx].ChannelNum <= 14) { - sup_ch[0] = 1; /* First channel number */ - sup_ch[1] = pmlmeext->channel_set[sup_ch_idx].ChannelNum; /* Number of channel */ - } else { - sup_ch[idx_5g++] = pmlmeext->channel_set[sup_ch_idx].ChannelNum; - sup_ch[idx_5g++] = 1; - } - - sup_ch_idx++; - } while (pmlmeext->channel_set[sup_ch_idx].ChannelNum != 0); - return rtw_set_ie(pframe, _SUPPORTED_CH_IE_, idx_5g, sup_ch, &(pattrib->pktlen)); -} - -#ifdef CONFIG_WFD -void rtw_tdls_process_wfd_ie(struct tdls_info *ptdlsinfo, u8 *ptr, u8 length) -{ - u8 wfd_ie[128] = { 0x00 }; - u32 wfd_ielen = 0; - u32 wfd_offset = 0; - /* Try to get the TCP port information when receiving the negotiation response. */ - - wfd_offset = 0; - wfd_offset = rtw_get_wfd_ie(ptr + wfd_offset, length - wfd_offset, wfd_ie, &wfd_ielen); - while (wfd_offset) { - u8 attr_content[10] = { 0x00 }; - u32 attr_contentlen = 0; - int i; - - DBG_871X("[%s] WFD IE Found!!\n", __func__); - rtw_get_wfd_attr_content(wfd_ie, wfd_ielen, WFD_ATTR_DEVICE_INFO, attr_content, &attr_contentlen); - if (attr_contentlen) { - ptdlsinfo->wfd_info->peer_rtsp_ctrlport = RTW_GET_BE16(attr_content + 2); - DBG_871X("[%s] Peer PORT NUM = %d\n", __func__, ptdlsinfo->wfd_info->peer_rtsp_ctrlport); - } - - memset(attr_content, 0x00, 10); - attr_contentlen = 0; - rtw_get_wfd_attr_content(wfd_ie, wfd_ielen, WFD_ATTR_LOCAL_IP_ADDR, attr_content, &attr_contentlen); - if (attr_contentlen) { - memcpy(ptdlsinfo->wfd_info->peer_ip_address, (attr_content + 1), 4); - DBG_871X("[%s] Peer IP = %02u.%02u.%02u.%02u\n", __func__, - ptdlsinfo->wfd_info->peer_ip_address[0], - ptdlsinfo->wfd_info->peer_ip_address[1], - ptdlsinfo->wfd_info->peer_ip_address[2], - ptdlsinfo->wfd_info->peer_ip_address[3]); - } - wfd_offset = rtw_get_wfd_ie(ptr + wfd_offset, length - wfd_offset, wfd_ie, &wfd_ielen); - } -} - -void issue_tunneled_probe_req(_adapter *padapter) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - u8 baddr[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; - - DBG_871X("[%s]\n", __func__); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - - pmgntframe->frame_tag = DATA_FRAMETAG; - pattrib->ether_type = 0x890d; - pattrib->pctrl = 0; - - memcpy(pattrib->dst, baddr, ETH_ALEN); - - memcpy(pattrib->src, myid(&(padapter->eeprompriv)), ETH_ALEN); - - memcpy(pattrib->ra, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pattrib->ta, pattrib->src, ETH_ALEN); - - update_tdls_attrib(padapter, pattrib); - pattrib->qsel = pattrib->priority; - if (rtw_xmit_tdls_coalesce(padapter, pmgntframe, TUNNELED_PROBE_REQ) != _SUCCESS) { - rtw_free_xmitbuf(pxmitpriv, pmgntframe->pxmitbuf); - rtw_free_xmitframe(pxmitpriv, pmgntframe); - goto exit; - } - rtw_dump_xframe(padapter, pmgntframe); - -exit: - - return; -} - -void issue_tunneled_probe_rsp(_adapter *padapter, struct recv_frame_hdr *precv_frame) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - struct rx_pkt_attrib *rx_pkt_pattrib = &precv_frame->attrib; - - DBG_871X("[%s]\n", __func__); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - - pmgntframe->frame_tag = DATA_FRAMETAG; - pattrib->ether_type = 0x890d; - pattrib->pctrl = 0; - - memcpy(pattrib->dst, rx_pkt_pattrib->src, ETH_ALEN); - - memcpy(pattrib->src, myid(&(padapter->eeprompriv)), ETH_ALEN); - - memcpy(pattrib->ra, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pattrib->ta, pattrib->src, ETH_ALEN); - - update_tdls_attrib(padapter, pattrib); - pattrib->qsel = pattrib->priority; - if (rtw_xmit_tdls_coalesce(padapter, pmgntframe, TUNNELED_PROBE_RSP) != _SUCCESS) { - rtw_free_xmitbuf(pxmitpriv, pmgntframe->pxmitbuf); - rtw_free_xmitframe(pxmitpriv, pmgntframe); - goto exit; - } - rtw_dump_xframe(padapter, pmgntframe); - -exit: - - return; -} -#endif /* CONFIG_WFD */ - -void issue_tdls_setup_req(_adapter *padapter, u8 *mac_addr) -{ - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - struct sta_priv *pstapriv = &padapter->stapriv; - struct sta_info *ptdls_sta = NULL; - static u8 dialogtoken; - u32 timeout_interval = TPK_RESEND_COUNT * 1000; /* retry timer should set at least 301 sec, using TPK_count counting 301 times. */ - - if (ptdlsinfo->ap_prohibited == true) - goto exit; - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - - pmgntframe->frame_tag = DATA_FRAMETAG; - pattrib->ether_type = 0x890d; - pattrib->pctrl = 0; - - memcpy(pattrib->dst, mac_addr, ETH_ALEN); - memcpy(pattrib->src, myid(&(padapter->eeprompriv)), ETH_ALEN); - - memcpy(pattrib->ra, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pattrib->ta, pattrib->src, ETH_ALEN); - - update_tdls_attrib(padapter, pattrib); - - /* init peer sta_info */ - ptdls_sta = rtw_get_stainfo(pstapriv, mac_addr); - if (ptdls_sta == NULL) { - ptdls_sta = rtw_alloc_stainfo(pstapriv, mac_addr); - if (ptdls_sta) { - spin_lock_bh(&(pstapriv->sta_hash_lock)); - if (!(ptdls_sta->tdls_sta_state & TDLS_LINKED_STATE)) - ptdlsinfo->sta_cnt++; - spin_unlock_bh(&(pstapriv->sta_hash_lock)); - if (ptdlsinfo->sta_cnt == (NUM_STA - 2)) /* -2: AP + BC/MC sta */ - ptdlsinfo->sta_maximum = true; - } else { - rtw_free_xmitbuf(pxmitpriv, pmgntframe->pxmitbuf); - rtw_free_xmitframe(pxmitpriv, pmgntframe); - goto exit; - } - } - - if (ptdls_sta) { - ptdls_sta->tdls_sta_state |= TDLS_RESPONDER_STATE; - /* for tdls; ptdls_sta->aid is used to fill dialogtoken */ - ptdls_sta->dialog = dialogtoken; - dialogtoken = (dialogtoken+1)%256; - ptdls_sta->TDLS_PeerKey_Lifetime = timeout_interval; - _set_timer(&ptdls_sta->handshake_timer, TDLS_HANDSHAKE_TIME); - } - - pattrib->qsel = pattrib->priority; - if (rtw_xmit_tdls_coalesce(padapter, pmgntframe, TDLS_SETUP_REQUEST) != _SUCCESS) { - rtw_free_xmitbuf(pxmitpriv, pmgntframe->pxmitbuf); - rtw_free_xmitframe(pxmitpriv, pmgntframe); - goto exit; - } - rtw_dump_xframe(padapter, pmgntframe); - -exit: - - return; -} - -void issue_tdls_teardown(_adapter *padapter, u8 *mac_addr) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - struct sta_priv *pstapriv = &padapter->stapriv; - struct sta_info *ptdls_sta = NULL; - - ptdls_sta = rtw_get_stainfo(pstapriv, mac_addr); - if (ptdls_sta == NULL) { - DBG_871X("issue tdls teardown unsuccessful\n"); - return; - } else { - ptdls_sta->tdls_sta_state = TDLS_STATE_NONE; - } - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - - pmgntframe->frame_tag = DATA_FRAMETAG; - pattrib->ether_type = 0x890d; - pattrib->pctrl = 0; - - memcpy(pattrib->dst, mac_addr, ETH_ALEN); - memcpy(pattrib->src, myid(&(padapter->eeprompriv)), ETH_ALEN); - - memcpy(pattrib->ra, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pattrib->ta, pattrib->src, ETH_ALEN); - - update_tdls_attrib(padapter, pattrib); - pattrib->qsel = pattrib->priority; - if (rtw_xmit_tdls_coalesce(padapter, pmgntframe, TDLS_TEARDOWN) != _SUCCESS) { - rtw_free_xmitbuf(pxmitpriv, pmgntframe->pxmitbuf); - rtw_free_xmitframe(pxmitpriv, pmgntframe); - goto exit; - } - rtw_dump_xframe(padapter, pmgntframe); - - if (ptdls_sta->tdls_sta_state & TDLS_CH_SWITCH_ON_STATE) - rtw_tdls_cmd(padapter, ptdls_sta->hwaddr, TDLS_CS_OFF); - - if (ptdls_sta->timer_flag == 1) { - spin_lock_bh(&(padapter->tdlsinfo.hdl_lock)); - ptdls_sta->timer_flag = 2; - spin_unlock_bh(&(padapter->tdlsinfo.hdl_lock)); - } else { - rtw_tdls_cmd(padapter, mac_addr, TDLS_FREE_STA); - } - -exit: - - return; -} - -void issue_tdls_dis_req(_adapter *padapter, u8 *mac_addr) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - u8 baddr[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - - pmgntframe->frame_tag = DATA_FRAMETAG; - pattrib->ether_type = 0x890d; - pattrib->pctrl = 0; - - if (mac_addr == NULL) - memcpy(pattrib->dst, baddr, ETH_ALEN); - else - memcpy(pattrib->dst, mac_addr, ETH_ALEN); - - memcpy(pattrib->src, myid(&(padapter->eeprompriv)), ETH_ALEN); - - memcpy(pattrib->ra, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pattrib->ta, pattrib->src, ETH_ALEN); - - update_tdls_attrib(padapter, pattrib); - pattrib->qsel = pattrib->priority; - if (rtw_xmit_tdls_coalesce(padapter, pmgntframe, TDLS_DISCOVERY_REQUEST) != _SUCCESS) { - rtw_free_xmitbuf(pxmitpriv, pmgntframe->pxmitbuf); - rtw_free_xmitframe(pxmitpriv, pmgntframe); - goto exit; - } - rtw_dump_xframe(padapter, pmgntframe); - DBG_871X("issue tdls dis req\n"); - -exit: - - return; -} - -void issue_tdls_setup_rsp(_adapter *padapter, struct recv_frame_hdr *precv_frame) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - struct rx_pkt_attrib *rx_pkt_pattrib = &precv_frame->attrib; - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - - pmgntframe->frame_tag = DATA_FRAMETAG; - pattrib->ether_type = 0x890d; - pattrib->pctrl = 0; - - memcpy(pattrib->dst, rx_pkt_pattrib->src, ETH_ALEN); - memcpy(pattrib->src, myid(&(padapter->eeprompriv)), ETH_ALEN); - - memcpy(pattrib->ra, rx_pkt_pattrib->bssid, ETH_ALEN); - memcpy(pattrib->ta, pattrib->src, ETH_ALEN); - - update_tdls_attrib(padapter, pattrib); - pattrib->qsel = pattrib->priority; - if (rtw_xmit_tdls_coalesce(padapter, pmgntframe, TDLS_SETUP_RESPONSE) != _SUCCESS) { - rtw_free_xmitbuf(pxmitpriv, pmgntframe->pxmitbuf); - rtw_free_xmitframe(pxmitpriv, pmgntframe); - goto exit; - } - rtw_dump_xframe(padapter, pmgntframe); - -exit: - - return; -} - -void issue_tdls_setup_cfm(_adapter *padapter, struct recv_frame_hdr *precv_frame) -{ - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - struct sta_info *ptdls_sta = NULL; - - struct rx_pkt_attrib *rx_pkt_pattrib = &precv_frame->attrib; - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - - pmgntframe->frame_tag = DATA_FRAMETAG; - pattrib->ether_type = 0x890d; - pattrib->pctrl = 0; - - memcpy(pattrib->dst, rx_pkt_pattrib->src, ETH_ALEN); - memcpy(pattrib->src, myid(&(padapter->eeprompriv)), ETH_ALEN); - - memcpy(pattrib->ra, rx_pkt_pattrib->bssid, ETH_ALEN); - memcpy(pattrib->ta, pattrib->src, ETH_ALEN); - - update_tdls_attrib(padapter, pattrib); - pattrib->qsel = pattrib->priority; - if (rtw_xmit_tdls_coalesce(padapter, pmgntframe, TDLS_SETUP_CONFIRM) != _SUCCESS) { - rtw_free_xmitbuf(pxmitpriv, pmgntframe->pxmitbuf); - rtw_free_xmitframe(pxmitpriv, pmgntframe); - goto exit; - } - - rtw_dump_xframe(padapter, pmgntframe); - -exit: - - return; -} - -/* TDLS Discovery Response frame is a management action frame */ -void issue_tdls_dis_rsp(_adapter *padapter, struct recv_frame_hdr *precv_frame, u8 dialog) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); - - struct rx_pkt_attrib *rx_pkt_pattrib = &precv_frame->attrib; - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(padapter, pattrib); - - 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; - - /* unicast probe request frame */ - memcpy(pwlanhdr->addr1, rx_pkt_pattrib->src, ETH_ALEN); - memcpy(pattrib->dst, pwlanhdr->addr1, ETH_ALEN); - - memcpy(pwlanhdr->addr2, myid(&(padapter->eeprompriv)), ETH_ALEN); - memcpy(pattrib->src, pwlanhdr->addr2, ETH_ALEN); - - memcpy(pwlanhdr->addr3, rx_pkt_pattrib->bssid, ETH_ALEN); - memcpy(pattrib->ra, pwlanhdr->addr3, ETH_ALEN); - - 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); - - rtw_build_tdls_dis_rsp_ies(padapter, pmgntframe, pframe, dialog); - - pattrib->nr_frags = 1; - pattrib->last_txcmdsz = pattrib->pktlen; - - dump_mgntframe(padapter, pmgntframe); - - return; -} - -void issue_tdls_peer_traffic_indication(_adapter *padapter, struct sta_info *ptdls_sta) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - - static u8 dialogtoken; - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - - pmgntframe->frame_tag = DATA_FRAMETAG; - pattrib->ether_type = 0x890d; - pattrib->pctrl = 0; - - memcpy(pattrib->dst, ptdls_sta->hwaddr, ETH_ALEN); - memcpy(pattrib->src, myid(&(padapter->eeprompriv)), ETH_ALEN); - - memcpy(pattrib->ra, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pattrib->ta, pattrib->src, ETH_ALEN); - - /* for tdls; pattrib->nr_frags is used to fill dialogtoken */ - ptdls_sta->dialog = dialogtoken; - dialogtoken = (dialogtoken+1)%256; - /* PTI frame's priority should be AC_VO */ - pattrib->priority = 7; - - update_tdls_attrib(padapter, pattrib); - pattrib->qsel = pattrib->priority; - if (rtw_xmit_tdls_coalesce(padapter, pmgntframe, TDLS_PEER_TRAFFIC_INDICATION) != _SUCCESS) { - rtw_free_xmitbuf(pxmitpriv, pmgntframe->pxmitbuf); - rtw_free_xmitframe(pxmitpriv, pmgntframe); - goto exit; - } - rtw_dump_xframe(padapter, pmgntframe); - -exit: - - return; -} - -void issue_tdls_ch_switch_req(_adapter *padapter, u8 *mac_addr) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - - pmgntframe->frame_tag = DATA_FRAMETAG; - pattrib->ether_type = 0x890d; - pattrib->pctrl = 0; - - memcpy(pattrib->dst, mac_addr, ETH_ALEN); - memcpy(pattrib->src, myid(&(padapter->eeprompriv)), ETH_ALEN); - - memcpy(pattrib->ra, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pattrib->ta, pattrib->src, ETH_ALEN); - - update_tdls_attrib(padapter, pattrib); - - pattrib->qsel = pattrib->priority; - if (rtw_xmit_tdls_coalesce(padapter, pmgntframe, TDLS_CHANNEL_SWITCH_REQUEST) != _SUCCESS) { - rtw_free_xmitbuf(pxmitpriv, pmgntframe->pxmitbuf); - rtw_free_xmitframe(pxmitpriv, pmgntframe); - goto exit; - } - rtw_dump_xframe(padapter, pmgntframe); - -exit: - - return; -} - -void issue_tdls_ch_switch_rsp(_adapter *padapter, u8 *mac_addr) -{ - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - - pmgntframe = alloc_mgtxmitframe(pxmitpriv); - if (pmgntframe == NULL) - return; - - /* update attribute */ - pattrib = &pmgntframe->attrib; - - pmgntframe->frame_tag = DATA_FRAMETAG; - pattrib->ether_type = 0x890d; - pattrib->pctrl = 0; - - memcpy(pattrib->dst, mac_addr, ETH_ALEN); - memcpy(pattrib->src, myid(&(padapter->eeprompriv)), ETH_ALEN); - - memcpy(pattrib->ra, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pattrib->ta, pattrib->src, ETH_ALEN); - - update_tdls_attrib(padapter, pattrib); - - pattrib->qsel = pattrib->priority; - if (rtw_xmit_tdls_coalesce(padapter, pmgntframe, TDLS_CHANNEL_SWITCH_RESPONSE) != _SUCCESS) { - rtw_free_xmitbuf(pxmitpriv, pmgntframe->pxmitbuf); - rtw_free_xmitframe(pxmitpriv, pmgntframe); - goto exit; - } - rtw_dump_xframe(padapter, pmgntframe); - -exit: - - return; -} - -int On_TDLS_Dis_Rsp(_adapter *adapter, struct recv_frame_hdr *precv_frame) -{ - struct sta_info *ptdls_sta = NULL, *psta = rtw_get_stainfo(&(adapter->stapriv), get_bssid(&(adapter->mlmepriv))); - struct recv_priv *precvpriv = &(adapter->recvpriv); - u8 *ptr = precv_frame->rx_data, *psa; - struct rx_pkt_attrib *pattrib = &(precv_frame->attrib); - struct tdls_info *ptdlsinfo = &(adapter->tdlsinfo); - u8 empty_addr[ETH_ALEN] = { 0x00 }; - int UndecoratedSmoothedPWDB; - - /* WFDTDLS: for sigma test, not to setup direct link automatically */ - ptdlsinfo->dev_discovered = 1; - -#ifdef CONFIG_TDLS_AUTOSETUP - psa = get_sa(ptr); - ptdls_sta = rtw_get_stainfo(&(adapter->stapriv), psa); - - if (ptdls_sta != NULL) { - ptdls_sta->tdls_sta_state |= TDLS_ALIVE_STATE; - - /* Record the tdls sta with lowest signal strength */ - if ((ptdlsinfo->sta_maximum == true) && (ptdls_sta->alive_count >= 1)) { - if (_rtw_memcmp(ptdlsinfo->ss_record.macaddr, empty_addr, ETH_ALEN)) { - memcpy(ptdlsinfo->ss_record.macaddr, psa, ETH_ALEN); - ptdlsinfo->ss_record.rxpwdb_all = pattrib->rxpwdb_all; - } else { - if (ptdlsinfo->ss_record.rxpwdb_all < pattrib->rxpwdb_all) { - memcpy(ptdlsinfo->ss_record.macaddr, psa, ETH_ALEN); - ptdlsinfo->ss_record.rxpwdb_all = pattrib->rxpwdb_all; - } - } - } - - } else { - if (ptdlsinfo->sta_maximum == true) { - if (_rtw_memcmp(ptdlsinfo->ss_record.macaddr, empty_addr, ETH_ALEN)) { - /* All traffics are busy, do not set up another direct link. */ - return _FAIL; - } else { - if (pattrib->rxpwdb_all > ptdlsinfo->ss_record.rxpwdb_all) - issue_tdls_teardown(adapter, ptdlsinfo->ss_record.macaddr); - else - return _FAIL; - } - } - - rtw_hal_get_def_var(adapter, HAL_DEF_UNDERCORATEDSMOOTHEDPWDB, &UndecoratedSmoothedPWDB); - - if (pattrib->rxpwdb_all + TDLS_SIGNAL_THRESH >= UndecoratedSmoothedPWDB) { - DBG_871X("pattrib->rxpwdb_all =%d, pdmpriv->UndecoratedSmoothedPWDB =%d\n", - pattrib->rxpwdb_all, UndecoratedSmoothedPWDB); - issue_tdls_setup_req(adapter, psa); - } - } -#endif /* CONFIG_TDLS_AUTOSETUP */ - - return _SUCCESS; -} - -int On_TDLS_Setup_Req(_adapter *adapter, struct recv_frame_hdr *precv_frame) -{ - struct tdls_info *ptdlsinfo = &adapter->tdlsinfo; - u8 *psa, *pmyid; - struct sta_info *ptdls_sta = NULL; - struct sta_priv *pstapriv = &adapter->stapriv; - u8 *ptr = precv_frame->rx_data; - struct mlme_priv *pmlmepriv = &(adapter->mlmepriv); - struct security_priv *psecuritypriv = &adapter->securitypriv; - struct rx_pkt_attrib *prx_pkt_attrib = &precv_frame->attrib; - u8 *prsnie, *ppairwise_cipher; - u8 i, k, pairwise_count; - u8 ccmp_have = 0, rsnie_have = 0; - u16 j; - u8 SNonce[32]; - u32 *timeout_interval; - int parsing_length; /* frame body length, without icv_len */ - PNDIS_802_11_VARIABLE_IEs pIE; - u8 FIXED_IE = 5; - unsigned char supportRate[16]; - int supportRateNum = 0; - - psa = get_sa(ptr); - ptdls_sta = rtw_get_stainfo(pstapriv, psa); - - pmyid = myid(&(adapter->eeprompriv)); - ptr += prx_pkt_attrib->hdrlen + prx_pkt_attrib->iv_len+LLC_HEADER_SIZE+TYPE_LENGTH_FIELD_SIZE+1; - parsing_length = ((struct recv_frame_hdr *)precv_frame)->len - -prx_pkt_attrib->hdrlen - -prx_pkt_attrib->iv_len - -prx_pkt_attrib->icv_len - -LLC_HEADER_SIZE - -ETH_TYPE_LEN - -PAYLOAD_TYPE_LEN - -FIXED_IE; - - if (ptdlsinfo->ap_prohibited == true) - goto exit; - - if (ptdls_sta == NULL) { - ptdls_sta = rtw_alloc_stainfo(pstapriv, psa); - } else { - if (ptdls_sta->tdls_sta_state & TDLS_LINKED_STATE) { - /* If the direct link is already set up */ - /* Process as re-setup after tear down */ - DBG_871X("re-setup a direct link\n"); - } - /* already receiving TDLS setup request */ - else if (ptdls_sta->tdls_sta_state & TDLS_INITIATOR_STATE) { - DBG_871X("receive duplicated TDLS setup request frame in handshaking\n"); - goto exit; - } - /* When receiving and sending setup_req to the same link at the same time, STA with higher MAC_addr would be initiator */ - /* following is to check out MAC_addr */ - else if (ptdls_sta->tdls_sta_state & TDLS_RESPONDER_STATE) { - DBG_871X("receive setup_req after sending setup_req\n"); - for (i = 0; i < 6; i++) { - if (*(pmyid+i) == *(psa+i)) { - ; - } else if (*(pmyid+i) > *(psa+i)) { - goto exit; - } else if (*(pmyid+i) < *(psa+i)) { - ptdls_sta->tdls_sta_state = TDLS_INITIATOR_STATE; - break; - } - } - } - } - - if (ptdls_sta) { - ptdls_sta->dialog = *(ptr+2); /* copy dialog token */ - ptdls_sta->stat_code = 0; - - /* parsing information element */ - for (j = FIXED_IE; j < parsing_length;) { - pIE = (PNDIS_802_11_VARIABLE_IEs)(ptr + j); - - switch (pIE->ElementID) { - case _SUPPORTEDRATES_IE_: - memcpy(supportRate, pIE->data, pIE->Length); - supportRateNum = pIE->Length; - break; - case _COUNTRY_IE_: - break; - case _EXT_SUPPORTEDRATES_IE_: - if (supportRateNum <= sizeof(supportRate)) { - memcpy(supportRate+supportRateNum, pIE->data, pIE->Length); - supportRateNum += pIE->Length; - } - break; - case _SUPPORTED_CH_IE_: - break; - case _RSN_IE_2_: - rsnie_have = 1; - if (prx_pkt_attrib->encrypt) { - prsnie = (u8 *)pIE; - /* check whether initiator STA has CCMP pairwise_cipher. */ - ppairwise_cipher = prsnie+10; - memcpy(&pairwise_count, (u16 *)(ppairwise_cipher-2), 1); - for (k = 0; k < pairwise_count; k++) { - if (_rtw_memcmp(ppairwise_cipher+4*k, RSN_CIPHER_SUITE_CCMP, 4) == true) - ccmp_have = 1; - } - if (ccmp_have == 0) { - /* invalid contents of RSNIE */ - ptdls_sta->stat_code = 72; - } - } - break; - case _EXT_CAP_IE_: - break; - case _VENDOR_SPECIFIC_IE_: - break; - case _FTIE_: - if (prx_pkt_attrib->encrypt) - memcpy(SNonce, (ptr+j+52), 32); - break; - case _TIMEOUT_ITVL_IE_: - if (prx_pkt_attrib->encrypt) - timeout_interval = (u32 *)(ptr+j+3); - break; - case _RIC_Descriptor_IE_: - break; - case _HT_CAPABILITY_IE_: - rtw_tdls_process_ht_cap(adapter, ptdls_sta, pIE->data, pIE->Length); - break; - case EID_BSSCoexistence: - break; - case _LINK_ID_IE_: - if (_rtw_memcmp(get_bssid(pmlmepriv), pIE->data, 6) == false) { - /* not in the same BSS */ - ptdls_sta->stat_code = 7; - } - break; - default: - break; - } - j += (pIE->Length + 2); - } - - /* update station supportRate */ - ptdls_sta->bssratelen = supportRateNum; - memcpy(ptdls_sta->bssrateset, supportRate, supportRateNum); - - /* check status code */ - /* if responder STA has/hasn't security on AP, but request hasn't/has RSNIE, it should reject */ - if (ptdls_sta->stat_code == 0) { - if (rsnie_have && (prx_pkt_attrib->encrypt == 0)) { - /* security disabled */ - ptdls_sta->stat_code = 5; - } else if (rsnie_have == 0 && (prx_pkt_attrib->encrypt)) { - /* request haven't RSNIE */ - ptdls_sta->stat_code = 38; - } - -#ifdef CONFIG_WFD - /* WFD test plan version 0.18.2 test item 5.1.5 */ - /* SoUT does not use TDLS if AP uses weak security */ - if (adapter->wdinfo.wfd_tdls_enable) { - if (rsnie_have && (prx_pkt_attrib->encrypt != _AES_)) - ptdls_sta->stat_code = 5; - } -#endif /* CONFIG_WFD */ - } - - ptdls_sta->tdls_sta_state |= TDLS_INITIATOR_STATE; - if (prx_pkt_attrib->encrypt) { - memcpy(ptdls_sta->SNonce, SNonce, 32); - memcpy(&(ptdls_sta->TDLS_PeerKey_Lifetime), timeout_interval, 4); - } - spin_lock_bh(&(pstapriv->sta_hash_lock)); - if (!(ptdls_sta->tdls_sta_state & TDLS_LINKED_STATE)) - ptdlsinfo->sta_cnt++; - spin_unlock_bh(&(pstapriv->sta_hash_lock)); - if (ptdlsinfo->sta_cnt == (NUM_STA - 2)) /* -2: AP + BC/MC sta */ - ptdlsinfo->sta_maximum = true; - -#ifdef CONFIG_WFD - rtw_tdls_process_wfd_ie(ptdlsinfo, ptr + FIXED_IE, parsing_length - FIXED_IE); -#endif /* CONFIG_WFD */ - - } else { - goto exit; - } - - issue_tdls_setup_rsp(adapter, precv_frame); - - if (ptdls_sta->stat_code == 0) - _set_timer(&ptdls_sta->handshake_timer, TDLS_HANDSHAKE_TIME); - else /* status code!= 0 ; setup unsuccess */ - free_tdls_sta(adapter, ptdls_sta); -exit: - - return _FAIL; -} - -int On_TDLS_Setup_Rsp(_adapter *adapter, struct recv_frame_hdr *precv_frame) -{ - struct tdls_info *ptdlsinfo = &adapter->tdlsinfo; - struct sta_info *ptdls_sta = NULL; - struct sta_priv *pstapriv = &adapter->stapriv; - u8 *ptr = precv_frame->rx_data; - struct rx_pkt_attrib *prx_pkt_attrib = &precv_frame->attrib; - u8 *psa; - u16 stat_code; - int parsing_length; /* frame body length, without icv_len */ - PNDIS_802_11_VARIABLE_IEs pIE; - u8 FIXED_IE = 7; - u8 *pftie, *ptimeout_ie, *plinkid_ie, *prsnie, *pftie_mic, *ppairwise_cipher; - u16 pairwise_count, j, k; - u8 verify_ccmp = 0; - unsigned char supportRate[16]; - int supportRateNum = 0; - - psa = get_sa(ptr); - ptdls_sta = rtw_get_stainfo(pstapriv, psa); - - if (NULL == ptdls_sta) - return _FAIL; - - ptr += prx_pkt_attrib->hdrlen + prx_pkt_attrib->iv_len+LLC_HEADER_SIZE+TYPE_LENGTH_FIELD_SIZE+1; - parsing_length = ((struct recv_frame_hdr *)precv_frame)->len - -prx_pkt_attrib->hdrlen - -prx_pkt_attrib->iv_len - -prx_pkt_attrib->icv_len - -LLC_HEADER_SIZE - -TYPE_LENGTH_FIELD_SIZE - -1 - -FIXED_IE; - - memcpy(&stat_code, ptr+2, 2); - - if (stat_code != 0) { - DBG_871X("[%s] status_code = %d, free_tdls_sta\n", __func__, stat_code); - free_tdls_sta(adapter, ptdls_sta); - return _FAIL; - } - - stat_code = 0; - - /* parsing information element */ - for (j = FIXED_IE; j < parsing_length;) { - pIE = (PNDIS_802_11_VARIABLE_IEs)(ptr + j); - - switch (pIE->ElementID) { - case _SUPPORTEDRATES_IE_: - memcpy(supportRate, pIE->data, pIE->Length); - supportRateNum = pIE->Length; - break; - case _COUNTRY_IE_: - break; - case _EXT_SUPPORTEDRATES_IE_: - if (supportRateNum <= sizeof(supportRate)) { - memcpy(supportRate+supportRateNum, pIE->data, pIE->Length); - supportRateNum += pIE->Length; - } - break; - case _SUPPORTED_CH_IE_: - break; - case _RSN_IE_2_: - prsnie = (u8 *)pIE; - /* check whether responder STA has CCMP pairwise_cipher. */ - ppairwise_cipher = prsnie+10; - memcpy(&pairwise_count, (u16 *)(ppairwise_cipher-2), 2); - for (k = 0; k < pairwise_count; k++) { - if (_rtw_memcmp(ppairwise_cipher+4*k, RSN_CIPHER_SUITE_CCMP, 4) == true) - verify_ccmp = 1; - } - case _EXT_CAP_IE_: - break; - case _VENDOR_SPECIFIC_IE_: - break; - case _FTIE_: - pftie = (u8 *)pIE; - memcpy(ptdls_sta->ANonce, (ptr+j+20), 32); - break; - case _TIMEOUT_ITVL_IE_: - ptimeout_ie = (u8 *)pIE; - break; - case _RIC_Descriptor_IE_: - break; - case _HT_CAPABILITY_IE_: - rtw_tdls_process_ht_cap(adapter, ptdls_sta, pIE->data, pIE->Length); - break; - case EID_BSSCoexistence: - break; - case _LINK_ID_IE_: - plinkid_ie = (u8 *)pIE; - break; - default: - break; - } - j += (pIE->Length + 2); - } - - /* update station supportRate */ - ptdls_sta->bssratelen = supportRateNum; - memcpy(ptdls_sta->bssrateset, supportRate, supportRateNum); - -#ifdef CONFIG_WFD - rtw_tdls_process_wfd_ie(ptdlsinfo, ptr + FIXED_IE, parsing_length - FIXED_IE); -#endif /* CONFIG_WFD */ - - if (stat_code != 0) { - ptdls_sta->stat_code = stat_code; - } else { - if (prx_pkt_attrib->encrypt) { - if (verify_ccmp == 1) { - wpa_tdls_generate_tpk(adapter, ptdls_sta); - ptdls_sta->stat_code = 0; - if (tdls_verify_mic(ptdls_sta->tpk.kck, 2, plinkid_ie, prsnie, ptimeout_ie, pftie) == 0) { /* 0: Invalid, 1: valid */ - free_tdls_sta(adapter, ptdls_sta); - return _FAIL; - } - } else { - ptdls_sta->stat_code = 72; /* invalide contents of RSNIE */ - } - - } else { - ptdls_sta->stat_code = 0; - } - } - - DBG_871X("issue_tdls_setup_cfm\n"); - issue_tdls_setup_cfm(adapter, precv_frame); - - if (ptdls_sta->stat_code == 0) { - ptdlsinfo->setup_state = TDLS_LINKED_STATE; - - if (ptdls_sta->tdls_sta_state & TDLS_RESPONDER_STATE) { - ptdls_sta->tdls_sta_state |= TDLS_LINKED_STATE; - _cancel_timer_ex(&ptdls_sta->handshake_timer); -#ifdef CONFIG_TDLS_AUTOCHECKALIVE - _set_timer(&ptdls_sta->alive_timer1, TDLS_ALIVE_TIMER_PH1); -#endif /* CONFIG_TDLS_AUTOSETUP */ - } - - rtw_tdls_set_mac_id(ptdlsinfo, ptdls_sta); - rtw_tdls_set_key(adapter, prx_pkt_attrib, ptdls_sta); - - rtw_tdls_cmd(adapter, ptdls_sta->hwaddr, TDLS_WRCR); - - } else { /* status code!= 0 ; setup unsuccessful */ - free_tdls_sta(adapter, ptdls_sta); - } - - return _FAIL; -} - -int On_TDLS_Setup_Cfm(_adapter *adapter, struct recv_frame_hdr *precv_frame) -{ - struct tdls_info *ptdlsinfo = &adapter->tdlsinfo; - struct sta_info *ptdls_sta = NULL; - struct sta_priv *pstapriv = &adapter->stapriv; - u8 *ptr = precv_frame->rx_data; - struct rx_pkt_attrib *prx_pkt_attrib = &precv_frame->attrib; - u8 *psa; - u16 stat_code; - int parsing_length; - PNDIS_802_11_VARIABLE_IEs pIE; - u8 FIXED_IE = 5; - u8 *pftie, *ptimeout_ie, *plinkid_ie, *prsnie, *pftie_mic, *ppairwise_cipher; - u16 j, pairwise_count; - - psa = get_sa(ptr); - ptdls_sta = rtw_get_stainfo(pstapriv, psa); - - ptr += prx_pkt_attrib->hdrlen + prx_pkt_attrib->iv_len+LLC_HEADER_SIZE+TYPE_LENGTH_FIELD_SIZE+1; - parsing_length = ((struct recv_frame_hdr *)precv_frame)->len - -prx_pkt_attrib->hdrlen - -prx_pkt_attrib->iv_len - -prx_pkt_attrib->icv_len - -LLC_HEADER_SIZE - -ETH_TYPE_LEN - -PAYLOAD_TYPE_LEN - -FIXED_IE; - memcpy(&stat_code, ptr+2, 2); - - if (stat_code != 0) { - DBG_871X("[%s] stat_code = %d\n, free_tdls_sta", __func__, stat_code); - free_tdls_sta(adapter, ptdls_sta); - return _FAIL; - } - - if (prx_pkt_attrib->encrypt) { - /* parsing information element */ - for (j = FIXED_IE; j < parsing_length;) { - pIE = (PNDIS_802_11_VARIABLE_IEs)(ptr + j); - - switch (pIE->ElementID) { - case _RSN_IE_2_: - prsnie = (u8 *)pIE; - break; - case _VENDOR_SPECIFIC_IE_: - break; - case _FTIE_: - pftie = (u8 *)pIE; - break; - case _TIMEOUT_ITVL_IE_: - ptimeout_ie = (u8 *)pIE; - break; - case _HT_EXTRA_INFO_IE_: - break; - case _LINK_ID_IE_: - plinkid_ie = (u8 *)pIE; - break; - default: - break; - } - j += (pIE->Length + 2); - } - - /* verify mic in FTIE MIC field */ - if (tdls_verify_mic(ptdls_sta->tpk.kck, 3, plinkid_ie, prsnie, ptimeout_ie, pftie) == 0) { /* 0: Invalid, 1: Valid */ - free_tdls_sta(adapter, ptdls_sta); - return _FAIL; - } - } - - ptdlsinfo->setup_state = TDLS_LINKED_STATE; - if (ptdls_sta->tdls_sta_state & TDLS_INITIATOR_STATE) { - ptdls_sta->tdls_sta_state |= TDLS_LINKED_STATE; - _cancel_timer_ex(&ptdls_sta->handshake_timer); -#ifdef CONFIG_TDLS_AUTOCHECKALIVE - _set_timer(&ptdls_sta->alive_timer1, TDLS_ALIVE_TIMER_PH1); -#endif /* CONFIG_TDLS_AUTOCHECKALIVE */ - } - - rtw_tdls_set_mac_id(ptdlsinfo, ptdls_sta); - rtw_tdls_set_key(adapter, prx_pkt_attrib, ptdls_sta); - - rtw_tdls_cmd(adapter, ptdls_sta->hwaddr, TDLS_WRCR); - - return _FAIL; -} - -int On_TDLS_Dis_Req(_adapter *adapter, struct recv_frame_hdr *precv_frame) -{ - struct rx_pkt_attrib *prx_pkt_attrib = &precv_frame->attrib; - struct sta_priv *pstapriv = &adapter->stapriv; - struct sta_info *psta_ap; - u8 *ptr = precv_frame->rx_data; - int parsing_length; /* frame body length, without icv_len */ - PNDIS_802_11_VARIABLE_IEs pIE; - u8 FIXED_IE = 3, *dst, *pdialog = NULL; - u16 j; - - ptr += prx_pkt_attrib->hdrlen + prx_pkt_attrib->iv_len + LLC_HEADER_SIZE+TYPE_LENGTH_FIELD_SIZE + 1; - pdialog = ptr+2; - - parsing_length = ((struct recv_frame_hdr *)precv_frame)->len - -prx_pkt_attrib->hdrlen - -prx_pkt_attrib->iv_len - -prx_pkt_attrib->icv_len - -LLC_HEADER_SIZE - -TYPE_LENGTH_FIELD_SIZE - -1 - -FIXED_IE; - - /* parsing information element */ - for (j = FIXED_IE; j < parsing_length;) { - pIE = (PNDIS_802_11_VARIABLE_IEs)(ptr + j); - - switch (pIE->ElementID) { - case _LINK_ID_IE_: - psta_ap = rtw_get_stainfo(pstapriv, pIE->data); - if (psta_ap == NULL) - goto exit; - dst = pIE->data + 12; - if ((MacAddr_isBcst(dst) == false) && (_rtw_memcmp(myid(&(adapter->eeprompriv)), dst, 6) == false)) - goto exit; - break; - default: - break; - } - j += (pIE->Length + 2); - } - - /* check frame contents */ - - issue_tdls_dis_rsp(adapter, precv_frame, *(pdialog)); - -exit: - - return _FAIL; -} - -int On_TDLS_Teardown(_adapter *adapter, struct recv_frame_hdr *precv_frame) -{ - u8 *psa; - u8 *ptr = precv_frame->rx_data; - struct rx_pkt_attrib *prx_pkt_attrib = &precv_frame->attrib; - struct mlme_ext_priv *pmlmeext = &(adapter->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - struct sta_priv *pstapriv = &adapter->stapriv; - struct sta_info *ptdls_sta = NULL; - - psa = get_sa(ptr); - - ptdls_sta = rtw_get_stainfo(pstapriv, psa); - if (ptdls_sta != NULL) { - if (ptdls_sta->tdls_sta_state & TDLS_CH_SWITCH_ON_STATE) { - rtw_tdls_cmd(adapter, ptdls_sta->hwaddr, TDLS_CS_OFF); - } - free_tdls_sta(adapter, ptdls_sta); - } - - return _FAIL; -} - -u8 TDLS_check_ch_state(uint state) -{ - if ((state & TDLS_CH_SWITCH_ON_STATE) && - (state & TDLS_AT_OFF_CH_STATE) && - (state & TDLS_PEER_AT_OFF_STATE)) { - if (state & TDLS_PEER_SLEEP_STATE) - return 2; /* U-APSD + ch. switch */ - else - return 1; /* ch. switch */ - } else { - return 0; - } -} - -/* we process buffered data for 1. U-APSD, 2. ch. switch, 3. U-APSD + ch. switch here */ -int On_TDLS_Peer_Traffic_Rsp(_adapter *adapter, struct recv_frame_hdr *precv_frame) -{ - struct tdls_info *ptdlsinfo = &adapter->tdlsinfo; - struct mlme_ext_priv *pmlmeext = &adapter->mlmeextpriv; - struct rx_pkt_attrib *pattrib = &precv_frame->attrib; - struct sta_priv *pstapriv = &adapter->stapriv; - /* get peer sta infomation */ - struct sta_info *ptdls_sta = rtw_get_stainfo(pstapriv, pattrib->src); - u8 wmmps_ac = 0, state = TDLS_check_ch_state(ptdls_sta->tdls_sta_state); - int i; - - ptdls_sta->sta_stats.rx_data_pkts++; - - /* receive peer traffic response frame, sleeping STA wakes up */ - /* ptdls_sta->tdls_sta_state &= ~(TDLS_PEER_SLEEP_STATE); */ - process_wmmps_data(adapter, precv_frame); - - /* if noticed peer STA wakes up by receiving peer traffic response */ - /* and we want to do channel swtiching, then we will transmit channel switch request first */ - if (ptdls_sta->tdls_sta_state & TDLS_APSD_CHSW_STATE) { - issue_tdls_ch_switch_req(adapter, pattrib->src); - ptdls_sta->tdls_sta_state &= ~(TDLS_APSD_CHSW_STATE); - return _FAIL; - } - - /* check 4-AC queue bit */ - if (ptdls_sta->uapsd_vo || ptdls_sta->uapsd_vi || ptdls_sta->uapsd_be || ptdls_sta->uapsd_bk) - wmmps_ac = 1; - - /* if it's a direct link and have buffered frame */ - if (ptdls_sta->tdls_sta_state & TDLS_LINKED_STATE) { - if (wmmps_ac && state) { - _list *xmitframe_plist, *xmitframe_phead; - struct xmit_frame *pxmitframe = NULL; - - spin_lock_bh(&ptdls_sta->sleep_q.lock); - - xmitframe_phead = get_list_head(&ptdls_sta->sleep_q); - xmitframe_plist = xmitframe_phead->next; - - /* transmit buffered frames */ - while ((rtw_end_of_queue_search(xmitframe_phead, xmitframe_plist)) == false) { - pxmitframe = container_of(xmitframe_plist, struct xmit_frame, list); - xmitframe_plist = xmitframe_plist->next; - list_del_init(&pxmitframe->list); - - ptdls_sta->sleepq_len--; - if (ptdls_sta->sleepq_len > 0) { - pxmitframe->attrib.mdata = 1; - pxmitframe->attrib.eosp = 0; - } else { - pxmitframe->attrib.mdata = 0; - pxmitframe->attrib.eosp = 1; - } - if (rtw_hal_xmit(adapter, pxmitframe) == true) - rtw_os_xmit_complete(adapter, pxmitframe); - } - - if (ptdls_sta->sleepq_len == 0) { - DBG_871X("no buffered packets for tdls to xmit\n"); - /* on U-APSD + CH. switch state, when there is no buffered date to xmit, */ - /* we should go back to base channel */ - if (state == 2) { - rtw_tdls_cmd(adapter, ptdls_sta->hwaddr, TDLS_CS_OFF); - } else if (ptdls_sta->tdls_sta_state&TDLS_SW_OFF_STATE) { - ptdls_sta->tdls_sta_state &= ~(TDLS_SW_OFF_STATE); - ptdlsinfo->candidate_ch = pmlmeext->cur_channel; - issue_tdls_ch_switch_req(adapter, pattrib->src); - DBG_871X("issue tdls ch switch req back to base channel\n"); - } - - } else { - DBG_871X("error!psta->sleepq_len =%d\n", ptdls_sta->sleepq_len); - ptdls_sta->sleepq_len = 0; - } - - spin_unlock_bh(&ptdls_sta->sleep_q.lock); - } - } - return _FAIL; -} - -int On_TDLS_Ch_Switch_Req(_adapter *adapter, struct recv_frame_hdr *precv_frame) -{ - struct sta_info *ptdls_sta = NULL; - struct sta_priv *pstapriv = &adapter->stapriv; - u8 *ptr = precv_frame->rx_data; - struct rx_pkt_attrib *prx_pkt_attrib = &precv_frame->attrib; - u8 *psa; - int parsing_length; - PNDIS_802_11_VARIABLE_IEs pIE; - u8 FIXED_IE = 3; - u16 j; - struct mlme_ext_priv *pmlmeext = &adapter->mlmeextpriv; - - psa = get_sa(ptr); - ptdls_sta = rtw_get_stainfo(pstapriv, psa); - - ptr += prx_pkt_attrib->hdrlen + prx_pkt_attrib->iv_len+LLC_HEADER_SIZE+TYPE_LENGTH_FIELD_SIZE+1; - parsing_length = ((struct recv_frame_hdr *)precv_frame)->len - -prx_pkt_attrib->hdrlen - -prx_pkt_attrib->iv_len - -prx_pkt_attrib->icv_len - -LLC_HEADER_SIZE - -ETH_TYPE_LEN - -PAYLOAD_TYPE_LEN - -FIXED_IE; - - ptdls_sta->off_ch = *(ptr+2); - - /* parsing information element */ - for (j = FIXED_IE; j < parsing_length;) { - pIE = (PNDIS_802_11_VARIABLE_IEs)(ptr + j); - - switch (pIE->ElementID) { - case _COUNTRY_IE_: - break; - case _CH_SWTICH_ANNOUNCE_: - break; - case _LINK_ID_IE_: - break; - case _CH_SWITCH_TIMING_: - memcpy(&ptdls_sta->ch_switch_time, pIE->data, 2); - memcpy(&ptdls_sta->ch_switch_timeout, pIE->data+2, 2); - default: - break; - } - j += (pIE->Length + 2); - } - - /* todo: check status */ - ptdls_sta->stat_code = 0; - ptdls_sta->tdls_sta_state |= TDLS_CH_SWITCH_ON_STATE; - - issue_nulldata(adapter, NULL, 1, 0, 0); - - issue_tdls_ch_switch_rsp(adapter, psa); - - DBG_871X("issue tdls channel switch response\n"); - - if ((ptdls_sta->tdls_sta_state & TDLS_CH_SWITCH_ON_STATE) && ptdls_sta->off_ch == pmlmeext->cur_channel) { - DBG_871X("back to base channel %x\n", pmlmeext->cur_channel); - ptdls_sta->option = 7; - rtw_tdls_cmd(adapter, ptdls_sta->hwaddr, TDLS_BASE_CH); - } else { - ptdls_sta->option = 6; - rtw_tdls_cmd(adapter, ptdls_sta->hwaddr, TDLS_OFF_CH); - } - return _FAIL; -} - -int On_TDLS_Ch_Switch_Rsp(_adapter *adapter, struct recv_frame_hdr *precv_frame) -{ - struct sta_info *ptdls_sta = NULL; - struct sta_priv *pstapriv = &adapter->stapriv; - u8 *ptr = precv_frame->rx_data; - struct rx_pkt_attrib *prx_pkt_attrib = &precv_frame->attrib; - u8 *psa; - int parsing_length; - PNDIS_802_11_VARIABLE_IEs pIE; - u8 FIXED_IE = 4; - u16 stat_code, j, switch_time, switch_timeout; - struct mlme_ext_priv *pmlmeext = &adapter->mlmeextpriv; - - psa = get_sa(ptr); - ptdls_sta = rtw_get_stainfo(pstapriv, psa); - - /* if channel switch is running and receiving Unsolicited TDLS Channel Switch Response, */ - /* it will go back to base channel and terminate this channel switch procedure */ - if (ptdls_sta->tdls_sta_state & TDLS_CH_SWITCH_ON_STATE) { - if (pmlmeext->cur_channel == ptdls_sta->off_ch) { - DBG_871X("back to base channel %x\n", pmlmeext->cur_channel); - ptdls_sta->option = 7; - rtw_tdls_cmd(adapter, ptdls_sta->hwaddr, TDLS_OFF_CH); - } else { - DBG_871X("receive unsolicited channel switch response\n"); - rtw_tdls_cmd(adapter, ptdls_sta->hwaddr, TDLS_CS_OFF); - } - return _FAIL; - } - - /* avoiding duplicated or unconditional ch. switch. rsp */ - if ((ptdls_sta->tdls_sta_state & TDLS_CH_SW_INITIATOR_STATE) != TDLS_CH_SW_INITIATOR_STATE) - return _FAIL; - - ptr += prx_pkt_attrib->hdrlen + prx_pkt_attrib->iv_len+LLC_HEADER_SIZE+TYPE_LENGTH_FIELD_SIZE+1; - parsing_length = ((struct recv_frame_hdr *)precv_frame)->len - -prx_pkt_attrib->hdrlen - -prx_pkt_attrib->iv_len - -prx_pkt_attrib->icv_len - -LLC_HEADER_SIZE - -ETH_TYPE_LEN - -PAYLOAD_TYPE_LEN - -FIXED_IE; - - memcpy(&stat_code, ptr+2, 2); - - if (stat_code != 0) - return _FAIL; - - /* parsing information element */ - for (j = FIXED_IE; j < parsing_length;) { - pIE = (PNDIS_802_11_VARIABLE_IEs)(ptr + j); - - switch (pIE->ElementID) { - case _LINK_ID_IE_: - break; - case _CH_SWITCH_TIMING_: - memcpy(&switch_time, pIE->data, 2); - if (switch_time > ptdls_sta->ch_switch_time) - memcpy(&ptdls_sta->ch_switch_time, &switch_time, 2); - - memcpy(&switch_timeout, pIE->data+2, 2); - if (switch_timeout > ptdls_sta->ch_switch_timeout) - memcpy(&ptdls_sta->ch_switch_timeout, &switch_timeout, 2); - - default: - break; - } - j += (pIE->Length + 2); - } - - ptdls_sta->tdls_sta_state &= ~(TDLS_CH_SW_INITIATOR_STATE); - ptdls_sta->tdls_sta_state |= TDLS_CH_SWITCH_ON_STATE; - - /* goto set_channel_workitem_callback() */ - ptdls_sta->option = 6; - rtw_tdls_cmd(adapter, ptdls_sta->hwaddr, TDLS_OFF_CH); - - return _FAIL; -} - -#ifdef CONFIG_WFD -void wfd_ie_tdls(_adapter *padapter, u8 *pframe, u32 *pktlen) -{ - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct wifi_display_info *pwfd_info = padapter->tdlsinfo.wfd_info; - u8 wfdie[MAX_WFD_IE_LEN] = { 0x00 }; - u32 wfdielen = 0; - - /* WFD OUI */ - wfdielen = 0; - wfdie[wfdielen++] = 0x50; - wfdie[wfdielen++] = 0x6F; - wfdie[wfdielen++] = 0x9A; - wfdie[wfdielen++] = 0x0A; /* WFA WFD v1.0 */ - - /* Commented by Albert 20110825 */ - /* According to the WFD Specification, the negotiation request frame should contain 3 WFD attributes */ - /* 1. WFD Device Information */ - /* 2. Associated BSSID (Optional) */ - /* 3. Local IP Adress (Optional) */ - - /* WFD Device Information ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_DEVICE_INFO; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value1: */ - /* WFD device information */ - /* WFD primary sink + available for WFD session + Preferred TDLS + WSD (WFD Service Discovery) */ - RTW_PUT_BE16(wfdie + wfdielen, WFD_DEVINFO_PSINK | WFD_DEVINFO_SESSION_AVAIL - | WFD_DEVINFO_PC_TDLS | WFD_DEVINFO_WSD); - wfdielen += 2; - - /* Value2: */ - /* Session Management Control Port */ - /* Default TCP port for RTSP messages is 554 */ - RTW_PUT_BE16(wfdie + wfdielen, pwfd_info->rtsp_ctrlport); - wfdielen += 2; - - /* Value3: */ - /* WFD Device Maximum Throughput */ - /* 300Mbps is the maximum throughput */ - RTW_PUT_BE16(wfdie + wfdielen, 300); - wfdielen += 2; - - /* Associated BSSID ATTR */ - /* Type: */ - wfdie[wfdielen++] = WFD_ATTR_ASSOC_BSSID; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0006); - wfdielen += 2; - - /* Value: */ - /* Associated BSSID */ - if (check_fwstate(pmlmepriv, _FW_LINKED) == true) - memcpy(wfdie + wfdielen, &pmlmepriv->assoc_bssid[0], ETH_ALEN); - else - memset(wfdie + wfdielen, 0x00, ETH_ALEN); - - /* Local IP Address ATTR */ - wfdie[wfdielen++] = WFD_ATTR_LOCAL_IP_ADDR; - - /* Length: */ - /* Note: In the WFD specification, the size of length field is 2. */ - RTW_PUT_BE16(wfdie + wfdielen, 0x0005); - wfdielen += 2; - - /* Version: */ - /* 0x01: Version1;IPv4 */ - wfdie[wfdielen++] = 0x01; - - /* IPv4 Address */ - memcpy(wfdie + wfdielen, pwfd_info->ip_address, 4); - wfdielen += 4; - - pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, wfdielen, - (unsigned char *)wfdie, pktlen); -} -#endif /* CONFIG_WFD */ - -void rtw_build_tdls_setup_req_ies(_adapter *padapter, struct xmit_frame *pxmitframe, u8 *pframe) -{ - struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; - struct mlme_ext_info *pmlmeinfo = &pmlmeext->mlmext_info; - struct pkt_attrib *pattrib = &pxmitframe->attrib; - struct registry_priv *pregistrypriv = &padapter->registrypriv; - struct sta_info *ptdls_sta = rtw_get_stainfo((&padapter->stapriv) , pattrib->dst); - - u8 payload_type = 0x02; - u8 category = RTW_WLAN_CATEGORY_TDLS; - u8 action = TDLS_SETUP_REQUEST; - u8 bssrate[NDIS_802_11_LENGTH_RATES_EX]; /* Use NDIS_802_11_LENGTH_RATES_EX in order to call func.rtw_set_supported_rate */ - int bssrate_len = 0, i = 0 ; - u8 more_supportedrates = 0; - unsigned int ie_len; - u8 *p; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - u8 link_id_addr[18] = {0}; - u8 iedata = 0; - u8 sup_ch[30 * 2] = {0x00 }, sup_ch_idx = 0, idx_5g = 2; /* For supported channel */ - u8 timeout_itvl[5]; /* set timeout interval to maximum value */ - u32 time; - - /* SNonce */ - if (pattrib->encrypt) { - for (i = 0; i < 8; i++) { - time = rtw_get_current_time(); - memcpy(&ptdls_sta->SNonce[4*i], (u8 *)&time, 4); - } - } - - /* payload type */ - pframe = rtw_set_fixed_ie(pframe, 1, &(payload_type), &(pattrib->pktlen)); - /* category, action, dialog token */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(ptdls_sta->dialog), &(pattrib->pktlen)); - - /* capability */ - memcpy(pframe, rtw_get_capability_from_ie(pmlmeinfo->network.IEs), 2); - - if (pattrib->encrypt) - *pframe = *pframe | BIT(4); - pframe += 2; - pattrib->pktlen += 2; - - /* supported rates */ - rtw_set_supported_rate(bssrate, WIRELESS_11BG_24N); - bssrate_len = IEEE80211_CCK_RATE_LEN + IEEE80211_NUM_OFDM_RATESLEN; - - if (bssrate_len > 8) { - pframe = rtw_set_ie(pframe, _SUPPORTEDRATES_IE_ , 8, bssrate, &(pattrib->pktlen)); - more_supportedrates = 1; - } else { - pframe = rtw_set_ie(pframe, _SUPPORTEDRATES_IE_ , bssrate_len , bssrate, &(pattrib->pktlen)); - } - - /* country(optional) */ - /* extended supported rates */ - if (more_supportedrates == 1) { - pframe = rtw_set_ie(pframe, _EXT_SUPPORTEDRATES_IE_ , (bssrate_len - 8), (bssrate + 8), &(pattrib->pktlen)); - } - - /* supported channels */ - pframe = rtw_tdls_set_sup_ch(pmlmeext, pframe, pattrib); - - /* SRC IE */ - pframe = rtw_set_ie(pframe, _SRC_IE_, 16, TDLS_SRC, &(pattrib->pktlen)); - - /* RSNIE */ - if (pattrib->encrypt) - pframe = rtw_set_ie(pframe, _RSN_IE_2_, 20, TDLS_RSNIE, &(pattrib->pktlen)); - - /* extended capabilities */ - pframe = rtw_set_ie(pframe, _EXT_CAP_IE_ , 5, TDLS_EXT_CAPIE, &(pattrib->pktlen)); - - /* QoS capability(WMM_IE) */ - pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, 7, TDLS_WMMIE, &(pattrib->pktlen)); - - if (pattrib->encrypt) { - /* FTIE */ - memset(pframe, 0, 84); /* All fields except SNonce shall be set to 0 */ - memset(pframe, _FTIE_, 1); /* version */ - memset((pframe+1), 82, 1); /* length */ - memcpy((pframe+52), ptdls_sta->SNonce, 32); - pframe += 84; - pattrib->pktlen += 84; - - /* Timeout interval */ - timeout_itvl[0] = 0x02; - memcpy(timeout_itvl+1, (u8 *)(&ptdls_sta->TDLS_PeerKey_Lifetime), 4); - pframe = rtw_set_ie(pframe, _TIMEOUT_ITVL_IE_, 5, timeout_itvl, &(pattrib->pktlen)); - } - - /* Sup_reg_classes(optional) */ - /* HT capabilities */ - pframe = rtw_tdls_set_ht_cap(padapter, pframe, pattrib); - - /* 20/40 BSS coexistence */ - if (pmlmepriv->num_FortyMHzIntolerant > 0) - iedata |= BIT(2);/* 20 MHz BSS Width Request */ - pframe = rtw_set_ie(pframe, EID_BSSCoexistence, 1, &iedata, &(pattrib->pktlen)); - - /* Link identifier */ - memcpy(link_id_addr, pattrib->ra, 6); - memcpy((link_id_addr+6), pattrib->src, 6); - memcpy((link_id_addr+12), pattrib->dst, 6); - pframe = rtw_set_ie(pframe, _LINK_ID_IE_, 18, link_id_addr, &(pattrib->pktlen)); - -#ifdef CONFIG_WFD - wfd_ie_tdls(padapter, pframe, &(pattrib->pktlen)); -#endif /* CONFIG_WFD */ -} - -void rtw_build_tdls_setup_rsp_ies(_adapter *padapter, struct xmit_frame *pxmitframe, u8 *pframe) -{ - struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - struct pkt_attrib *pattrib = &pxmitframe->attrib; - struct sta_info *ptdls_sta; - struct registry_priv *pregistrypriv = &padapter->registrypriv; - - u8 payload_type = 0x02; - unsigned char category = RTW_WLAN_CATEGORY_TDLS; - unsigned char action = TDLS_SETUP_RESPONSE; - unsigned char bssrate[NDIS_802_11_LENGTH_RATES_EX]; - int bssrate_len = 0; - u8 more_supportedrates = 0; - unsigned int ie_len; - unsigned char *p; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - u8 link_id_addr[18] = {0}; - u8 iedata = 0; - u8 timeout_itvl[5]; /* setup response timeout interval will copy from request */ - u8 ANonce[32]; /* maybe it can put in ontdls_req */ - u8 k; /* for random ANonce */ - u8 *pftie, *ptimeout_ie, *plinkid_ie, *prsnie, *pftie_mic; - u32 time; - - ptdls_sta = rtw_get_stainfo(&(padapter->stapriv) , pattrib->dst); - - if (ptdls_sta == NULL) { - DBG_871X("[%s] %d\n", __func__, __LINE__); - return; - } - - if (pattrib->encrypt) { - for (k = 0; k < 8; k++) { - time = rtw_get_current_time(); - memcpy(&ptdls_sta->ANonce[4*k], (u8 *)&time, 4); - } - } - - /* payload type */ - pframe = rtw_set_fixed_ie(pframe, 1, &(payload_type), &(pattrib->pktlen)); - /* category, action, status code */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 2, (u8 *)&ptdls_sta->stat_code, &(pattrib->pktlen)); - - if (ptdls_sta->stat_code != 0) { /* invalid setup request */ - DBG_871X("ptdls_sta->stat_code:%04x\n", ptdls_sta->stat_code); - return; - } - - /* dialog token */ - pframe = rtw_set_fixed_ie(pframe, 1, &(ptdls_sta->dialog), &(pattrib->pktlen)); - - /* capability */ - memcpy(pframe, rtw_get_capability_from_ie(pmlmeinfo->network.IEs), 2); - - if (pattrib->encrypt) - *pframe = *pframe | BIT(4); - pframe += 2; - pattrib->pktlen += 2; - - /* supported rates */ - rtw_set_supported_rate(bssrate, WIRELESS_11BG_24N); - bssrate_len = IEEE80211_CCK_RATE_LEN + IEEE80211_NUM_OFDM_RATESLEN; - - if (bssrate_len > 8) { - pframe = rtw_set_ie(pframe, _SUPPORTEDRATES_IE_ , 8, bssrate, &(pattrib->pktlen)); - more_supportedrates = 1; - } else { - pframe = rtw_set_ie(pframe, _SUPPORTEDRATES_IE_ , bssrate_len , bssrate, &(pattrib->pktlen)); - } - - /* country(optional) */ - /* extended supported rates */ - if (more_supportedrates == 1) { - pframe = rtw_set_ie(pframe, _EXT_SUPPORTEDRATES_IE_ , (bssrate_len - 8), (bssrate + 8), &(pattrib->pktlen)); - } - - /* supported channels */ - pframe = rtw_tdls_set_sup_ch(pmlmeext, pframe, pattrib); - - /* SRC IE */ - pframe = rtw_set_ie(pframe, _SRC_IE_ , 16, TDLS_SRC, &(pattrib->pktlen)); - - /* RSNIE */ - if (pattrib->encrypt) { - prsnie = pframe; - pframe = rtw_set_ie(pframe, _RSN_IE_2_, 20, TDLS_RSNIE, &(pattrib->pktlen)); - } - - /* extended capabilities */ - pframe = rtw_set_ie(pframe, _EXT_CAP_IE_ , 5, TDLS_EXT_CAPIE, &(pattrib->pktlen)); - - /* QoS capability(WMM_IE) */ - pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, 7, TDLS_WMMIE, &(pattrib->pktlen)); - - if (pattrib->encrypt) { - wpa_tdls_generate_tpk(padapter, ptdls_sta); - - /* FTIE */ - pftie = pframe; - pftie_mic = pframe+4; - memset(pframe, 0, 84); /* All fields except SNonce shall be set to 0 */ - memset(pframe, _FTIE_, 1); /* version */ - memset((pframe+1), 82, 1); /* length */ - memcpy((pframe+20), ptdls_sta->ANonce, 32); - memcpy((pframe+52), ptdls_sta->SNonce, 32); - pframe += 84; - pattrib->pktlen += 84; - - /* Timeout interval */ - ptimeout_ie = pframe; - timeout_itvl[0] = 0x02; - memcpy(timeout_itvl+1, (u8 *)(&ptdls_sta->TDLS_PeerKey_Lifetime), 4); - pframe = rtw_set_ie(pframe, _TIMEOUT_ITVL_IE_, 5, timeout_itvl, &(pattrib->pktlen)); - } - - /* Sup_reg_classes(optional) */ - /* HT capabilities */ - pframe = rtw_tdls_set_ht_cap(padapter, pframe, pattrib); - - /* 20/40 BSS coexistence */ - if (pmlmepriv->num_FortyMHzIntolerant > 0) - iedata |= BIT(2);/* 20 MHz BSS Width Request */ - pframe = rtw_set_ie(pframe, EID_BSSCoexistence, 1, &iedata, &(pattrib->pktlen)); - - /* Link identifier */ - plinkid_ie = pframe; - memcpy(link_id_addr, pattrib->ra, 6); - memcpy((link_id_addr+6), pattrib->dst, 6); - memcpy((link_id_addr+12), pattrib->src, 6); - pframe = rtw_set_ie(pframe, _LINK_ID_IE_, 18, link_id_addr, &(pattrib->pktlen)); - - /* fill FTIE mic */ - if (pattrib->encrypt) - wpa_tdls_ftie_mic(ptdls_sta->tpk.kck, 2, plinkid_ie, prsnie, ptimeout_ie, pftie, pftie_mic); - -#ifdef CONFIG_WFD - wfd_ie_tdls(padapter, pframe, &(pattrib->pktlen)); -#endif /* CONFIG_WFD */ -} - -void rtw_build_tdls_setup_cfm_ies(_adapter *padapter, struct xmit_frame *pxmitframe, u8 *pframe) -{ - struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - struct pkt_attrib *pattrib = &pxmitframe->attrib; - struct sta_info *ptdls_sta = rtw_get_stainfo((&padapter->stapriv) , pattrib->dst); - - u8 payload_type = 0x02; - unsigned char category = RTW_WLAN_CATEGORY_TDLS; - unsigned char action = TDLS_SETUP_CONFIRM; - u8 more_supportedrates = 0; - unsigned int ie_len; - unsigned char *p; - u8 timeout_itvl[5]; /* set timeout interval to maximum value */ - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - u8 link_id_addr[18] = {0}; - u8 *pftie, *ptimeout_ie, *plinkid_ie, *prsnie, *pftie_mic; - - /* payload type */ - pframe = rtw_set_fixed_ie(pframe, 1, &(payload_type), &(pattrib->pktlen)); - /* category, action, status code, dialog token */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 2, (u8 *)&ptdls_sta->stat_code, &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(ptdls_sta->dialog), &(pattrib->pktlen)); - - if (ptdls_sta->stat_code != 0) /* invalid setup request */ - return; - - /* RSNIE */ - if (pattrib->encrypt) { - prsnie = pframe; - pframe = rtw_set_ie(pframe, _RSN_IE_2_, 20, TDLS_RSNIE, &(pattrib->pktlen)); - } - - /* EDCA param set; WMM param ele. */ - if (pattrib->encrypt) { - /* FTIE */ - pftie = pframe; - pftie_mic = pframe+4; - memset(pframe, 0, 84); /* All fields except SNonce shall be set to 0 */ - memset(pframe, _FTIE_, 1); /* version */ - memset((pframe+1), 82, 1); /* length */ - memcpy((pframe+20), ptdls_sta->ANonce, 32); - memcpy((pframe+52), ptdls_sta->SNonce, 32); - pframe += 84; - pattrib->pktlen += 84; - - /* Timeout interval */ - ptimeout_ie = pframe; - timeout_itvl[0] = 0x02; - memcpy(timeout_itvl+1, (u8 *)(&ptdls_sta->TDLS_PeerKey_Lifetime), 4); - ptdls_sta->TPK_count = 0; - _set_timer(&ptdls_sta->TPK_timer, ptdls_sta->TDLS_PeerKey_Lifetime/TPK_RESEND_COUNT); - pframe = rtw_set_ie(pframe, _TIMEOUT_ITVL_IE_, 5, timeout_itvl, &(pattrib->pktlen)); - } - - /* HT operation; todo */ - /* Link identifier */ - plinkid_ie = pframe; - memcpy(link_id_addr, pattrib->ra, 6); - memcpy((link_id_addr+6), pattrib->src, 6); - memcpy((link_id_addr+12), pattrib->dst, 6); - pframe = rtw_set_ie(pframe, _LINK_ID_IE_, 18, link_id_addr, &(pattrib->pktlen)); - - /* fill FTIE mic */ - if (pattrib->encrypt) - wpa_tdls_ftie_mic(ptdls_sta->tpk.kck, 3, plinkid_ie, prsnie, ptimeout_ie, pftie, pftie_mic); -} - -void rtw_build_tdls_teardown_ies(_adapter *padapter, struct xmit_frame *pxmitframe, u8 *pframe) -{ - struct pkt_attrib *pattrib = &pxmitframe->attrib; - u8 payload_type = 0x02; - unsigned char category = RTW_WLAN_CATEGORY_TDLS; - unsigned char action = TDLS_TEARDOWN; - u8 link_id_addr[18] = {0}; - - struct sta_info *ptdls_sta = rtw_get_stainfo(&(padapter->stapriv) , pattrib->dst); - struct sta_priv *pstapriv = &padapter->stapriv; - - /* payload type */ - pframe = rtw_set_fixed_ie(pframe, 1, &(payload_type), &(pattrib->pktlen)); - /* category, action, reason code */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, (u8 *)&ptdls_sta->stat_code, &(pattrib->pktlen)); - - /* Link identifier */ - if (ptdls_sta->tdls_sta_state & TDLS_INITIATOR_STATE) { - memcpy(link_id_addr, pattrib->ra, 6); - memcpy((link_id_addr+6), pattrib->src, 6); - memcpy((link_id_addr+12), pattrib->dst, 6); - } else if (ptdls_sta->tdls_sta_state & TDLS_RESPONDER_STATE) { - memcpy(link_id_addr, pattrib->ra, 6); - memcpy((link_id_addr+6), pattrib->dst, 6); - memcpy((link_id_addr+12), pattrib->src, 6); - } - pframe = rtw_set_ie(pframe, _LINK_ID_IE_, 18, link_id_addr, &(pattrib->pktlen)); -} - -void rtw_build_tdls_dis_req_ies(_adapter *padapter, struct xmit_frame *pxmitframe, u8 *pframe) -{ - struct pkt_attrib *pattrib = &pxmitframe->attrib; - u8 payload_type = 0x02; - u8 category = RTW_WLAN_CATEGORY_TDLS; - u8 action = TDLS_DISCOVERY_REQUEST; - u8 link_id_addr[18] = {0}; - static u8 dialogtoken; - - /* payload type */ - pframe = rtw_set_fixed_ie(pframe, 1, &(payload_type), &(pattrib->pktlen)); - /* category, action, reason code */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(dialogtoken), &(pattrib->pktlen)); - dialogtoken = (dialogtoken+1)%256; - - /* Link identifier */ - memcpy(link_id_addr, pattrib->ra, 6); - memcpy((link_id_addr+6), pattrib->src, 6); - memcpy((link_id_addr+12), pattrib->dst, 6); - pframe = rtw_set_ie(pframe, _LINK_ID_IE_, 18, link_id_addr, &(pattrib->pktlen)); -} - -void rtw_build_tdls_dis_rsp_ies(_adapter *padapter, struct xmit_frame *pxmitframe, u8 *pframe, u8 dialog) -{ - struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; - struct mlme_ext_info *pmlmeinfo = &pmlmeext->mlmext_info; - struct pkt_attrib *pattrib = &pxmitframe->attrib; - struct registry_priv *pregistrypriv = &padapter->registrypriv; - - u8 category = RTW_WLAN_CATEGORY_PUBLIC; - u8 action = TDLS_DISCOVERY_RESPONSE; - u8 bssrate[NDIS_802_11_LENGTH_RATES_EX]; - int bssrate_len = 0; - u8 more_supportedrates = 0; - u8 *p; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - u8 link_id_addr[18] = {0}; - u8 iedata = 0; - u8 timeout_itvl[5]; /* set timeout interval to maximum value */ - u32 timeout_interval = TPK_RESEND_COUNT * 1000; - - /* category, action, dialog token */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(dialog), &(pattrib->pktlen)); - - /* capability */ - memcpy(pframe, rtw_get_capability_from_ie(pmlmeinfo->network.IEs), 2); - - if (pattrib->encrypt) - *pframe = *pframe | BIT(4); - pframe += 2; - pattrib->pktlen += 2; - - /* supported rates */ - rtw_set_supported_rate(bssrate, WIRELESS_11BG_24N); - bssrate_len = IEEE80211_CCK_RATE_LEN + IEEE80211_NUM_OFDM_RATESLEN; - - if (bssrate_len > 8) { - pframe = rtw_set_ie(pframe, _SUPPORTEDRATES_IE_ , 8, bssrate, &(pattrib->pktlen)); - more_supportedrates = 1; - } else { - pframe = rtw_set_ie(pframe, _SUPPORTEDRATES_IE_ , bssrate_len , bssrate, &(pattrib->pktlen)); - } - - /* extended supported rates */ - if (more_supportedrates == 1) { - pframe = rtw_set_ie(pframe, _EXT_SUPPORTEDRATES_IE_ , (bssrate_len - 8), (bssrate + 8), &(pattrib->pktlen)); - } - - /* supported channels */ - pframe = rtw_tdls_set_sup_ch(pmlmeext, pframe, pattrib); - - /* RSNIE */ - if (pattrib->encrypt) - pframe = rtw_set_ie(pframe, _RSN_IE_2_, 20, TDLS_RSNIE, &(pattrib->pktlen)); - - /* extended capability */ - pframe = rtw_set_ie(pframe, _EXT_CAP_IE_ , 5, TDLS_EXT_CAPIE, &(pattrib->pktlen)); - - if (pattrib->encrypt) { - /* FTIE */ - memset(pframe, 0, 84); /* All fields shall be set to 0 */ - memset(pframe, _FTIE_, 1); /* version */ - memset((pframe+1), 82, 1); /* length */ - pframe += 84; - pattrib->pktlen += 84; - - /* Timeout interval */ - timeout_itvl[0] = 0x02; - memcpy(timeout_itvl+1, &timeout_interval, 4); - pframe = rtw_set_ie(pframe, _TIMEOUT_ITVL_IE_, 5, timeout_itvl, &(pattrib->pktlen)); - } - - /* Sup_reg_classes(optional) */ - /* HT capabilities */ - pframe = rtw_tdls_set_ht_cap(padapter, pframe, pattrib); - - /* 20/40 BSS coexistence */ - if (pmlmepriv->num_FortyMHzIntolerant > 0) - iedata |= BIT(2);/* 20 MHz BSS Width Request */ - pframe = rtw_set_ie(pframe, EID_BSSCoexistence, 1, &iedata, &(pattrib->pktlen)); - - /* Link identifier */ - memcpy(link_id_addr, pattrib->ra, 6); - memcpy((link_id_addr+6), pattrib->dst, 6); - memcpy((link_id_addr+12), pattrib->src, 6); - pframe = rtw_set_ie(pframe, _LINK_ID_IE_, 18, link_id_addr, &(pattrib->pktlen)); -} - -void rtw_build_tdls_peer_traffic_indication_ies(_adapter *padapter, struct xmit_frame *pxmitframe, u8 *pframe) -{ - struct pkt_attrib *pattrib = &pxmitframe->attrib; - u8 payload_type = 0x02; - unsigned char category = RTW_WLAN_CATEGORY_TDLS; - unsigned char action = TDLS_PEER_TRAFFIC_INDICATION; - - u8 link_id_addr[18] = {0}; - u8 AC_queue = 0; - struct sta_priv *pstapriv = &padapter->stapriv; - struct sta_info *ptdls_sta = rtw_get_stainfo(pstapriv, pattrib->dst); - - /* payload type */ - pframe = rtw_set_fixed_ie(pframe, 1, &(payload_type), &(pattrib->pktlen)); - /* category, action, reason code */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(ptdls_sta->dialog), &(pattrib->pktlen)); - - /* Link identifier */ - memcpy(link_id_addr, pattrib->ra, 6); - memcpy((link_id_addr+6), pattrib->src, 6); - memcpy((link_id_addr+12), pattrib->dst, 6); - pframe = rtw_set_ie(pframe, _LINK_ID_IE_, 18, link_id_addr, &(pattrib->pktlen)); - - /* PTI control */ - /* PU buffer status */ - if (ptdls_sta->uapsd_bk&BIT(1)) - AC_queue = BIT(0); - if (ptdls_sta->uapsd_be&BIT(1)) - AC_queue = BIT(1); - if (ptdls_sta->uapsd_vi&BIT(1)) - AC_queue = BIT(2); - if (ptdls_sta->uapsd_vo&BIT(1)) - AC_queue = BIT(3); - pframe = rtw_set_ie(pframe, _PTI_BUFFER_STATUS_, 1, &AC_queue, &(pattrib->pktlen)); -} - -void rtw_build_tdls_ch_switch_req_ies(_adapter *padapter, struct xmit_frame *pxmitframe, u8 *pframe) -{ - struct pkt_attrib *pattrib = &pxmitframe->attrib; - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - u8 payload_type = 0x02; - unsigned char category = RTW_WLAN_CATEGORY_TDLS; - unsigned char action = TDLS_CHANNEL_SWITCH_REQUEST; - u8 link_id_addr[18] = {0}; - struct sta_priv *pstapriv = &padapter->stapriv; - struct sta_info *ptdls_sta = rtw_get_stainfo(pstapriv, pattrib->dst); - u8 ch_switch_timing[4] = {0}; - u16 switch_time = CH_SWITCH_TIME, switch_timeout = CH_SWITCH_TIMEOUT; - - /* payload type */ - pframe = rtw_set_fixed_ie(pframe, 1, &(payload_type), &(pattrib->pktlen)); - /* category, action, target_ch */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(ptdlsinfo->candidate_ch), &(pattrib->pktlen)); - - /* Link identifier */ - memcpy(link_id_addr, pattrib->ra, 6); - memcpy((link_id_addr+6), pattrib->src, 6); - memcpy((link_id_addr+12), pattrib->dst, 6); - pframe = rtw_set_ie(pframe, _LINK_ID_IE_, 18, link_id_addr, &(pattrib->pktlen)); - - /* ch switch timing */ - memcpy(ch_switch_timing, &switch_time, 2); - memcpy(ch_switch_timing+2, &switch_timeout, 2); - pframe = rtw_set_ie(pframe, _CH_SWITCH_TIMING_, 4, ch_switch_timing, &(pattrib->pktlen)); - - /* update ch switch attrib to sta_info */ - ptdls_sta->off_ch = ptdlsinfo->candidate_ch; - ptdls_sta->ch_switch_time = switch_time; - ptdls_sta->ch_switch_timeout = switch_timeout; -} - -void rtw_build_tdls_ch_switch_rsp_ies(_adapter *padapter, struct xmit_frame *pxmitframe, u8 *pframe) -{ - struct pkt_attrib *pattrib = &pxmitframe->attrib; - u8 payload_type = 0x02; - unsigned char category = RTW_WLAN_CATEGORY_TDLS; - unsigned char action = TDLS_CHANNEL_SWITCH_RESPONSE; - u8 link_id_addr[18] = {0}; - struct sta_priv *pstapriv = &padapter->stapriv; - struct sta_info *ptdls_sta = rtw_get_stainfo(pstapriv, pattrib->dst); - struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; - struct mlme_ext_info *pmlmeinfo = &pmlmeext->mlmext_info; - u8 ch_switch_timing[4] = {0}; - - /* payload type */ - pframe = rtw_set_fixed_ie(pframe, 1, &(payload_type), &(pattrib->pktlen)); - /* category, action, status_code */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 2, (u8 *)&ptdls_sta->stat_code, &(pattrib->pktlen)); - - /* Link identifier */ - memcpy(link_id_addr, pattrib->ra, 6); - memcpy((link_id_addr+6), pattrib->src, 6); - memcpy((link_id_addr+12), pattrib->dst, 6); - pframe = rtw_set_ie(pframe, _LINK_ID_IE_, 18, link_id_addr, &(pattrib->pktlen)); - - /* ch switch timing */ - memcpy(ch_switch_timing, &ptdls_sta->ch_switch_time, 2); - memcpy(ch_switch_timing+2, &ptdls_sta->ch_switch_timeout, 2); - pframe = rtw_set_ie(pframe, _CH_SWITCH_TIMING_, 4, ch_switch_timing, &(pattrib->pktlen)); -} - -#ifdef CONFIG_WFD -void rtw_build_tunneled_probe_req_ies(_adapter *padapter, struct xmit_frame *pxmitframe, u8 *pframe) -{ - struct pkt_attrib *pattrib = &pxmitframe->attrib; - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - struct wifidirect_info *pbuddy_wdinfo = &padapter->pbuddy_adapter->wdinfo; - u8 payload_type = 0x02; - u8 category = RTW_WLAN_CATEGORY_P2P; - u8 WFA_OUI[3] = { 0x50, 0x6f, 0x9a}; - u8 probe_req = 4; - u8 wfdielen = 0; - - /* payload type */ - pframe = rtw_set_fixed_ie(pframe, 1, &(payload_type), &(pattrib->pktlen)); - /* category, OUI, frame_body_type */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 3, WFA_OUI, &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(probe_req), &(pattrib->pktlen)); - - if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) { - wfdielen = build_probe_req_wfd_ie(pwdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; - } else if (!rtw_p2p_chk_state(pbuddy_wdinfo, P2P_STATE_NONE)) { - wfdielen = build_probe_req_wfd_ie(pbuddy_wdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; - } -} - -void rtw_build_tunneled_probe_rsp_ies(_adapter *padapter, struct xmit_frame *pxmitframe, u8 *pframe) -{ - struct pkt_attrib *pattrib = &pxmitframe->attrib; - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - struct wifidirect_info *pbuddy_wdinfo = &padapter->pbuddy_adapter->wdinfo; - u8 payload_type = 0x02; - u8 category = RTW_WLAN_CATEGORY_P2P; - u8 WFA_OUI[3] = { 0x50, 0x6f, 0x9a}; - u8 probe_rsp = 5; - u8 wfdielen = 0; - - /* payload type */ - pframe = rtw_set_fixed_ie(pframe, 1, &(payload_type), &(pattrib->pktlen)); - /* category, OUI, frame_body_type */ - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 3, WFA_OUI, &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(probe_rsp), &(pattrib->pktlen)); - - if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) { - wfdielen = build_probe_resp_wfd_ie(pwdinfo, pframe, 1); - pframe += wfdielen; - pattrib->pktlen += wfdielen; - } else if (!rtw_p2p_chk_state(pbuddy_wdinfo, P2P_STATE_NONE)) { - wfdielen = build_probe_resp_wfd_ie(pbuddy_wdinfo, pframe, 1); - pframe += wfdielen; - pattrib->pktlen += wfdielen; - } -} -#endif /* CONFIG_WFD */ - -void _TPK_timer_hdl(void *FunctionContext) -{ - struct sta_info *ptdls_sta = (struct sta_info *)FunctionContext; - - ptdls_sta->TPK_count++; - /* TPK_timer set 1000 as default */ - /* retry timer should set at least 301 sec. */ - if (ptdls_sta->TPK_count == TPK_RESEND_COUNT) { - ptdls_sta->TPK_count = 0; - issue_tdls_setup_req(ptdls_sta->padapter, ptdls_sta->hwaddr); - } - - _set_timer(&ptdls_sta->TPK_timer, ptdls_sta->TDLS_PeerKey_Lifetime/TPK_RESEND_COUNT); -} - -void init_TPK_timer(_adapter *padapter, struct sta_info *psta) -{ - psta->padapter = padapter; - - _init_timer(&psta->TPK_timer, padapter->pnetdev, _TPK_timer_hdl, psta); -} - -/* TDLS_DONE_CH_SEN: channel sensing and report candidate channel */ -/* TDLS_OFF_CH: first time set channel to off channel */ -/* TDLS_BASE_CH: when go back to the channel linked with AP, send null data to peer STA as an indication */ -void _ch_switch_timer_hdl(void *FunctionContext) -{ - struct sta_info *ptdls_sta = (struct sta_info *)FunctionContext; - _adapter *padapter = ptdls_sta->padapter; - - if (ptdls_sta->option == TDLS_DONE_CH_SEN) { - rtw_tdls_cmd(padapter, ptdls_sta->hwaddr, TDLS_DONE_CH_SEN); - } else if (ptdls_sta->option == TDLS_OFF_CH) { - issue_nulldata_to_TDLS_peer_STA(ptdls_sta->padapter, ptdls_sta, 0); - _set_timer(&ptdls_sta->base_ch_timer, 500); - } else if (ptdls_sta->option == TDLS_BASE_CH) { - issue_nulldata_to_TDLS_peer_STA(ptdls_sta->padapter, ptdls_sta, 0); - } -} - -void init_ch_switch_timer(_adapter *padapter, struct sta_info *psta) -{ - psta->padapter = padapter; - _init_timer(&psta->option_timer, padapter->pnetdev, _ch_switch_timer_hdl, psta); -} - -void _base_ch_timer_hdl(void *FunctionContext) -{ - struct sta_info *ptdls_sta = (struct sta_info *)FunctionContext; - rtw_tdls_cmd(ptdls_sta->padapter, ptdls_sta->hwaddr, TDLS_P_OFF_CH); -} - -void init_base_ch_timer(_adapter *padapter, struct sta_info *psta) -{ - psta->padapter = padapter; - _init_timer(&psta->base_ch_timer, padapter->pnetdev, _base_ch_timer_hdl, psta); -} - -void _off_ch_timer_hdl(void *FunctionContext) -{ - struct sta_info *ptdls_sta = (struct sta_info *)FunctionContext; - rtw_tdls_cmd(ptdls_sta->padapter, ptdls_sta->hwaddr, TDLS_P_BASE_CH); -} - -void init_off_ch_timer(_adapter *padapter, struct sta_info *psta) -{ - psta->padapter = padapter; - _init_timer(&psta->off_ch_timer, padapter->pnetdev, _off_ch_timer_hdl, psta); -} - -void _tdls_handshake_timer_hdl(void *FunctionContext) -{ - struct sta_info *ptdls_sta = (struct sta_info *)FunctionContext; - - if (ptdls_sta != NULL) { - if (!(ptdls_sta->tdls_sta_state & TDLS_LINKED_STATE)) { - DBG_871X("tdls handshake time out\n"); - free_tdls_sta(ptdls_sta->padapter, ptdls_sta); - } - } -} - -void init_handshake_timer(_adapter *padapter, struct sta_info *psta) -{ - psta->padapter = padapter; - _init_timer(&psta->handshake_timer, padapter->pnetdev, _tdls_handshake_timer_hdl, psta); -} - -/* Check tdls peer sta alive. */ -void _tdls_alive_timer_phase1_hdl(void *FunctionContext) -{ - struct sta_info *ptdls_sta = (struct sta_info *)FunctionContext; - _adapter *padapter = ptdls_sta->padapter; - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - - spin_lock_bh(&ptdlsinfo->hdl_lock); - ptdls_sta->timer_flag = 1; - spin_unlock_bh(&ptdlsinfo->hdl_lock); - - ptdls_sta->tdls_sta_state &= (~TDLS_ALIVE_STATE); - - DBG_871X("issue_tdls_dis_req to check alive\n"); - issue_tdls_dis_req(padapter, ptdls_sta->hwaddr); - rtw_tdls_cmd(padapter, ptdls_sta->hwaddr, TDLS_CKALV_PH1); - sta_update_last_rx_pkts(ptdls_sta); - - if (ptdls_sta->timer_flag == 2) { - rtw_tdls_cmd(padapter, ptdls_sta->hwaddr, TDLS_FREE_STA); - } else { - spin_lock_bh(&ptdlsinfo->hdl_lock); - ptdls_sta->timer_flag = 0; - spin_unlock_bh(&ptdlsinfo->hdl_lock); - } -} - -void _tdls_alive_timer_phase2_hdl(void *FunctionContext) -{ - struct sta_info *ptdls_sta = (struct sta_info *)FunctionContext; - _adapter *padapter = ptdls_sta->padapter; - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - - spin_lock_bh(&(ptdlsinfo->hdl_lock)); - ptdls_sta->timer_flag = 1; - spin_unlock_bh(&ptdlsinfo->hdl_lock); - - if ((ptdls_sta->tdls_sta_state & TDLS_ALIVE_STATE) && - (sta_last_rx_pkts(ptdls_sta) + 3 <= sta_rx_pkts(ptdls_sta))) { - DBG_871X("TDLS STA ALIVE, ptdls_sta->sta_stats.last_rx_pkts:%llu, ptdls_sta->sta_stats.rx_pkts:%llu\n", - sta_last_rx_pkts(ptdls_sta), sta_rx_pkts(ptdls_sta)); - - ptdls_sta->alive_count = 0; - rtw_tdls_cmd(padapter, ptdls_sta->hwaddr, TDLS_CKALV_PH2); - } else { - if (!(ptdls_sta->tdls_sta_state & TDLS_ALIVE_STATE)) - DBG_871X("TDLS STA TOO FAR\n"); - if (!(sta_last_rx_pkts(ptdls_sta) + 3 <= sta_rx_pkts(ptdls_sta))) - DBG_871X("TDLS LINK WITH LOW TRAFFIC, ptdls_sta->sta_stats.last_rx_pkts:%llu, ptdls_sta->sta_stats.rx_pkts:%llu\n", - sta_last_rx_pkts(ptdls_sta), sta_rx_pkts(ptdls_sta)); - - ptdls_sta->alive_count++; - if (ptdls_sta->alive_count == TDLS_ALIVE_COUNT) { - ptdls_sta->stat_code = _RSON_TDLS_TEAR_TOOFAR_; - issue_tdls_teardown(padapter, ptdls_sta->hwaddr); - } else { - rtw_tdls_cmd(padapter, ptdls_sta->hwaddr, TDLS_CKALV_PH2); - } - } - - if (ptdls_sta->timer_flag == 2) { - rtw_tdls_cmd(padapter, ptdls_sta->hwaddr, TDLS_FREE_STA); - } else { - spin_lock_bh(&(ptdlsinfo->hdl_lock)); - ptdls_sta->timer_flag = 0; - spin_unlock_bh(&ptdlsinfo->hdl_lock); -} -} - -void init_tdls_alive_timer(_adapter *padapter, struct sta_info *psta) -{ - psta->padapter = padapter; - _init_timer(&psta->alive_timer1, padapter->pnetdev, _tdls_alive_timer_phase1_hdl, psta); - _init_timer(&psta->alive_timer2, padapter->pnetdev, _tdls_alive_timer_phase2_hdl, psta); -} - -int update_sgi_tdls(_adapter *padapter, struct sta_info *psta) -{ - struct ht_priv *psta_ht = NULL; - psta_ht = &psta->htpriv; - - if (psta_ht->ht_option) - return psta_ht->sgi; - else - return false; -} - -u32 update_mask_tdls(_adapter *padapter, struct sta_info *psta) -{ - int i; - u8 rf_type, id; - unsigned char sta_band = 0; - unsigned char limit; - unsigned int tx_ra_bitmap = 0; - struct ht_priv *psta_ht = NULL; - struct mlme_priv *pmlmepriv = &(padapter->mlmepriv); - struct wlan_bssid_ex *pcur_network = (struct wlan_bssid_ex *)&pmlmepriv->cur_network.network; - - psta_ht = &psta->htpriv; - /* b/g mode ra_bitmap */ - for (i = 0; i < sizeof(psta->bssrateset); i++) { - if (psta->bssrateset[i]) - tx_ra_bitmap |= rtw_get_bit_value_from_ieee_value(psta->bssrateset[i]&0x7f); - } - - /* n mode ra_bitmap */ - if (psta_ht->ht_option) { - rtw_hal_get_hwreg(padapter, HW_VAR_RF_TYPE, (u8 *)(&rf_type)); - if (rf_type == RF_2T2R) - limit = 16;/* 2R */ - else - limit = 8;/* 1R */ - - for (i = 0; i < limit; i++) { - if (psta_ht->ht_cap.supp_mcs_set[i/8] & BIT(i%8)) - tx_ra_bitmap |= BIT(i+12); - } - } - - if (pcur_network->Configuration.DSConfig > 14) { - /* 5G band */ - if (tx_ra_bitmap & 0xffff000) - sta_band |= WIRELESS_11_5N | WIRELESS_11A; - else - sta_band |= WIRELESS_11A; - } else { - if (tx_ra_bitmap & 0xffff000) - sta_band |= WIRELESS_11_24N | WIRELESS_11G | WIRELESS_11B; - else if (tx_ra_bitmap & 0xff0) - sta_band |= WIRELESS_11G | WIRELESS_11B; - else - sta_band |= WIRELESS_11B; - } - - id = networktype_to_raid(sta_band); - tx_ra_bitmap |= ((id<<28)&0xf0000000); - return tx_ra_bitmap; -} - -#endif /* CONFIG_TDLS */ diff --git a/core/rtw_wlan_util.c b/core/rtw_wlan_util.c index 935f1432..2f20a936 100644 --- a/core/rtw_wlan_util.c +++ b/core/rtw_wlan_util.c @@ -660,36 +660,6 @@ void flush_all_cam_entry(struct rtw_adapter *padapter) memset((u8 *)(pmlmeinfo->FW_sta_info), 0, sizeof(pmlmeinfo->FW_sta_info)); } -#if defined(CONFIG_P2P) && defined(CONFIG_WFD) -int WFD_info_handler(struct rtw_adapter *padapter, struct ndis_802_11_variable_ies *pIE) -{ - struct registry_priv *pregpriv = &padapter->registrypriv; - struct mlme_priv *pmlmepriv = &(padapter->mlmepriv); - struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - struct wifidirect_info *pwdinfo; - u8 wfd_ie[128] = { 0x00 }; - u32 wfd_ielen = 0; - - pwdinfo = &padapter->wdinfo; - if (rtw_get_wfd_ie((u8 *)pIE, pIE->Length, wfd_ie, &wfd_ielen)) { - u8 attr_content[10] = { 0x00 }; - u32 attr_contentlen = 0; - - pr_info("[%s] Found WFD IE\n", __func__); - rtw_get_wfd_attr_content(wfd_ie, wfd_ielen, WFD_ATTR_DEVICE_INFO, attr_content, &attr_contentlen); - if (attr_contentlen) { - pwdinfo->wfd_info->peer_rtsp_ctrlport = RTW_GET_BE16(attr_content + 2); - DBG_8192D("[%s] Peer PORT NUM = %d\n", __func__, pwdinfo->wfd_info->peer_rtsp_ctrlport); - return true; - } - } else { - pr_info("[%s] NO WFD IE\n", __func__); - } - return _FAIL; -} -#endif - int WMM_param_handler(struct rtw_adapter *padapter, struct ndis_802_11_variable_ies *pIE) { /* struct registry_priv *pregpriv = &padapter->registrypriv; */ @@ -905,24 +875,10 @@ void HT_caps_handler(struct rtw_adapter *padapter, struct ndis_802_11_variable_i /* update the MCS rates */ for (i = 0; i < 16; i++) { - if ((rf_type == RF_1T1R) || (rf_type == RF_1T2R)) { + if ((rf_type == RF_1T1R) || (rf_type == RF_1T2R)) pmlmeinfo->HT_caps.u.HT_cap_element.MCS_rate[i] &= MCS_rate_1R[i]; - } else { - #ifdef CONFIG_DISABLE_MCS13TO15 - if (pmlmeext->cur_bwmode == HT_CHANNEL_WIDTH_40 && (pregistrypriv->wifi_spec != 1)) - pmlmeinfo->HT_caps.u.HT_cap_element.MCS_rate[i] &= MCS_rate_2R_MCS13TO15_OFF[i]; - else - pmlmeinfo->HT_caps.u.HT_cap_element.MCS_rate[i] &= MCS_rate_2R[i]; - #else + else pmlmeinfo->HT_caps.u.HT_cap_element.MCS_rate[i] &= MCS_rate_2R[i]; - #endif /* CONFIG_DISABLE_MCS13TO15 */ - } -#ifdef RTL8192C_RECONFIG_TO_1T1R - { - pmlmeinfo->HT_caps.u.HT_cap_element.MCS_rate[i] &= MCS_rate_1R[i]; - } -#endif - if (pregistrypriv->special_rf_path) pmlmeinfo->HT_caps.u.HT_cap_element.MCS_rate[i] &= MCS_rate_1R[i]; } @@ -1031,33 +987,12 @@ void VCS_update(struct rtw_adapter *padapter, struct sta_info *psta) } } -#ifdef CONFIG_TDLS -int check_ap_tdls_prohibited(u8 *pframe, u8 pkt_len) -{ - u8 tdls_prohibited_bit = 0x40; /* bit(38); TDLS_prohibited */ - - if (pkt_len < 5) - return false; - - pframe += 4; - if ((*pframe) & tdls_prohibited_bit) - return true; - - return false; -} -#endif /* CONFIG_TDLS */ - void update_beacon_info(struct rtw_adapter *padapter, u8 *pframe, uint pkt_len, struct sta_info *psta) { unsigned int i; unsigned int len; struct ndis_802_11_variable_ies *pIE; -#ifdef CONFIG_TDLS - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - u8 tdls_prohibited[] = { 0x00, 0x00, 0x00, 0x00, 0x10 }; /* bit(38): TDLS_prohibited */ -#endif /* CONFIG_TDLS */ - len = pkt_len - (_BEACON_IE_OFFSET_ + WLAN_HDR_A3_LEN); for (i = 0; i < len;) { @@ -1071,12 +1006,6 @@ void update_beacon_info(struct rtw_adapter *padapter, u8 *pframe, uint pkt_len, ERP_IE_handler(padapter, pIE); VCS_update(padapter, psta); break; -#ifdef CONFIG_TDLS - case _EXT_CAP_IE_: - if (check_ap_tdls_prohibited(pIE->data, pIE->Length) == true) - ptdlsinfo->ap_prohibited = true; - break; -#endif /* CONFIG_TDLS */ default: break; } @@ -1295,20 +1224,6 @@ void update_tx_basic_rate(struct rtw_adapter *padapter, u8 wirelessmode) { unsigned char supported_rates[NDIS_802_11_LENGTH_RATES_EX]; struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - - /* 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 */ - if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - return; -#endif /* CONFIG_P2P */ -#ifdef CONFIG_INTEL_WIDI - if (padapter->mlmepriv.widi_state != INTEL_WIDI_STATE_NONE) - return; -#endif /* CONFIG_INTEL_WIDI */ - memset(supported_rates, 0, NDIS_802_11_LENGTH_RATES_EX); /* clear B mod if current channel is in 5G band, avoid tx cck rate in 5G band. */ @@ -1553,9 +1468,6 @@ void process_addba_req(struct rtw_adapter *padapter, u8 *paddba_req, u8 *addr) { struct sta_info *psta; u16 tid; -#ifdef CONFIG_UPDATE_INDICATE_SEQ_WHILE_PROCESS_ADDBA_REQ - u16 start_seq; -#endif u16 param; struct recv_reorder_ctrl *preorder_ctrl; struct sta_priv *pstapriv = &padapter->stapriv; @@ -1566,24 +1478,11 @@ void process_addba_req(struct rtw_adapter *padapter, u8 *paddba_req, u8 *addr) psta = rtw_get_stainfo(pstapriv, addr); if (psta) { - #ifdef CONFIG_UPDATE_INDICATE_SEQ_WHILE_PROCESS_ADDBA_REQ - start_seq = le16_to_cpu(preq->BA_starting_seqctrl) >> 4; - #endif param = le16_to_cpu(preq->BA_para_set); tid = (param>>2)&0x0f; preorder_ctrl = &psta->recvreorder_ctrl[tid]; - - #ifdef CONFIG_UPDATE_INDICATE_SEQ_WHILE_PROCESS_ADDBA_REQ - preorder_ctrl->indicate_seq = start_seq; - #ifdef DBG_RX_SEQ - DBG_8192D("DBG_RX_SEQ %s:%d IndicateSeq: %d, start_seq: %d\n", __func__, __LINE__, - preorder_ctrl->indicate_seq, start_seq); - #endif - #else preorder_ctrl->indicate_seq = 0xffff; - #endif - preorder_ctrl->enable = (pmlmeinfo->bAcceptAddbaReq == true) ? true : false; } } diff --git a/core/rtw_xmit.c b/core/rtw_xmit.c index 8426e527..b9d0541c 100644 --- a/core/rtw_xmit.c +++ b/core/rtw_xmit.c @@ -403,111 +403,112 @@ u8 qos_acm(u8 acm_mask, u8 priority) return change_priority; } -static void set_qos(struct pkt_file *ppktfile, struct pkt_attrib *pattrib) +static void set_qos(struct sk_buff *skb, struct pkt_attrib *pattrib) { - struct ethhdr etherhdr; - struct iphdr ip_hdr; - s32 userpriority = 0; - - _rtw_open_pktfile(ppktfile->pkt, ppktfile); - _rtw_pktfile_read(ppktfile, (unsigned char *)ðerhdr, ETH_HLEN); + u8 *pframe = skb->data; + struct iphdr *ip_hdr; + u8 userpriority = 0; /* get userpriority from IP hdr */ - if (pattrib->ether_type == 0x0800) { - _rtw_pktfile_read(ppktfile, (u8 *)&ip_hdr, sizeof(ip_hdr)); - userpriority = ip_hdr.tos >> 5; - } else if (pattrib->ether_type == 0x888e) { + if (pattrib->ether_type == ETH_P_IP) { + ip_hdr = (struct iphdr *)(pframe + ETH_HLEN); + userpriority = ip_hdr->tos >> 5; + } else if (pattrib->ether_type == ETH_P_PAE) { /* "When priority processing of data frames is supported, */ - /* a STA's SME should send EAPOL-Key frames at the highest priority." */ + /* a STA's SME should send EAPOL-Key frames at the highest + priority." */ userpriority = 7; } pattrib->priority = userpriority; - pattrib->hdrlen = WLAN_HDR_A3_QOS_LEN; + pattrib->hdrlen = sizeof(struct ieee80211_qos_hdr); pattrib->subtype = WIFI_QOS_DATA_TYPE; } -static s32 update_attrib(struct rtw_adapter *padapter, struct sk_buff *pkt, struct pkt_attrib *pattrib) +static int update_attrib(struct rtw_adapter *padapter, + struct sk_buff *skb, struct pkt_attrib *pattrib) { - struct pkt_file pktfile; struct sta_info *psta = NULL; - struct ethhdr etherhdr; - int bmcast; - struct sta_priv *pstapriv = &padapter->stapriv; - struct security_priv *psecuritypriv = &padapter->securitypriv; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct qos_priv *pqospriv = &pmlmepriv->qospriv; + struct sta_priv *pstapriv = &padapter->stapriv; + struct security_priv *psecuritypriv = &padapter->securitypriv; + struct mlme_priv *pmlmepriv = &padapter->mlmepriv; int res = _SUCCESS; + struct ethhdr *ehdr = (struct ethhdr *) skb->data; - _rtw_open_pktfile(pkt, &pktfile); - _rtw_pktfile_read(&pktfile, (u8 *)ðerhdr, ETH_HLEN); - - pattrib->ether_type = ntohs(etherhdr.h_proto); + pattrib->ether_type = ntohs(ehdr->h_proto); - memcpy(pattrib->dst, ðerhdr.h_dest, ETH_ALEN); - memcpy(pattrib->src, ðerhdr.h_source, ETH_ALEN); + ether_addr_copy(pattrib->dst, ehdr->h_dest); + ether_addr_copy(pattrib->src, ehdr->h_source); pattrib->pctrl = 0; - if ((check_fwstate(pmlmepriv, WIFI_ADHOC_STATE) == true) || - (check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE) == true)) { - memcpy(pattrib->ra, pattrib->dst, ETH_ALEN); - memcpy(pattrib->ta, pattrib->src, ETH_ALEN); + if (check_fwstate(pmlmepriv, WIFI_ADHOC_STATE) || + check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE)) { + ether_addr_copy(pattrib->ra, pattrib->dst); + ether_addr_copy(pattrib->ta, pattrib->src); } else if (check_fwstate(pmlmepriv, WIFI_STATION_STATE)) { - memcpy(pattrib->ra, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pattrib->ta, pattrib->src, ETH_ALEN); + ether_addr_copy(pattrib->ra, get_bssid(pmlmepriv)); + ether_addr_copy(pattrib->ta, pattrib->src); } else if (check_fwstate(pmlmepriv, WIFI_AP_STATE)) { - memcpy(pattrib->ra, pattrib->dst, ETH_ALEN); - memcpy(pattrib->ta, get_bssid(pmlmepriv), ETH_ALEN); + ether_addr_copy(pattrib->ra, pattrib->dst); + ether_addr_copy(pattrib->ta, get_bssid(pmlmepriv)); } - pattrib->pktlen = pktfile.pkt_len; + pattrib->pktlen = skb->len - ETH_HLEN; - if (ETH_P_IP == pattrib->ether_type) { - /* The following is for DHCP and ARP packet, we use cck1M to tx these packets and let LPS awake some time */ + if (pattrib->ether_type == ETH_P_IP) { + /* The following is for DHCP and ARP packet, we use cck1M + to tx these packets and let LPS awake some time */ /* to prevent DHCP protocol fail */ - u8 tmp[24]; - _rtw_pktfile_read(&pktfile, &tmp[0], 24); pattrib->dhcp_pkt = 0; - if (pktfile.pkt_len > 282) {/* MINIMUM_DHCP_PACKET_SIZE) { */ - if (ETH_P_IP == pattrib->ether_type) {/* IP header */ - if (((tmp[21] == 68) && (tmp[23] == 67)) || - ((tmp[21] == 67) && (tmp[23] == 68))) { + /* MINIMUM_DHCP_PACKET_SIZE) { */ + if (pattrib->pktlen > 282 + 24) { + if (pattrib->ether_type == ETH_P_IP) {/* IP header */ + u8 *pframe = skb->data; + pframe += ETH_HLEN; + + if ((pframe[21] == 68 && pframe[23] == 67) || + (pframe[21] == 67 && pframe[23] == 68)) { /* 68 : UDP BOOTP client */ /* 67 : UDP BOOTP server */ - RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, ("====================== update_attrib: get DHCP Packet\n")); + RT_TRACE(_module_rtl871x_xmit_c_, + _drv_err_, + ("======================" + "update_attrib: get DHCP " + "Packet\n")); pattrib->dhcp_pkt = 1; } } } } - if ((pattrib->ether_type == 0x888e) || (pattrib->dhcp_pkt == 1)) + if ((pattrib->ether_type == ETH_P_PAE) || (pattrib->dhcp_pkt == 1)) { rtw_set_scan_deny(padapter, 3000); + } #ifdef CONFIG_LPS /* If EAPOL , ARP , OR DHCP packet, driver must be in active mode. */ - if ((pattrib->ether_type == 0x0806) || (pattrib->ether_type == 0x888e) || (pattrib->dhcp_pkt == 1)) { + if ((pattrib->ether_type == ETH_P_ARP) || + (pattrib->ether_type == ETH_P_PAE) || (pattrib->dhcp_pkt == 1)) { rtw_lps_ctrl_wk_cmd(padapter, LPS_CTRL_SPECIAL_PACKET, 1); } #endif - bmcast = IS_MCAST(pattrib->ra); + bmcast = is_multicast_ether_addr(pattrib->ra); /* get sta_info */ if (bmcast) { psta = rtw_get_bcmc_stainfo(padapter); } else { psta = rtw_get_stainfo(pstapriv, pattrib->ra); - if (psta == NULL) { /* if we cannot get psta => drrp the pkt */ - RT_TRACE(_module_rtl871x_xmit_c_, _drv_alert_, ("\nupdate_attrib => get sta_info fail, ra:%pM\n", pattrib->ra)); - #ifdef DBG_TX_DROP_FRAME - DBG_8192D("DBG_TX_DROP_FRAME %s get sta_info fail, ra:%pM\n", __func__, pattrib->ra); - #endif + if (psta == NULL) { /* if we cannot get psta => drop the pkt */ + RT_TRACE(_module_rtl871x_xmit_c_, _drv_alert_, + ("\nupdate_attrib => get sta_info fail, ra:%pM\n", pattrib->ra)); res = _FAIL; goto exit; - } else if ((check_fwstate(pmlmepriv, WIFI_AP_STATE) == true) && (!(psta->state & _FW_LINKED))) { + } else if (check_fwstate(pmlmepriv, WIFI_AP_STATE) && + (!(psta->state & _FW_LINKED))) { res = _FAIL; goto exit; } @@ -518,44 +519,49 @@ static s32 update_attrib(struct rtw_adapter *padapter, struct sk_buff *pkt, stru pattrib->psta = psta; } else { /* if we cannot get psta => drop the pkt */ - RT_TRACE(_module_rtl871x_xmit_c_, _drv_alert_, ("\nupdate_attrib => get sta_info fail, ra:%pM\n", pattrib->ra)); - #ifdef DBG_TX_DROP_FRAME - DBG_8192D("DBG_TX_DROP_FRAME %s get sta_info fail, ra:%pM\n", __func__, pattrib->ra); - #endif + RT_TRACE(_module_rtl871x_xmit_c_, _drv_alert_, + ("\nupdate_attrib => get sta_info fail, ra:%pM\n", pattrib->ra)); res = _FAIL; goto exit; } pattrib->ack_policy = 0; /* get ether_hdr_len */ + + /* pattrib->ether_type == 0x8100) ? (14 + 4): 14; vlan tag */ pattrib->pkt_hdrlen = ETH_HLEN; - pattrib->hdrlen = WLAN_HDR_A3_LEN; + pattrib->hdrlen = sizeof(struct ieee80211_hdr_3addr); pattrib->subtype = WIFI_DATA_TYPE; pattrib->priority = 0; - if (check_fwstate(pmlmepriv, WIFI_AP_STATE|WIFI_ADHOC_STATE|WIFI_ADHOC_MASTER_STATE)) { + if (check_fwstate(pmlmepriv, WIFI_AP_STATE | WIFI_ADHOC_STATE | + WIFI_ADHOC_MASTER_STATE)) { if (psta->qos_option) - set_qos(&pktfile, pattrib); + set_qos(skb, pattrib); } else { - if (pqospriv->qos_option) { - set_qos(&pktfile, pattrib); + if (psta->qos_option) { + set_qos(skb, pattrib); - if (pmlmepriv->acm_mask != 0) - pattrib->priority = qos_acm(pmlmepriv->acm_mask, pattrib->priority); + if (pmlmepriv->acm_mask != 0) { + pattrib->priority = qos_acm(pmlmepriv->acm_mask, + pattrib->priority); + } } } if (psta->ieee8021x_blocked == true) { - RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, ("\n psta->ieee8021x_blocked == true\n")); + RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, + ("\n psta->ieee8021x_blocked == true\n")); pattrib->encrypt = 0; - if ((pattrib->ether_type != 0x888e) && (check_fwstate(pmlmepriv, WIFI_MP_STATE) == false)) { - RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, ("\npsta->ieee8021x_blocked == true, pattrib->ether_type(%.4x) != 0x888e\n", pattrib->ether_type)); - #ifdef DBG_TX_DROP_FRAME - DBG_8192D("DBG_TX_DROP_FRAME %s psta->ieee8021x_blocked == true, pattrib->ether_type(%.4x) != 0x888e\n", __func__, pattrib->ether_type); - #endif + if ((pattrib->ether_type != ETH_P_PAE) && + !check_fwstate(pmlmepriv, WIFI_MP_STATE)) { + RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, + ("\npsta->ieee8021x_blocked == true, " + "pattrib->ether_type(%.4x) != 0x888e\n", + pattrib->ether_type)); res = _FAIL; goto exit; } @@ -566,11 +572,13 @@ static s32 update_attrib(struct rtw_adapter *padapter, struct sk_buff *pkt, stru case dot11AuthAlgrthm_Open: case dot11AuthAlgrthm_Shared: case dot11AuthAlgrthm_Auto: - pattrib->key_idx = (u8)psecuritypriv->dot11PrivacyKeyIndex; + pattrib->key_idx = + (u8)psecuritypriv->dot11PrivacyKeyIndex; break; case dot11AuthAlgrthm_8021X: if (bmcast) - pattrib->key_idx = (u8)psecuritypriv->dot118021XGrpKeyid; + pattrib->key_idx = + (u8)psecuritypriv->dot118021XGrpKeyid; else pattrib->key_idx = 0; break; @@ -578,30 +586,35 @@ static s32 update_attrib(struct rtw_adapter *padapter, struct sk_buff *pkt, stru pattrib->key_idx = 0; break; } + } + switch (pattrib->encrypt) { case _WEP40_: case _WEP104_: - pattrib->iv_len = 4; - pattrib->icv_len = 4; + pattrib->iv_len = IEEE80211_WEP_IV_LEN; + pattrib->icv_len = IEEE80211_WEP_ICV_LEN; break; + case _TKIP_: - pattrib->iv_len = 8; - pattrib->icv_len = 4; - - if (padapter->securitypriv.busetkipkey == _FAIL) { - RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, ("\npadapter->securitypriv.busetkipkey(%d) == _FAIL drop packet\n", padapter->securitypriv.busetkipkey)); - #ifdef DBG_TX_DROP_FRAME - DBG_8192D("DBG_TX_DROP_FRAME %s padapter->securitypriv.busetkipkey(%d) == _FAIL drop packet\n", __func__, padapter->securitypriv.busetkipkey); - #endif + pattrib->iv_len = IEEE80211_TKIP_IV_LEN; + pattrib->icv_len = IEEE80211_TKIP_ICV_LEN; + + if (!padapter->securitypriv.busetkipkey) { + RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, + ("\npadapter->securitypriv.busetkip" + "key(%d) == false drop packet\n", + padapter->securitypriv.busetkipkey)); res = _FAIL; goto exit; } break; case _AES_: - RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, ("\n pattrib->encrypt =%d (_AES_)\n", pattrib->encrypt)); - pattrib->iv_len = 8; - pattrib->icv_len = 8; + RT_TRACE(_module_rtl871x_xmit_c_, _drv_info_, + ("pattrib->encrypt =%d (WLAN_CIPHER_SUITE_CCMP)\n", + pattrib->encrypt)); + pattrib->iv_len = IEEE80211_CCMP_HDR_LEN; + pattrib->icv_len = IEEE80211_CCMP_MIC_LEN; break; default: pattrib->iv_len = 0; @@ -610,32 +623,28 @@ static s32 update_attrib(struct rtw_adapter *padapter, struct sk_buff *pkt, stru } RT_TRACE(_module_rtl871x_xmit_c_, _drv_info_, - ("update_attrib: encrypt =%d securitypriv.sw_encrypt =%d\n", - pattrib->encrypt, padapter->securitypriv.sw_encrypt)); + ("update_attrib: encrypt =%d\n", pattrib->encrypt)); - if (pattrib->encrypt && - ((padapter->securitypriv.sw_encrypt == true) || - (psecuritypriv->hw_decrypted == false))) { + if (pattrib->encrypt && !psecuritypriv->hw_decrypted) { pattrib->bswenc = true; RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, - ("update_attrib: encrypt =%d securitypriv.hw_decrypted =%d bswenc = true\n", - pattrib->encrypt, padapter->securitypriv.sw_encrypt)); + ("update_attrib: encrypt =%d bswenc = true\n", + pattrib->encrypt)); } else { pattrib->bswenc = false; - RT_TRACE(_module_rtl871x_xmit_c_, _drv_info_, ("update_attrib: bswenc = false\n")); + RT_TRACE(_module_rtl871x_xmit_c_, _drv_info_, + ("update_attrib: bswenc = false\n")); } - #ifdef CONFIG_CONCURRENT_MODE if ((pattrib->encrypt && bmcast) || (pattrib->encrypt == _WEP40_) || (pattrib->encrypt == _WEP104_)) pattrib->bswenc = true;/* force using sw enc. */ #endif - rtw_set_tx_chksum_offload(pkt, pattrib); + rtw_set_tx_chksum_offload(skb, pattrib); update_attrib_phy_info(pattrib, psta); exit: - return res; } @@ -795,23 +804,13 @@ static s32 xmitframe_swencrypt(struct rtw_adapter *padapter, struct xmit_frame * s32 rtw_make_wlanhdr (struct rtw_adapter *padapter , u8 *hdr, struct pkt_attrib *pattrib) { u16 *qc; - struct rtw_ieee80211_hdr *pwlanhdr = (struct rtw_ieee80211_hdr *)hdr; struct mlme_priv *pmlmepriv = &padapter->mlmepriv; struct qos_priv *pqospriv = &pmlmepriv->qospriv; u8 qos_option = false; -#ifdef CONFIG_TDLS - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - struct sta_priv *pstapriv = &padapter->stapriv; - struct sta_info *ptdls_sta = NULL, *psta_backup = NULL; - u8 direct_link = 0; -#endif /* CONFIG_TDLS */ - int res = _SUCCESS; - u16 *fctrl = &pwlanhdr->frame_ctl; - + __le16 *fctrl = &pwlanhdr->frame_ctl; struct sta_info *psta; - int bmcst = IS_MCAST(pattrib->ra); if (pattrib->psta) { @@ -830,32 +829,11 @@ s32 rtw_make_wlanhdr (struct rtw_adapter *padapter , u8 *hdr, struct pkt_attrib if (pattrib->subtype & WIFI_DATA_TYPE) { if ((check_fwstate(pmlmepriv, WIFI_STATION_STATE) == true)) { /* to_ds = 1, fr_ds = 0; */ -#ifdef CONFIG_TDLS - if ((ptdlsinfo->setup_state == TDLS_LINKED_STATE)) { - ptdls_sta = rtw_get_stainfo(pstapriv, pattrib->dst); - if ((ptdls_sta != NULL) && (ptdls_sta->tdls_sta_state & TDLS_LINKED_STATE) && (pattrib->ether_type != 0x0806)) { - /* TDLS data transfer, ToDS = 0, FrDs = 0 */ - memcpy(pwlanhdr->addr1, pattrib->dst, ETH_ALEN); - memcpy(pwlanhdr->addr2, pattrib->src, ETH_ALEN); - memcpy(pwlanhdr->addr3, get_bssid(pmlmepriv), ETH_ALEN); - direct_link = 1; - } else { - /* 1.Data transfer to AP */ - /* 2.Arp pkt will relayed by AP */ - SetToDs(fctrl); - memcpy(pwlanhdr->addr1, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pwlanhdr->addr2, pattrib->src, ETH_ALEN); - memcpy(pwlanhdr->addr3, pattrib->dst, ETH_ALEN); - } - } else -#endif /* CONFIG_TDLS */ - { - /* Data transfer to AP */ - SetToDs(fctrl); - memcpy(pwlanhdr->addr1, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pwlanhdr->addr2, pattrib->src, ETH_ALEN); - memcpy(pwlanhdr->addr3, pattrib->dst, ETH_ALEN); - } + /* Data transfer to AP */ + SetToDs(fctrl); + memcpy(pwlanhdr->addr1, get_bssid(pmlmepriv), ETH_ALEN); + memcpy(pwlanhdr->addr2, pattrib->src, ETH_ALEN); + memcpy(pwlanhdr->addr3, pattrib->dst, ETH_ALEN); if (pqospriv->qos_option) qos_option = true; @@ -903,13 +881,6 @@ s32 rtw_make_wlanhdr (struct rtw_adapter *padapter , u8 *hdr, struct pkt_attrib /* Update Seq Num will be handled by f/w */ if (psta) { -#ifdef CONFIG_TDLS - if (direct_link == 1) { - psta_backup = psta; - psta = ptdls_sta; - } -#endif /* CONFIG_TDLS */ - psta->sta_xmitpriv.txseq_tid[pattrib->priority]++; psta->sta_xmitpriv.txseq_tid[pattrib->priority] &= 0xFFF; @@ -943,26 +914,6 @@ s32 rtw_make_wlanhdr (struct rtw_adapter *padapter , u8 *hdr, struct pkt_attrib pattrib->ampdu_en = true;/* AGG EN */ } } - -#ifdef CONFIG_TDLS - if (direct_link == 1) { - if (pattrib->encrypt) { - pattrib->encrypt = _AES_; - pattrib->iv_len = 8; - pattrib->icv_len = 8; - } - - /* qos_en, ht_en, init rate, , bw, ch_offset, sgi */ - /* pattrib->qos_en = ptdls_sta->qos_option; */ - pattrib->ht_en = ptdls_sta->htpriv.ht_option; - pattrib->raid = ptdls_sta->raid; - pattrib->bwmode = ptdls_sta->htpriv.bwmode; - pattrib->ch_offset = ptdls_sta->htpriv.ch_offset; - pattrib->sgi = ptdls_sta->htpriv.sgi; - pattrib->mac_id = ptdls_sta->mac_id; - psta = psta_backup; - } -#endif /* CONFIG_TDLS */ } } @@ -1016,247 +967,6 @@ s32 rtw_txframes_sta_ac_pending(struct rtw_adapter *padapter, struct pkt_attrib return ptxservq->qcnt; } -#ifdef CONFIG_TDLS - -int rtw_build_tdls_ies(struct rtw_adapter *padapter, struct xmit_frame *pxmitframe, u8 *pframe, u8 action) -{ - int res = _SUCCESS; - - switch (action) { - case TDLS_SETUP_REQUEST: - rtw_build_tdls_setup_req_ies(padapter, pxmitframe, pframe); - break; - case TDLS_SETUP_RESPONSE: - rtw_build_tdls_setup_rsp_ies(padapter, pxmitframe, pframe); - break; - case TDLS_SETUP_CONFIRM: - rtw_build_tdls_setup_cfm_ies(padapter, pxmitframe, pframe); - break; - case TDLS_TEARDOWN: - rtw_build_tdls_teardown_ies(padapter, pxmitframe, pframe); - break; - case TDLS_DISCOVERY_REQUEST: - rtw_build_tdls_dis_req_ies(padapter, pxmitframe, pframe); - break; - case TDLS_PEER_TRAFFIC_INDICATION: - rtw_build_tdls_peer_traffic_indication_ies(padapter, pxmitframe, pframe); - break; - case TDLS_CHANNEL_SWITCH_REQUEST: - rtw_build_tdls_ch_switch_req_ies(padapter, pxmitframe, pframe); - break; - case TDLS_CHANNEL_SWITCH_RESPONSE: - rtw_build_tdls_ch_switch_rsp_ies(padapter, pxmitframe, pframe); - break; -#ifdef CONFIG_WFD - case TUNNELED_PROBE_REQ: - rtw_build_tunneled_probe_req_ies(padapter, pxmitframe, pframe); - break; - case TUNNELED_PROBE_RSP: - rtw_build_tunneled_probe_rsp_ies(padapter, pxmitframe, pframe); - break; -#endif /* CONFIG_WFD */ - default: - res = _FAIL; - break; - } - - return res; -} - -s32 rtw_make_tdls_wlanhdr(struct rtw_adapter *padapter , u8 *hdr, struct pkt_attrib *pattrib, u8 action) -{ - u16 *qc; - struct rtw_ieee80211_hdr *pwlanhdr = (struct rtw_ieee80211_hdr *)hdr; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct qos_priv *pqospriv = &pmlmepriv->qospriv; - struct sta_priv *pstapriv = &padapter->stapriv; - struct sta_info *psta = NULL, *ptdls_sta = NULL; - u8 tdls_seq = 0, baddr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; - - int res = _SUCCESS; - u16 *fctrl = &pwlanhdr->frame_ctl; - - memset(hdr, 0, WLANHDR_OFFSET); - - SetFrameSubType(fctrl, pattrib->subtype); - - switch (action) { - case TDLS_SETUP_REQUEST: - case TDLS_SETUP_RESPONSE: - case TDLS_SETUP_CONFIRM: - case TDLS_TEARDOWN: /* directly to peer STA or via AP */ - case TDLS_PEER_TRAFFIC_INDICATION: - case TDLS_PEER_PSM_REQUEST: /* directly to peer STA or via AP */ - case TUNNELED_PROBE_REQ: - case TUNNELED_PROBE_RSP: - SetToDs(fctrl); - memcpy(pwlanhdr->addr1, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pwlanhdr->addr2, pattrib->src, ETH_ALEN); - memcpy(pwlanhdr->addr3, pattrib->dst, ETH_ALEN); - break; - case TDLS_CHANNEL_SWITCH_REQUEST: - case TDLS_CHANNEL_SWITCH_RESPONSE: - case TDLS_PEER_PSM_RESPONSE: - case TDLS_PEER_TRAFFIC_RESPONSE: - memcpy(pwlanhdr->addr1, pattrib->dst, ETH_ALEN); - memcpy(pwlanhdr->addr2, pattrib->src, ETH_ALEN); - memcpy(pwlanhdr->addr3, get_bssid(pmlmepriv), ETH_ALEN); - tdls_seq = 1; - break; - case TDLS_DISCOVERY_REQUEST: /* unicast: directly to peer sta, Bcast: via AP */ - if (_rtw_memcmp(pattrib->dst, baddr, ETH_ALEN)) { - SetToDs(fctrl); - memcpy(pwlanhdr->addr1, get_bssid(pmlmepriv), ETH_ALEN); - memcpy(pwlanhdr->addr2, pattrib->src, ETH_ALEN); - memcpy(pwlanhdr->addr3, pattrib->dst, ETH_ALEN); - } else { - memcpy(pwlanhdr->addr1, pattrib->dst, ETH_ALEN); - memcpy(pwlanhdr->addr2, pattrib->src, ETH_ALEN); - memcpy(pwlanhdr->addr3, get_bssid(pmlmepriv), ETH_ALEN); - tdls_seq = 1; - } - break; - } - if (pattrib->encrypt) - SetPrivacy(fctrl); - - if (pqospriv->qos_option) { - qc = (unsigned short *)(hdr + pattrib->hdrlen - 2); - if (pattrib->priority) - SetPriority(qc, pattrib->priority); - SetAckpolicy(qc, pattrib->ack_policy); - } - - psta = pattrib->psta; - - /* 1. update seq_num per link by sta_info */ - /* 2. rewrite encrypt to _AES_, also rewrite iv_len, icv_len */ - if (tdls_seq == 1) { - ptdls_sta = rtw_get_stainfo(pstapriv, pattrib->dst); - if (ptdls_sta) { - ptdls_sta->sta_xmitpriv.txseq_tid[pattrib->priority]++; - ptdls_sta->sta_xmitpriv.txseq_tid[pattrib->priority] &= 0xFFF; - pattrib->seqnum = ptdls_sta->sta_xmitpriv.txseq_tid[pattrib->priority]; - SetSeqNum(hdr, pattrib->seqnum); - - if (pattrib->encrypt) { - pattrib->encrypt = _AES_; - pattrib->iv_len = 8; - pattrib->icv_len = 8; - } - } else { - res = _FAIL; - goto exit; - } - } else if (psta) { - psta->sta_xmitpriv.txseq_tid[pattrib->priority]++; - psta->sta_xmitpriv.txseq_tid[pattrib->priority] &= 0xFFF; - pattrib->seqnum = psta->sta_xmitpriv.txseq_tid[pattrib->priority]; - SetSeqNum(hdr, pattrib->seqnum); - } - -exit: - - return res; -} - -s32 rtw_xmit_tdls_coalesce(struct rtw_adapter *padapter, struct xmit_frame *pxmitframe, u8 action) -{ - s32 llc_sz; - - u8 *pframe, *mem_start; - - struct sta_info *psta; - struct sta_priv *pstapriv = &padapter->stapriv; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct pkt_attrib *pattrib = &pxmitframe->attrib; - u8 *pbuf_start; - s32 bmcst = IS_MCAST(pattrib->ra); - s32 res = _SUCCESS; - - if (pattrib->psta) { - psta = pattrib->psta; - } else { - if (bmcst) - psta = rtw_get_bcmc_stainfo(padapter); - else - psta = rtw_get_stainfo(&padapter->stapriv, pattrib->ra); - } - - if (psta == NULL) - return _FAIL; - - if (pxmitframe->buf_addr == NULL) - return _FAIL; - - pbuf_start = pxmitframe->buf_addr; - mem_start = pbuf_start + TXDESC_OFFSET; - - if (rtw_make_tdls_wlanhdr(padapter, mem_start, pattrib, action) == _FAIL) { - res = _FAIL; - goto exit; - } - - pframe = mem_start; - pframe += pattrib->hdrlen; - - /* adding icv, if necessary... */ - if (pattrib->iv_len) { - if (psta != NULL) { - switch (pattrib->encrypt) { - case _WEP40_: - case _WEP104_: - WEP_IV(pattrib->iv, psta->dot11txpn, pattrib->key_idx); - break; - case _TKIP_: - if (bmcst) - TKIP_IV(pattrib->iv, psta->dot11txpn, pattrib->key_idx); - else - TKIP_IV(pattrib->iv, psta->dot11txpn, 0); - break; - case _AES_: - if (bmcst) - AES_IV(pattrib->iv, psta->dot11txpn, pattrib->key_idx); - else - AES_IV(pattrib->iv, psta->dot11txpn, 0); - break; - } - } - memcpy(pframe, pattrib->iv, pattrib->iv_len); - pframe += pattrib->iv_len; - } - - llc_sz = rtw_put_snap(pframe, pattrib->ether_type); - pframe += llc_sz; - - /* pattrib->pktlen will be counted in rtw_build_tdls_ies */ - pattrib->pktlen = 0; - - rtw_build_tdls_ies(padapter, pxmitframe, pframe, action); - - if ((pattrib->icv_len > 0) && (pattrib->bswenc)) { - pframe += pattrib->pktlen; - memcpy(pframe, pattrib->icv, pattrib->icv_len); - pframe += pattrib->icv_len; - } - - pattrib->nr_frags = 1; - pattrib->last_txcmdsz = pattrib->hdrlen + pattrib->iv_len + llc_sz + - ((pattrib->bswenc) ? pattrib->icv_len : 0) + pattrib->pktlen; - - if (xmitframe_addmic(padapter, pxmitframe) == _FAIL) - goto exit; - - xmitframe_swencrypt(padapter, pxmitframe); - - update_attrib_vcs_info(padapter, pxmitframe); - -exit: - - return res; -} -#endif /* CONFIG_TDLS */ - /* * Calculate wlan 802.11 packet MAX size from pkt_attrib * This function doesn't consider fragment case @@ -1287,26 +997,20 @@ This sub-routine will perform all the following: 6. apply sw-encrypt, if necessary. */ -s32 rtw_xmitframe_coalesce(struct rtw_adapter *padapter, struct sk_buff *pkt, struct xmit_frame *pxmitframe) +s32 rtw_xmitframe_coalesce(struct rtw_adapter *padapter, struct sk_buff *skb, + struct xmit_frame *pxmitframe) { - struct pkt_file pktfile; - + struct sta_info *psta; + struct xmit_priv *pxmitpriv = &padapter->xmitpriv; + struct pkt_attrib *pattrib = &pxmitframe->attrib; + struct ieee80211_hdr *hdr; s32 frg_inx, frg_len, mpdu_len, llc_sz, mem_sz; - - SIZE_PTR addr; - u8 *pframe, *mem_start; - - struct sta_info *psta; - /* struct sta_priv *pstapriv = &padapter->stapriv; */ - /* struct mlme_priv *pmlmepriv = &padapter->mlmepriv; */ - struct xmit_priv *pxmitpriv = &padapter->xmitpriv; - - struct pkt_attrib *pattrib = &pxmitframe->attrib; - + u8 hw_hdr_offset; u8 *pbuf_start; - - s32 bmcst = IS_MCAST(pattrib->ra); + u8 *pdata = skb->data; + int data_len = skb->len; + s32 bmcst = is_multicast_ether_addr(pattrib->ra); s32 res = _SUCCESS; if (pattrib->psta) @@ -1314,10 +1018,10 @@ s32 rtw_xmitframe_coalesce(struct rtw_adapter *padapter, struct sk_buff *pkt, st else psta = rtw_get_stainfo(&padapter->stapriv, pattrib->ra); - if (psta == NULL) + if (!psta) return _FAIL; - if (pxmitframe->buf_addr == NULL) + if (!pxmitframe->buf_addr) return _FAIL; pbuf_start = pxmitframe->buf_addr; @@ -1330,8 +1034,8 @@ s32 rtw_xmitframe_coalesce(struct rtw_adapter *padapter, struct sk_buff *pkt, st goto exit; } - _rtw_open_pktfile(pkt, &pktfile); - _rtw_pktfile_read(&pktfile, NULL, pattrib->pkt_hdrlen); + pdata += pattrib->pkt_hdrlen; + data_len -= pattrib->pkt_hdrlen; frg_inx = 0; frg_len = pxmitpriv->frag_len - 4;/* 2346-4 = 2342 */ @@ -1343,18 +1047,18 @@ s32 rtw_xmitframe_coalesce(struct rtw_adapter *padapter, struct sk_buff *pkt, st pframe = mem_start; - SetMFrag(mem_start); + hdr = (struct ieee80211_hdr *)mem_start; pframe += pattrib->hdrlen; mpdu_len -= pattrib->hdrlen; /* adding icv, if necessary... */ if (pattrib->iv_len) { - if (psta != NULL) { + if (psta) { switch (pattrib->encrypt) { case _WEP40_: case _WEP104_: - WEP_IV(pattrib->iv, psta->dot11txpn, pattrib->key_idx); + WEP_IV(pattrib->iv, psta->dot11txpn, pattrib->key_idx); break; case _TKIP_: if (bmcst) @@ -1393,12 +1097,16 @@ s32 rtw_xmitframe_coalesce(struct rtw_adapter *padapter, struct sk_buff *pkt, st if (bmcst) { /* don't do fragment to broadcat/multicast packets */ - mem_sz = _rtw_pktfile_read(&pktfile, pframe, pattrib->pktlen); + mem_sz = min_t(s32, data_len, pattrib->pktlen); } else { - mem_sz = _rtw_pktfile_read(&pktfile, pframe, mpdu_len); + mem_sz = min_t(s32, data_len, mpdu_len); } + memcpy(pframe, pdata, mem_sz); + pframe += mem_sz; + pdata += mem_sz; + data_len -= mem_sz; if ((pattrib->icv_len > 0) && (pattrib->bswenc)) { memcpy(pframe, pattrib->icv, pattrib->icv_len); @@ -1407,23 +1115,23 @@ s32 rtw_xmitframe_coalesce(struct rtw_adapter *padapter, struct sk_buff *pkt, st frg_inx++; - if (bmcst || (rtw_endofpktfile(&pktfile) == true)) { + if (bmcst || data_len <= 0) { pattrib->nr_frags = frg_inx; pattrib->last_txcmdsz = pattrib->hdrlen + pattrib->iv_len + ((pattrib->nr_frags == 1) ? llc_sz : 0) + ((pattrib->bswenc) ? pattrib->icv_len : 0) + mem_sz; - ClearMFrag(mem_start); + hdr->frame_control &= + ~cpu_to_le16(IEEE80211_FCTL_MOREFRAGS); break; } else { RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, ("%s: There're still something in packet!\n", __func__)); } + hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS); - addr = (SIZE_PTR)(pframe); - - mem_start = (unsigned char *)RND4(addr) + TXDESC_OFFSET; - memcpy(mem_start, pbuf_start + TXDESC_OFFSET, pattrib->hdrlen); + mem_start = PTR_ALIGN(pframe, 4) + hw_hdr_offset; + memcpy(mem_start, pbuf_start + hw_hdr_offset, pattrib->hdrlen); } if (xmitframe_addmic(padapter, pxmitframe) == _FAIL) { @@ -1438,9 +1146,7 @@ s32 rtw_xmitframe_coalesce(struct rtw_adapter *padapter, struct sk_buff *pkt, st update_attrib_vcs_info(padapter, pxmitframe); else pattrib->vcs_mode = NONE_VCS; - exit: - return res; } @@ -2017,139 +1723,6 @@ void rtw_init_hwxmits(struct hw_xmit *phwxmit, int entry) } -#ifdef CONFIG_BR_EXT -static int rtw_br_client_tx(struct rtw_adapter *padapter, struct sk_buff **pskb) -{ - struct sk_buff *skb = *pskb; - struct xmit_priv *pxmitpriv = &padapter->xmitpriv; - int res, is_vlan_tag = 0, i, do_nat25 = 1; - unsigned short vlan_hdr = 0; - void *br_port = NULL; - -#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) - br_port = padapter->pnetdev->br_port; -#else /* (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) */ - rcu_read_lock(); - br_port = rcu_dereference(padapter->pnetdev->rx_handler_data); - rcu_read_unlock(); -#endif /* (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) */ - spin_lock_bh(&padapter->br_ext_lock); - if (!(skb->data[0] & 1) && br_port && - memcmp(skb->data+MACADDRLEN, padapter->br_mac, MACADDRLEN) && - *((__be16 *)(skb->data+MACADDRLEN*2)) != __constant_htons(ETH_P_8021Q) && - *((__be16 *)(skb->data+MACADDRLEN*2)) == __constant_htons(ETH_P_IP) && - !memcmp(padapter->scdb_mac, skb->data+MACADDRLEN, MACADDRLEN) && padapter->scdb_entry) { - memcpy(skb->data+MACADDRLEN, GET_MY_HWADDR(padapter), MACADDRLEN); - padapter->scdb_entry->ageing_timer = jiffies; - spin_unlock_bh(&padapter->br_ext_lock); - } else { - if (*((__be16 *)(skb->data+MACADDRLEN*2)) == __constant_htons(ETH_P_8021Q)) { - is_vlan_tag = 1; - vlan_hdr = *((unsigned short *)(skb->data+MACADDRLEN*2+2)); - for (i = 0; i < 6; i++) - *((unsigned short *)(skb->data+MACADDRLEN*2+2-i*2)) = *((unsigned short *)(skb->data+MACADDRLEN*2-2-i*2)); - skb_pull(skb, 4); - } - /* if SA == br_mac && skb == IP => copy SIP to br_ip ?? why */ - if (!memcmp(skb->data+MACADDRLEN, padapter->br_mac, MACADDRLEN) && - (*((__be16 *)(skb->data+MACADDRLEN*2)) == __constant_htons(ETH_P_IP))) - memcpy(padapter->br_ip, skb->data+WLAN_ETHHDR_LEN+12, 4); - - if (*((__be16 *)(skb->data+MACADDRLEN*2)) == __constant_htons(ETH_P_IP)) { - if (memcmp(padapter->scdb_mac, skb->data+MACADDRLEN, MACADDRLEN)) { - padapter->scdb_entry = (struct nat25_network_db_entry *) - scdb_findentry(padapter, - skb->data+MACADDRLEN, - skb->data+WLAN_ETHHDR_LEN+12); - if (padapter->scdb_entry != NULL) { - memcpy(padapter->scdb_mac, skb->data+MACADDRLEN, MACADDRLEN); - memcpy(padapter->scdb_ip, skb->data+WLAN_ETHHDR_LEN+12, 4); - padapter->scdb_entry->ageing_timer = jiffies; - do_nat25 = 0; - } - } else { - if (padapter->scdb_entry) { - padapter->scdb_entry->ageing_timer = jiffies; - do_nat25 = 0; - } else { - memset(padapter->scdb_mac, 0, MACADDRLEN); - memset(padapter->scdb_ip, 0, 4); - } - } - } - spin_unlock_bh(&padapter->br_ext_lock); - if (do_nat25) { - if (nat25_db_handle(padapter, skb, NAT25_CHECK) == 0) { - struct sk_buff *newskb; - - if (is_vlan_tag) { - skb_push(skb, 4); - for (i = 0; i < 6; i++) - *((unsigned short *)(skb->data+i*2)) = *((unsigned short *)(skb->data+4+i*2)); - *((__be16 *)(skb->data+MACADDRLEN*2)) = __constant_htons(ETH_P_8021Q); - *((unsigned short *)(skb->data+MACADDRLEN*2+2)) = vlan_hdr; - } - - newskb = skb_copy(skb, GFP_ATOMIC); - if (newskb == NULL) { - ERR_8192D("TX DROP: skb_copy fail!\n"); - return -1; - } - dev_kfree_skb_any(skb); - - *pskb = skb = newskb; - if (is_vlan_tag) { - vlan_hdr = *((unsigned short *)(skb->data+MACADDRLEN*2+2)); - for (i = 0; i < 6; i++) - *((unsigned short *)(skb->data+MACADDRLEN*2+2-i*2)) = *((unsigned short *)(skb->data+MACADDRLEN*2-2-i*2)); - skb_pull(skb, 4); - } - } - - if (skb_is_nonlinear(skb)) - ERR_8192D("%s(): skb_is_nonlinear!!\n", __func__); - -#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 18)) - res = skb_linearize(skb, GFP_ATOMIC); -#else /* (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 18)) */ - res = skb_linearize(skb); -#endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 18)) */ - if (res < 0) { - ERR_8192D("TX DROP: skb_linearize fail!\n"); - return -1; - } - - res = nat25_db_handle(padapter, skb, NAT25_INSERT); - if (res < 0) { - if (res == -2) { - ERR_8192D("TX DROP: nat25_db_handle fail!\n"); - return -1; - } - return 0; - } - } - memcpy(skb->data+MACADDRLEN, GET_MY_HWADDR(padapter), MACADDRLEN); - - dhcp_flag_bcast(padapter, skb); - - if (is_vlan_tag) { - skb_push(skb, 4); - for (i = 0; i < 6; i++) - *((unsigned short *)(skb->data+i*2)) = *((unsigned short *)(skb->data+4+i*2)); - *((__be16 *)(skb->data+MACADDRLEN*2)) = __constant_htons(ETH_P_8021Q); - *((unsigned short *)(skb->data+MACADDRLEN*2+2)) = vlan_hdr; - } - } - /* check if SA is equal to our MAC */ - if (memcmp(skb->data+MACADDRLEN, GET_MY_HWADDR(padapter), MACADDRLEN)) { - ERR_8192D("TX DROP: untransformed frame SA:%02X%02X%02X%02X%02X%02X!\n", - skb->data[6], skb->data[7], skb->data[8], skb->data[9], skb->data[10], skb->data[11]); - return -1; - } - return 0; -} -#endif /* CONFIG_BR_EXT */ - static void do_queue_select(struct rtw_adapter *padapter, struct pkt_attrib *pattrib) { u8 qsel; @@ -2172,10 +1745,6 @@ s32 rtw_xmit(struct rtw_adapter *padapter, struct sk_buff **ppkt) { struct xmit_priv *pxmitpriv = &padapter->xmitpriv; struct xmit_frame *pxmitframe = NULL; -#ifdef CONFIG_BR_EXT - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - void *br_port = NULL; -#endif /* CONFIG_BR_EXT */ s32 res; pxmitframe = rtw_alloc_xmitframe(pxmitpriv); @@ -2187,26 +1756,6 @@ s32 rtw_xmit(struct rtw_adapter *padapter, struct sk_buff **ppkt) return -1; } -#ifdef CONFIG_BR_EXT - -#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) - br_port = padapter->pnetdev->br_port; -#else /* (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) */ - rcu_read_lock(); - br_port = rcu_dereference(padapter->pnetdev->rx_handler_data); - rcu_read_unlock(); -#endif /* (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) */ - - if (br_port && check_fwstate(pmlmepriv, WIFI_STATION_STATE|WIFI_ADHOC_STATE) == true) { - res = rtw_br_client_tx(padapter, ppkt); - if (res == -1) { - rtw_free_xmitframe(pxmitpriv, pxmitframe); - return -1; - } - } - -#endif /* CONFIG_BR_EXT */ - res = update_attrib(padapter, *ppkt, &pxmitframe->attrib); if (res == _FAIL) { RT_TRACE(_module_xmit_osdep_c_, _drv_err_, ("rtw_xmit: update attrib fail\n")); @@ -2222,7 +1771,7 @@ s32 rtw_xmit(struct rtw_adapter *padapter, struct sk_buff **ppkt) do_queue_select(padapter, &pxmitframe->attrib); -#if defined(CONFIG_92D_AP_MODE) || defined(CONFIG_TDLS) +#if defined(CONFIG_92D_AP_MODE) spin_lock_bh(&pxmitpriv->lock); if (xmitframe_enqueue_for_sleeping_sta(padapter, pxmitframe) == true) { spin_unlock_bh(&pxmitpriv->lock); @@ -2236,69 +1785,7 @@ s32 rtw_xmit(struct rtw_adapter *padapter, struct sk_buff **ppkt) return 0; } -#ifdef CONFIG_TDLS -int xmitframe_enqueue_for_tdls_sleeping_sta(struct rtw_adapter *padapter, struct xmit_frame *pxmitframe) -{ - int ret = false; - struct sta_info *ptdls_sta = NULL; - struct sta_priv *pstapriv = &padapter->stapriv; - struct pkt_attrib *pattrib = &pxmitframe->attrib; - struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); - int i; - - ptdls_sta = rtw_get_stainfo(pstapriv, pattrib->dst); - if (ptdls_sta == NULL) { - return ret; - } else if (ptdls_sta->tdls_sta_state&TDLS_LINKED_STATE) { - if (pattrib->triggered == 1) { - ret = true; - return ret; - } - - spin_lock_bh(&ptdls_sta->sleep_q.lock); - - if (ptdls_sta->state&WIFI_SLEEP_STATE) { - list_del_init(&pxmitframe->list); - - rtw_list_insert_tail(&pxmitframe->list, get_list_head(&ptdls_sta->sleep_q)); - - ptdls_sta->sleepq_len++; - ptdls_sta->sleepq_ac_len++; - - /* indicate 4-AC queue bit in TDLS peer traffic indication */ - switch (pattrib->priority) { - case 1: - case 2: - ptdls_sta->uapsd_bk = ptdls_sta->uapsd_bk | BIT(1); - break; - case 4: - case 5: - ptdls_sta->uapsd_vi = ptdls_sta->uapsd_vi | BIT(1); - break; - case 6: - case 7: - ptdls_sta->uapsd_vo = ptdls_sta->uapsd_vo | BIT(1); - break; - case 0: - case 3: - default: - ptdls_sta->uapsd_be = ptdls_sta->uapsd_be | BIT(1); - break; - } - - if (ptdls_sta->sleepq_len == 1) { - /* transmit TDLS PTI via AP */ - rtw_tdls_cmd(padapter, ptdls_sta->hwaddr, TDLS_SD_PTI); - } - ret = true; - } - spin_unlock_bh(&ptdls_sta->sleep_q.lock); - } - return ret; -} -#endif /* CONFIG_TDLS */ - -#if defined(CONFIG_92D_AP_MODE) || defined(CONFIG_TDLS) +#if defined(CONFIG_92D_AP_MODE) int xmitframe_enqueue_for_sleeping_sta(struct rtw_adapter *padapter, struct xmit_frame *pxmitframe) { @@ -2308,14 +1795,6 @@ int xmitframe_enqueue_for_sleeping_sta(struct rtw_adapter *padapter, struct xmit struct pkt_attrib *pattrib = &pxmitframe->attrib; struct mlme_priv *pmlmepriv = &padapter->mlmepriv; int bmcst = IS_MCAST(pattrib->ra); -#ifdef CONFIG_TDLS - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - - if (ptdlsinfo->setup_state == TDLS_LINKED_STATE) { - ret = xmitframe_enqueue_for_tdls_sleeping_sta(padapter, pxmitframe); - return ret; - } -#endif /* CONFIG_TDLS */ if (check_fwstate(pmlmepriv, WIFI_AP_STATE) == false) return ret; @@ -2445,10 +1924,7 @@ void stop_sta_xmit(struct rtw_adapter *padapter, struct sta_info *psta) psta->state |= WIFI_SLEEP_STATE; -#ifdef CONFIG_TDLS - if (!(psta->tdls_sta_state & TDLS_LINKED_STATE)) -#endif /* CONFIG_TDLS */ - pstapriv->sta_dz_bitmap |= BIT(psta->aid); + pstapriv->sta_dz_bitmap |= BIT(psta->aid); dequeue_xmitframes_to_sleeping_queue(padapter, psta, &pstaxmitpriv->vo_q.sta_pending); list_del_init(&(pstaxmitpriv->vo_q.tx_pending)); dequeue_xmitframes_to_sleeping_queue(padapter, psta, &pstaxmitpriv->vi_q.sta_pending); @@ -2458,18 +1934,10 @@ void stop_sta_xmit(struct rtw_adapter *padapter, struct sta_info *psta) dequeue_xmitframes_to_sleeping_queue(padapter, psta, &pstaxmitpriv->bk_q.sta_pending); list_del_init(&(pstaxmitpriv->bk_q.tx_pending)); -#ifdef CONFIG_TDLS - if (!(psta->tdls_sta_state & TDLS_LINKED_STATE)) { - if (psta_bmc != NULL) { -#endif /* CONFIG_TDLS */ - /* for BC/MC Frames */ - pstaxmitpriv = &psta_bmc->sta_xmitpriv; - dequeue_xmitframes_to_sleeping_queue(padapter, psta_bmc, &pstaxmitpriv->be_q.sta_pending); - list_del_init(&(pstaxmitpriv->be_q.tx_pending)); -#ifdef CONFIG_TDLS - } - } -#endif /* CONFIG_TDLS */ + /* for BC/MC Frames */ + pstaxmitpriv = &psta_bmc->sta_xmitpriv; + dequeue_xmitframes_to_sleeping_queue(padapter, psta_bmc, &pstaxmitpriv->be_q.sta_pending); + list_del_init(&(pstaxmitpriv->be_q.tx_pending)); spin_unlock_bh(&pxmitpriv->lock); } @@ -2538,15 +2006,6 @@ void wakeup_sta_to_xmit(struct rtw_adapter *padapter, struct sta_info *psta) spin_lock_bh(&psta->sleep_q.lock); } if (psta->sleepq_len == 0) { -#ifdef CONFIG_TDLS - if (psta->tdls_sta_state & TDLS_LINKED_STATE) { - if (psta->state&WIFI_SLEEP_STATE) - psta->state ^= WIFI_SLEEP_STATE; - - spin_unlock_bh(&psta->sleep_q.lock); - return; - } -#endif /* CONFIG_TDLS */ pstapriv->tim_bitmap &= ~BIT(psta->aid); update_mask = BIT(0); @@ -2658,12 +2117,6 @@ void xmit_delivery_enabled_frames(struct rtw_adapter *padapter, struct sta_info rtw_os_xmit_complete(padapter, pxmitframe); if ((psta->sleepq_ac_len == 0) && (!psta->has_legacy_ac) && (wmmps_ac)) { -#ifdef CONFIG_TDLS - if (psta->tdls_sta_state & TDLS_LINKED_STATE) { - spin_unlock_bh(&psta->sleep_q.lock); - return; - } -#endif /* CONFIG_TDLS */ pstapriv->tim_bitmap &= ~BIT(psta->aid); /* upate BCN for TIM IE */ diff --git a/dkms.conf b/dkms.conf index 52ed9c66..4691a0cf 100644 --- a/dkms.conf +++ b/dkms.conf @@ -1,7 +1,6 @@ MAKE="'make'" -BUILT_MODULE_NAME=8192du -BUILD_MODULE_NAME=8192du -DEST_MODULE_LOCATION=/kernel/drivers/net/wireless/ -PACKAGE_NAME=8192du -PACKAGE_VERSION=1.0 +BUILT_MODULE_NAME=rtl8192du +DEST_MODULE_LOCATION=/updates +PACKAGE_NAME=rtl8192du +PACKAGE_VERSION=0.1 REMAKE_INITRD=yes diff --git a/hal/Hal8192DUHWImg.c b/hal/hal8192duhwimg.c similarity index 99% rename from hal/Hal8192DUHWImg.c rename to hal/hal8192duhwimg.c index 9fb09109..3efdbf3f 100644 --- a/hal/Hal8192DUHWImg.c +++ b/hal/hal8192duhwimg.c @@ -15,7 +15,7 @@ ******************************************************************************/ /*Created on 2011/11/11, 8: 8*/ -#include +#include const u8 Rtl8192DUFwMainArray[Rtl8192DUMainArrayLength] = { 0x0, diff --git a/hal/hal_intf.c b/hal/hal_intf.c index 2358148a..87f7929a 100644 --- a/hal/hal_intf.c +++ b/hal/hal_intf.c @@ -337,7 +337,7 @@ void rtw_hal_antdiv_rssi_compared(struct rtw_adapter *padapter, WLAN_BSSID_EX *d #endif #ifdef CONFIG_HOSTAPD_MLME -s32 rtw_hal_hostap_mgnt_xmit_entry(struct rtw_adapter *padapter, _pkt *pkt) +s32 rtw_hal_hostap_mgnt_xmit_entry(struct rtw_adapter *padapter, struct sk_buff *pkt) { if (padapter->HalFunc.hostap_mgnt_xmit_entry) return padapter->HalFunc.hostap_mgnt_xmit_entry(padapter, pkt); diff --git a/hal/rtl8192d_cmd.c b/hal/rtl8192d_cmd.c index 4584b1e0..a020eb3f 100644 --- a/hal/rtl8192d_cmd.c +++ b/hal/rtl8192d_cmd.c @@ -348,8 +348,8 @@ void rtl8192d_set_FwPwrMode_cmd(struct rtw_adapter*padapter, u8 Mode) static void ConstructBeacon(struct rtw_adapter *padapter, u8 *pframe, u32 *pLength) { struct rtw_ieee80211_hdr *pwlanhdr; - u16 *fctrl; - u32 rate_len, pktlen; + __le16 *fctrl; + u32 rate_len, pktlen; struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); @@ -441,7 +441,7 @@ static void ConstructBeacon(struct rtw_adapter *padapter, u8 *pframe, u32 *pLeng static void ConstructPSPoll(struct rtw_adapter *padapter, u8 *pframe, u32 *pLength) { struct rtw_ieee80211_hdr *pwlanhdr; - u16 *fctrl; + __le16 *fctrl; struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); @@ -468,8 +468,8 @@ static void ConstructPSPoll(struct rtw_adapter *padapter, u8 *pframe, u32 *pLeng static void ConstructNullFunctionData(struct rtw_adapter *padapter, u8 *pframe, u32 *pLength, u8 *StaAddr, bool bForcePowerSave) { struct rtw_ieee80211_hdr *pwlanhdr; - u16 *fctrl; - u32 pktlen; + __le16 *fctrl; + u32 pktlen; struct mlme_priv *pmlmepriv = &padapter->mlmepriv; struct wlan_network *cur_network = &pmlmepriv->cur_network; struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); @@ -519,9 +519,9 @@ static void ConstructNullFunctionData(struct rtw_adapter *padapter, u8 *pframe, static void ConstructProbeRsp(struct rtw_adapter *padapter, u8 *pframe, u32 *pLength, u8 *StaAddr, bool bHideSSID) { struct rtw_ieee80211_hdr *pwlanhdr; - u16 *fctrl; - u8 *mac, *bssid; - u32 pktlen; + __le16 *fctrl; + u8 *mac, *bssid; + u32 pktlen; struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); @@ -818,111 +818,6 @@ void rtl8192d_set_FwJoinBssReport_cmd(struct rtw_adapter* padapter, u8 mstatus) } -#ifdef CONFIG_P2P_PS -void rtl8192d_set_p2p_ctw_period_cmd(struct rtw_adapter* padapter, u8 ctwindow) -{ - u8 CTWPeriod = ctwindow; - - FillH2CCmd92D(padapter, H2C_P2P_PS_CTW_CMD, 1, (u8 *)(&CTWPeriod)); -} - -void rtl8192d_set_p2p_ps_offload_cmd(struct rtw_adapter* padapter, u8 p2p_ps_state) -{ - struct hal_data_8192du *pHalData = GET_HAL_DATA(padapter); - struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - struct P2P_PS_Offload_t *p2p_ps_offload = &pHalData->p2p_ps_offload; - u8 i; - u16 ctwindow; - u32 start_time, tsf_low; - - switch (p2p_ps_state) - { - case P2P_PS_DISABLE: - DBG_8192D("P2P_PS_DISABLE\n"); - memset(p2p_ps_offload, 0 ,1); - break; - case P2P_PS_ENABLE: - DBG_8192D("P2P_PS_ENABLE\n"); - /* update CTWindow value. */ - if (pwdinfo->ctwindow > 0) - { - p2p_ps_offload->CTWindow_En = 1; - ctwindow = pwdinfo->ctwindow; - rtl8192d_set_p2p_ctw_period_cmd(padapter, ctwindow); - } - - /* hw only support 2 set of NoA */ - for (i=0 ; inoa_num ; i++) - { - /* To control the register setting for which NOA */ - rtw_write8(padapter, 0x5CF, (i << 4)); - if (i == 0) - p2p_ps_offload->NoA0_En = 1; - else - p2p_ps_offload->NoA1_En = 1; - - /* config P2P NoA Descriptor Register */ - rtw_write32(padapter, 0x5E0, pwdinfo->noa_duration[i]); - - rtw_write32(padapter, 0x5E4, pwdinfo->noa_interval[i]); - - /* Get Current TSF value */ - tsf_low = rtw_read32(padapter, REG_TSFTR); - - start_time = pwdinfo->noa_start_time[i]; - if (pwdinfo->noa_count[i] != 1) - { - while (start_time <= (tsf_low+(50*1024))) - { - start_time += pwdinfo->noa_interval[i]; - if (pwdinfo->noa_count[i] != 255) - pwdinfo->noa_count[i]--; - } - } - rtw_write32(padapter, 0x5E8, start_time); - - rtw_write8(padapter, 0x5EC, pwdinfo->noa_count[i]); - } - - if ((pwdinfo->opp_ps == 1) || (pwdinfo->noa_num > 0)) - { - /* rst p2p circuit */ - rtw_write8(padapter, REG_DUAL_TSF_RST, BIT(4)); - - p2p_ps_offload->Offload_En = 1; - - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) - { - p2p_ps_offload->role= 1; - p2p_ps_offload->AllStaSleep = 0; - } - else - { - p2p_ps_offload->role= 0; - } - - p2p_ps_offload->discovery = 0; - } - break; - case P2P_PS_SCAN: - DBG_8192D("P2P_PS_SCAN\n"); - p2p_ps_offload->discovery = 1; - break; - case P2P_PS_SCAN_DONE: - DBG_8192D("P2P_PS_SCAN_DONE\n"); - p2p_ps_offload->discovery = 0; - pwdinfo->p2p_ps_state = P2P_PS_ENABLE; - break; - default: - break; - } - - FillH2CCmd92D(padapter, H2C_P2P_PS_OFFLOAD, 1, (u8 *)p2p_ps_offload); - -} -#endif /* CONFIG_P2P_PS */ - #ifdef CONFIG_TSF_RESET_OFFLOAD /* ask FW to Reset sync register at Beacon early interrupt diff --git a/hal/rtl8192d_dm.c b/hal/rtl8192d_dm.c index eb567b0e..ff2d5e72 100644 --- a/hal/rtl8192d_dm.c +++ b/hal/rtl8192d_dm.c @@ -2327,13 +2327,6 @@ rtl8192d_HalDmWatchDog( } #endif -#ifdef CONFIG_P2P_PS - /* Fw is under p2p powersaving mode, driver should stop dynamic mechanism. */ - /* modifed by thomas. 2011.06.11. */ - if (adapter->wdinfo.p2p_ps_mode) - bFwPSAwake = false; -#endif /* CONFIG_P2P_PS */ - /* Stop dynamic mechanism when: */ /* 1. RF is OFF. (No need to do DM.) */ /* 2. Fw is under power saving mode for FwLPS. (Prevent from SW/FW I/O racing.) */ @@ -2411,29 +2404,13 @@ rtl8192d_HalDmWatchDog( _record_initrate: /* Read REG_INIDATA_RATE_SEL value for TXDESC. */ - if (check_fwstate(&adapter->mlmepriv, WIFI_STATION_STATE) == true) - { + if (check_fwstate(&adapter->mlmepriv, WIFI_STATION_STATE)) { pdmpriv->INIDATA_RATE[0] = rtw_read8(adapter, REG_INIDATA_RATE_SEL) & 0x3f; -#ifdef CONFIG_TDLS - if (adapter->tdlsinfo.setup_state == TDLS_LINKED_STATE) - { - u8 i=1; - for (; i < (adapter->tdlsinfo.macid_index) ; i++) - { - pdmpriv->INIDATA_RATE[i] = rtw_read8(adapter, (REG_INIDATA_RATE_SEL+i)) & 0x3f; - } - } -#endif /* CONFIG_TDLS */ - - } - else - { + } else { u8 i; for (i=1 ; i < (adapter->stapriv.asoc_sta_count + 1); i++) - { pdmpriv->INIDATA_RATE[i] = rtw_read8(adapter, (REG_INIDATA_RATE_SEL+i)) & 0x3f; - } } } diff --git a/hal/rtl8192d_phycfg.c b/hal/rtl8192d_phycfg.c index 0eafb8b3..373df150 100644 --- a/hal/rtl8192d_phycfg.c +++ b/hal/rtl8192d_phycfg.c @@ -53,7 +53,7 @@ #include #include -#include +#include /*---------------------------Define Local Constant---------------------------*/ diff --git a/hal/rtl8192du_xmit.c b/hal/rtl8192du_xmit.c index 14632f34..3d613d06 100644 --- a/hal/rtl8192du_xmit.c +++ b/hal/rtl8192du_xmit.c @@ -232,29 +232,18 @@ static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz, u8 bag struct pkt_attrib *pattrib = &pxmitframe->attrib; struct tx_desc *ptxdesc = (struct tx_desc *)pmem; int bmcst = IS_MCAST(pattrib->ra); -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - struct registry_priv *pregistrypriv = &padapter->registrypriv; -#endif /* CONFIG_P2P */ -#ifndef CONFIG_USE_USB_BUFFER_ALLOC_TX -if (padapter->registrypriv.mp_mode == 0) -{ - - if ((false == bagg_pkt) && (urb_zero_packet_chk(padapter, sz)==0)) - { + if (padapter->registrypriv.mp_mode == 0) { + if ((false == bagg_pkt) && (urb_zero_packet_chk(padapter, sz)==0)) { ptxdesc = (struct tx_desc *)(pmem+PACKET_OFFSET_SZ); pull = 1; pxmitframe->pkt_offset --; + } } -} -#endif /* CONFIG_USE_USB_BUFFER_ALLOC_TX */ memset(ptxdesc, 0, sizeof(struct tx_desc)); - if ((pxmitframe->frame_tag&0x0f) == DATA_FRAMETAG) - { - + if ((pxmitframe->frame_tag&0x0f) == DATA_FRAMETAG) { /* offset 4 */ ptxdesc->txdw1 |= cpu_to_le32(pattrib->mac_id&0x1f); @@ -319,19 +308,6 @@ if (padapter->registrypriv.mp_mode == 0) ptxdesc->txdw5 |= cpu_to_le32(ratetohwrate(pmlmeext->tx_rate)); } -#ifdef CONFIG_P2P - if (pregistrypriv->wifi_spec==1 && !rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - ptxdesc->txdw1 |= cpu_to_le32(BIT(6));/* AGG BK */ - - ptxdesc->txdw4 |= cpu_to_le32(BIT(8));/* driver uses rate */ - - ptxdesc->txdw5 = cpu_to_le32(0x0001ff00);/* */ - - ptxdesc->txdw5 |= cpu_to_le32(BIT(2));/* use OFDM 6Mbps */ - } -#endif /* CONFIG_P2P */ - /* offset 24 */ #ifdef CONFIG_TCP_CSUM_OFFLOAD_TX if (pattrib->hw_tcp_csum == 1) { @@ -372,11 +348,6 @@ if (padapter->registrypriv.mp_mode == 0) #ifdef CONFIG_92D_AP_MODE if (check_fwstate(pmlmepriv, WIFI_AP_STATE) == true) { ptxdesc->txdw5 |= cpu_to_le32(BIT(17));/* retry limit enable */ -#ifdef CONFIG_P2P - if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) { - ptxdesc->txdw5 |= cpu_to_le32(0x00080000);/* retry limit = 2 */ - } else -#endif /* CONFIG_P2P */ ptxdesc->txdw5 |= cpu_to_le32(0x00180000);/* retry limit = 6 */ } #endif @@ -456,44 +427,22 @@ s32 rtw_dump_xframe(struct rtw_adapter *padapter, struct xmit_frame *pxmitframe) struct pkt_attrib *pattrib = &pxmitframe->attrib; struct xmit_priv *pxmitpriv = &padapter->xmitpriv; struct security_priv *psecuritypriv = &padapter->securitypriv; -#ifdef CONFIG_TDLS - struct sta_priv *pstapriv = &padapter->stapriv; - struct sta_info *ptdls_sta=NULL, *psta_backup=NULL; - u8 ra_backup[6]; -#endif /* CONFIG_TDLS */ if ((pxmitframe->frame_tag == DATA_FRAMETAG) && (pxmitframe->attrib.ether_type != 0x0806) && (pxmitframe->attrib.ether_type != 0x888e) && (pxmitframe->attrib.dhcp_pkt != 1)) - { -#ifdef CONFIG_TDLS - ptdls_sta = rtw_get_stainfo(pstapriv, pattrib->dst); - if ((ptdls_sta!=NULL)&&(ptdls_sta->tdls_sta_state & TDLS_LINKED_STATE)) - { - psta_backup = pattrib->psta; - pattrib->psta = ptdls_sta; - memcpy(ra_backup, pattrib->ra, ETH_ALEN); - memcpy(pattrib->ra, pattrib->dst, ETH_ALEN); - rtw_issue_addbareq_cmd(padapter, pxmitframe); - pattrib->psta = psta_backup; - memcpy(pattrib->ra, ra_backup, ETH_ALEN); - } -#endif /* CONFIG_TDLS */ rtw_issue_addbareq_cmd(padapter, pxmitframe); - } mem_addr = pxmitframe->buf_addr; RT_TRACE(_module_rtl871x_xmit_c_,_drv_info_,("rtw_dump_xframe()\n")); - for (t = 0; t < pattrib->nr_frags; t++) - { + for (t = 0; t < pattrib->nr_frags; t++) { if (inner_ret != _SUCCESS && ret == _SUCCESS) ret = _FAIL; - if (t != (pattrib->nr_frags - 1)) - { + if (t != (pattrib->nr_frags - 1)) { RT_TRACE(_module_rtl871x_xmit_c_,_drv_err_,("pattrib->nr_frags=%d\n", pattrib->nr_frags)); sz = pxmitpriv->frag_len; @@ -767,7 +716,6 @@ s32 rtl8192du_xmitframe_complete(struct rtw_adapter *padapter, struct xmit_priv rtw_issue_addbareq_cmd(padapter, pfirstframe); } -#ifndef CONFIG_USE_USB_BUFFER_ALLOC_TX /* 3 3. update first frame txdesc */ if ((pbuf_tail % bulkSize) == 0) { /* remove 1 pkt_offset */ @@ -775,7 +723,6 @@ s32 rtl8192du_xmitframe_complete(struct rtw_adapter *padapter, struct xmit_priv pfirstframe->buf_addr += PACKET_OFFSET_SZ; pfirstframe->pkt_offset--; } -#endif /* CONFIG_USE_USB_BUFFER_ALLOC_TX */ update_txdesc(pfirstframe, pfirstframe->buf_addr, pfirstframe->attrib.last_txcmdsz, true); /* 3 4. write xmit buffer to USB FIFO */ @@ -893,7 +840,7 @@ static void rtl8192du_hostap_mgnt_xmit_cb(struct urb *urb) dev_kfree_skb_any(skb); } -s32 rtl8192du_hostap_mgnt_xmit_entry(struct rtw_adapter *padapter, _pkt *pkt) +s32 rtl8192du_hostap_mgnt_xmit_entry(struct rtw_adapter *padapter, struct sk_buff *pkt) { u16 fc; int rc, len, pipe; @@ -967,7 +914,7 @@ s32 rtl8192du_hostap_mgnt_xmit_entry(struct rtw_adapter *padapter, _pkt *pkt) ptxdesc->txdw4 |= cpu_to_le32(BIT(7)); /* Hw set sequence number */ ptxdesc->txdw3 |= cpu_to_le32((8 <<28)); /* set bit3 to 1. Suugested by TimChen. 2009.12.29. */ - rtl8192cu_cal_txdesc_chksum(ptxdesc); + rtl8192du_cal_txdesc_chksum(ptxdesc); /* ----- end of fill tx desc ----- */ /* */ @@ -980,7 +927,7 @@ s32 rtl8192du_hostap_mgnt_xmit_entry(struct rtw_adapter *padapter, _pkt *pkt) /* translate DMA FIFO addr to pipehandle */ pipe = usb_sndbulkpipe(pdvobj->pusbdev, pHalData->Queue2EPNum[(u8)MGT_QUEUE_INX]&0x0f); usb_fill_bulk_urb(urb, pdvobj->pusbdev, pipe, - pxmit_skb->data, pxmit_skb->len, rtl8192cu_hostap_mgnt_xmit_cb, pxmit_skb); + pxmit_skb->data, pxmit_skb->len, rtl8192du_hostap_mgnt_xmit_cb, pxmit_skb); urb->transfer_flags |= URB_ZERO_PACKET; usb_anchor_urb(urb, &phostapdpriv->anchored); diff --git a/hal/usb_halinit.c b/hal/usb_halinit.c index d7ced75b..c5fa1d62 100644 --- a/hal/usb_halinit.c +++ b/hal/usb_halinit.c @@ -3595,10 +3595,6 @@ static void hw_var_set_mlme_sitesurvey(struct rtw_adapter *adapter, u8 variable, #ifdef CONFIG_CONCURRENT_MODE || (check_buddy_fwstate(adapter, WIFI_AP_STATE) == true) #endif -#ifdef CONFIG_TDLS - /* TDLS will clear RCR_CBSSID_DATA bit for connection. */ - || (adapter->tdlsinfo.setup_state & TDLS_LINKED_STATE) -#endif /* CONFIG_TDLS */ ) { rcr_clear_bit = RCR_CBSSID_BCN; @@ -4407,38 +4403,6 @@ static void SetHwReg8192DU(struct rtw_adapter *adapter, u8 variable, u8 *val) case HW_VAR_H2C_FW_JOINBSSRPT: rtl8192d_set_FwJoinBssReport_cmd(adapter, (*(u8 *)val)); break; -#ifdef CONFIG_P2P_PS - case HW_VAR_H2C_FW_P2P_PS_OFFLOAD: - { - u8 p2p_ps_state = (*(u8 *)val); - rtl8192d_set_p2p_ps_offload_cmd(adapter, p2p_ps_state); - } - break; -#endif /* CONFIG_P2P_PS */ -#ifdef CONFIG_TDLS - case HW_VAR_TDLS_WRCR: - rtw_write32(adapter, REG_RCR, rtw_read32(adapter, REG_RCR)&(~ BIT(6))); - break; - case HW_VAR_TDLS_INIT_CH_SEN: - { - rtw_write32(adapter, REG_RCR, rtw_read32(adapter, REG_RCR)&(~ BIT(6))&(~ BIT(7))); - rtw_write16(adapter, REG_RXFLTMAP2, 0xffff); - - /* disable update TSF */ - rtw_write8(adapter, REG_BCN_CTRL, rtw_read8(adapter, REG_BCN_CTRL)|BIT(4)); - } - break; - case HW_VAR_TDLS_DONE_CH_SEN: - { - /* enable update TSF */ - rtw_write8(adapter, REG_BCN_CTRL, rtw_read8(adapter, REG_BCN_CTRL)&(~ BIT(4))); - rtw_write32(adapter, REG_RCR, rtw_read32(adapter, REG_RCR)|(BIT(7))); - } - break; - case HW_VAR_TDLS_RS_RCR: - rtw_write32(adapter, REG_RCR, rtw_read32(adapter, REG_RCR)|(BIT(6))); - break; -#endif /* CONFIG_TDLS */ case HW_VAR_INITIAL_GAIN: { struct DIG_T *dig_table = &pdmpriv->DM_DigTable; @@ -4894,64 +4858,51 @@ static void UpdateHalRAMask8192DUsb(struct rtw_adapter *padapter, u32 mac_id) return; } - switch (mac_id) - { - case 0:/* for infra mode */ + switch (mac_id) { + case 0:/* for infra mode */ #ifdef CONFIG_CONCURRENT_MODE - case 2:/* first station uses macid = 0, second station uses macid = 2 */ + case 2:/* first station uses macid = 0, second station uses macid = 2 */ #endif /* CONFIG_CONCURRENT_MODE */ - supportRateNum = rtw_get_rateset_len(cur_network->SupportedRates); - networkType = judge_network_type(padapter, cur_network->SupportedRates, supportRateNum); - raid = networktype_to_raid(networkType); + supportRateNum = rtw_get_rateset_len(cur_network->SupportedRates); + networkType = judge_network_type(padapter, cur_network->SupportedRates, supportRateNum); + raid = networktype_to_raid(networkType); - mask = update_supported_rate(cur_network->SupportedRates, supportRateNum); - mask |= (pmlmeinfo->HT_enable)? update_MSC_rate(&(pmlmeinfo->HT_caps)): 0; + mask = update_supported_rate(cur_network->SupportedRates, supportRateNum); + mask |= (pmlmeinfo->HT_enable)? update_MSC_rate(&(pmlmeinfo->HT_caps)): 0; - mask |= ((raid<<28)&0xf0000000); + mask |= ((raid<<28)&0xf0000000); - if (support_short_GI(padapter, &(pmlmeinfo->HT_caps))) - { - shortGIrate = true; - } + if (support_short_GI(padapter, &(pmlmeinfo->HT_caps))) + { + shortGIrate = true; + } - break; + break; - case 1:/* for broadcast/multicast */ - supportRateNum = rtw_get_rateset_len(pmlmeinfo->FW_sta_info[mac_id].SupportedRates); - if (pmlmeext->cur_wireless_mode & WIRELESS_11B) - networkType = WIRELESS_11B; - else - networkType = WIRELESS_11G; - raid = networktype_to_raid(networkType); + case 1:/* for broadcast/multicast */ + supportRateNum = rtw_get_rateset_len(pmlmeinfo->FW_sta_info[mac_id].SupportedRates); + if (pmlmeext->cur_wireless_mode & WIRELESS_11B) + networkType = WIRELESS_11B; + else + networkType = WIRELESS_11G; + raid = networktype_to_raid(networkType); - mask = update_basic_rate(cur_network->SupportedRates, supportRateNum); - mask |= ((raid<<28)&0xf0000000); + mask = update_basic_rate(cur_network->SupportedRates, supportRateNum); + mask |= ((raid<<28)&0xf0000000); - break; + break; - default: /* for each sta in IBSS */ -#ifdef CONFIG_TDLS - if (psta->tdls_sta_state & TDLS_LINKED_STATE) - { - shortGIrate = update_sgi_tdls(padapter, psta); - mask = update_mask_tdls(padapter, psta); - raid = mask>>28; - break; - } - else -#endif /* CONFIG_TDLS */ - { - supportRateNum = rtw_get_rateset_len(pmlmeinfo->FW_sta_info[mac_id].SupportedRates); - networkType = judge_network_type(padapter, pmlmeinfo->FW_sta_info[mac_id].SupportedRates, supportRateNum); - raid = networktype_to_raid(networkType); + default: /* for each sta in IBSS */ + supportRateNum = rtw_get_rateset_len(pmlmeinfo->FW_sta_info[mac_id].SupportedRates); + networkType = judge_network_type(padapter, pmlmeinfo->FW_sta_info[mac_id].SupportedRates, supportRateNum); + raid = networktype_to_raid(networkType); - mask = update_supported_rate(cur_network->SupportedRates, supportRateNum); - mask |= ((raid<<28)&0xf0000000); + mask = update_supported_rate(cur_network->SupportedRates, supportRateNum); + mask |= ((raid<<28)&0xf0000000); - /* todo: support HT in IBSS */ + /* todo: support HT in IBSS */ - break; - } + break; } #ifdef CONFIG_BT_COEXIST diff --git a/hal/usb_ops_linux.c b/hal/usb_ops_linux.c index fe65682d..01a7f439 100644 --- a/hal/usb_ops_linux.c +++ b/hal/usb_ops_linux.c @@ -35,16 +35,10 @@ static int usbctrl_vendorreq(struct intf_hdl *pintfhdl, u8 request, u16 value, u u8 reqtype; u8 *pIo_buf; int vendorreq_times = 0; - - #ifdef CONFIG_USB_VENDOR_REQ_BUFFER_DYNAMIC_ALLOCATE u8 *tmp_buf; - #else /* use stack memory */ - u8 tmp_buf[MAX_USB_IO_CTL_SIZE]; - #endif #ifdef CONFIG_CONCURRENT_MODE - if (padapter->adapter_type > PRIMARY_ADAPTER) - { + if (padapter->adapter_type > PRIMARY_ADAPTER) { padapter = padapter->pbuddy_adapter; pdvobjpriv = adapter_to_dvobj(padapter); udev = pdvobjpriv->pusbdev; @@ -137,9 +131,7 @@ static int usbctrl_vendorreq(struct intf_hdl *pintfhdl, u8 request, u16 value, u } /* release IO memory used by vendorreq */ - #ifdef CONFIG_USB_VENDOR_REQ_BUFFER_DYNAMIC_ALLOCATE kfree(tmp_buf); - #endif release_mutex: _exit_critical_mutex(&pdvobjpriv->usb_vendor_req_mutex); diff --git a/include/autoconf.h b/include/autoconf.h index 8fb08497..a9967d4b 100644 --- a/include/autoconf.h +++ b/include/autoconf.h @@ -21,12 +21,7 @@ #define DRV_NAME "r8192du" #define DRIVERVERSION "v4.2.1_7122.20130408" -#define CONFIG_IOCTL_CFG80211 1 - -#ifdef CONFIG_IOCTL_CFG80211 - #define CONFIG_CFG80211_FORCE_COMPATIBLE_2_6_37_UNDER - #define CONFIG_SET_SCAN_DENY_TIMER -#endif +#define CONFIG_SET_SCAN_DENY_TIMER /* * Internal General Config @@ -58,18 +53,6 @@ #endif #define CONFIG_FIND_BEST_CHANNEL 1 -/* Added by Albert 20110314 */ -#define CONFIG_P2P 1 -#ifdef CONFIG_P2P - /* Added by Albert 20110812 */ - /* The CONFIG_WFD is for supporting the Wi-Fi display */ - /* define CONFIG_WFD 1 */ - - #ifndef CONFIG_WIFI_TEST - #define CONFIG_P2P_REMOVE_GROUP_INFO - #endif -#endif - #define CONFIG_DFS 1 #define CONFIG_LAYER2_ROAMING @@ -77,12 +60,6 @@ /* define CONFIG_SET_SCAN_DENY_TIMER */ #define RTW_NOTCH_FILTER 0 /* 0:Disable, 1:Enable,*/ -#define CONFIG_BR_EXT 1 /* Enable NAT2.5 support for STA mode interface with a L2 Bridge */ -#ifdef CONFIG_BR_EXT -#define CONFIG_BR_EXT_BRNAME "br0" -#endif /* CONFIG_BR_EXT */ - - //#define CONFIG_CONCURRENT_MODE 1 #ifdef CONFIG_CONCURRENT_MODE #define CONFIG_TSF_RESET_OFFLOAD 1 /* For 2 PORT TSF SYNC. */ diff --git a/include/basic_types.h b/include/basic_types.h index 84fcaa4a..2f1f3659 100644 --- a/include/basic_types.h +++ b/include/basic_types.h @@ -170,4 +170,14 @@ value to host byte ordering.*/ #define N_BYTE_ALIGMENT(__value, __aligment) ((__aligment == 1) ? \ (__value) : (((__value + __aligment - 1) / __aligment) * __aligment)) +#ifndef IEEE80211_WEP_IV_LEN +#define IEEE80211_WEP_IV_LEN 4 +#define IEEE80211_WEP_ICV_LEN 4 +#define IEEE80211_CCMP_HDR_LEN 8 +#define IEEE80211_CCMP_MIC_LEN 8 +#define IEEE80211_TKIP_ICV_LEN 4 +#define IEEE80211_TKIP_IV_LEN 8 +#endif + + #endif /* __BASIC_TYPES_H__ */ diff --git a/include/drv_types.h b/include/drv_types.h index fd57d609..60fe3980 100644 --- a/include/drv_types.h +++ b/include/drv_types.h @@ -62,13 +62,7 @@ enum { #include #endif -#ifdef CONFIG_BR_EXT -#include -#endif /* CONFIG_BR_EXT */ - -#ifdef CONFIG_IOCTL_CFG80211 - #include "ioctl_cfg80211.h" -#endif /* CONFIG_IOCTL_CFG80211 */ +#include "ioctl_cfg80211.h" #define SPEC_DEV_ID_NONE BIT(0) #define SPEC_DEV_ID_DISABLE_HT BIT(1) @@ -311,23 +305,9 @@ struct rtw_adapter { struct hostapd_priv *phostapdpriv; #endif -#ifdef CONFIG_IOCTL_CFG80211 -#ifdef CONFIG_P2P struct cfg80211_wifidirect_info cfg80211_wdinfo; -#endif /* CONFIG_P2P */ -#endif /* CONFIG_IOCTL_CFG80211 */ u32 setband; -#ifdef CONFIG_P2P struct wifidirect_info wdinfo; -#endif /* CONFIG_P2P */ - -#ifdef CONFIG_TDLS - struct tdls_info tdlsinfo; -#endif /* CONFIG_TDLS */ - -#ifdef CONFIG_WFD - struct wifi_display_info wfd_info; -#endif /* CONFIG_WFD */ void *HalData; u32 hal_data_sz; @@ -368,10 +348,7 @@ struct rtw_adapter { struct net_device_stats stats; struct iw_statistics iwstats; struct proc_dir_entry *dir_dev;/* for proc directory */ - -#ifdef CONFIG_IOCTL_CFG80211 struct wireless_dev *rtw_wdev; -#endif /* CONFIG_IOCTL_CFG80211 */ int net_closed; @@ -385,11 +362,6 @@ struct rtw_adapter { /* Added by Albert 2012/10/26 */ /* The driver will show up the desired channel number when this flag is 1. */ u8 bNotifyChannelChange; -#ifdef CONFIG_P2P - /* Added by Albert 2012/12/06 */ - /* The driver will show the current P2P status when the upper application reads it. */ - u8 bShowGetP2PState; -#endif #ifdef CONFIG_AUTOSUSPEND u8 bDisableAutosuspend; #endif @@ -420,20 +392,6 @@ struct rtw_adapter { #ifdef CONFIG_DUALMAC_CONCURRENT u8 DualMacConcurrent; /* 1: DMSP 0:DMDP */ #endif - -#ifdef CONFIG_BR_EXT - spinlock_t br_ext_lock; - struct nat25_network_db_entry *nethash[NAT25_HASH_SIZE]; - int pppoe_connection_in_progress; - unsigned char pppoe_addr[MACADDRLEN]; - unsigned char scdb_mac[MACADDRLEN]; - unsigned char scdb_ip[4]; - struct nat25_network_db_entry *scdb_entry; - unsigned char br_mac[MACADDRLEN]; - unsigned char br_ip[4]; - - struct br_ext_info eth_br_ext_info; -#endif /* CONFIG_BR_EXT */ }; #define adapter_to_dvobj(adapter) (adapter->dvobj) diff --git a/include/Hal8192DPhyCfg.h b/include/hal8192dphycfg.h similarity index 100% rename from include/Hal8192DPhyCfg.h rename to include/hal8192dphycfg.h diff --git a/include/Hal8192DPhyReg.h b/include/hal8192dphyreg.h similarity index 100% rename from include/Hal8192DPhyReg.h rename to include/hal8192dphyreg.h diff --git a/include/Hal8192DUHWImg.h b/include/hal8192duhwimg.h similarity index 100% rename from include/Hal8192DUHWImg.h rename to include/hal8192duhwimg.h diff --git a/include/ieee80211.h b/include/ieee80211.h index eed9af13..dd5d04e9 100644 --- a/include/ieee80211.h +++ b/include/ieee80211.h @@ -298,44 +298,44 @@ struct ieee_ibss_seq { }; struct rtw_ieee80211_hdr { - u16 frame_ctl; - u16 duration_id; + __le16 frame_ctl; + __le16 duration_id; u8 addr1[ETH_ALEN]; u8 addr2[ETH_ALEN]; u8 addr3[ETH_ALEN]; - u16 seq_ctl; + __le16 seq_ctl; u8 addr4[ETH_ALEN]; } __attribute__ ((packed)); struct rtw_ieee80211_hdr_3addr { - u16 frame_ctl; - u16 duration_id; + __le16 frame_ctl; + __le16 duration_id; u8 addr1[ETH_ALEN]; u8 addr2[ETH_ALEN]; u8 addr3[ETH_ALEN]; - u16 seq_ctl; + __le16 seq_ctl; } __attribute__ ((packed)); struct rtw_ieee80211_hdr_qos { - u16 frame_ctl; - u16 duration_id; + __le16 frame_ctl; + __le16 duration_id; u8 addr1[ETH_ALEN]; u8 addr2[ETH_ALEN]; u8 addr3[ETH_ALEN]; - u16 seq_ctl; + __le16 seq_ctl; u8 addr4[ETH_ALEN]; - u16 qc; + __le16 qc; } __attribute__ ((packed)); struct rtw_ieee80211_hdr_3addr_qos { - u16 frame_ctl; - u16 duration_id; + __le16 frame_ctl; + __le16 duration_id; u8 addr1[ETH_ALEN]; u8 addr2[ETH_ALEN]; u8 addr3[ETH_ALEN]; - u16 seq_ctl; - u16 qc; + __le16 seq_ctl; + __le16 qc; } __attribute__ ((packed)); struct eapol { @@ -1008,26 +1008,6 @@ enum _PUBLIC_ACTION{ ACT_PUBLIC_MAX }; -#ifdef CONFIG_TDLS -enum TDLS_ACTION_FIELD{ - TDLS_SETUP_REQUEST = 0, - TDLS_SETUP_RESPONSE = 1, - TDLS_SETUP_CONFIRM = 2, - TDLS_TEARDOWN = 3, - TDLS_PEER_TRAFFIC_INDICATION = 4, - TDLS_CHANNEL_SWITCH_REQUEST = 5, - TDLS_CHANNEL_SWITCH_RESPONSE = 6, - TDLS_PEER_PSM_REQUEST = 7, - TDLS_PEER_PSM_RESPONSE = 8, - TDLS_PEER_TRAFFIC_RESPONSE = 9, - TDLS_DISCOVERY_REQUEST = 10, - TDLS_DISCOVERY_RESPONSE = 14, /* it's used in public action frame */ -}; - -#define TUNNELED_PROBE_REQ 15 -#define TUNNELED_PROBE_RSP 16 -#endif /* CONFIG_TDLS */ - /* BACK action code */ enum rtw_ieee80211_back_actioncode { RTW_WLAN_ACTION_ADDBA_REQ = 0, @@ -1228,20 +1208,6 @@ u8 *rtw_get_wps_attr_content(u8 *wps_ie, uint wps_ielen, u16 target_attr_id ,u8 void dump_ies(u8 *buf, u32 buf_len); void dump_wps_ie(u8 *ie, u32 ie_len); -#ifdef CONFIG_P2P -void dump_p2p_ie(u8 *ie, u32 ie_len); -u8 *rtw_get_p2p_ie(u8 *in_ie, int in_len, u8 *p2p_ie, uint *p2p_ielen); -u8 *rtw_get_p2p_attr(u8 *p2p_ie, uint p2p_ielen, u8 target_attr_id ,u8 *buf_attr, u32 *len_attr); -u8 *rtw_get_p2p_attr_content(u8 *p2p_ie, uint p2p_ielen, u8 target_attr_id ,u8 *buf_content, uint *len_content); -u32 rtw_set_p2p_attr_content(u8 *pbuf, u8 attr_id, u16 attr_len, u8 *pdata_attr); -void rtw_wlan_bssid_ex_remove_p2p_attr(struct wlan_bssid_ex *bss_ex, u8 attr_id); -#endif - -#ifdef CONFIG_WFD -int rtw_get_wfd_ie(u8 *in_ie, int in_len, u8 *wfd_ie, uint *wfd_ielen); -int rtw_get_wfd_attr_content(u8 *wfd_ie, uint wfd_ielen, u8 target_attr_id ,u8 *attr_content, uint *attr_contentlen); -#endif /* CONFIG_WFD */ - uint rtw_get_rateset_len(u8 *rateset); struct registry_priv; diff --git a/include/ioctl_cfg80211.h b/include/ioctl_cfg80211.h index 0e3c61c1..4eba12e0 100644 --- a/include/ioctl_cfg80211.h +++ b/include/ioctl_cfg80211.h @@ -16,17 +16,6 @@ #ifndef __IOCTL_CFG80211_H__ #define __IOCTL_CFG80211_H__ -#if defined(CONFIG_IOCTL_CFG80211) && !defined(CONFIG_CFG80211) && !defined(CONFIG_CFG80211_MODULE) - #error "Can't define CONFIG_IOCTL_CFG80211 because neither CONFIG_CFG80211 nor CONFIG_CFG80211_MODULE is defined in kernel" -#endif -#if defined(CONFIG_IOCTL_CFG80211) && LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35) - #error "We haven't verify our cfg80211 solution below kernel version 2.6.35" -#endif - -#if defined(RTW_USE_CFG80211_STA_EVENT) - #undef CONFIG_CFG80211_FORCE_COMPATIBLE_2_6_37_UNDER -#endif - struct rtw_wdev_invit_info { u8 token; u8 flags; @@ -106,15 +95,19 @@ int rtw_cfg80211_set_mgnt_wpsp2pie(struct net_device *net, char *buf, int len, i bool rtw_cfg80211_pwr_mgmt(struct rtw_adapter *adapter); -#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0)) && !defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0)) #define rtw_cfg80211_rx_mgmt(adapter, freq, sig_dbm, buf, len, gfp) cfg80211_rx_mgmt((adapter)->pnetdev, freq, buf, len, gfp) #elif (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0)) #define rtw_cfg80211_rx_mgmt(adapter, freq, sig_dbm, buf, len, gfp) cfg80211_rx_mgmt((adapter)->pnetdev, freq, sig_dbm, buf, len, gfp) -#else +#elif (LINUX_VERSION_CODE < KERNEL_VERSION(3,12,0)) #define rtw_cfg80211_rx_mgmt(adapter, freq, sig_dbm, buf, len, gfp) cfg80211_rx_mgmt((adapter)->rtw_wdev, freq, sig_dbm, buf, len, gfp) +#elif (LINUX_VERSION_CODE < KERNEL_VERSION(3,18,0)) +#define rtw_cfg80211_rx_mgmt(adapter, freq, sig_dbm, buf, len, gfp) cfg80211_rx_mgmt((adapter)->rtw_wdev, freq, sig_dbm, buf, len, 0, gfp) +#else // kernel >= 3.18 +#define rtw_cfg80211_rx_mgmt(adapter, freq, sig_dbm, buf, len, gfp) cfg80211_rx_mgmt((adapter)->rtw_wdev, freq, sig_dbm, buf, len, 0) #endif -#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0)) && !defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0)) #define rtw_cfg80211_send_rx_assoc(adapter, bss, buf, len) cfg80211_send_rx_assoc((adapter)->pnetdev, buf, len) #else #define rtw_cfg80211_send_rx_assoc(adapter, bss, buf, len) cfg80211_send_rx_assoc((adapter)->pnetdev, bss, buf, len) diff --git a/include/osdep_service.h b/include/osdep_service.h index 32fe0326..a19282ab 100644 --- a/include/osdep_service.h +++ b/include/osdep_service.h @@ -58,10 +58,8 @@ #include #include -#ifdef CONFIG_IOCTL_CFG80211 #include #include -#endif /* CONFIG_IOCTL_CFG80211 */ #ifdef CONFIG_TCP_CSUM_OFFLOAD_TX #include @@ -81,6 +79,23 @@ #endif #endif +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,14,0)) +static inline void ether_addr_copy(u8 *dst, const u8 *src) +{ +#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) + *(u32 *)dst = *(const u32 *)src; + *(u16 *)(dst + 4) = *(const u16 *)(src + 4); +#else + u16 *a = (u16 *)dst; + const u16 *b = (const u16 *)src; + + a[0] = b[0]; + a[1] = b[1]; + a[2] = b[2]; +#endif +} +#endif + #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) #define _mutex struct mutex #else diff --git a/include/rtl8192d_cmd.h b/include/rtl8192d_cmd.h index d2ff1971..cc93a837 100644 --- a/include/rtl8192d_cmd.h +++ b/include/rtl8192d_cmd.h @@ -99,9 +99,6 @@ void rtl8192d_set_FwJoinBssReport_cmd(struct rtw_adapter* padapter, u8 mstatus); u8 rtl8192d_set_rssi_cmd(struct rtw_adapter*padapter, u8 *param); u8 rtl8192d_set_raid_cmd(struct rtw_adapter*padapter, u32 mask, u8 arg); void rtl8192d_Add_RateATid(struct rtw_adapter * adapter, u32 bitmap, u8 arg); -#ifdef CONFIG_P2P -void rtl8192d_set_p2p_ps_offload_cmd(struct rtw_adapter* padapter, u8 p2p_ps_state); -#endif /* CONFIG_P2P */ #ifdef CONFIG_TSF_RESET_OFFLOAD int reset_tsf(struct rtw_adapter * adapter, u8 reset_port); diff --git a/include/rtl8192d_hal.h b/include/rtl8192d_hal.h index b763d379..1030a3f0 100644 --- a/include/rtl8192d_hal.h +++ b/include/rtl8192d_hal.h @@ -18,8 +18,8 @@ #include "hal_com.h" #include "rtl8192d_spec.h" -#include "Hal8192DPhyReg.h" -#include "Hal8192DPhyCfg.h" +#include "hal8192dphyreg.h" +#include "hal8192dphycfg.h" #include "rtl8192d_rf.h" #include "rtl8192d_dm.h" #include "rtl8192d_recv.h" @@ -166,10 +166,10 @@ static u32 TargetChnl_2G[TARGET_CHNL_NUM_2G] = { /* channel 1~14 */ }; -#include "Hal8192DUHWImg.h" +#include "hal8192duhwimg.h" #ifdef CONFIG_WOWLAN - #include "Hal8192DUHWImg_wowlan.h" + #include "hal8192duhwimg_wowlan.h" #endif /* CONFIG_WOWLAN */ #define RTL819X_DEFAULT_RF_TYPE RF_1T2R @@ -697,9 +697,6 @@ struct hal_data_8192du { u16 EfuseUsedBytes; u8 RTSInitRate; /* 2010.11.24.by tynli. */ -#ifdef CONFIG_P2P - struct P2P_PS_Offload_t p2p_ps_offload; -#endif /* CONFIG_P2P */ }; #define GET_HAL_DATA(__adapter) ((struct hal_data_8192du *)((__adapter)->HalData)) diff --git a/include/rtl8192d_xmit.h b/include/rtl8192d_xmit.h index f0d70bb0..a1a3ab32 100644 --- a/include/rtl8192d_xmit.h +++ b/include/rtl8192d_xmit.h @@ -102,7 +102,7 @@ s32 rtl8192du_hal_xmit(struct rtw_adapter *padapter, struct xmit_frame *pxmitframe); #ifdef CONFIG_HOSTAPD_MLME -s32 rtl8192du_hostap_mgnt_xmit_entry(struct rtw_adapter *padapter, _pkt *pkt); +s32 rtl8192du_hostap_mgnt_xmit_entry(struct rtw_adapter *padapter, struct sk_buff *pkt); #endif #endif diff --git a/include/rtw_br_ext.h b/include/rtw_br_ext.h deleted file mode 100644 index a414ceb6..00000000 --- a/include/rtw_br_ext.h +++ /dev/null @@ -1,63 +0,0 @@ -/****************************************************************************** - * - * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. - * - * 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. - * - * - ******************************************************************************/ -#ifndef _RTW_BR_EXT_H_ -#define _RTW_BR_EXT_H_ - -#define CL_IPV6_PASS 1 -#define MACADDRLEN 6 -#define GET_MY_HWADDR(padapter) ((padapter)->eeprompriv.mac_addr) - -#define NAT25_HASH_BITS 4 -#define NAT25_HASH_SIZE (1 << NAT25_HASH_BITS) -#define NAT25_AGEING_TIME 300 - -#ifdef CL_IPV6_PASS -#define MAX_NETWORK_ADDR_LEN 17 -#else -#define MAX_NETWORK_ADDR_LEN 11 -#endif - -struct nat25_network_db_entry -{ - struct nat25_network_db_entry *next_hash; - struct nat25_network_db_entry **pprev_hash; - atomic_t use_count; - unsigned char macaddr[6]; - unsigned long ageing_timer; - unsigned char networkAddr[MAX_NETWORK_ADDR_LEN]; -}; - -enum NAT25_METHOD { - NAT25_MIN, - NAT25_CHECK, - NAT25_INSERT, - NAT25_LOOKUP, - NAT25_PARSE, - NAT25_MAX -}; - -struct br_ext_info { - unsigned int nat25_disable; - unsigned int macclone_enable; - unsigned int dhcp_bcst_disable; - int addPPPoETag; /* 1: Add PPPoE relay-SID, 0: disable */ - unsigned char nat25_dmzMac[MACADDRLEN]; - unsigned int nat25sc_disable; -}; - -void nat25_db_cleanup(struct rtw_adapter *priv); - -#endif /* _RTW_BR_EXT_H_ */ diff --git a/include/rtw_cmd.h b/include/rtw_cmd.h index b89005fb..0572c48e 100644 --- a/include/rtw_cmd.h +++ b/include/rtw_cmd.h @@ -137,9 +137,6 @@ extern u32 rtw_init_evt_priv (struct evt_priv *pevtpriv); extern void rtw_free_evt_priv (struct evt_priv *pevtpriv); extern void rtw_cmd_clr_isr(struct cmd_priv *pcmdpriv); extern void rtw_evt_notify_isr(struct evt_priv *pevtpriv); -#ifdef CONFIG_P2P -u8 p2p_protocol_wk_cmd(struct rtw_adapter*padapter, int intCmdType); -#endif /* CONFIG_P2P */ enum rtw_drvextra_cmd_id { diff --git a/include/rtw_mlme.h b/include/rtw_mlme.h index fb5820d8..c57caf2c 100644 --- a/include/rtw_mlme.h +++ b/include/rtw_mlme.h @@ -22,10 +22,6 @@ #include #include -#ifdef CONFIG_INTEL_WIDI -#include -#endif - #define MAX_BSS_CNT 128 #define MAX_JOIN_TIMEOUT 6500 @@ -169,31 +165,6 @@ struct tx_invite_resp_info{ u8 token; /* Used to record the dialog token of p2p invitation request frame. */ }; -#ifdef CONFIG_WFD - -struct wifi_display_info{ - u16 wfd_enable; /* Eanble/Disable the WFD function. */ - u16 rtsp_ctrlport; /* TCP port number at which the this WFD device listens for RTSP messages */ - u16 peer_rtsp_ctrlport; /* TCP port number at which the peer WFD device listens for RTSP messages */ - /* This filed should be filled when receiving the gropu negotiation request */ - - u8 peer_session_avail; /* WFD session is available or not for the peer wfd device. */ - /* This variable will be set when sending the provisioning discovery request to peer WFD device. */ - /* And this variable will be reset when it is read by using the iwpriv p2p_get wfd_sa command. */ - - u8 ip_address[4]; - u8 peer_ip_address[4]; - u8 wfd_pc; /* WFD preferred connection */ - /* 0 -> Prefer to use the P2P for WFD connection on peer side. */ - /* 1 -> Prefer to use the TDLS for WFD connection on peer side. */ - - u8 wfd_device_type; /* WFD Device Type */ - /* 0 -> WFD Source Device */ - /* 1 -> WFD Primary Sink Device */ - enum SCAN_RESULT_TYPE scan_result_type; /* Used when P2P is enable. This parameter will impact the scan result. */ -}; -#endif /* CONFIG_WFD */ - struct tx_provdisc_req_info{ u16 wps_config_method_request; /* Used when sending the provisioning request frame */ u16 peer_channel_num[2]; /* The channel number which the receiver stands. */ @@ -225,7 +196,6 @@ struct scan_limit_info{ u8 operation_ch[2]; /* Store the operation channel of invitation request frame */ }; -#ifdef CONFIG_IOCTL_CFG80211 struct cfg80211_wifidirect_info{ struct timer_list remain_on_ch_timer; u8 restore_channel; @@ -234,7 +204,6 @@ struct cfg80211_wifidirect_info{ u64 remain_on_ch_cookie; bool is_ro_ch; }; -#endif /* CONFIG_IOCTL_CFG80211 */ struct wifidirect_info{ struct rtw_adapter *padapter; @@ -258,9 +227,6 @@ struct wifidirect_info{ struct group_id_info groupid_info; /* Store the group id information when doing the group negotiation handshake. */ struct scan_limit_info rx_invitereq_info; /* Used for get the limit scan channel from the Invitation procedure */ struct scan_limit_info p2p_info; /* Used for get the limit scan channel from the P2P negotiation handshake */ -#ifdef CONFIG_WFD - struct wifi_display_info *wfd_info; -#endif enum P2P_ROLE role; enum P2P_STATE pre_p2p_state; enum P2P_STATE p2p_state; @@ -315,18 +281,6 @@ struct wifidirect_info{ u16 ext_listen_interval; /* The interval to be available with legacy AP (ms) */ u16 ext_listen_period; /* The time period to be available for P2P listen state (ms) */ #endif -#ifdef CONFIG_P2P_PS - enum P2P_PS_MODE p2p_ps_mode; /* indicate p2p ps mode */ - enum P2P_PS_STATE p2p_ps_state; /* indicate p2p ps state */ - u8 noa_index; /* Identifies and instance of Notice of Absence timing. */ - u8 ctwindow; /* Client traffic window. A period of time in TU after TBTT. */ - u8 opp_ps; /* opportunistic power save. */ - u8 noa_num; /* number of NoA descriptor in P2P IE. */ - u8 noa_count[P2P_MAX_NOA_NUM]; /* Count for owner, Type of client. */ - u32 noa_duration[P2P_MAX_NOA_NUM]; /* Max duration for owner, preferred or min acceptable duration for client. */ - u32 noa_interval[P2P_MAX_NOA_NUM]; /* Length of interval for owner, preferred or max acceptable interval of client. */ - u32 noa_start_time[P2P_MAX_NOA_NUM]; /* schedule expressed in terms of the lower 4 bytes of the TSF timer. */ -#endif /* CONFIG_P2P_PS */ }; struct tdls_ss_record{ /* signal strength record; recording the tdls sta with lowerest ss */ @@ -352,9 +306,6 @@ struct tdls_info{ u8 watchdog_count; u8 dev_discovered; /* WFD_TDLS: for sigma test */ u8 enable; -#ifdef CONFIG_WFD - struct wifi_display_info *wfd_info; -#endif }; struct mlme_priv { @@ -426,7 +377,6 @@ struct mlme_priv { u8 *wps_probe_req_ie; u32 wps_probe_req_ie_len; -#if defined (CONFIG_92D_AP_MODE) && defined (CONFIG_NATIVEAP_MLME) /* Number of associated Non-ERP stations (i.e., stations using 802.11b * in 802.11g BSS) */ int num_sta_non_erp; @@ -462,11 +412,11 @@ struct mlme_priv { u8 *wps_beacon_ie; u8 *wps_probe_resp_ie; - u8 *wps_assoc_resp_ie; /* for CONFIG_IOCTL_CFG80211, this IE could include p2p ie / wfd ie */ + u8 *wps_assoc_resp_ie; /* this IE could include p2p ie / wfd ie */ u32 wps_beacon_ie_len; u32 wps_probe_resp_ie_len; - u32 wps_assoc_resp_ie_len; /* for CONFIG_IOCTL_CFG80211, this IE len could include p2p ie / wfd ie */ + u32 wps_assoc_resp_ie_len; /* this IE len could include p2p ie / wfd ie */ u8 *p2p_beacon_ie; u8 *p2p_probe_req_ie; @@ -482,36 +432,6 @@ struct mlme_priv { spinlock_t bcn_update_lock; u8 update_bcn; - -#endif /* if defined (CONFIG_92D_AP_MODE) && defined (CONFIG_NATIVEAP_MLME) */ - -#if defined(CONFIG_WFD) && defined(CONFIG_IOCTL_CFG80211) - - u8 *wfd_beacon_ie; - u8 *wfd_probe_req_ie; - u8 *wfd_probe_resp_ie; - u8 *wfd_go_probe_resp_ie; /* for GO */ - u8 *wfd_assoc_req_ie; - - u32 wfd_beacon_ie_len; - u32 wfd_probe_req_ie_len; - u32 wfd_probe_resp_ie_len; - u32 wfd_go_probe_resp_ie_len; /* for GO */ - u32 wfd_assoc_req_ie_len; - -#endif - -#ifdef CONFIG_INTEL_WIDI - int widi_state; - int listen_state; - struct timer_list listen_timer; - ATOMIC_T rx_probe_rsp; /* 1:receive probe respone from RDS source. */ - u8 *l2sdTaBuffer; - u8 channel_idx; - s8 group_cnt; /* For WiDi 3.5, they specified another scan algo. for WFD/RDS co-existed */ - u8 sa_ext[L2SDTA_SERVICE_VE_LEN]; -#endif /* CONFIG_INTEL_WIDI */ - #ifdef CONFIG_CONCURRENT_MODE u8 scanning_via_buddy_intf; #endif diff --git a/include/rtw_mlme_ext.h b/include/rtw_mlme_ext.h index 88775962..a2165648 100644 --- a/include/rtw_mlme_ext.h +++ b/include/rtw_mlme_ext.h @@ -261,40 +261,6 @@ struct ss_res #define WIFI_FW_LINKING_STATE (WIFI_FW_AUTH_NULL | WIFI_FW_AUTH_STATE | WIFI_FW_AUTH_SUCCESS |WIFI_FW_ASSOC_STATE) -#ifdef CONFIG_TDLS -/* 1: Write RCR DATA BIT */ -/* 2: Issue peer traffic indication */ -/* 3: Go back to the channel linked with AP, terminating channel switch procedure */ -/* 4: Init channel sensing, receive all data and mgnt frame */ -/* 5: Channel sensing and report candidate channel */ -/* 6: First time set channel to off channel */ -/* 7: Go back tp the channel linked with AP when set base channel as target channel */ -/* 8: Set channel back to base channel */ -/* 9: Set channel back to off channel */ -/* 10: Restore RCR DATA BIT */ -/* 11: Check alive */ -/* 12: Check alive */ -/* 13: Free TDLS sta */ -enum TDLS_option -{ - TDLS_WRCR = 1, - TDLS_SD_PTI = 2, - TDLS_CS_OFF = 3, - TDLS_INIT_CH_SEN = 4, - TDLS_DONE_CH_SEN = 5, - TDLS_OFF_CH = 6, - TDLS_BASE_CH = 7, - TDLS_P_OFF_CH = 8, - TDLS_P_BASE_CH = 9, - TDLS_RS_RCR = 10, - TDLS_CKALV_PH1 = 11, - TDLS_CKALV_PH2 = 12, - TDLS_FREE_STA = 13, - maxTDLS, -}; - -#endif /* CONFIG_TDLS */ - struct FW_Sta_Info { struct sta_info *psta; @@ -466,10 +432,7 @@ struct mlme_ext_priv u8 update_channel_plan_by_ap_done; #endif -#ifdef CONFIG_ACTIVE_KEEP_ALIVE_CHECK u8 active_keep_alive_check; -#endif - }; int init_mlme_ext_priv(struct rtw_adapter *padapter); @@ -531,9 +494,6 @@ int is_IBSS_empty(struct rtw_adapter *padapter); unsigned char check_assoc_AP(u8 *pframe, uint len); int WMM_param_handler(struct rtw_adapter *padapter, struct ndis_802_11_variable_ies *pIE); -#ifdef CONFIG_WFD -int WFD_info_handler(struct rtw_adapter *padapter, struct ndis_802_11_variable_ies *pIE); -#endif void WMMOnAssocRsp(struct rtw_adapter *padapter); void HT_caps_handler(struct rtw_adapter *padapter, struct ndis_802_11_variable_ies *pIE); @@ -584,15 +544,6 @@ void dump_mgntframe(struct rtw_adapter *padapter, struct xmit_frame *pmgntframe) s32 dump_mgntframe_and_wait(struct rtw_adapter *padapter, struct xmit_frame *pmgntframe, int timeout_ms); s32 dump_mgntframe_and_wait_ack(struct rtw_adapter *padapter, struct xmit_frame *pmgntframe); -#ifdef CONFIG_P2P -void issue_probersp_p2p(struct rtw_adapter *padapter, unsigned char *da); -void issue_p2p_provision_request(struct rtw_adapter *padapter, u8* pssid, u8 ussidlen, u8* pdev_raddr); -void issue_p2p_GO_request(struct rtw_adapter *padapter, u8* raddr); -void issue_probereq_p2p(struct rtw_adapter *padapter, u8 *da); -int issue_probereq_p2p_ex(struct rtw_adapter *adapter, u8 *da, int try_cnt, int wait_ms); -void issue_p2p_invitation_response(struct rtw_adapter *padapter, u8* raddr, u8 dialogToken, u8 success); -void issue_p2p_invitation_request(struct rtw_adapter *padapter, u8* raddr); -#endif /* CONFIG_P2P */ void issue_beacon(struct rtw_adapter *padapter); void issue_probersp(struct rtw_adapter *padapter, unsigned char *da, u8 is_valid_p2p_probereq); void issue_assocreq(struct rtw_adapter *padapter); diff --git a/include/rtw_mp.h b/include/rtw_mp.h index eab8985d..0daa5c30 100644 --- a/include/rtw_mp.h +++ b/include/rtw_mp.h @@ -116,7 +116,7 @@ struct mp_tx { void *PktTxThread; }; -#include +#include #define MP_MAX_LINES 1000 #define MP_MAX_LINES_BYTES 256 #define u1Byte u8 diff --git a/include/rtw_p2p.h b/include/rtw_p2p.h index 97d03728..325bd02f 100644 --- a/include/rtw_p2p.h +++ b/include/rtw_p2p.h @@ -23,21 +23,6 @@ u32 build_probe_resp_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); u32 build_prov_disc_request_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf, u8* pssid, u8 ussidlen, u8* pdev_raddr); u32 build_assoc_resp_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf, u8 status_code); u32 build_deauth_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); -#ifdef CONFIG_WFD -u32 build_probe_req_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); -u32 build_probe_resp_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf, u8 tunneled); -u32 build_beacon_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); -u32 build_nego_req_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); -u32 build_nego_resp_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); -u32 build_nego_confirm_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); -u32 build_invitation_req_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); -u32 build_invitation_resp_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); -u32 build_assoc_req_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); -u32 build_assoc_resp_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); -u32 build_provdisc_req_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); -u32 build_provdisc_resp_wfd_ie(struct wifidirect_info *pwdinfo, u8 *pbuf); -#endif /* CONFIG_WFD */ - u32 process_probe_req_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pframe, uint len); u32 process_assoc_req_p2p_ie(struct wifidirect_info *pwdinfo, u8 *pframe, uint len, struct sta_info *psta); u32 process_p2p_devdisc_req(struct wifidirect_info *pwdinfo, u8 *pframe, uint len); @@ -49,17 +34,9 @@ u8 process_p2p_presence_req(struct wifidirect_info *pwdinfo, u8 *pframe, uint le void p2p_protocol_wk_hdl(struct rtw_adapter *padapter, int intCmdType); -#ifdef CONFIG_P2P_PS -void process_p2p_ps_ie(PADAPTER padapter, u8 *IEs, u32 IELength); -void p2p_ps_wk_hdl(struct rtw_adapter *padapter, u8 p2p_ps_state); -u8 p2p_ps_wk_cmd(struct rtw_adapter*padapter, u8 p2p_ps_state, u8 enqueue); -#endif /* CONFIG_P2P_PS */ - -#ifdef CONFIG_IOCTL_CFG80211 void rtw_init_cfg80211_wifidirect_info(struct rtw_adapter *padapter); int rtw_p2p_check_frames(struct rtw_adapter *padapter, const u8 *buf, u32 len, u8 tx); void rtw_append_wfd_ie(struct rtw_adapter *padapter, u8 *buf, u32 *len); -#endif /* CONFIG_IOCTL_CFG80211 */ void reset_global_wifidirect_info(struct rtw_adapter *padapter); int rtw_init_wifi_display_info(struct rtw_adapter *padapter); diff --git a/include/rtw_pwrctrl.h b/include/rtw_pwrctrl.h index 2d500175..3e4cb147 100644 --- a/include/rtw_pwrctrl.h +++ b/include/rtw_pwrctrl.h @@ -300,11 +300,6 @@ void rtw_ps_processor(struct rtw_adapter*padapter); #ifdef CONFIG_AUTOSUSPEND int autoresume_enter(struct rtw_adapter* padapter); #endif -#ifdef SUPPORT_HW_RFOFF_DETECTED -rt_rf_power_state RfOnOffDetect(IN struct rtw_adapter * adapter); -#endif - - #ifdef CONFIG_LPS void rtw_lps_enter(struct rtw_adapter * padapter); void rtw_lps_leave(struct rtw_adapter * padapter); diff --git a/include/rtw_security.h b/include/rtw_security.h index c2c86474..f7d62b33 100644 --- a/include/rtw_security.h +++ b/include/rtw_security.h @@ -380,15 +380,6 @@ u32 rtw_aes_decrypt(struct rtw_adapter *padapter, u8 *precvframe); u32 rtw_tkip_decrypt(struct rtw_adapter *padapter, u8 *precvframe); void rtw_wep_decrypt(struct rtw_adapter *padapter, u8 *precvframe); -#ifdef CONFIG_TDLS -void wpa_tdls_generate_tpk(struct rtw_adapter *padapter, struct sta_info *psta); -int wpa_tdls_ftie_mic(u8 *kck, u8 trans_seq, - u8 *lnkid, u8 *rsnie, u8 *timeoutie, u8 *ftie, - u8 *mic); -int tdls_verify_mic(u8 *kck, u8 trans_seq, - u8 *lnkid, u8 *rsnie, u8 *timeoutie, u8 *ftie); -#endif /* CONFIG_TDLS */ - void rtw_use_tkipkey_handler(void* FunctionContext); #endif /* __RTL871X_SECURITY_H_ */ diff --git a/include/rtw_tdls.h b/include/rtw_tdls.h index b57da985..26731032 100644 --- a/include/rtw_tdls.h +++ b/include/rtw_tdls.h @@ -18,123 +18,6 @@ #include -#ifdef CONFIG_TDLS -/* TDLS STA state */ -#define TDLS_STATE_NONE 0x00000000 /* default state */ -#define TDLS_INITIATOR_STATE 0x10000000 -#define TDLS_RESPONDER_STATE 0x20000000 -#define TDLS_LINKED_STATE 0x40000000 -#define TDLS_CH_SWITCH_ON_STATE 0x01000000 -#define TDLS_PEER_AT_OFF_STATE 0x02000000 /* could send pkt on target ch */ -#define TDLS_AT_OFF_CH_STATE 0x04000000 -#define TDLS_CH_SW_INITIATOR_STATE 0x08000000 /* avoiding duplicated or unconditional ch. switch rsp. */ -#define TDLS_APSD_CHSW_STATE 0x00100000 /* in APSD and want to setup channel switch */ -#define TDLS_PEER_SLEEP_STATE 0x00200000 /* peer sta is sleeping */ -#define TDLS_SW_OFF_STATE 0x00400000 /* terminate channel swithcing */ -#define TDLS_ALIVE_STATE 0x00010000 /* Check if peer sta is alived. */ - -#define TPK_RESEND_COUNT 301 -#define CH_SWITCH_TIME 10 -#define CH_SWITCH_TIMEOUT 30 -#define TDLS_STAY_TIME 500 -#define TDLS_SIGNAL_THRESH 0x20 -#define TDLS_WATCHDOG_PERIOD 10 /* Periodically sending tdls discovery request in TDLS_WATCHDOG_PERIOD * 2 sec */ -#define TDLS_ALIVE_TIMER_PH1 5000 -#define TDLS_ALIVE_TIMER_PH2 2000 -#define TDLS_STAY_TIME 500 -#define TDLS_HANDSHAKE_TIME 2000 -#define TDLS_ALIVE_COUNT 3 -#define TDLS_INI_MACID_ENTRY 6 - -/* TDLS */ -#define TDLS_MIC_LEN 16 -#define WPA_NONCE_LEN 32 -#define TDLS_TIMEOUT_LEN 4 - -struct wpa_tdls_ftie { - u8 ie_type; /* FTIE */ - u8 ie_len; - u8 mic_ctrl[2]; - u8 mic[TDLS_MIC_LEN]; - u8 Anonce[WPA_NONCE_LEN]; /* Responder Nonce in TDLS */ - u8 Snonce[WPA_NONCE_LEN]; /* Initiator Nonce in TDLS */ - /* followed by optional elements */ -}; - -struct wpa_tdls_lnkid { - u8 ie_type; /* Link Identifier IE */ - u8 ie_len; - u8 bssid[ETH_ALEN]; - u8 init_sta[ETH_ALEN]; - u8 resp_sta[ETH_ALEN]; -}; - -static u8 TDLS_RSNIE[] = { - 0x01, 0x00, /* version shall be set to 1 */ - 0x00, 0x0f, 0xac, 0x07, /* group sipher suite */ - 0x01, 0x00, /* pairwise cipher suite count */ - 0x00, 0x0f, 0xac, 0x04, /* pairwise cipher suite list; CCMP only */ - 0x01, 0x00, /* AKM suite count */ - 0x00, 0x0f, 0xac, 0x07, /* TPK Handshake */ - 0x00, 0x02, - /* PMKID shall not be present */ -}; - -static u8 TDLS_WMMIE[]={0x00, 0x50, 0xf2, 0x02, 0x00, 0x01, 0x00}; /* Qos info all set zero */ - -static u8 TDLS_EXT_CAPIE[] = {0x00, 0x00, 0x00, 0x50, 0x20}; /* bit(28), bit(30), bit(37) */ - -/* SRC: Supported Regulatory Classes */ -static u8 TDLS_SRC[] = { 0x01, 0x01, 0x02, 0x03, 0x04, 0x0c, 0x16, 0x17, 0x18, 0x19, 0x1b, 0x1c, 0x1d, 0x1e, 0x20, 0x21 }; - -void rtw_reset_tdls_info(_adapter* padapter); -int rtw_init_tdls_info(_adapter* padapter); -void rtw_free_tdls_info(struct tdls_info *ptdlsinfo); -void issue_nulldata_to_TDLS_peer_STA(_adapter *padapter, struct sta_info *ptdls_sta, unsigned int power_mode); -void init_TPK_timer(_adapter *padapter, struct sta_info *psta); -void init_ch_switch_timer(_adapter *padapter, struct sta_info *psta); -void init_base_ch_timer(_adapter *padapter, struct sta_info *psta); -void init_off_ch_timer(_adapter *padapter, struct sta_info *psta); -void init_tdls_alive_timer(_adapter *padapter, struct sta_info *psta); -void init_handshake_timer(_adapter *padapter, struct sta_info *psta); -void free_tdls_sta(_adapter *padapter, struct sta_info *ptdls_sta); -#ifdef CONFIG_WFD -void issue_tunneled_probe_req(_adapter *padapter); -void issue_tunneled_probe_rsp(_adapter *padapter, struct recv_frame_hdr *precv_frame); -#endif /* CONFIG_WFD */ -void issue_tdls_dis_req(_adapter *padapter, u8 *mac_addr); -void issue_tdls_setup_req(_adapter *padapter, u8 *mac_addr); -void issue_tdls_setup_rsp(_adapter *padapter, struct recv_frame_hdr *precv_frame); -void issue_tdls_setup_cfm(_adapter *padapter, struct recv_frame_hdr *precv_frame); -void issue_tdls_dis_rsp(_adapter * padapter, struct recv_frame_hdr * precv_frame, u8 dialog); -void issue_tdls_teardown(_adapter *padapter, u8 *mac_addr); -void issue_tdls_peer_traffic_indication(_adapter *padapter, struct sta_info *psta); -void issue_tdls_ch_switch_req(_adapter *padapter, u8 *mac_addr); -void issue_tdls_ch_switch_rsp(_adapter *padapter, u8 *mac_addr); -int On_TDLS_Dis_Rsp(_adapter *adapter, struct recv_frame_hdr *precv_frame); -int On_TDLS_Setup_Req(_adapter *adapter, struct recv_frame_hdr *precv_frame); -int On_TDLS_Setup_Rsp(_adapter *adapter, struct recv_frame_hdr *precv_frame); -int On_TDLS_Setup_Cfm(_adapter *adapter, struct recv_frame_hdr *precv_frame); -int On_TDLS_Dis_Req(_adapter *adapter, struct recv_frame_hdr *precv_frame); -int On_TDLS_Teardown(_adapter *adapter, struct recv_frame_hdr *precv_frame); -int On_TDLS_Peer_Traffic_Rsp(_adapter *adapter, struct recv_frame_hdr *precv_frame); -int On_TDLS_Ch_Switch_Req(_adapter *adapter, struct recv_frame_hdr *precv_frame); -int On_TDLS_Ch_Switch_Rsp(_adapter *adapter, struct recv_frame_hdr *precv_frame); -void rtw_build_tdls_setup_req_ies(_adapter * padapter, struct xmit_frame * pxmitframe, u8 *pframe); -void rtw_build_tdls_setup_rsp_ies(_adapter * padapter, struct xmit_frame * pxmitframe, u8 *pframe); -void rtw_build_tdls_setup_cfm_ies(_adapter * padapter, struct xmit_frame * pxmitframe, u8 *pframe); -void rtw_build_tdls_teardown_ies(_adapter * padapter, struct xmit_frame * pxmitframe, u8 *pframe); -void rtw_build_tdls_dis_req_ies(_adapter * padapter, struct xmit_frame * pxmitframe, u8 *pframe); -void rtw_build_tdls_dis_rsp_ies(_adapter * padapter, struct xmit_frame * pxmitframe, u8 *pframe, u8 dialog); -void rtw_build_tdls_peer_traffic_indication_ies(_adapter * padapter, struct xmit_frame * pxmitframe, u8 *pframe); -void rtw_build_tdls_ch_switch_req_ies(_adapter * padapter, struct xmit_frame * pxmitframe, u8 *pframe); -void rtw_build_tdls_ch_switch_rsp_ies(_adapter * padapter, struct xmit_frame * pxmitframe, u8 *pframe); -void rtw_build_tunneled_probe_req_ies(_adapter * padapter, struct xmit_frame * pxmitframe, u8 *pframe); -void rtw_build_tunneled_probe_rsp_ies(_adapter * padapter, struct xmit_frame * pxmitframe, u8 *pframe); - -int update_sgi_tdls(_adapter *padapter, struct sta_info *psta); -u32 update_mask_tdls(_adapter *padapter, struct sta_info *psta); -#endif /* CONFIG_TDLS */ s32 rtw_dump_xframe(struct rtw_adapter *padapter, struct xmit_frame *pxmitframe); #endif diff --git a/include/rtw_xmit.h b/include/rtw_xmit.h index c3c499ca..21e32dc5 100644 --- a/include/rtw_xmit.h +++ b/include/rtw_xmit.h @@ -414,9 +414,6 @@ int rtw_xmit_thread(void *context); u32 rtw_calculate_wlan_pkt_size_by_attribue(struct pkt_attrib *pattrib); #define rtw_wlan_pkt_size(f) rtw_calculate_wlan_pkt_size_by_attribue(&f->attrib) s32 rtw_xmitframe_coalesce(struct rtw_adapter *padapter, struct sk_buff *pkt, struct xmit_frame *pxmitframe); -#ifdef CONFIG_TDLS -s32 rtw_xmit_tdls_coalesce(struct rtw_adapter *padapter, struct xmit_frame *pxmitframe, u8 action); -#endif /* CONFIG_TDLS */ s32 _rtw_init_hw_txqueue(struct hw_txqueue* phw_txqueue, u8 ac_tag); void _rtw_init_sta_xmit_priv(struct sta_xmit_priv *psta_xmitpriv); @@ -432,7 +429,7 @@ void rtw_free_hwxmits(struct rtw_adapter *padapter); s32 rtw_xmit(struct rtw_adapter *padapter, struct sk_buff **pkt); -#if defined(CONFIG_92D_AP_MODE) || defined(CONFIG_TDLS) +#if defined(CONFIG_92D_AP_MODE) int xmitframe_enqueue_for_sleeping_sta(struct rtw_adapter *padapter, struct xmit_frame *pxmitframe); void stop_sta_xmit(struct rtw_adapter *padapter, struct sta_info *psta); void wakeup_sta_to_xmit(struct rtw_adapter *padapter, struct sta_info *psta); diff --git a/include/sta_info.h b/include/sta_info.h index b130fc9f..ad6d3a32 100644 --- a/include/sta_info.h +++ b/include/sta_info.h @@ -81,13 +81,6 @@ struct stainfo_stats { }; -#ifdef CONFIG_TDLS -struct TDLS_PeerKey { - u8 kck[16]; /* TPK-KCK */ - u8 tk[16]; /* TPK-TK; only CCMP will be used */ -} ; -#endif /* CONFIG_TDLS */ - struct sta_info { spinlock_t lock; struct list_head list; /* free_sta_queue */ @@ -126,32 +119,6 @@ struct sta_info { u32 ra_mask; struct stainfo_stats sta_stats; -#ifdef CONFIG_TDLS - u32 tdls_sta_state; - u8 dialog; - u8 SNonce[32]; - u8 ANonce[32]; - u32 TDLS_PeerKey_Lifetime; - u16 TPK_count; - struct timer_list TPK_timer; - struct TDLS_PeerKey tpk; - struct rtw_adapter *padapter; - u16 stat_code; - u8 off_ch; - u16 ch_switch_time; - u16 ch_switch_timeout; - u8 option; - struct timer_list option_timer; - struct timer_list base_ch_timer; - struct timer_list off_ch_timer; - - struct timer_list handshake_timer; - struct timer_list alive_timer1; - struct timer_list alive_timer2; - u8 timer_flag; - u8 alive_count; -#endif /* CONFIG_TDLS */ - /* for A-MPDU TX, ADDBA timeout check */ struct timer_list addba_retry_timer; @@ -175,8 +142,6 @@ struct sta_info { /* curr_network(mlme_priv/security_priv/qos/ht) : AP CAP/INFO */ /* sta_info: (AP & STA) CAP/INFO */ -#ifdef CONFIG_92D_AP_MODE - struct list_head asoc_list; struct list_head auth_list; @@ -220,32 +185,12 @@ struct sta_info { u8 has_legacy_ac; unsigned int sleepq_ac_len; -#ifdef CONFIG_P2P - /* p2p priv data */ - u8 is_p2p_device; - u8 p2p_status_code; - - /* p2p client info */ - u8 dev_addr[ETH_ALEN]; - u8 dev_cap; - u16 config_methods; - u8 primary_dev_type[8]; - u8 num_of_secdev_type; - u8 secdev_types_list[32];/* 32/8 == 4; */ - u16 dev_name_len; - u8 dev_name[32]; -#endif /* CONFIG_P2P */ - u8 under_exist_checking; u8 keep_alive_trycnt; -#endif /* CONFIG_92D_AP_MODE */ - -#ifdef CONFIG_IOCTL_CFG80211 u8 *passoc_req; u32 assoc_req_len; -#endif /* for DM */ struct rssi_sta rssi_stat; diff --git a/include/wifi.h b/include/wifi.h index a7d18a46..8982140d 100644 --- a/include/wifi.h +++ b/include/wifi.h @@ -677,59 +677,65 @@ struct rtw_ieee80211_ht_cap { */ struct ieee80211_ht_addt_info { unsigned char control_chan; - unsigned char ht_param; + unsigned char ht_param; unsigned short operation_mode; unsigned short stbc_param; - unsigned char basic_set[16]; + unsigned char basic_set[16]; } __attribute__ ((packed)); -struct HT_caps_element -{ - union - { - struct - { +struct HT_caps_element { + union { + struct { __le16 HT_caps_info; unsigned char AMPDU_para; unsigned char MCS_rate[16]; - unsigned short HT_ext_caps; - unsigned int Beamforming_caps; + __le16 HT_ext_caps; + __le32 Beamforming_caps; unsigned char ASEL_caps; } HT_cap_element; unsigned char HT_cap[26]; }u; } __attribute__ ((packed)); -struct HT_info_element -{ +struct HT_info_element { unsigned char primary_channel; unsigned char infos[5]; unsigned char MCS_rate[16]; } __attribute__ ((packed)); -struct AC_param -{ - unsigned char ACI_AIFSN; - unsigned char CW; - unsigned short TXOP_limit; +struct AC_param { + unsigned char ACI_AIFSN; + unsigned char CW; + __le16 TXOP_limit; } __attribute__ ((packed)); -struct WMM_para_element -{ +struct WMM_para_element { unsigned char QoS_info; unsigned char reserved; struct AC_param ac_param[4]; } __attribute__ ((packed)); -struct ADDBA_request -{ +struct ADDBA_request { unsigned char dialog_token; - unsigned short BA_para_set; - unsigned short BA_timeout_value; - unsigned short BA_starting_seqctrl; + __le16 BA_para_set; + __le16 BA_timeout_value; + __le16 BA_starting_seqctrl; } __attribute__ ((packed)); + /** + * struct cfg80211_mgmt_tx_params - mgmt tx parameters + * + * This structure provides information needed to transmit a mgmt frame + * + * @chan: channel to use + * @offchan: indicates wether off channel operation is required + * @wait: duration for ROC + * @buf: buffer to transmit + * @len: buffer length + * @no_cck: don't use cck rates for this frame + * @dont_wait_for_ack: tells the low level not to wait for an ack + */ /* 802.11n HT capabilities masks */ #define IEEE80211_HT_CAP_SUP_WIDTH 0x0002 @@ -1084,25 +1090,6 @@ enum P2P_PROTO_WK_ID P2P_RO_CH_WK = 6, }; -#ifdef CONFIG_P2P_PS -enum P2P_PS_STATE -{ - P2P_PS_DISABLE = 0, - P2P_PS_ENABLE = 1, - P2P_PS_SCAN = 2, - P2P_PS_SCAN_DONE = 3, - P2P_PS_ALLSTASLEEP = 4, /* for P2P GO */ -}; - -enum P2P_PS_MODE -{ - P2P_PS_NONE = 0, - P2P_PS_CTWINDOW = 1, - P2P_PS_NOA = 2, - P2P_PS_MIX = 3, /* CTWindow and NoA */ -}; -#endif /* CONFIG_P2P_PS */ - /* =====================WFD Section===================== */ /* For Wi-Fi Display */ #define WFD_ATTR_DEVICE_INFO 0x00 @@ -1127,9 +1114,6 @@ enum P2P_PS_MODE #define ICMPV6_MCAST_MAC(mac) ((mac[0]==0x33)&&(mac[1]==0x33)&&(mac[2]!=0xff)) extern unsigned char REALTEK_96B_IE[6]; extern unsigned char MCS_rate_2R[16]; -#ifdef CONFIG_DISABLE_MCS13TO15 -extern unsigned char MCS_rate_2R_MCS13TO15_OFF[16]; -#endif /* CONFIG_DISABLE_MCS13TO15 */ extern unsigned char MCS_rate_1R[16]; extern unsigned char RTW_WPA_OUI[]; extern unsigned char WPA_TKIP_CIPHER[4]; diff --git a/include/xmit_osdep.h b/include/xmit_osdep.h index c66c3fcf..2e230bf6 100644 --- a/include/xmit_osdep.h +++ b/include/xmit_osdep.h @@ -20,15 +20,6 @@ #include #include -struct pkt_file { - struct sk_buff *pkt; - __kernel_size_t pkt_len; /* the remainder length of the open_file */ - unsigned char *cur_buffer; - u8 *buf_start; - u8 *cur_addr; - __kernel_size_t buf_len; -}; - #define NR_XMITFRAME 256 struct xmit_priv; @@ -37,21 +28,16 @@ struct sta_xmit_priv; struct xmit_frame; struct xmit_buf; -extern int rtw_xmit_entry(struct sk_buff *pkt, struct net_device *pnetdev); +int rtw_xmit_entry(struct sk_buff *pkt, struct net_device *pnetdev); void rtw_os_xmit_schedule(struct rtw_adapter *padapter); int rtw_os_xmit_resource_alloc(struct rtw_adapter *padapter, struct xmit_buf *pxmitbuf,u32 alloc_sz); void rtw_os_xmit_resource_free(struct rtw_adapter *padapter, struct xmit_buf *pxmitbuf,u32 free_sz); -extern void rtw_set_tx_chksum_offload(struct sk_buff *pkt, struct pkt_attrib *pattrib); - -extern uint rtw_remainder_len(struct pkt_file *pfile); -extern void _rtw_open_pktfile(struct sk_buff *pkt, struct pkt_file *pfile); -extern uint _rtw_pktfile_read (struct pkt_file *pfile, u8 *rmem, uint rlen); -extern int rtw_endofpktfile (struct pkt_file *pfile); +void rtw_set_tx_chksum_offload(struct sk_buff *pkt, struct pkt_attrib *pattrib); -extern void rtw_os_pkt_complete(struct rtw_adapter *padapter, struct sk_buff *pkt); -extern void rtw_os_xmit_complete(struct rtw_adapter *padapter, struct xmit_frame *pxframe); +void rtw_os_pkt_complete(struct rtw_adapter *padapter, struct sk_buff *pkt); +void rtw_os_xmit_complete(struct rtw_adapter *padapter, struct xmit_frame *pxframe); #endif /* __XMIT_OSDEP_H_ */ diff --git a/os_dep/ioctl_cfg80211.c b/os_dep/ioctl_cfg80211.c index ae65aea1..a2bc7ed3 100644 --- a/os_dep/ioctl_cfg80211.c +++ b/os_dep/ioctl_cfg80211.c @@ -22,8 +22,6 @@ #include #include -#ifdef CONFIG_IOCTL_CFG80211 - #include "ioctl_cfg80211.h" #define RTW_MAX_MGMT_TX_CNT (8) @@ -128,35 +126,35 @@ static struct ieee80211_channel rtw_5ghz_a_channels[] = { CHAN5G(216, 0), }; -void rtw_2g_channels_init(struct ieee80211_channel *channels) +static void rtw_2g_channels_init(struct ieee80211_channel *channels) { memcpy((void*)channels, (void*)rtw_2ghz_channels, sizeof(struct ieee80211_channel)*RTW_2G_CHANNELS_NUM ); } -void rtw_5g_channels_init(struct ieee80211_channel *channels) +static void rtw_5g_channels_init(struct ieee80211_channel *channels) { memcpy((void*)channels, (void*)rtw_5ghz_a_channels, sizeof(struct ieee80211_channel)*RTW_5G_CHANNELS_NUM ); } -void rtw_2g_rates_init(struct ieee80211_rate *rates) +static void rtw_2g_rates_init(struct ieee80211_rate *rates) { memcpy(rates, rtw_g_rates, sizeof(struct ieee80211_rate)*RTW_G_RATES_NUM ); } -void rtw_5g_rates_init(struct ieee80211_rate *rates) +static void rtw_5g_rates_init(struct ieee80211_rate *rates) { memcpy(rates, rtw_a_rates, sizeof(struct ieee80211_rate)*RTW_A_RATES_NUM ); } -struct ieee80211_supported_band *rtw_spt_band_alloc( +static struct ieee80211_supported_band *rtw_spt_band_alloc( enum ieee80211_band band ) { @@ -210,7 +208,7 @@ struct ieee80211_supported_band *rtw_spt_band_alloc( return spt_band; } -void rtw_spt_band_free(struct ieee80211_supported_band *spt_band) +static void rtw_spt_band_free(struct ieee80211_supported_band *spt_band) { u32 size; @@ -236,7 +234,7 @@ void rtw_spt_band_free(struct ieee80211_supported_band *spt_band) kfree(spt_band); } -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) static const struct ieee80211_txrx_stypes rtw_cfg80211_default_mgmt_stypes[NUM_NL80211_IFTYPES] = { [NL80211_IFTYPE_ADHOC] = { @@ -316,15 +314,13 @@ static int rtw_cfg80211_inform_bss(struct rtw_adapter *padapter, struct wlan_net u16 channel; u32 freq; u64 notify_timestamp; - u16 notify_capability; - u16 notify_interval; u8 *notify_ie; size_t notify_ielen; s32 notify_signal; u8 buf[MAX_BSSINFO_LEN], *pbuf; size_t len,bssinf_len=0; struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; + __le16 *fctrl; u8 bc_addr[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; struct wireless_dev *wdev = padapter->rtw_wdev; @@ -347,9 +343,6 @@ static int rtw_cfg80211_inform_bss(struct rtw_adapter *padapter, struct wlan_net notify_timestamp = jiffies_to_msecs(jiffies)*1000; /* uSec */ - notify_interval = le16_to_cpu(*(u16*)rtw_get_beacon_interval_from_ie(pnetwork->network.IEs)); - notify_capability = le16_to_cpu(*(u16*)rtw_get_capability_from_ie(pnetwork->network.IEs)); - notify_ie = pnetwork->network.IEs+_FIXED_IE_LENGTH_; notify_ielen = pnetwork->network.IELength-_FIXED_IE_LENGTH_; @@ -385,8 +378,6 @@ static int rtw_cfg80211_inform_bss(struct rtw_adapter *padapter, struct wlan_net memcpy(pbuf, pnetwork->network.IEs, pnetwork->network.IELength); len += pnetwork->network.IELength; - /* ifdef CONFIG_P2P */ - bss = cfg80211_inform_bss_frame(wiphy, notify_channel, (struct ieee80211_mgmt *)buf, len, notify_signal, GFP_ATOMIC); if (unlikely(!bss)) { @@ -395,7 +386,6 @@ static int rtw_cfg80211_inform_bss(struct rtw_adapter *padapter, struct wlan_net } #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,38)) -#ifndef COMPAT_KERNEL_RELEASE /* patch for cfg80211, update beacon ies to information_elements */ if (pnetwork->network.Reserved[0] == 1) { /* WIFI_BEACON */ @@ -405,7 +395,6 @@ static int rtw_cfg80211_inform_bss(struct rtw_adapter *padapter, struct wlan_net bss->len_information_elements = bss->len_beacon_ies; } } -#endif /* COMPAT_KERNEL_RELEASE */ #endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2,6,38) */ #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 9, 0)) @@ -423,14 +412,11 @@ void rtw_cfg80211_indicate_connect(struct rtw_adapter *padapter) struct mlme_priv *pmlmepriv = &padapter->mlmepriv; struct wlan_network *cur_network = &(pmlmepriv->cur_network); struct wireless_dev *pwdev = padapter->rtw_wdev; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo= &(padapter->wdinfo); -#endif DBG_8192D("%s(padapter=%p)\n", __func__, padapter); if (pwdev->iftype != NL80211_IFTYPE_STATION - #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE) + #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) && pwdev->iftype != NL80211_IFTYPE_P2P_CLIENT #endif ) { @@ -440,19 +426,9 @@ void rtw_cfg80211_indicate_connect(struct rtw_adapter *padapter) if (check_fwstate(pmlmepriv, WIFI_AP_STATE) == true) return; -#ifdef CONFIG_P2P - if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - rtw_p2p_set_pre_state(pwdinfo, rtw_p2p_state(pwdinfo)); - rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT); - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_OK); - DBG_8192D("%s, role=%d, p2p_state=%d, pre_p2p_state=%d\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo), rtw_p2p_pre_state(pwdinfo)); - } -#endif /* CONFIG_P2P */ - #ifdef CONFIG_LAYER2_ROAMING if (rtw_to_roaming(padapter) > 0) { - #if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 39) || defined(COMPAT_KERNEL_RELEASE) + #if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 39) struct wiphy *wiphy = pwdev->wiphy; struct ieee80211_channel *notify_channel; u32 freq; @@ -468,7 +444,7 @@ void rtw_cfg80211_indicate_connect(struct rtw_adapter *padapter) DBG_8192D("%s call cfg80211_roamed\n", __func__); cfg80211_roamed(padapter->pnetdev - #if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 39) || defined(COMPAT_KERNEL_RELEASE) + #if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 39) , notify_channel #endif , cur_network->network.MacAddress @@ -494,14 +470,11 @@ void rtw_cfg80211_indicate_disconnect(struct rtw_adapter *padapter) { struct mlme_priv *pmlmepriv = &padapter->mlmepriv; struct wireless_dev *pwdev = padapter->rtw_wdev; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo= &(padapter->wdinfo); -#endif DBG_8192D("%s(padapter=%p)\n", __func__, padapter); if (pwdev->iftype != NL80211_IFTYPE_STATION - #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE) + #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) && pwdev->iftype != NL80211_IFTYPE_P2P_CLIENT #endif ) { @@ -511,20 +484,6 @@ void rtw_cfg80211_indicate_disconnect(struct rtw_adapter *padapter) if (check_fwstate(pmlmepriv, WIFI_AP_STATE) == true) return; -#ifdef CONFIG_P2P - 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); - - rtw_p2p_set_state(pwdinfo, rtw_p2p_pre_state(pwdinfo)); - rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE); - - DBG_8192D("%s, role=%d, p2p_state=%d, pre_p2p_state=%d\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo), rtw_p2p_pre_state(pwdinfo)); - } -#endif /* CONFIG_P2P */ - if (!padapter->mlmepriv.not_indic_disco) { if (check_fwstate(&padapter->mlmepriv, WIFI_UNDER_LINKING)) { cfg80211_connect_result(padapter->pnetdev, NULL, NULL, @@ -945,9 +904,6 @@ static int rtw_cfg80211_set_encryption(struct net_device *dev, struct ieee_param struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); struct mlme_priv *pmlmepriv = &padapter->mlmepriv; struct security_priv *psecuritypriv = &padapter->securitypriv; -#ifdef CONFIG_P2P - struct wifidirect_info* pwdinfo = &padapter->wdinfo; -#endif /* CONFIG_P2P */ DBG_8192D("%s\n", __func__); @@ -1069,13 +1025,6 @@ static int rtw_cfg80211_set_encryption(struct net_device *dev, struct ieee_param padapter->securitypriv.dot118021XGrpKeyid = param->u.crypt.idx; rtw_set_key(padapter,&padapter->securitypriv,param->u.crypt.idx, 1); -#ifdef CONFIG_P2P - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_PROVISIONING_ING)) - { - rtw_p2p_set_state(pwdinfo, P2P_STATE_PROVISIONING_DONE); - } -#endif /* CONFIG_P2P */ - } } @@ -1109,7 +1058,7 @@ static int rtw_cfg80211_set_encryption(struct net_device *dev, struct ieee_param } static int cfg80211_rtw_add_key(struct wiphy *wiphy, struct net_device *ndev, -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) u8 key_index, bool pairwise, const u8 *mac_addr, #else /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) */ u8 key_index, const u8 *mac_addr, @@ -1129,7 +1078,7 @@ static int cfg80211_rtw_add_key(struct wiphy *wiphy, struct net_device *ndev, DBG_8192D("key_len=0x%x\n", params->key_len); DBG_8192D("seq_len=0x%x\n", params->seq_len); DBG_8192D("key_index=%d\n", key_index); -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) DBG_8192D("pairwise=%d\n", pairwise); #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) */ @@ -1208,7 +1157,7 @@ static int cfg80211_rtw_add_key(struct wiphy *wiphy, struct net_device *ndev, } static int cfg80211_rtw_get_key(struct wiphy *wiphy, struct net_device *ndev, -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) u8 key_index, bool pairwise, const u8 *mac_addr, #else /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) */ u8 key_index, const u8 *mac_addr, @@ -1222,7 +1171,7 @@ static int cfg80211_rtw_get_key(struct wiphy *wiphy, struct net_device *ndev, } static int cfg80211_rtw_del_key(struct wiphy *wiphy, struct net_device *ndev, -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) u8 key_index, bool pairwise, const u8 *mac_addr) #else /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) */ u8 key_index, const u8 *mac_addr) @@ -1244,7 +1193,7 @@ static int cfg80211_rtw_del_key(struct wiphy *wiphy, struct net_device *ndev, static int cfg80211_rtw_set_default_key(struct wiphy *wiphy, struct net_device *ndev, u8 key_index - #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)) || defined(COMPAT_KERNEL_RELEASE) + #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)) , bool unicast, bool multicast #endif ) @@ -1252,16 +1201,13 @@ static int cfg80211_rtw_set_default_key(struct wiphy *wiphy, struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(ndev); struct security_priv *psecuritypriv = &padapter->securitypriv; - DBG_8192D(FUNC_NDEV_FMT" key_index=%d" - #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)) || defined(COMPAT_KERNEL_RELEASE) - ", unicast=%d, multicast=%d" - #endif - ".\n", FUNC_NDEV_ARG(ndev), key_index - #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)) || defined(COMPAT_KERNEL_RELEASE) - , unicast, multicast - #endif - ); - +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)) + DBG_8192D(FUNC_NDEV_FMT" key_index=%d, unicast=%d, multicast=%d\n", + FUNC_NDEV_ARG(ndev), key_index, unicast, multicast); +#else + DBG_8192D(FUNC_NDEV_FMT" key_index=%d\n", FUNC_NDEV_ARG(ndev), + key_index); +#endif if ((key_index < WEP_KEYS) && ((psecuritypriv->dot11PrivacyAlgrthm == _WEP40_) || (psecuritypriv->dot11PrivacyAlgrthm == _WEP104_))) /* set wep default key */ { psecuritypriv->ndisencryptstatus = NDIS802_11ENCRYPTION1ENABLED; @@ -1330,16 +1276,23 @@ static int cfg80211_rtw_get_station(struct wiphy *wiphy, goto exit; } +#if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0)) sinfo->filled |= STATION_INFO_SIGNAL; + sinfo->filled |= STATION_INFO_TX_BITRATE; + sinfo->filled |= STATION_INFO_RX_PACKETS; + sinfo->filled |= STATION_INFO_TX_PACKETS; +#else + sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL); + sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE); + sinfo->filled |= BIT(NL80211_STA_INFO_RX_PACKETS); + sinfo->filled |= BIT(NL80211_STA_INFO_TX_PACKETS); +#endif sinfo->signal = translate_percentage_to_dbm(padapter->recvpriv.signal_strength); - sinfo->filled |= STATION_INFO_TX_BITRATE; sinfo->txrate.legacy = rtw_get_cur_max_rate(padapter); - sinfo->filled |= STATION_INFO_RX_PACKETS; sinfo->rx_packets = sta_rx_data_pkts(psta); - sinfo->filled |= STATION_INFO_TX_PACKETS; sinfo->tx_packets = psta->sta_stats.tx_pkts; } @@ -1375,9 +1328,6 @@ static int cfg80211_rtw_change_iface(struct wiphy *wiphy, struct wireless_dev *rtw_wdev = wiphy_to_wdev(wiphy); struct mlme_priv *pmlmepriv = &padapter->mlmepriv; struct __queue *queue = &pmlmepriv->scanned_queue; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo= &(padapter->wdinfo); -#endif int ret = 0; u8 change = false; @@ -1420,38 +1370,11 @@ static int cfg80211_rtw_change_iface(struct wiphy *wiphy, case NL80211_IFTYPE_ADHOC: networkType = NDIS802_11IBSS; break; -#if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE)) - case NL80211_IFTYPE_P2P_CLIENT: -#endif case NL80211_IFTYPE_STATION: networkType = NDIS802_11INFRA; - #ifdef CONFIG_P2P - if (change && rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) - { - _cancel_timer_ex(&pwdinfo->find_phase_timer); - _cancel_timer_ex(&pwdinfo->restore_p2p_state_timer); - _cancel_timer_ex(&pwdinfo->pre_tx_scan_timer); - - /* it means remove GO and change mode from AP(GO) to station(P2P DEVICE) */ - rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE); - rtw_p2p_set_state(pwdinfo, rtw_p2p_pre_state(pwdinfo)); - - DBG_8192D("%s, role=%d, p2p_state=%d, pre_p2p_state=%d\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo), rtw_p2p_pre_state(pwdinfo)); - } - #endif /* CONFIG_P2P */ break; -#if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE)) - case NL80211_IFTYPE_P2P_GO: -#endif case NL80211_IFTYPE_AP: networkType = Ndis802_11APMode; - #ifdef CONFIG_P2P - if (change && !rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - /* it means P2P Group created, we will be GO and change mode from P2P DEVICE to AP(GO) */ - rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO); - } - #endif /* CONFIG_P2P */ break; default: return -EOPNOTSUPP; @@ -1519,9 +1442,6 @@ void rtw_cfg80211_surveydone_event_callback(struct rtw_adapter *padapter) u32 cnt=0; u32 wait_for_surveydone; int wait_status; -#ifdef CONFIG_P2P - struct wifidirect_info* pwdinfo = &padapter->wdinfo; -#endif /* CONFIG_P2P */ struct rtw_wdev_priv *pwdev_priv = wdev_to_priv(padapter->rtw_wdev); struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv; @@ -1602,60 +1522,7 @@ static int rtw_cfg80211_set_probe_req_wpsp2pie(struct rtw_adapter *padapter, cha memcpy(pmlmepriv->wps_probe_req_ie, wps_ie, wps_ielen); pmlmepriv->wps_probe_req_ie_len = wps_ielen; } - - #ifdef CONFIG_P2P - if ((p2p_ie=rtw_get_p2p_ie(buf, len, NULL, &p2p_ielen))) - { - #ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("probe_req_p2p_ielen=%d\n", p2p_ielen); - #endif - - if (pmlmepriv->p2p_probe_req_ie) - { - u32 free_len = pmlmepriv->p2p_probe_req_ie_len; - pmlmepriv->p2p_probe_req_ie_len = 0; - kfree(pmlmepriv->p2p_probe_req_ie); - pmlmepriv->p2p_probe_req_ie = NULL; - } - - pmlmepriv->p2p_probe_req_ie = kmalloc(p2p_ielen, GFP_KERNEL); - if (pmlmepriv->p2p_probe_req_ie == NULL) { - DBG_8192D("%s()-%d: kmalloc() ERROR!\n", __func__, __LINE__); - return -ENOMEM; - - } - memcpy(pmlmepriv->p2p_probe_req_ie, p2p_ie, p2p_ielen); - pmlmepriv->p2p_probe_req_ie_len = p2p_ielen; - } - #endif /* CONFIG_P2P */ - - #ifdef CONFIG_WFD - if (rtw_get_wfd_ie(buf, len, NULL, &wfd_ielen)) - { - #ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("probe_req_wfd_ielen=%d\n", wfd_ielen); - #endif - - if (pmlmepriv->wfd_probe_req_ie) - { - u32 free_len = pmlmepriv->wfd_probe_req_ie_len; - pmlmepriv->wfd_probe_req_ie_len = 0; - kfree(pmlmepriv->wfd_probe_req_ie); - pmlmepriv->wfd_probe_req_ie = NULL; - } - - pmlmepriv->wfd_probe_req_ie = kmalloc(wfd_ielen, GFP_KERNEL); - if (pmlmepriv->wfd_probe_req_ie == NULL) { - DBG_8192D("%s()-%d: kmalloc() ERROR!\n", __func__, __LINE__); - return -EINVAL; - - } - rtw_get_wfd_ie(buf, len, pmlmepriv->wfd_probe_req_ie, &pmlmepriv->wfd_probe_req_ie_len); - } - #endif /* CONFIG_WFD */ - } - return ret; } @@ -1676,9 +1543,6 @@ static int cfg80211_rtw_scan(struct wiphy *wiphy uint wps_ielen=0; u8 *p2p_ie=NULL; uint p2p_ielen=0; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo= &(padapter->wdinfo); -#endif /* CONFIG_P2P */ struct rtw_wdev_priv *pwdev_priv = wdev_to_priv(padapter->rtw_wdev); struct cfg80211_ssid *ssids = request->ssids; int social_channel = 0, j = 0; @@ -1717,43 +1581,10 @@ static int cfg80211_rtw_scan(struct wiphy *wiphy goto check_need_indicate_scan_done; } - #ifdef CONFIG_P2P - if (ssids->ssid != NULL && !memcmp(ssids->ssid, "DIRECT-", 7) - && rtw_get_p2p_ie((u8 *)request->ie, request->ie_len, NULL, NULL) - ) - { - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - rtw_p2p_enable(padapter, P2P_ROLE_DEVICE); - wdev_to_priv(padapter->rtw_wdev)->p2p_enabled = true; - } - else - { - rtw_p2p_set_pre_state(pwdinfo, rtw_p2p_state(pwdinfo)); - #ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("%s, role=%d, p2p_state=%d\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo)); - #endif - } - rtw_p2p_set_state(pwdinfo, P2P_STATE_LISTEN); - - if (request->n_channels == 3 && - request->channels[0]->hw_value == 1 && - request->channels[1]->hw_value == 6 && - request->channels[2]->hw_value == 11 - ) - { - social_channel = 1; - } - } - #endif /* CONFIG_P2P */ - if (request->ie && request->ie_len>0) - { rtw_cfg80211_set_probe_req_wpsp2pie(padapter, (u8 *)request->ie, request->ie_len); - } - if (pmlmepriv->LinkDetectInfo.bBusyTraffic == true) - { + if (pmlmepriv->LinkDetectInfo.bBusyTraffic) { DBG_8192D("%s, bBusyTraffic == true\n", __func__); need_indicate_scan_done = true; goto check_need_indicate_scan_done; @@ -1797,19 +1628,6 @@ static int cfg80211_rtw_scan(struct wiphy *wiphy } #endif -#ifdef CONFIG_P2P - if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE) && !rtw_p2p_chk_state(pwdinfo, P2P_STATE_IDLE)) - { - rtw_p2p_set_state(pwdinfo, P2P_STATE_FIND_PHASE_SEARCH); - rtw_free_network_queue(padapter, true); - - if (social_channel == 0) - rtw_p2p_findphase_ex_set(pwdinfo, P2P_FINDPHASE_EX_NONE); - else - rtw_p2p_findphase_ex_set(pwdinfo, P2P_FINDPHASE_EX_SOCIAL_LAST); - } -#endif /* CONFIG_P2P */ - memset(ssid, 0, sizeof(struct ndis_802_11_ssid)*RTW_SSID_SCAN_AMOUNT); /* parsing request ssids, n_ssids */ for (i = 0; i < request->n_ssids && i < RTW_SSID_SCAN_AMOUNT; i++) { @@ -2120,67 +1938,6 @@ static int rtw_cfg80211_set_wpa_ie(struct rtw_adapter *padapter, u8 *pie, size_t } } - #ifdef CONFIG_P2P - {/* check p2p_ie for assoc req; */ - uint p2p_ielen=0; - u8 *p2p_ie; - struct mlme_priv *pmlmepriv = &(padapter->mlmepriv); - - if ((p2p_ie=rtw_get_p2p_ie(buf, ielen, NULL, &p2p_ielen))) - { - #ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("%s p2p_assoc_req_ielen=%d\n", __func__, p2p_ielen); - #endif - - if (pmlmepriv->p2p_assoc_req_ie) - { - u32 free_len = pmlmepriv->p2p_assoc_req_ie_len; - pmlmepriv->p2p_assoc_req_ie_len = 0; - kfree(pmlmepriv->p2p_assoc_req_ie); - pmlmepriv->p2p_assoc_req_ie = NULL; - } - - pmlmepriv->p2p_assoc_req_ie = kmalloc(p2p_ielen, GFP_KERNEL); - if (pmlmepriv->p2p_assoc_req_ie == NULL) { - DBG_8192D("%s()-%d: kmalloc() ERROR!\n", __func__, __LINE__); - goto exit; - } - memcpy(pmlmepriv->p2p_assoc_req_ie, p2p_ie, p2p_ielen); - pmlmepriv->p2p_assoc_req_ie_len = p2p_ielen; - } - } - #endif /* CONFIG_P2P */ - - #ifdef CONFIG_WFD - {/* check wfd_ie for assoc req; */ - uint wfd_ielen=0; - u8 *wfd_ie; - struct mlme_priv *pmlmepriv = &(padapter->mlmepriv); - - if (rtw_get_wfd_ie(buf, ielen, NULL, &wfd_ielen)) - { - #ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("%s wfd_assoc_req_ielen=%d\n", __func__, wfd_ielen); - #endif - - if (pmlmepriv->wfd_assoc_req_ie) - { - u32 free_len = pmlmepriv->wfd_assoc_req_ie_len; - pmlmepriv->wfd_assoc_req_ie_len = 0; - kfree(pmlmepriv->wfd_assoc_req_ie); - pmlmepriv->wfd_assoc_req_ie = NULL; - } - - pmlmepriv->wfd_assoc_req_ie = kmalloc(wfd_ielen, GFP_KERNEL); - if (pmlmepriv->wfd_assoc_req_ie == NULL) { - DBG_8192D("%s()-%d: kmalloc() ERROR!\n", __func__, __LINE__); - goto exit; - } - rtw_get_wfd_ie(buf, ielen, pmlmepriv->wfd_assoc_req_ie, &pmlmepriv->wfd_assoc_req_ie_len); - } - } - #endif /* CONFIG_WFD */ - /* TKIP and AES disallow multicast packets until installing group key */ if (padapter->securitypriv.dot11PrivacyAlgrthm == _TKIP_ || padapter->securitypriv.dot11PrivacyAlgrthm == _TKIP_WTMIC_ @@ -2499,7 +2256,7 @@ static int cfg80211_rtw_set_txpower(struct wiphy *wiphy, #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)) struct wireless_dev *wdev, #endif -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)) || defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)) enum nl80211_tx_power_setting type, int mbm) #else enum tx_power_setting type, int dbm) @@ -2650,13 +2407,11 @@ void rtw_cfg80211_indicate_sta_assoc(struct rtw_adapter *padapter, u8 *pmgmt_fra struct wireless_dev *pwdev = padapter->rtw_wdev; struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); struct net_device *ndev = padapter->pnetdev; -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0)) u32 flags = 0; -#endif DBG_8192D("%s(padapter=%p,%s)\n", __func__, padapter, ndev->name); -#if defined(RTW_USE_CFG80211_STA_EVENT) || defined(COMPAT_KERNEL_RELEASE) +#if defined(RTW_USE_CFG80211_STA_EVENT) { struct station_info sinfo; u8 ie_offset; @@ -2678,13 +2433,7 @@ void rtw_cfg80211_indicate_sta_assoc(struct rtw_adapter *padapter, u8 *pmgmt_fra else freq = rtw_ieee80211_channel_to_frequency(channel, IEEE80211_BAND_5GHZ); -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0)) - cfg80211_rx_mgmt(padapter->rtw_wdev, freq, 0, pmgmt_frame, frame_len, flags, GFP_ATOMIC); -#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)) - cfg80211_rx_mgmt(padapter->rtw_wdev, freq, 0, pmgmt_frame, frame_len, GFP_ATOMIC); -#else - cfg80211_rx_mgmt(ndev, freq, 0, pmgmt_frame, frame_len, GFP_ATOMIC); -#endif + rtw_cfg80211_rx_mgmt(padapter, freq, 0, pmgmt_frame, frame_len, flags); #endif /* defined(RTW_USE_CFG80211_STA_EVENT) */ } @@ -2695,18 +2444,16 @@ void rtw_cfg80211_indicate_sta_disassoc(struct rtw_adapter *padapter, unsigned c u8 *pmgmt_frame; uint frame_len; struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; + __le16 *fctrl; u8 mgmt_buf[128] = {0}; struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); struct net_device *ndev = padapter->pnetdev; -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0)) u32 flags = 0; -#endif DBG_8192D("%s(padapter=%p,%s)\n", __func__, padapter, ndev->name); -#if defined(RTW_USE_CFG80211_STA_EVENT) || defined(COMPAT_KERNEL_RELEASE) +#if defined(RTW_USE_CFG80211_STA_EVENT) cfg80211_del_sta(ndev, da, GFP_ATOMIC); #else /* defined(RTW_USE_CFG80211_STA_EVENT) */ channel = pmlmeext->cur_channel; @@ -2732,16 +2479,10 @@ void rtw_cfg80211_indicate_sta_disassoc(struct rtw_adapter *padapter, unsigned c pmgmt_frame += sizeof(struct rtw_ieee80211_hdr_3addr); frame_len = sizeof(struct rtw_ieee80211_hdr_3addr); - reason = cpu_to_le16(reason); +// reason = cpu_to_le16(reason); pmgmt_frame = rtw_set_fixed_ie(pmgmt_frame, _RSON_CODE_ , (unsigned char *)&reason, &frame_len); -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0)) - cfg80211_rx_mgmt(padapter->rtw_wdev, freq, 0, mgmt_buf, frame_len, flags, GFP_ATOMIC); -#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)) - cfg80211_rx_mgmt(padapter->rtw_wdev, freq, 0, mgmt_buf, frame_len, GFP_ATOMIC); -#else - cfg80211_rx_mgmt(ndev, freq, 0, mgmt_buf, frame_len, GFP_ATOMIC); -#endif + rtw_cfg80211_rx_mgmt(padapter, freq, 0, mgmt_buf, frame_len, flags); #endif /* defined(RTW_USE_CFG80211_STA_EVENT) */ } @@ -2807,9 +2548,9 @@ static int rtw_cfg80211_monitor_if_xmit_entry(struct sk_buff *skb, struct net_de /* Check if this ia a Wireless Distribution System (WDS) frame * which has 4 MAC addresses */ - if (dot11_hdr->frame_control & 0x0080) + if (frame_ctl & 0x0080) qos_len = 2; - if ((dot11_hdr->frame_control & 0x0300) == 0x0300) + if ((frame_ctl & 0x0300) == 0x0300) dot11_hdr_len += 6; memcpy(dst_mac_addr, dot11_hdr->addr1, sizeof(dst_mac_addr)); @@ -2849,16 +2590,12 @@ static int rtw_cfg80211_monitor_if_xmit_entry(struct sk_buff *skb, struct net_de if (rtw_action_frame_parse(buf, len, &category, &action) == false) { DBG_8192D(FUNC_NDEV_FMT" frame_control:0x%x\n", FUNC_NDEV_ARG(ndev), - le16_to_cpu(((struct rtw_ieee80211_hdr_3addr *)buf)->frame_ctl)); + ((struct rtw_ieee80211_hdr_3addr *)buf)->frame_ctl); goto fail; } DBG_8192D("RTW_Tx:da=%pM via "FUNC_NDEV_FMT"\n", GetAddr1Ptr(buf), FUNC_NDEV_ARG(ndev)); - #ifdef CONFIG_P2P - if ((type = rtw_p2p_check_frames(padapter, buf, len, true)) >= 0) - goto dump; - #endif if (category == RTW_WLAN_CATEGORY_PUBLIC) DBG_8192D("RTW_Tx:%s\n", action_public_str(action)); else @@ -2881,19 +2618,6 @@ static int rtw_cfg80211_monitor_if_xmit_entry(struct sk_buff *skb, struct net_de pframe = (u8 *)(pmgntframe->buf_addr) + TXDESC_OFFSET; memcpy(pframe, (void*)buf, len); - #ifdef CONFIG_WFD - if (type >= 0) - { - struct wifi_display_info *pwfd_info; - - pwfd_info = padapter->wdinfo.wfd_info; - - if (true == pwfd_info->wfd_enable) - { - rtw_append_wfd_ie(padapter, pframe, &len); - } - } - #endif /* CONFIG_WFD */ pattrib->pktlen = len; pwlanhdr = (struct rtw_ieee80211_hdr *)pframe; @@ -3028,7 +2752,7 @@ static int rtw_cfg80211_add_monitor_if (struct rtw_adapter *padapter, char *name #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0)) static struct wireless_dev * -#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)) || defined(COMPAT_KERNEL_RELEASE) +#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)) static struct net_device * #else static int @@ -3039,6 +2763,9 @@ static int const char *name, #else char *name, + #endif + #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 1, 0)) + unsigned char name_assign_type, #endif enum nl80211_iftype type, u32 *flags, struct vif_params *params) { @@ -3060,14 +2787,14 @@ static int ret = rtw_cfg80211_add_monitor_if (padapter, (char *)name, &ndev); break; -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) case NL80211_IFTYPE_P2P_CLIENT: #endif case NL80211_IFTYPE_STATION: ret = -ENODEV; break; -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) case NL80211_IFTYPE_P2P_GO: #endif case NL80211_IFTYPE_AP: @@ -3083,7 +2810,7 @@ static int #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0)) return ndev ? ndev->ieee80211_ptr : ERR_PTR(ret); -#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)) || defined(COMPAT_KERNEL_RELEASE) +#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)) return ndev ? ndev : ERR_PTR(ret); #else return ret; @@ -3150,65 +2877,20 @@ static int rtw_add_beacon(struct rtw_adapter *adapter, const u8 *head, size_t he if (rtw_get_wps_ie(pbuf+_FIXED_IE_LENGTH_, len-_FIXED_IE_LENGTH_, NULL, &wps_ielen)) DBG_8192D("add bcn, wps_ielen=%d\n", wps_ielen); -#ifdef CONFIG_P2P - /* check p2p ie if inclued */ - if (rtw_get_p2p_ie(pbuf+_FIXED_IE_LENGTH_, len-_FIXED_IE_LENGTH_, NULL, &p2p_ielen)) - { - DBG_8192D("got p2p_ie, len=%d\n", p2p_ielen); - got_p2p_ie = true; - } -#endif - rtw_ies_remove_ie(pbuf, &len, _BEACON_IE_OFFSET_, _VENDOR_SPECIFIC_IE_, P2P_OUI, 4); /* pbss_network->IEs will not include p2p_ie */ if (rtw_check_beacon_data(adapter, pbuf, len) == _SUCCESS) - { -#ifdef CONFIG_P2P - /* check p2p if enable */ - if (got_p2p_ie == true) - { - struct mlme_ext_priv *pmlmeext = &adapter->mlmeextpriv; - struct wifidirect_info *pwdinfo= &(adapter->wdinfo); - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - DBG_8192D("Enable P2P function for the first time\n"); - rtw_p2p_enable(adapter, P2P_ROLE_GO); - wdev_to_priv(adapter->rtw_wdev)->p2p_enabled = true; - } - else - { - _cancel_timer_ex(&pwdinfo->find_phase_timer); - _cancel_timer_ex(&pwdinfo->restore_p2p_state_timer); - _cancel_timer_ex(&pwdinfo->pre_tx_scan_timer); - - DBG_8192D("enter GO Mode, p2p_ielen=%d\n", p2p_ielen); - - rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO); - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_OK); - pwdinfo->intent = 15; - } - - pwdinfo->operating_channel = pmlmeext->cur_channel; - - } -#endif /* CONFIG_P2P */ - ret = 0; - - } else - { ret = -EINVAL; - } kfree(pbuf); return ret; } -#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0)) && !defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0)) static int cfg80211_rtw_add_beacon(struct wiphy *wiphy, struct net_device *ndev, struct beacon_parameters *info) { @@ -3304,7 +2986,10 @@ static int cfg80211_rtw_add_station(struct wiphy *wiphy, struct net_device *ndev return 0; } -#if (LINUX_VERSION_CODE > KERNEL_VERSION(3, 14, 0)) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0)) +static int cfg80211_rtw_del_station(struct wiphy *wiphy, struct net_device *ndev, + struct station_del_parameters *params) +#elif (LINUX_VERSION_CODE > KERNEL_VERSION(3, 14, 0)) static int cfg80211_rtw_del_station(struct wiphy *wiphy, struct net_device *ndev, const u8 *mac) #else @@ -3319,6 +3004,9 @@ static int cfg80211_rtw_del_station(struct wiphy *wiphy, struct net_device *ndev struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(ndev); struct mlme_priv *pmlmepriv = &(padapter->mlmepriv); struct sta_priv *pstapriv = &padapter->stapriv; +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,19,0)) + const u8 *mac = params->mac; +#endif DBG_8192D("+"FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev)); @@ -3445,18 +3133,11 @@ void rtw_cfg80211_rx_action_p2p(struct rtw_adapter *padapter, u8 *pmgmt_frame, u int channel; struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); u8 category, action; -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0)) u32 flags = 0; -#endif channel = rtw_get_oper_ch(padapter); DBG_8192D("RTW_Rx:cur_ch=%d\n", channel); - #ifdef CONFIG_P2P - type = rtw_p2p_check_frames(padapter, pmgmt_frame, frame_len, false); - if (type >= 0) - goto indicate; - #endif rtw_action_frame_parse(pmgmt_frame, frame_len, &category, &action); DBG_8192D("RTW_Rx:category(%u), action(%u)\n", category, action); @@ -3466,13 +3147,7 @@ void rtw_cfg80211_rx_action_p2p(struct rtw_adapter *padapter, u8 *pmgmt_frame, u else freq = rtw_ieee80211_channel_to_frequency(channel, IEEE80211_BAND_5GHZ); -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0)) - cfg80211_rx_mgmt(padapter->rtw_wdev, freq, 0, pmgmt_frame, frame_len, flags, GFP_ATOMIC); -#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)) - cfg80211_rx_mgmt(padapter->rtw_wdev, freq, 0, pmgmt_frame, frame_len, GFP_ATOMIC); -#else - cfg80211_rx_mgmt(padapter->pnetdev, freq, 0, pmgmt_frame, frame_len, GFP_ATOMIC); -#endif + rtw_cfg80211_rx_mgmt(padapter, freq, 0, pmgmt_frame, frame_len, flags); } void rtw_cfg80211_rx_p2p_action_public(struct rtw_adapter *padapter, u8 *frame, uint frame_len) @@ -3482,24 +3157,11 @@ void rtw_cfg80211_rx_p2p_action_public(struct rtw_adapter *padapter, u8 *frame, int channel; struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); u8 category, action; -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0)) u32 flags = 0; -#endif channel = rtw_get_oper_ch(padapter); DBG_8192D("RTW_Rx:cur_ch=%d\n", channel); - #ifdef CONFIG_P2P - type = rtw_p2p_check_frames(padapter, frame, frame_len, false); - if (type >= 0) { - switch (type) { - case P2P_GO_NEGO_CONF: - case P2P_PROVISION_DISC_RESP: - rtw_clear_scan_deny(padapter); - } - goto indicate; - } - #endif rtw_action_frame_parse(frame, frame_len, &category, &action); DBG_8192D("RTW_Rx:category(%u), action(%u)\n", category, action); @@ -3509,13 +3171,7 @@ void rtw_cfg80211_rx_p2p_action_public(struct rtw_adapter *padapter, u8 *frame, else freq = rtw_ieee80211_channel_to_frequency(channel, IEEE80211_BAND_5GHZ); -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0)) - cfg80211_rx_mgmt(padapter->rtw_wdev, freq, 0, frame, frame_len, flags, GFP_ATOMIC); -#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)) - cfg80211_rx_mgmt(padapter->rtw_wdev, freq, 0, frame, frame_len, GFP_ATOMIC); -#else - cfg80211_rx_mgmt(padapter->pnetdev, freq, 0, frame, frame_len, GFP_ATOMIC); -#endif + rtw_cfg80211_rx_mgmt(padapter, freq, 0, frame, frame_len, flags); } void rtw_cfg80211_rx_action(struct rtw_adapter *adapter, u8 *frame, uint frame_len, const char*msg) @@ -3525,9 +3181,7 @@ void rtw_cfg80211_rx_action(struct rtw_adapter *adapter, u8 *frame, uint frame_l struct mlme_ext_priv *pmlmeext = &(adapter->mlmeextpriv); struct rtw_wdev_priv *pwdev_priv = wdev_to_priv(adapter->rtw_wdev); u8 category, action; -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0)) u32 flags = 0; -#endif channel = rtw_get_oper_ch(adapter); @@ -3544,415 +3198,9 @@ void rtw_cfg80211_rx_action(struct rtw_adapter *adapter, u8 *frame, uint frame_l else freq = rtw_ieee80211_channel_to_frequency(channel, IEEE80211_BAND_5GHZ); -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0)) - cfg80211_rx_mgmt(adapter->rtw_wdev, freq, 0, frame, frame_len, flags, GFP_ATOMIC); -#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)) - cfg80211_rx_mgmt(adapter->rtw_wdev, freq, 0, frame, frame_len, GFP_ATOMIC); -#else - cfg80211_rx_mgmt(adapter->pnetdev, freq, 0, frame, frame_len, GFP_ATOMIC); -#endif -} - -#ifdef CONFIG_P2P -void rtw_cfg80211_issue_p2p_provision_request(struct rtw_adapter *padapter, const u8 *buf, size_t len) -{ - u16 wps_devicepassword_id = 0x0000; - uint wps_devicepassword_id_len = 0; - u8 wpsie[255] = { 0x00 }, p2p_ie[255] = { 0x00 }; - uint p2p_ielen = 0; - uint wpsielen = 0; - u32 devinfo_contentlen = 0; - u8 devinfo_content[64] = { 0x00 }; - u16 capability = 0; - uint capability_len = 0; - - unsigned char category = RTW_WLAN_CATEGORY_PUBLIC; - u8 action = P2P_PUB_ACTION_ACTION; - u8 dialogToken = 1; - u32 p2poui = cpu_to_be32(P2POUI); - u8 oui_subtype = P2P_PROVISION_DISC_REQ; - u32 p2pielen = 0; -#ifdef CONFIG_WFD - u32 wfdielen = 0; -#endif /* CONFIG_WFD */ - - struct xmit_frame *pmgntframe; - struct pkt_attrib *pattrib; - unsigned char *pframe; - struct rtw_ieee80211_hdr *pwlanhdr; - unsigned short *fctrl; - struct xmit_priv *pxmitpriv = &(padapter->xmitpriv); - struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - u8 *frame_body = (unsigned char *)(buf + sizeof(struct rtw_ieee80211_hdr_3addr)); - size_t frame_body_len = len - sizeof(struct rtw_ieee80211_hdr_3addr); - - DBG_8192D("[%s] In\n", __func__); - - /* prepare for building provision_request frame */ - memcpy(pwdinfo->tx_prov_disc_info.peerIFAddr, GetAddr1Ptr(buf), ETH_ALEN); - memcpy(pwdinfo->tx_prov_disc_info.peerDevAddr, GetAddr1Ptr(buf), ETH_ALEN); - - pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_PUSH_BUTTON; - - rtw_get_wps_ie(frame_body + _PUBLIC_ACTION_IE_OFFSET_, frame_body_len - _PUBLIC_ACTION_IE_OFFSET_, wpsie, &wpsielen); - rtw_get_wps_attr_content(wpsie, wpsielen, WPS_ATTR_DEVICE_PWID, (u8*) &wps_devicepassword_id, &wps_devicepassword_id_len); - wps_devicepassword_id = be16_to_cpu(wps_devicepassword_id); - - switch (wps_devicepassword_id) - { - case WPS_DPID_PIN: - pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_LABEL; - break; - case WPS_DPID_USER_SPEC: - pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_DISPLYA; - break; - case WPS_DPID_MACHINE_SPEC: - break; - case WPS_DPID_REKEY: - break; - case WPS_DPID_PBC: - pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_PUSH_BUTTON; - break; - case WPS_DPID_REGISTRAR_SPEC: - pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_KEYPAD; - break; - default: - break; - } - - if (rtw_get_p2p_ie(frame_body + _PUBLIC_ACTION_IE_OFFSET_, frame_body_len - _PUBLIC_ACTION_IE_OFFSET_, p2p_ie, &p2p_ielen)) - { - - rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_DEVICE_INFO, devinfo_content, &devinfo_contentlen); - rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CAPABILITY, (u8*)&capability, &capability_len); - - } - - /* start to build provision_request frame */ - memset(wpsie, 0, sizeof(wpsie)); - memset(p2p_ie, 0, sizeof(p2p_ie)); - p2p_ielen = 0; - - if ((pmgntframe = alloc_mgtxmitframe(pxmitpriv)) == NULL) - { - return; - } - - /* update attribute */ - pattrib = &pmgntframe->attrib; - update_mgntframe_attrib(padapter, pattrib); - - 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; - - memcpy(pwlanhdr->addr1, pwdinfo->tx_prov_disc_info.peerDevAddr, ETH_ALEN); - memcpy(pwlanhdr->addr2, myid(&(padapter->eeprompriv)), ETH_ALEN); - memcpy(pwlanhdr->addr3, pwdinfo->tx_prov_disc_info.peerDevAddr, ETH_ALEN); - - 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); - - pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 4, (unsigned char *) &(p2poui), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen)); - pframe = rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen)); - - /* build_prov_disc_request_p2p_ie */ - /* P2P OUI */ - p2pielen = 0; - p2p_ie[p2pielen++] = 0x50; - p2p_ie[p2pielen++] = 0x6F; - p2p_ie[p2pielen++] = 0x9A; - p2p_ie[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: */ - p2p_ie[p2pielen++] = P2P_ATTR_CAPABILITY; - - /* Length: */ - RTW_PUT_LE16(p2p_ie + p2pielen, 0x0002); - p2pielen += 2; - - /* Value: */ - /* Device Capability Bitmap, 1 byte */ - /* Group Capability Bitmap, 1 byte */ - memcpy(p2p_ie + p2pielen, &capability, 2); - p2pielen += 2; - - /* Device Info ATTR */ - /* Type: */ - p2p_ie[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) */ - RTW_PUT_LE16(p2p_ie + p2pielen, devinfo_contentlen); - p2pielen += 2; - - /* Value: */ - memcpy(p2p_ie + p2pielen, devinfo_content, devinfo_contentlen); - p2pielen += devinfo_contentlen; - - pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, (unsigned char *) p2p_ie, &p2p_ielen); - pattrib->pktlen += p2p_ielen; - - wpsielen = 0; - /* WPS OUI */ - *(u32*) (wpsie) = cpu_to_be32(WPSOUI); - wpsielen += 4; - - /* WPS version */ - /* Type: */ - *(u16*) (wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_VER1); - wpsielen += 2; - - /* Length: */ - *(u16*) (wpsie + wpsielen) = cpu_to_be16(0x0001); - wpsielen += 2; - - /* Value: */ - wpsie[wpsielen++] = WPS_VERSION_1; /* Version 1.0 */ - - /* Config Method */ - /* Type: */ - *(u16*) (wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_CONF_METHOD); - wpsielen += 2; - - /* Length: */ - *(u16*) (wpsie + wpsielen) = cpu_to_be16(0x0002); - wpsielen += 2; - - /* Value: */ - *(u16*) (wpsie + wpsielen) = cpu_to_be16(pwdinfo->tx_prov_disc_info.wps_config_method_request); - wpsielen += 2; - - pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, wpsielen, (unsigned char *) wpsie, &pattrib->pktlen); - -#ifdef CONFIG_WFD - wfdielen = build_provdisc_req_wfd_ie(pwdinfo, pframe); - pframe += wfdielen; - pattrib->pktlen += wfdielen; -#endif /* CONFIG_WFD */ - - pattrib->last_txcmdsz = pattrib->pktlen; - - if (dump_mgntframe_and_wait_ack(padapter, pmgntframe) != _SUCCESS) - DBG_8192D("%s, ack to\n", __func__); - + rtw_cfg80211_rx_mgmt(adapter, freq, 0, frame, frame_len, flags); } -static s32 cfg80211_rtw_remain_on_channel(struct wiphy *wiphy, -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0)) - struct wireless_dev *wdev, -#else - struct net_device *ndev, -#endif - struct ieee80211_channel * channel, -#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,8,0)) - enum nl80211_channel_type channel_type, -#endif - unsigned int duration, u64 *cookie) -{ - s32 err = 0; - struct rtw_adapter *padapter = wiphy_to_adapter(wiphy); - struct rtw_wdev_priv *pwdev_priv = wdev_to_priv(padapter->rtw_wdev); - struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - struct cfg80211_wifidirect_info *pcfg80211_wdinfo = &padapter->cfg80211_wdinfo; - u8 remain_ch = (u8) ieee80211_frequency_to_channel(channel->center_freq); - u8 ready_on_channel = false; - - DBG_8192D(FUNC_ADPT_FMT" ch:%u duration:%d\n", FUNC_ADPT_ARG(padapter), remain_ch, duration); - - if (pcfg80211_wdinfo->is_ro_ch == true) - { - DBG_8192D("%s, cancel ro ch timer\n", __func__); - - _cancel_timer_ex(&padapter->cfg80211_wdinfo.remain_on_ch_timer); - -#ifdef CONFIG_CONCURRENT_MODE - ATOMIC_SET(&pwdev_priv->ro_ch_to, 1); -#endif /* CONFIG_CONCURRENT_MODE */ - - p2p_protocol_wk_hdl(padapter, P2P_RO_CH_WK); - } - - pcfg80211_wdinfo->is_ro_ch = true; - - if (_FAIL == rtw_pwr_wakeup(padapter)) { - err = -EFAULT; - goto exit; - } - - memcpy(&pcfg80211_wdinfo->remain_on_ch_channel, channel, sizeof(struct ieee80211_channel)); - #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,8,0)) - pcfg80211_wdinfo->remain_on_ch_type= channel_type; - #endif - pcfg80211_wdinfo->remain_on_ch_cookie= *cookie; - - rtw_scan_abort(padapter); -#ifdef CONFIG_CONCURRENT_MODE - if (rtw_buddy_adapter_up(padapter)) - rtw_scan_abort(padapter->pbuddy_adapter); -#endif /* CONFIG_CONCURRENT_MODE */ - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - rtw_p2p_enable(padapter, P2P_ROLE_DEVICE); - wdev_to_priv(padapter->rtw_wdev)->p2p_enabled = true; - } - else - { - rtw_p2p_set_pre_state(pwdinfo, rtw_p2p_state(pwdinfo)); -#ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("%s, role=%d, p2p_state=%d\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo)); -#endif - } - - rtw_p2p_set_state(pwdinfo, P2P_STATE_LISTEN); - - if (duration < 400) - duration = duration*3;/* extend from exper. */ - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED) && - (durationext_listen_interval)) - { - duration = duration + pwdinfo->ext_listen_interval; - } -#endif - - pcfg80211_wdinfo->restore_channel = pmlmeext->cur_channel; - - if (rtw_ch_set_search_ch(pmlmeext->channel_set, remain_ch) >= 0) { -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - { - PADAPTER pbuddy_adapter = padapter->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; - - if (remain_ch != pbuddy_mlmeext->cur_channel) - { - if (ATOMIC_READ(&pwdev_priv->switch_ch_to)==1 || - (remain_ch != pmlmeext->cur_channel)) - { - DBG_8192D("%s, issue nulldata pwrbit=1\n", __func__); - issue_nulldata(padapter->pbuddy_adapter, NULL, 1, 3, 500); - - ATOMIC_SET(&pwdev_priv->switch_ch_to, 0); - - DBG_8192D("%s, set switch ch timer, duration=%d\n", __func__, duration-pwdinfo->ext_listen_interval); - _set_timer(&pwdinfo->ap_p2p_switch_timer, duration-pwdinfo->ext_listen_interval); - } - } - - ready_on_channel = true; - } else -#endif /* CONFIG_CONCURRENT_MODE */ - if (remain_ch != pmlmeext->cur_channel) - { - ready_on_channel = true; - } - } else { - DBG_8192D("%s remain_ch:%u not in channel plan!!!!\n", __func__, remain_ch); - } - - /* call this after other things have been done */ -#ifdef CONFIG_CONCURRENT_MODE - if (ATOMIC_READ(&pwdev_priv->ro_ch_to)==1 || - (remain_ch != pmlmeext->cur_channel)) - { - u8 co_channel = 0xff; - ATOMIC_SET(&pwdev_priv->ro_ch_to, 0); -#endif - - if (ready_on_channel == true) - { - if (!check_fwstate(&padapter->mlmepriv, _FW_LINKED)) - pmlmeext->cur_channel = remain_ch; - -#ifdef CONFIG_CONCURRENT_MODE - co_channel = rtw_get_oper_ch(padapter); - - if (co_channel !=remain_ch) -#endif - set_channel_bwmode(padapter, remain_ch, HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20); - } - - DBG_8192D("%s, set ro ch timer, duration=%d\n", __func__, duration); - _set_timer(&pcfg80211_wdinfo->remain_on_ch_timer, duration); - -#ifdef CONFIG_CONCURRENT_MODE - } -#endif - - rtw_cfg80211_ready_on_channel(padapter, *cookie, channel, channel_type, duration, GFP_KERNEL); - - pwdinfo->listen_channel = pmlmeext->cur_channel; - -exit: - if (err) - pcfg80211_wdinfo->is_ro_ch = false; - - return err; -} - -static s32 cfg80211_rtw_cancel_remain_on_channel(struct wiphy *wiphy, -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0)) - struct wireless_dev *wdev, -#else - struct net_device *ndev, -#endif - u64 cookie) -{ - s32 err = 0; - struct rtw_adapter *padapter = wiphy_to_adapter(wiphy); - struct rtw_wdev_priv *pwdev_priv = wdev_to_priv(padapter->rtw_wdev); - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv; - struct cfg80211_wifidirect_info *pcfg80211_wdinfo = &padapter->cfg80211_wdinfo; - - DBG_8192D(FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(padapter)); - - if (pcfg80211_wdinfo->is_ro_ch == true) { - DBG_8192D("%s, cancel ro ch timer\n", __func__); - _cancel_timer_ex(&padapter->cfg80211_wdinfo.remain_on_ch_timer); - #ifdef CONFIG_CONCURRENT_MODE - ATOMIC_SET(&pwdev_priv->ro_ch_to, 1); - #endif - p2p_protocol_wk_hdl(padapter, P2P_RO_CH_WK); - } - - rtw_p2p_set_state(pwdinfo, rtw_p2p_pre_state(pwdinfo)); -#ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("%s, role=%d, p2p_state=%d\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo)); -#endif - pcfg80211_wdinfo->is_ro_ch = false; - - return err; -} - -#endif /* CONFIG_P2P */ - static int _cfg80211_rtw_mgmt_tx(struct rtw_adapter *padapter, u8 tx_ch, const u8 *buf, size_t len) { struct xmit_frame *pmgntframe; @@ -4047,19 +3295,6 @@ static int _cfg80211_rtw_mgmt_tx(struct rtw_adapter *padapter, u8 tx_ch, const u pattrib->seqnum = pmlmeext->mgnt_seq; pmlmeext->mgnt_seq++; -#ifdef CONFIG_WFD - { - struct wifi_display_info *pwfd_info; - - pwfd_info = padapter->wdinfo.wfd_info; - - if (true == pwfd_info->wfd_enable) - { - rtw_append_wfd_ie(padapter, pframe, &pattrib->pktlen); - } - } -#endif /* CONFIG_WFD */ - pattrib->last_txcmdsz = pattrib->pktlen; if (dump_mgntframe_and_wait_ack(padapter, pmgntframe) != _SUCCESS) @@ -4150,66 +3385,15 @@ static int rtw_cfg80211_set_beacon_wpsp2pie(struct net_device *ndev, char *buf, memcpy(pmlmepriv->wps_beacon_ie, wps_ie, wps_ielen); pmlmepriv->wps_beacon_ie_len = wps_ielen; - +#ifdef CONFIG_92D_AP_MODE update_beacon(padapter, _VENDOR_SPECIFIC_IE_, wps_oui, true); +#endif } - #ifdef CONFIG_P2P - if ((p2p_ie=rtw_get_p2p_ie(buf, len, NULL, &p2p_ielen))) - { - #ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("bcn_p2p_ielen=%d\n", p2p_ielen); - #endif - - if (pmlmepriv->p2p_beacon_ie) - { - u32 free_len = pmlmepriv->p2p_beacon_ie_len; - pmlmepriv->p2p_beacon_ie_len = 0; - kfree(pmlmepriv->p2p_beacon_ie); - pmlmepriv->p2p_beacon_ie = NULL; - } - - pmlmepriv->p2p_beacon_ie = kmalloc(p2p_ielen, GFP_KERNEL); - if (pmlmepriv->p2p_beacon_ie == NULL) { - DBG_8192D("%s()-%d: kmalloc() ERROR!\n", __func__, __LINE__); - return -EINVAL; - - } - - memcpy(pmlmepriv->p2p_beacon_ie, p2p_ie, p2p_ielen); - pmlmepriv->p2p_beacon_ie_len = p2p_ielen; - - } - #endif /* CONFIG_P2P */ - - #ifdef CONFIG_WFD - if (rtw_get_wfd_ie(buf, len, NULL, &wfd_ielen)) - { - #ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("bcn_wfd_ielen=%d\n", wfd_ielen); - #endif - - if (pmlmepriv->wfd_beacon_ie) - { - u32 free_len = pmlmepriv->wfd_beacon_ie_len; - pmlmepriv->wfd_beacon_ie_len = 0; - kfree(pmlmepriv->wfd_beacon_ie); - pmlmepriv->wfd_beacon_ie = NULL; - } - - pmlmepriv->wfd_beacon_ie = kmalloc(wfd_ielen, GFP_KERNEL); - if (pmlmepriv->wfd_beacon_ie == NULL) { - DBG_8192D("%s()-%d: kmalloc() ERROR!\n", __func__, __LINE__); - return -EINVAL; - - } - rtw_get_wfd_ie(buf, len, pmlmepriv->wfd_beacon_ie, &pmlmepriv->wfd_beacon_ie_len); - } - #endif /* CONFIG_WFD */ - +#ifdef CONFIG_92D_AP_MODE pmlmeext->bstart_bss = true; - +#endif } return ret; @@ -4260,10 +3444,7 @@ static int rtw_cfg80211_set_probe_resp_wpsp2pie(struct net_device *net, char *bu /* add PUSH_BUTTON config_method by driver self in wpsie of probe_resp at GO Mode */ if ((puconfig_method = (u16*)rtw_get_wps_attr_content(wps_ie, wps_ielen, WPS_ATTR_CONF_METHOD , NULL, &attr_contentlen)) != NULL) { - uconfig_method = WPS_CM_PUSH_BUTTON; - uconfig_method = cpu_to_be16(uconfig_method); - - *puconfig_method |= uconfig_method; + *puconfig_method |= WPS_CM_PUSH_BUTTON; } memcpy(pmlmepriv->wps_probe_resp_ie, wps_ie, wps_ielen); @@ -4271,99 +3452,7 @@ static int rtw_cfg80211_set_probe_resp_wpsp2pie(struct net_device *net, char *bu } - #ifdef CONFIG_P2P - if ((p2p_ie=rtw_get_p2p_ie(buf, len, NULL, &p2p_ielen))) - { - u8 is_GO = false; - u32 attr_contentlen = 0; - u16 cap_attr=0; - - #ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("probe_resp_p2p_ielen=%d\n", p2p_ielen); - #endif - - /* Check P2P Capability ATTR */ - if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CAPABILITY, (u8*)&cap_attr, (uint*) &attr_contentlen)) - { - u8 grp_cap=0; - cap_attr = le16_to_cpu(cap_attr); - grp_cap = (u8)((cap_attr >> 8)&0xff); - - is_GO = (grp_cap&BIT(0)) ? true:false; - - if (is_GO) - DBG_8192D("Got P2P Capability Attr, grp_cap=0x%x, is_GO\n", grp_cap); - } - - if (is_GO == false) - { - if (pmlmepriv->p2p_probe_resp_ie) - { - u32 free_len = pmlmepriv->p2p_probe_resp_ie_len; - pmlmepriv->p2p_probe_resp_ie_len = 0; - kfree(pmlmepriv->p2p_probe_resp_ie); - pmlmepriv->p2p_probe_resp_ie = NULL; - } - - pmlmepriv->p2p_probe_resp_ie = kmalloc(p2p_ielen, GFP_KERNEL); - if (pmlmepriv->p2p_probe_resp_ie == NULL) { - DBG_8192D("%s()-%d: kmalloc() ERROR!\n", __func__, __LINE__); - return -EINVAL; - - } - memcpy(pmlmepriv->p2p_probe_resp_ie, p2p_ie, p2p_ielen); - pmlmepriv->p2p_probe_resp_ie_len = p2p_ielen; - } - else - { - if (pmlmepriv->p2p_go_probe_resp_ie) - { - u32 free_len = pmlmepriv->p2p_go_probe_resp_ie_len; - pmlmepriv->p2p_go_probe_resp_ie_len = 0; - kfree(pmlmepriv->p2p_go_probe_resp_ie); - pmlmepriv->p2p_go_probe_resp_ie = NULL; - } - - pmlmepriv->p2p_go_probe_resp_ie = kmalloc(p2p_ielen, GFP_KERNEL); - if (pmlmepriv->p2p_go_probe_resp_ie == NULL) { - DBG_8192D("%s()-%d: kmalloc() ERROR!\n", __func__, __LINE__); - return -EINVAL; - - } - memcpy(pmlmepriv->p2p_go_probe_resp_ie, p2p_ie, p2p_ielen); - pmlmepriv->p2p_go_probe_resp_ie_len = p2p_ielen; - } - - } - #endif /* CONFIG_P2P */ - - #ifdef CONFIG_WFD - if (rtw_get_wfd_ie(buf, len, NULL, &wfd_ielen)) - { - #ifdef CONFIG_DEBUG_CFG80211 - DBG_8192D("probe_resp_wfd_ielen=%d\n", wfd_ielen); - #endif - - if (pmlmepriv->wfd_probe_resp_ie) - { - u32 free_len = pmlmepriv->wfd_probe_resp_ie_len; - pmlmepriv->wfd_probe_resp_ie_len = 0; - kfree(pmlmepriv->wfd_probe_resp_ie); - pmlmepriv->wfd_probe_resp_ie = NULL; - } - - pmlmepriv->wfd_probe_resp_ie = kmalloc(wfd_ielen, GFP_KERNEL); - if (pmlmepriv->wfd_probe_resp_ie == NULL) { - DBG_8192D("%s()-%d: kmalloc() ERROR!\n", __func__, __LINE__); - return -EINVAL; - - } - rtw_get_wfd_ie(buf, len, pmlmepriv->wfd_probe_resp_ie, &pmlmepriv->wfd_probe_resp_ie_len); - } - #endif /* CONFIG_WFD */ - } - return ret; } @@ -4375,8 +3464,7 @@ static int rtw_cfg80211_set_assoc_resp_wpsp2pie(struct net_device *net, char *bu DBG_8192D("%s, ielen=%d\n", __func__, len); - if (len>0) - { + if (len>0) { if (pmlmepriv->wps_assoc_resp_ie) { u32 free_len = pmlmepriv->wps_assoc_resp_ie_len; @@ -4409,28 +3497,86 @@ int rtw_cfg80211_set_mgnt_wpsp2pie(struct net_device *net, char *buf, int len, DBG_8192D("%s, ielen=%d\n", __func__, len); #endif - if ( (rtw_get_wps_ie(buf, len, NULL, &wps_ielen) && (wps_ielen>0)) - #ifdef CONFIG_P2P - || (rtw_get_p2p_ie(buf, len, NULL, &p2p_ielen) && (p2p_ielen>0)) - #endif - ) + if ((rtw_get_wps_ie(buf, len, NULL, &wps_ielen) && (wps_ielen>0))) { - if (net != NULL) - { - switch (type) - { - case 0x1: /* BEACON */ + if (net != NULL) { + switch (type) { + case 0x1: /* BEACON */ ret = rtw_cfg80211_set_beacon_wpsp2pie(net, buf, len); break; - case 0x2: /* PROBE_RESP */ + case 0x2: /* PROBE_RESP */ ret = rtw_cfg80211_set_probe_resp_wpsp2pie(net, buf, len); break; - case 0x4: /* ASSOC_RESP */ + case 0x4: /* ASSOC_RESP */ ret = rtw_cfg80211_set_assoc_resp_wpsp2pie(net, buf, len); break; } } } + return ret; +} + + int (*mgmt_tx)(struct wiphy *wiphy, struct wireless_dev *wdev, + struct ieee80211_channel *chan, bool offchan, + unsigned int wait, const u8 *buf, size_t len, + bool no_cck, bool dont_wait_for_ack, u64 *cookie); +static int cfg80211_rtw_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev, +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 14, 0)) + struct ieee80211_channel *chan, bool offchan, + unsigned int wait, const u8 *buf, size_t len, + bool no_cck, bool dont_wait_for_ack, +#else + struct cfg80211_mgmt_tx_params *params, +#endif + u64 *cookie) +{ + struct rtw_adapter *padapter = + (struct rtw_adapter *)wiphy_to_adapter(wiphy); + int ret = 0; + int tx_ret; + u32 dump_limit = RTW_MAX_MGMT_TX_CNT; + u32 dump_cnt = 0; + bool ack = true; + u8 category, action; + unsigned long start = jiffies; +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 14, 0)) + size_t len = params->len; + struct ieee80211_channel *chan = params->chan; + const u8 *buf = params->buf; +#endif + struct ieee80211_mgmt *hdr = (struct ieee80211_mgmt *)buf; + u8 tx_ch = (u8) ieee80211_frequency_to_channel(chan->center_freq); + + if (!ieee80211_is_action(hdr->frame_control)) + return -EINVAL; + + /* cookie generation */ + *cookie = (unsigned long)buf; + + DBG_8192D("%s(%s): len =%zu, ch =%d\n", __func__, + padapter->pnetdev->name, len, tx_ch); + + /* indicate ack before issue frame to avoid racing with rsp frame */ + rtw_cfg80211_mgmt_tx_status(padapter, *cookie, buf, len, ack, + GFP_KERNEL); + +// DBG_8192D("RTW_Tx:tx_ch =%d, da =" MAC_FMT "\n", tx_ch, +// MAC_ARG(hdr->da)); + category = hdr->u.action.category; + action = hdr->u.action.u.wme_action.action_code; + DBG_8192D("RTW_Tx:category(%u), action(%u)\n", category, action); + + do { + dump_cnt++; + tx_ret = _cfg80211_rtw_mgmt_tx(padapter, tx_ch, buf, len); + } while (dump_cnt < dump_limit && tx_ret != _SUCCESS); + + if (tx_ret != _SUCCESS || dump_cnt > 1) { + DBG_8192D("%s(%s): %s (%d/%d) in %d ms\n", + __func__, padapter->pnetdev->name, + tx_ret == _SUCCESS ? "OK" : "FAIL", dump_cnt, + dump_limit, jiffies_to_msecs(jiffies - start)); + } return ret; } @@ -4459,7 +3605,7 @@ static struct cfg80211_ops rtw_cfg80211_ops = { .add_virtual_intf = cfg80211_rtw_add_virtual_intf, .del_virtual_intf = cfg80211_rtw_del_virtual_intf, - #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 4, 0)) && !defined(COMPAT_KERNEL_RELEASE) + #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 4, 0)) .add_beacon = cfg80211_rtw_add_beacon, .set_beacon = cfg80211_rtw_set_beacon, .del_beacon = cfg80211_rtw_del_beacon, @@ -4478,6 +3624,8 @@ static struct cfg80211_ops rtw_cfg80211_ops = { .set_channel = cfg80211_rtw_set_channel, #endif #endif /* CONFIG_92D_AP_MODE */ + .mgmt_tx = cfg80211_rtw_mgmt_tx, + .mgmt_frame_register = cfg80211_rtw_mgmt_frame_register, }; static void rtw_cfg80211_init_ht_capab(struct ieee80211_sta_ht_cap *ht_cap, enum ieee80211_band band, u8 rf_type) @@ -4519,7 +3667,7 @@ static void rtw_cfg80211_init_ht_capab(struct ieee80211_sta_ht_cap *ht_cap, enum ht_cap->mcs.rx_mask[1] = 0x00; ht_cap->mcs.rx_mask[4] = 0x01; - ht_cap->mcs.rx_highest = MAX_BIT_RATE_40MHZ_MCS7; + ht_cap->mcs.rx_highest = cpu_to_le16(MAX_BIT_RATE_40MHZ_MCS7); } else if ((rf_type == RF_1T2R) || (rf_type==RF_2T2R)) { @@ -4527,7 +3675,7 @@ static void rtw_cfg80211_init_ht_capab(struct ieee80211_sta_ht_cap *ht_cap, enum ht_cap->mcs.rx_mask[1] = 0xFF; ht_cap->mcs.rx_mask[4] = 0x01; - ht_cap->mcs.rx_highest = MAX_BIT_RATE_40MHZ_MCS15; + ht_cap->mcs.rx_highest = cpu_to_le16(MAX_BIT_RATE_40MHZ_MCS15); } else { @@ -4561,29 +3709,6 @@ void rtw_cfg80211_init_wiphy(struct rtw_adapter *padapter) } } -/* -struct ieee80211_iface_limit rtw_limits[] = { - { .max = 1, .types = BIT(NL80211_IFTYPE_STATION) - | BIT(NL80211_IFTYPE_ADHOC) -#ifdef CONFIG_92D_AP_MODE - | BIT(NL80211_IFTYPE_AP) -#endif -#if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE)) - | BIT(NL80211_IFTYPE_P2P_CLIENT) - | BIT(NL80211_IFTYPE_P2P_GO) -#endif - }, - {.max = 1, .types = BIT(NL80211_IFTYPE_MONITOR)}, -}; - -struct ieee80211_iface_combination rtw_combinations = { - .limits = rtw_limits, - .n_limits = ARRAY_SIZE(rtw_limits), - .max_interfaces = 2, - .num_different_channels = 1, -}; -*/ - static void rtw_cfg80211_preinit_wiphy(struct rtw_adapter *padapter, struct wiphy *wiphy) { @@ -4593,23 +3718,17 @@ static void rtw_cfg80211_preinit_wiphy(struct rtw_adapter *padapter, struct wiph wiphy->max_scan_ie_len = RTW_SCAN_IE_LEN_MAX; wiphy->max_num_pmkids = RTW_MAX_NUM_PMKIDS; -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)) || defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)) wiphy->max_remain_on_channel_duration = RTW_MAX_REMAIN_ON_CHANNEL_DURATION; #endif - wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) - | BIT(NL80211_IFTYPE_ADHOC) + wiphy->interface_modes = BIT(NL80211_IFTYPE_ADHOC) | #ifdef CONFIG_92D_AP_MODE - | BIT(NL80211_IFTYPE_AP) - | BIT(NL80211_IFTYPE_MONITOR) + BIT(NL80211_IFTYPE_AP) | + BIT(NL80211_IFTYPE_MONITOR) | #endif -#if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE)) - | BIT(NL80211_IFTYPE_P2P_CLIENT) - | BIT(NL80211_IFTYPE_P2P_GO) -#endif - ; - -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE) + BIT(NL80211_IFTYPE_STATION); +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) #ifdef CONFIG_92D_AP_MODE wiphy->mgmt_stypes = rtw_cfg80211_default_mgmt_stypes; #endif /* CONFIG_92D_AP_MODE */ @@ -4680,7 +3799,7 @@ int rtw_wdev_alloc(struct rtw_adapter *padapter, struct device *dev) } wdev->wiphy = wiphy; wdev->netdev = pnetdev; - wdev->iftype = NL80211_IFTYPE_MONITOR; /* for rtw_setopmode_cmd() in cfg80211_rtw_change_iface() */ + wdev->iftype = NL80211_IFTYPE_STATION; padapter->rtw_wdev = wdev; pnetdev->ieee80211_ptr = wdev; @@ -4759,5 +3878,3 @@ void rtw_wdev_unregister(struct wireless_dev *wdev) wiphy_unregister(wdev->wiphy); } - -#endif /* CONFIG_IOCTL_CFG80211 */ diff --git a/os_dep/ioctl_linux.c b/os_dep/ioctl_linux.c index c9618b3c..8966989e 100644 --- a/os_dep/ioctl_linux.c +++ b/os_dep/ioctl_linux.c @@ -117,104 +117,22 @@ static int hwaddr_aton_i(const char *txt, u8 *addr) static void indicate_wx_custom_event(struct rtw_adapter *padapter, char *msg) { -#ifndef CONFIG_IOCTL_CFG80211 - u8 *buff, *p; - union iwreq_data wrqu; - - if ((u32)strlen(msg) > IW_CUSTOM_MAX) { - DBG_8192D("%s strlen(msg):%u > IW_CUSTOM_MAX:%u\n", __func__ , - (u32)strlen(msg), IW_CUSTOM_MAX); - return; - } - - buff = kzalloc(IW_CUSTOM_MAX+1, GFP_KERNEL); - if (!buff) - return; - - memcpy(buff, msg, strlen(msg)); - - memset(&wrqu, 0, sizeof(wrqu)); - wrqu.data.length = strlen(msg); - - DBG_8192D("%s %s\n", __func__, buff); - wireless_send_event(padapter->pnetdev, IWEVCUSTOM, &wrqu, buff); - - kfree(buff); -#endif } static void request_wps_pbc_event(struct rtw_adapter *padapter) { -#ifndef CONFIG_IOCTL_CFG80211 - u8 *buff, *p; - union iwreq_data wrqu; - - buff = kmalloc(IW_CUSTOM_MAX, GFP_KERNEL); - if (!buff) - return; - - memset(buff, 0, IW_CUSTOM_MAX); - - p = buff; - - p+= sprintf(p, "WPS_PBC_START.request = TRUE"); - - memset(&wrqu, 0, sizeof(wrqu)); - - wrqu.data.length = p-buff; - - wrqu.data.length = (wrqu.data.lengthpnetdev, IWEVCUSTOM, &wrqu, buff); - - kfree(buff); -#endif } void indicate_wx_scan_complete_event(struct rtw_adapter *padapter) { -#ifndef CONFIG_IOCTL_CFG80211 - union iwreq_data wrqu; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - - memset(&wrqu, 0, sizeof(union iwreq_data)); - - wireless_send_event(padapter->pnetdev, SIOCGIWSCAN, &wrqu, NULL); -#endif } void rtw_indicate_wx_assoc_event(struct rtw_adapter *padapter) { -#ifndef CONFIG_IOCTL_CFG80211 - union iwreq_data wrqu; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - - memset(&wrqu, 0, sizeof(union iwreq_data)); - - wrqu.ap_addr.sa_family = ARPHRD_ETHER; - - memcpy(wrqu.ap_addr.sa_data, - pmlmepriv->cur_network.network.MacAddress, ETH_ALEN); - - wireless_send_event(padapter->pnetdev, SIOCGIWAP, &wrqu, NULL); -#endif } void rtw_indicate_wx_disassoc_event(struct rtw_adapter *padapter) { -#ifndef CONFIG_IOCTL_CFG80211 - union iwreq_data wrqu; - - memset(&wrqu, 0, sizeof(union iwreq_data)); - - wrqu.ap_addr.sa_family = ARPHRD_ETHER; - memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN); - - wireless_send_event(padapter->pnetdev, SIOCGIWAP, &wrqu, NULL); -#endif } static char *translate_scan(struct rtw_adapter *padapter, @@ -235,92 +153,7 @@ static char *translate_scan(struct rtw_adapter *padapter, u8 bw_40MHz = 0, short_GI = 0; u16 mcs_rate = 0; struct registry_priv *pregpriv = &padapter->registrypriv; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &padapter->wdinfo; -#endif /* CONFIG_P2P */ - -#ifdef CONFIG_P2P -#ifdef CONFIG_WFD - if (SCAN_RESULT_ALL == pwdinfo->wfd_info->scan_result_type) - { - - } - else if ((SCAN_RESULT_P2P_ONLY == pwdinfo->wfd_info->scan_result_type) || - (SCAN_RESULT_WFD_TYPE == pwdinfo->wfd_info->scan_result_type)) -#endif /* CONFIG_WFD */ - { - if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - u32 blnGotP2PIE = false; - - /* User is doing the P2P device discovery */ - /* The prefix of SSID should be "DIRECT-" and the IE should contains the P2P IE. */ - /* If not, the driver should ignore this AP and go to the next AP. */ - - /* Verifying the SSID */ - if (!memcmp(pnetwork->network.Ssid.Ssid, pwdinfo->p2p_wildcard_ssid, P2P_WILDCARD_SSID_LEN)) - { - u32 p2pielen = 0; - - /* Verifying the P2P IE */ - if (rtw_get_p2p_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, NULL, &p2pielen)) - { - blnGotP2PIE = true; - } - } - - if (blnGotP2PIE == false) - { - return start; - } - - } - } - -#ifdef CONFIG_WFD - if (SCAN_RESULT_WFD_TYPE == pwdinfo->wfd_info->scan_result_type) - { - u32 blnGotWFD = false; - u8 wfd_ie[128] = { 0x00 }; - uint wfd_ielen = 0; - - if (rtw_get_wfd_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, wfd_ie, &wfd_ielen)) - { - u8 wfd_devinfo[6] = { 0x00 }; - uint wfd_devlen = 6; - - if (rtw_get_wfd_attr_content(wfd_ie, wfd_ielen, WFD_ATTR_DEVICE_INFO, wfd_devinfo, &wfd_devlen)) - { - if (pwdinfo->wfd_info->wfd_device_type == WFD_DEVINFO_PSINK) - { - /* the first two bits will indicate the WFD device type */ - if ((wfd_devinfo[1] & 0x03) == WFD_DEVINFO_SOURCE) - { - /* If this device is Miracast PSink device, the scan reuslt should just provide the Miracast source. */ - blnGotWFD = true; - } - } - else if (pwdinfo->wfd_info->wfd_device_type == WFD_DEVINFO_SOURCE) - { - /* the first two bits will indicate the WFD device type */ - if ((wfd_devinfo[1] & 0x03) == WFD_DEVINFO_PSINK) - { - /* If this device is Miracast source device, the scan reuslt should just provide the Miracast PSink. */ - /* Todo: How about the SSink?! */ - blnGotWFD = true; - } - } - } - } - - if (blnGotWFD == false) - { - return start; - } - } -#endif /* CONFIG_WFD */ -#endif /* CONFIG_P2P */ /* AP MAC address */ iwe.cmd = SIOCGIWAP; iwe.u.ap_addr.sa_family = ARPHRD_ETHER; @@ -583,9 +416,6 @@ static int wpa_set_encryption(struct net_device *dev, struct ieee_param *param, struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); struct mlme_priv *pmlmepriv = &padapter->mlmepriv; struct security_priv *psecuritypriv = &padapter->securitypriv; -#ifdef CONFIG_P2P - struct wifidirect_info* pwdinfo = &padapter->wdinfo; -#endif /* CONFIG_P2P */ param->u.crypt.err = 0; param->u.crypt.alg[IEEE_CRYPT_ALG_NAME_LEN - 1] = '\0'; @@ -717,11 +547,6 @@ static int wpa_set_encryption(struct net_device *dev, struct ieee_param *param, padapter->securitypriv.dot118021XGrpKeyid = param->u.crypt.idx; rtw_set_key(padapter,&padapter->securitypriv, param->u.crypt.idx, 1); -#ifdef CONFIG_P2P - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_PROVISIONING_ING)) - rtw_p2p_set_state(pwdinfo, P2P_STATE_PROVISIONING_DONE); -#endif /* CONFIG_P2P */ - } } @@ -753,9 +578,6 @@ static int rtw_set_wpa_ie(struct rtw_adapter *padapter, char *pie, unsigned shor int ret = 0; u8 null_addr[]= {0, 0, 0, 0, 0, 0}; int i; -#ifdef CONFIG_P2P - struct wifidirect_info* pwdinfo = &padapter->wdinfo; -#endif /* CONFIG_P2P */ if ((ielen > MAX_WPA_IE_LEN) || (pie == NULL)) { _clr_fwstate_(&padapter->mlmepriv, WIFI_UNDER_WPS); @@ -867,10 +689,6 @@ static int rtw_set_wpa_ie(struct rtw_adapter *padapter, char *pie, unsigned shor memcpy(padapter->securitypriv.wps_ie, &buf[cnt], padapter->securitypriv.wps_ie_len); set_fwstate(&padapter->mlmepriv, WIFI_UNDER_WPS); -#ifdef CONFIG_P2P - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_GONEGO_OK)) - rtw_p2p_set_state(pwdinfo, P2P_STATE_PROVISIONING_ING); -#endif /* CONFIG_P2P */ cnt += buf[cnt+1]+2; break; @@ -1429,9 +1247,6 @@ static int rtw_wx_set_scan(struct net_device *dev, struct iw_request_info *a, struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); struct mlme_priv *pmlmepriv = &padapter->mlmepriv; struct ndis_802_11_ssid ssid[RTW_SSID_SCAN_AMOUNT]; -#ifdef CONFIG_P2P - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); -#endif /* CONFIG_P2P */ RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_, ("rtw_wx_set_scan\n")); #ifdef DBG_IOCTL @@ -1504,16 +1319,6 @@ static int rtw_wx_set_scan(struct net_device *dev, struct iw_request_info *a, /* the pmlmepriv->scan_interval is always equal to 3. */ /* So, the wpa_supplicant won't find out the WPS SoftAP. */ -#ifdef CONFIG_P2P - if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - rtw_p2p_set_pre_state(pwdinfo, rtw_p2p_state(pwdinfo)); - rtw_p2p_set_state(pwdinfo, P2P_STATE_FIND_PHASE_SEARCH); - rtw_p2p_findphase_ex_set(pwdinfo, P2P_FINDPHASE_EX_FULL); - rtw_free_network_queue(padapter, true); - } -#endif /* CONFIG_P2P */ - memset(ssid, 0, sizeof(struct ndis_802_11_ssid)*RTW_SSID_SCAN_AMOUNT); #if WIRELESS_EXT >= 17 @@ -1628,9 +1433,6 @@ static int rtw_wx_get_scan(struct net_device *dev, struct iw_request_info *a, int wait_status; #ifdef CONFIG_CONCURRENT_MODE #endif -#ifdef CONFIG_P2P - struct wifidirect_info* pwdinfo = &padapter->wdinfo; -#endif /* CONFIG_P2P */ RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_, ("rtw_wx_get_scan\n")); RT_TRACE(_module_rtl871x_ioctl_os_c, _drv_info_, (" Start of Query SIOCGIWSCAN .\n")); @@ -1644,25 +1446,7 @@ static int rtw_wx_get_scan(struct net_device *dev, struct iw_request_info *a, goto exit; } -#ifdef CONFIG_P2P - if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - /* P2P is enabled */ - if (padapter->chip_type == RTL8192D) - wait_for_surveydone = 300; /* Because the 8192du supports more channels. */ - else - wait_for_surveydone = 200; - } - else - { - /* P2P is disabled */ - wait_for_surveydone = 100; - } -#else - { - wait_for_surveydone = 100; - } -#endif /* CONFIG_P2P */ + wait_for_surveydone = 100; wait_status = _FW_UNDER_SURVEY #ifndef CONFIG_ANDROID @@ -3137,2152 +2921,107 @@ static int rtw_wps_start(struct net_device *dev, rtw_led_control(padapter, LED_CTL_STOP_WPS_FAIL); } -#ifdef CONFIG_INTEL_WIDI - process_intel_widi_wps_status(padapter, u32wps_start); -#endif /* CONFIG_INTEL_WIDI */ - exit: return ret; } -#ifdef CONFIG_P2P -static int rtw_wext_p2p_enable(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) +static int rtw_p2p_set(struct net_device *dev, + struct iw_request_info *info, + union iwreq_data *wrqu, char *extra) { - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct mlme_priv *pmlmepriv = &(padapter->mlmepriv); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; - struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv; - enum P2P_ROLE init_role = P2P_ROLE_DISABLE; - - if (*extra == '0') - init_role = P2P_ROLE_DISABLE; - else if (*extra == '1') - init_role = P2P_ROLE_DEVICE; - else if (*extra == '2') - init_role = P2P_ROLE_CLIENT; - else if (*extra == '3') - init_role = P2P_ROLE_GO; - - if (_FAIL == rtw_p2p_enable(padapter, init_role)) - { - ret = -EFAULT; - goto exit; - } - - /* set channel/bandwidth */ - if (init_role != P2P_ROLE_DISABLE) - { - u8 channel, ch_offset; - u16 bwmode; - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_LISTEN)) - { - /* Stay at the listen state and wait for discovery. */ - channel = pwdinfo->listen_channel; - pwdinfo->operating_channel = pwdinfo->listen_channel; - ch_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE; - bwmode = HT_CHANNEL_WIDTH_20; - } -#ifdef CONFIG_CONCURRENT_MODE - else if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_IDLE)) - { - struct rtw_adapter *pbuddy_adapter = padapter->pbuddy_adapter; - struct mlme_priv *pbuddy_mlmepriv = &pbuddy_adapter->mlmepriv; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; - - _set_timer(&pwdinfo->ap_p2p_switch_timer, pwdinfo->ext_listen_interval); - if (check_fwstate(pbuddy_mlmepriv, _FW_LINKED)) - { - pwdinfo->operating_channel = pbuddy_mlmeext->cur_channel; - /* How about the ch_offset and bwmode ?? */ - } - else - { - pwdinfo->operating_channel = pwdinfo->listen_channel; - } - - channel = pbuddy_mlmeext->cur_channel; - ch_offset = pbuddy_mlmeext->cur_ch_offset; - bwmode = pbuddy_mlmeext->cur_bwmode; - } -#endif - else - { - pwdinfo->operating_channel = pmlmeext->cur_channel; - - channel = pwdinfo->operating_channel; - ch_offset = pmlmeext->cur_ch_offset; - bwmode = pmlmeext->cur_bwmode; - } - - set_channel_bwmode(padapter, channel, ch_offset, bwmode); - } -exit: return ret; } -static int rtw_p2p_set_go_nego_ssid(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) +static int rtw_p2p_get(struct net_device *dev, + struct iw_request_info *info, + union iwreq_data *wrqu, char *extra) { - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct mlme_priv *pmlmepriv = &(padapter->mlmepriv); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - DBG_8192D("[%s] ssid = %s, len = %d\n", __func__, extra, (u32)strlen(extra)); - memcpy(pwdinfo->nego_ssid, extra, strlen(extra)); - pwdinfo->nego_ssidlen = strlen(extra); + int ret = 0; - return 0; + return ret; } -static int rtw_p2p_set_intent(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) +static int rtw_p2p_get2(struct net_device *dev, + struct iw_request_info *info, + union iwreq_data *wrqu, char *extra) { - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - u8 intent = pwdinfo->intent; - - switch (wrqu->data.length) - { - case 1: - { - intent = extra[0] - '0'; - break; - } - case 2: - { - intent = str_2char2num(extra[0], extra[1]); - break; - } - } - - if (intent <= 15) - { - pwdinfo->intent = intent; - } - else - { - ret = -1; - } - DBG_8192D("[%s] intent = %d\n", __func__, intent); + int ret = 0; return ret; } -static int rtw_p2p_set_listen_ch(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) +static int rtw_rereg_nd_name(struct net_device *dev, + struct iw_request_info *info, + union iwreq_data *wrqu, char *extra) { - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - u8 listen_ch = pwdinfo->listen_channel; /* Listen channel number */ + struct rtw_adapter *padapter = rtw_netdev_priv(dev); + struct rereg_nd_name_data *rereg_priv = &padapter->rereg_nd_name_priv; + char new_ifname[IFNAMSIZ]; - switch (wrqu->data.length) - { - case 1: - { - listen_ch = extra[0] - '0'; - break; - } - case 2: - { - listen_ch = str_2char2num(extra[0], extra[1]); - break; - } - } + if (rereg_priv->old_ifname[0] == 0) { + char *reg_ifname; +#ifdef CONFIG_CONCURRENT_MODE + if (padapter->isprimary) + reg_ifname = padapter->registrypriv.ifname; + else +#endif + reg_ifname = padapter->registrypriv.if2name; - if ((listen_ch == 1) || (listen_ch == 6) || (listen_ch == 11)) - { - pwdinfo->listen_channel = listen_ch; - set_channel_bwmode(padapter, pwdinfo->listen_channel, HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20); - } - else - { - ret = -1; + strncpy(rereg_priv->old_ifname, reg_ifname, IFNAMSIZ); + rereg_priv->old_ifname[IFNAMSIZ-1] = 0; } - DBG_8192D("[%s] listen_ch = %d\n", __func__, pwdinfo->listen_channel); - - return ret; -} - -static int rtw_p2p_set_op_ch(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ -/* Commented by Albert 20110524 */ -/* This function is used to set the operating channel if the driver will become the group owner */ + /* DBG_8192D("%s wrqu->data.length:%d\n", __func__, wrqu->data.length); */ + if (wrqu->data.length > IFNAMSIZ) + return -EFAULT; - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - u8 op_ch = pwdinfo->operating_channel; /* Operating channel number */ + if (copy_from_user(new_ifname, wrqu->data.pointer, IFNAMSIZ)) { + return -EFAULT; + } - switch (wrqu->data.length) - { - case 1: - { - op_ch = extra[0] - '0'; - break; - } - case 2: - { - op_ch = str_2char2num(extra[0], extra[1]); - break; - } + if (0 == strcmp(rereg_priv->old_ifname, new_ifname)) { + return ret; } - if (op_ch > 0) - { - pwdinfo->operating_channel = op_ch; + DBG_8192D("%s new_ifname:%s\n", __func__, new_ifname); + if (0 != (ret = rtw_change_ifname(padapter, new_ifname))) { + goto exit; } - else - { - ret = -1; + + if (!memcmp(rereg_priv->old_ifname, "disable%d", 9)) { + padapter->ledpriv.bRegUseLed = rereg_priv->old_bRegUseLed; + rtw_hal_sw_led_init(padapter); + rtw_ips_mode_req(&padapter->pwrctrlpriv, rereg_priv->old_ips_mode); } - DBG_8192D("[%s] op_ch = %d\n", __func__, pwdinfo->operating_channel); + strncpy(rereg_priv->old_ifname, new_ifname, IFNAMSIZ); + rereg_priv->old_ifname[IFNAMSIZ-1] = 0; + + if (!memcmp(new_ifname, "disable%d", 9)) { + DBG_8192D("%s disable\n", __func__); + /* free network queue for Android's timming issue */ + rtw_free_network_queue(padapter, true); + + /* close led */ + rtw_led_control(padapter, LED_CTL_POWER_OFF); + rereg_priv->old_bRegUseLed = padapter->ledpriv.bRegUseLed; + padapter->ledpriv.bRegUseLed = false; + rtw_hal_sw_led_deinit(padapter); + /* the interface is being "disabled", we can do deeper IPS */ + rereg_priv->old_ips_mode = rtw_get_ips_mode_req(&padapter->pwrctrlpriv); + rtw_ips_mode_req(&padapter->pwrctrlpriv, IPS_NORMAL); + } +exit: return ret; } -static int rtw_p2p_profilefound(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - /* Comment by Albert 2010/10/13 */ - /* Input data format: */ - /* Ex: 0 */ - /* Ex: 1XX:XX:XX:XX:XX:XXYYSSID */ - /* 0 => Reflush the profile record list. */ - /* 1 => Add the profile list */ - /* XX:XX:XX:XX:XX:XX => peer's MAC Address (ex: 00:E0:4C:00:00:01) */ - /* YY => SSID Length */ - /* SSID => SSID for persistence group */ - - DBG_8192D("[%s] In value = %s, len = %d\n", __func__, extra, wrqu->data.length -1); - - /* The upper application should pass the SSID to driver by using this rtw_p2p_profilefound function. */ - if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - if (extra[0] == '0') - { - /* Remove all the profile information of wifidirect_info structure. */ - memset(&pwdinfo->profileinfo[0], 0x00, sizeof(struct profile_info) * P2P_MAX_PERSISTENT_GROUP_NUM); - pwdinfo->profileindex = 0; - } - else - { - if (pwdinfo->profileindex >= P2P_MAX_PERSISTENT_GROUP_NUM) - { - ret = -1; - } - else - { - int jj, kk; - - /* Add this profile information into pwdinfo->profileinfo */ - /* Ex: 1XX:XX:XX:XX:XX:XXYYSSID */ - for (jj = 0, kk = 1; jj < ETH_ALEN; jj++, kk += 3) - { - pwdinfo->profileinfo[pwdinfo->profileindex].peermac[jj] = key_2char2num(extra[kk], extra[kk+ 1]); - } - - pwdinfo->profileindex++; - } - } - } - - return ret; -} - -static int rtw_p2p_setDN(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - DBG_8192D("[%s] %s %d\n", __func__, extra, wrqu->data.length -1); - memset(pwdinfo->device_name, 0x00, WPS_MAX_DEVICE_NAME_LEN); - memcpy(pwdinfo->device_name, extra, wrqu->data.length - 1); - pwdinfo->device_name_len = wrqu->data.length - 1; - return 0; -} - -static int rtw_p2p_get_status(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - if (padapter->bShowGetP2PState) { - DBG_8192D("[%s] Role = %d, Status = %d, peer addr = %.2X:%.2X:%.2X:%.2X:%.2X:%.2X\n", - __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo), - pwdinfo->p2p_peer_interface_addr[0], - pwdinfo->p2p_peer_interface_addr[1], - pwdinfo->p2p_peer_interface_addr[2], - pwdinfo->p2p_peer_interface_addr[3], - pwdinfo->p2p_peer_interface_addr[4], - pwdinfo->p2p_peer_interface_addr[5]); - } - - /* Commented by Albert 2010/10/12 */ - /* Because of the output size limitation, I had removed the "Role" information. */ - /* About the "Role" information, we will use the new private IOCTL to get the "Role" information. */ - sprintf(extra, "\n\nStatus =%.2d\n", rtw_p2p_state(pwdinfo)); - wrqu->data.length = strlen(extra); - - return ret; -} - -/* Commented by Albert 20110520 */ -/* This function will return the config method description */ -/* This config method description will show us which config method the remote P2P device is intented to use */ -/* by sending the provisioning discovery request frame. */ - -static int rtw_p2p_get_req_cm(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - sprintf(extra, "\n\nCM =%s\n", pwdinfo->rx_prov_disc_info.strconfig_method_desc_of_prov_disc_req); - wrqu->data.length = strlen(extra); - return ret; -} - -static int rtw_p2p_get_role(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - DBG_8192D("[%s] Role = %d, Status = %d, peer addr = %.2X:%.2X:%.2X:%.2X:%.2X:%.2X\n", - __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo), - pwdinfo->p2p_peer_interface_addr[0], - pwdinfo->p2p_peer_interface_addr[1], - pwdinfo->p2p_peer_interface_addr[2], - pwdinfo->p2p_peer_interface_addr[3], - pwdinfo->p2p_peer_interface_addr[4], - pwdinfo->p2p_peer_interface_addr[5]); - - sprintf(extra, "\n\nRole =%.2d\n", rtw_p2p_role(pwdinfo)); - wrqu->data.length = strlen(extra); - return ret; -} - -static int rtw_p2p_get_peer_ifaddr(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - DBG_8192D("[%s] Role = %d, Status = %d, peer addr = %.2X:%.2X:%.2X:%.2X:%.2X:%.2X\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo), - pwdinfo->p2p_peer_interface_addr[0], pwdinfo->p2p_peer_interface_addr[1], pwdinfo->p2p_peer_interface_addr[2], - pwdinfo->p2p_peer_interface_addr[3], pwdinfo->p2p_peer_interface_addr[4], pwdinfo->p2p_peer_interface_addr[5]); - - sprintf(extra, "\nMAC %.2X:%.2X:%.2X:%.2X:%.2X:%.2X", - pwdinfo->p2p_peer_interface_addr[0], pwdinfo->p2p_peer_interface_addr[1], pwdinfo->p2p_peer_interface_addr[2], - pwdinfo->p2p_peer_interface_addr[3], pwdinfo->p2p_peer_interface_addr[4], pwdinfo->p2p_peer_interface_addr[5]); - wrqu->data.length = strlen(extra); - return ret; -} - -static int rtw_p2p_get_peer_devaddr(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) - -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - DBG_8192D("[%s] Role = %d, Status = %d, peer addr = %.2X:%.2X:%.2X:%.2X:%.2X:%.2X\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo), - pwdinfo->rx_prov_disc_info.peerDevAddr[0], pwdinfo->rx_prov_disc_info.peerDevAddr[1], - pwdinfo->rx_prov_disc_info.peerDevAddr[2], pwdinfo->rx_prov_disc_info.peerDevAddr[3], - pwdinfo->rx_prov_disc_info.peerDevAddr[4], pwdinfo->rx_prov_disc_info.peerDevAddr[5]); - sprintf(extra, "\n%.2X%.2X%.2X%.2X%.2X%.2X", - pwdinfo->rx_prov_disc_info.peerDevAddr[0], pwdinfo->rx_prov_disc_info.peerDevAddr[1], - pwdinfo->rx_prov_disc_info.peerDevAddr[2], pwdinfo->rx_prov_disc_info.peerDevAddr[3], - pwdinfo->rx_prov_disc_info.peerDevAddr[4], pwdinfo->rx_prov_disc_info.peerDevAddr[5]); - wrqu->data.length = strlen(extra); - return ret; -} - -static int rtw_p2p_get_peer_devaddr_by_invitation(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - DBG_8192D("[%s] Role = %d, Status = %d, peer addr = %.2X:%.2X:%.2X:%.2X:%.2X:%.2X\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo), - pwdinfo->p2p_peer_device_addr[0], pwdinfo->p2p_peer_device_addr[1], - pwdinfo->p2p_peer_device_addr[2], pwdinfo->p2p_peer_device_addr[3], - pwdinfo->p2p_peer_device_addr[4], pwdinfo->p2p_peer_device_addr[5]); - sprintf(extra, "\nMAC %.2X:%.2X:%.2X:%.2X:%.2X:%.2X", - pwdinfo->p2p_peer_device_addr[0], pwdinfo->p2p_peer_device_addr[1], - pwdinfo->p2p_peer_device_addr[2], pwdinfo->p2p_peer_device_addr[3], - pwdinfo->p2p_peer_device_addr[4], pwdinfo->p2p_peer_device_addr[5]); - wrqu->data.length = strlen(extra); - return 0; -} - -static int rtw_p2p_get_groupid(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) - -{ - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - sprintf(extra, "\n%pM %s", - pwdinfo->groupid_info.go_device_addr, - pwdinfo->groupid_info.ssid); - wrqu->data.length = strlen(extra); - return 0; -} - -static int rtw_p2p_get_op_ch(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - DBG_8192D("[%s] Op_ch = %02x\n", __func__, pwdinfo->operating_channel); - - sprintf(extra, "\n\nOp_ch =%.2d\n", pwdinfo->operating_channel); - wrqu->data.length = strlen(extra); - return 0; -} - -inline static void macstr2num(u8 *dst, u8 *src) -{ - int jj, kk; - for (jj = 0, kk = 0; jj < ETH_ALEN; jj++, kk += 3) - { - dst[jj] = key_2char2num(src[kk], src[kk + 1]); - } -} - -static int rtw_p2p_get_wps_configmethod(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra, char *subcmd) -{ - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - u8 peerMAC[ETH_ALEN] = { 0x00 }; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct list_head *plist, *phead; - struct __queue *queue = &(pmlmepriv->scanned_queue); - struct wlan_network *pnetwork = NULL; - u8 blnMatch = 0; - __be16 attr_content = 0; - u16 c_attr_content; - uint attr_contentlen = 0; - u8 attr_content_str[P2P_PRIVATE_IOCTL_SET_LEN] = { 0x00 }; - - /* Commented by Albert 20110727 */ - /* The input data is the MAC address which the application wants to know its WPS config method. */ - /* After knowing its WPS config method, the application can decide the config method for provisioning discovery. */ - /* Format: iwpriv wlanx p2p_get_wpsCM 00:E0:4C:00:00:05 */ - - DBG_8192D("[%s] data = %s\n", __func__, subcmd); - - macstr2num(peerMAC, subcmd); - - spin_lock_bh(&(pmlmepriv->scanned_queue.lock)); - - phead = get_list_head(queue); - plist = phead->next; - - while (1) - { - if (rtw_end_of_queue_search(phead, plist) == true) break; - - pnetwork = container_of(plist, struct wlan_network, list); - if (!memcmp(pnetwork->network.MacAddress, peerMAC, ETH_ALEN)) - { - u8 *wpsie; - uint wpsie_len = 0; - - /* The mac address is matched. */ - - if ((wpsie = rtw_get_wps_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, NULL, &wpsie_len))) - { - rtw_get_wps_attr_content(wpsie, wpsie_len, WPS_ATTR_CONF_METHOD, (u8 *)&attr_content, &attr_contentlen); - if (attr_contentlen) { - c_attr_content = be16_to_cpu(attr_content); - sprintf(attr_content_str, "\n\nM =%.4d", c_attr_content); - blnMatch = 1; - } - } - break; - } - - plist = plist->next; - - } - - spin_unlock_bh(&(pmlmepriv->scanned_queue.lock)); - - if (!blnMatch) - { - sprintf(attr_content_str, "\n\nM = 0000"); - } - - wrqu->data.length = strlen(attr_content_str); - memcpy(extra, attr_content_str, wrqu->data.length); - - return ret; -} - -#ifdef CONFIG_WFD -static int rtw_p2p_get_peer_wfd_port(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - DBG_8192D("[%s] p2p_state = %d\n", __func__, rtw_p2p_state(pwdinfo)); - - sprintf(extra, "\n\nPort =%d\n", pwdinfo->wfd_info->peer_rtsp_ctrlport); - DBG_8192D("[%s] remote port = %d\n", __func__, pwdinfo->wfd_info->peer_rtsp_ctrlport); - - wrqu->data.length = strlen(extra); - return ret; -} - -static int rtw_p2p_get_peer_wfd_preferred_connection(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - sprintf(extra, "\n\nwfd_pc =%d\n", pwdinfo->wfd_info->wfd_pc); - DBG_8192D("[%s] wfd_pc = %d\n", __func__, pwdinfo->wfd_info->wfd_pc); - - wrqu->data.length = strlen(extra); - pwdinfo->wfd_info->wfd_pc = false; /* Reset the WFD preferred connection to P2P */ - return ret; -} - -static int rtw_p2p_get_peer_wfd_session_available(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - sprintf(extra, "\n\nwfd_sa =%d\n", pwdinfo->wfd_info->peer_session_avail); - DBG_8192D("[%s] wfd_sa = %d\n", __func__, pwdinfo->wfd_info->peer_session_avail); - - wrqu->data.length = strlen(extra); - pwdinfo->wfd_info->peer_session_avail = true; /* Reset the WFD session available */ - return ret; -} - -#endif /* CONFIG_WFD */ - -static int rtw_p2p_get_go_device_address(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra, char *subcmd) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - u8 peerMAC[ETH_ALEN] = { 0x00 }; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct list_head *plist, *phead; - struct __queue *queue = &(pmlmepriv->scanned_queue); - struct wlan_network *pnetwork = NULL; - u8 blnMatch = 0; - u8 *p2pie; - uint p2pielen = 0, attr_contentlen = 0; - u8 attr_content[100] = { 0x00 }; - u8 go_devadd_str[P2P_PRIVATE_IOCTL_SET_LEN] = { 0x00 }; - - /* Commented by Albert 20121209 */ - /* The input data is the GO's interface address which the application wants to know its device address. */ - /* Format: iwpriv wlanx p2p_get2 go_devadd = 00:E0:4C:00:00:05 */ - - DBG_8192D("[%s] data = %s\n", __func__, subcmd); - - macstr2num(peerMAC, subcmd); - - spin_lock_bh(&(pmlmepriv->scanned_queue.lock)); - - phead = get_list_head(queue); - plist = phead->next; - - while (1) - { - if (rtw_end_of_queue_search(phead, plist) == true) break; - - pnetwork = container_of(plist, struct wlan_network, list); - if (!memcmp(pnetwork->network.MacAddress, peerMAC, ETH_ALEN)) - { - /* Commented by Albert 2011/05/18 */ - /* Match the device address located in the P2P IE */ - /* This is for the case that the P2P device address is not the same as the P2P interface address. */ - - if ((p2pie = rtw_get_p2p_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, NULL, &p2pielen))) - { - while (p2pie) - { - /* The P2P Device ID attribute is included in the Beacon frame. */ - /* The P2P Device Info attribute is included in the probe response frame. */ - - memset(attr_content, 0x00, 100); - if (rtw_get_p2p_attr_content(p2pie, p2pielen, P2P_ATTR_DEVICE_ID, attr_content, &attr_contentlen)) - { - /* Handle the P2P Device ID attribute of Beacon first */ - blnMatch = 1; - break; - - } else if (rtw_get_p2p_attr_content(p2pie, p2pielen, P2P_ATTR_DEVICE_INFO, attr_content, &attr_contentlen)) - { - /* Handle the P2P Device Info attribute of probe response */ - blnMatch = 1; - break; - } - - /* Get the next P2P IE */ - p2pie = rtw_get_p2p_ie(p2pie + p2pielen, pnetwork->network.IELength - 12 - (p2pie - &pnetwork->network.IEs[12] + p2pielen), NULL, &p2pielen); - } - } - } - - plist = plist->next; - - } - - spin_unlock_bh(&(pmlmepriv->scanned_queue.lock)); - - if (!blnMatch) - { - sprintf(go_devadd_str, "\n\ndev_add = NULL"); - } else - { - sprintf(go_devadd_str, "\n\ndev_add =%.2X:%.2X:%.2X:%.2X:%.2X:%.2X", - attr_content[0], attr_content[1], attr_content[2], attr_content[3], attr_content[4], attr_content[5]); - } - - wrqu->data.length = strlen(go_devadd_str); - memcpy(extra, go_devadd_str, wrqu->data.length); - - return ret; -} - -static int rtw_p2p_get_device_type(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra, char *subcmd) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - u8 peerMAC[ETH_ALEN] = { 0x00 }; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct list_head *plist, *phead; - struct __queue *queue = &(pmlmepriv->scanned_queue); - struct wlan_network *pnetwork = NULL; - u8 blnMatch = 0; - u8 dev_type[8] = { 0x00 }; - uint dev_type_len = 0; - u8 dev_type_str[P2P_PRIVATE_IOCTL_SET_LEN] = { 0x00 }; /* +9 is for the str "dev_type =", we have to clear it at wrqu->data.pointer */ - - /* Commented by Albert 20121209 */ - /* The input data is the MAC address which the application wants to know its device type. */ - /* Such user interface could know the device type. */ - /* Format: iwpriv wlanx p2p_get2 dev_type = 00:E0:4C:00:00:05 */ - - DBG_8192D("[%s] data = %s\n", __func__, subcmd); - - macstr2num(peerMAC, subcmd); - - spin_lock_bh(&(pmlmepriv->scanned_queue.lock)); - - phead = get_list_head(queue); - plist = phead->next; - - while (1) - { - if (rtw_end_of_queue_search(phead, plist) == true) break; - - pnetwork = container_of(plist, struct wlan_network, list); - if (!memcmp(pnetwork->network.MacAddress, peerMAC, ETH_ALEN)) - { - u8 *wpsie; - uint wpsie_len = 0; - - /* The mac address is matched. */ - - if ((wpsie = rtw_get_wps_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, NULL, &wpsie_len))) - { - rtw_get_wps_attr_content(wpsie, wpsie_len, WPS_ATTR_PRIMARY_DEV_TYPE, dev_type, &dev_type_len); - if (dev_type_len) - { - __be16 type; - - memcpy(&type, dev_type, 2); - sprintf(dev_type_str, "\n\nN =%.2d", be16_to_cpu(type)); - blnMatch = 1; - } - } - break; - } - - plist = plist->next; - - } - - spin_unlock_bh(&(pmlmepriv->scanned_queue.lock)); - - if (!blnMatch) - { - sprintf(dev_type_str, "\n\nN = 00"); - } - - wrqu->data.length = strlen(dev_type_str); - memcpy(extra, dev_type_str, wrqu->data.length); - - return ret; -} - -static int rtw_p2p_get_device_name(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra, char *subcmd) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - u8 peerMAC[ETH_ALEN] = { 0x00 }; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct list_head *plist, *phead; - struct __queue *queue = &(pmlmepriv->scanned_queue); - struct wlan_network *pnetwork = NULL; - u8 blnMatch = 0; - u8 dev_name[WPS_MAX_DEVICE_NAME_LEN] = { 0x00 }; - uint dev_len = 0; - u8 dev_name_str[P2P_PRIVATE_IOCTL_SET_LEN] = { 0x00 }; - - /* Commented by Albert 20121225 */ - /* The input data is the MAC address which the application wants to know its device name. */ - /* Such user interface could show peer device's device name instead of ssid. */ - /* Format: iwpriv wlanx p2p_get2 devN = 00:E0:4C:00:00:05 */ - - DBG_8192D("[%s] data = %s\n", __func__, subcmd); - - macstr2num(peerMAC, subcmd); - - spin_lock_bh(&(pmlmepriv->scanned_queue.lock)); - - phead = get_list_head(queue); - plist = phead->next; - - while (1) - { - if (rtw_end_of_queue_search(phead, plist) == true) break; - - pnetwork = container_of(plist, struct wlan_network, list); - if (!memcmp(pnetwork->network.MacAddress, peerMAC, ETH_ALEN)) - { - u8 *wpsie; - uint wpsie_len = 0; - - /* The mac address is matched. */ - - if ((wpsie = rtw_get_wps_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, NULL, &wpsie_len))) - { - rtw_get_wps_attr_content(wpsie, wpsie_len, WPS_ATTR_DEVICE_NAME, dev_name, &dev_len); - if (dev_len) - { - sprintf(dev_name_str, "\n\nN =%s", dev_name); - blnMatch = 1; - } - } - break; - } - - plist = plist->next; - - } - - spin_unlock_bh(&(pmlmepriv->scanned_queue.lock)); - - if (!blnMatch) - { - sprintf(dev_name_str, "\n\nN = 0000"); - } - - wrqu->data.length = strlen(dev_name_str); - memcpy(extra, dev_name_str, wrqu->data.length); - - return ret; -} - -static int rtw_p2p_get_invitation_procedure(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra, char *subcmd) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - u8 peerMAC[ETH_ALEN] = { 0x00 }; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct list_head *plist, *phead; - struct __queue *queue = &(pmlmepriv->scanned_queue); - struct wlan_network *pnetwork = NULL; - u8 blnMatch = 0; - u8 *p2pie; - uint p2pielen = 0, attr_contentlen = 0; - u8 attr_content[2] = { 0x00 }; - u8 inv_proc_str[P2P_PRIVATE_IOCTL_SET_LEN] = { 0x00 }; - - /* Commented by Ouden 20121226 */ - /* The application wants to know P2P initation procedure is support or not. */ - /* Format: iwpriv wlanx p2p_get2 InvProc = 00:E0:4C:00:00:05 */ - - DBG_8192D("[%s] data = %s\n", __func__, subcmd); - - macstr2num(peerMAC, subcmd); - - spin_lock_bh(&(pmlmepriv->scanned_queue.lock)); - - phead = get_list_head(queue); - plist = phead->next; - - while (1) - { - if (rtw_end_of_queue_search(phead, plist) == true) break; - - pnetwork = container_of(plist, struct wlan_network, list); - if (!memcmp(pnetwork->network.MacAddress, peerMAC, ETH_ALEN)) - { - /* Commented by Albert 20121226 */ - /* Match the device address located in the P2P IE */ - /* This is for the case that the P2P device address is not the same as the P2P interface address. */ - - if ((p2pie = rtw_get_p2p_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, NULL, &p2pielen))) - { - while (p2pie) - { - if (rtw_get_p2p_attr_content(p2pie, p2pielen, P2P_ATTR_CAPABILITY, attr_content, &attr_contentlen)) - { - /* Handle the P2P capability attribute */ - blnMatch = 1; - break; - - } - - /* Get the next P2P IE */ - p2pie = rtw_get_p2p_ie(p2pie + p2pielen, pnetwork->network.IELength - 12 - (p2pie - &pnetwork->network.IEs[12] + p2pielen), NULL, &p2pielen); - } - } - } - - plist = plist->next; - - } - - spin_unlock_bh(&(pmlmepriv->scanned_queue.lock)); - - if (!blnMatch) - { - sprintf(inv_proc_str, "\nIP =-1"); - } else - { - if (attr_content[0] & 0x20) - { - sprintf(inv_proc_str, "\nIP = 1"); - } else - { - sprintf(inv_proc_str, "\nIP = 0"); - } - } - - wrqu->data.length = strlen(inv_proc_str); - memcpy(extra, inv_proc_str, wrqu->data.length); - - return ret; -} - -static int rtw_p2p_connect(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - u8 peerMAC[ETH_ALEN] = { 0x00 }; - int jj, kk; - u8 peerMACStr[ETH_ALEN * 2] = { 0x00 }; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct list_head *plist, *phead; - struct __queue *queue = &(pmlmepriv->scanned_queue); - struct wlan_network *pnetwork = NULL; - uint uintPeerChannel = 0; -#ifdef CONFIG_CONCURRENT_MODE - struct rtw_adapter *pbuddy_adapter = padapter->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; -#endif /* CONFIG_CONCURRENT_MODE */ - - /* Commented by Albert 20110304 */ - /* The input data contains two informations. */ - /* 1. First information is the MAC address which wants to formate with */ - /* 2. Second information is the WPS PINCode or "pbc" string for push button method */ - /* Format: 00:E0:4C:00:00:05 */ - /* Format: 00:E0:4C:00:00:05 */ - - DBG_8192D("[%s] data = %s\n", __func__, extra); - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - DBG_8192D("[%s] WiFi Direct is disable!\n", __func__); - return ret; - } - - if (pwdinfo->ui_got_wps_info == P2P_NO_WPSINFO) - { - return -1; - } - - for (jj = 0, kk = 0; jj < ETH_ALEN; jj++, kk += 3) - { - peerMAC[jj] = key_2char2num(extra[kk], extra[kk+ 1]); - } - - spin_lock_bh(&(pmlmepriv->scanned_queue.lock)); - - phead = get_list_head(queue); - plist = phead->next; - - while (1) - { - if (rtw_end_of_queue_search(phead, plist) == true) - break; - - pnetwork = container_of(plist, struct wlan_network, list); - if (!memcmp(pnetwork->network.MacAddress, peerMAC, ETH_ALEN)) { - uintPeerChannel = pnetwork->network.Configuration.DSConfig; - break; - } - - plist = plist->next; - - } - - spin_unlock_bh(&(pmlmepriv->scanned_queue.lock)); - - if (uintPeerChannel) - { -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - { - _cancel_timer_ex(&pwdinfo->ap_p2p_switch_timer); - } -#endif /* CONFIG_CONCURRENT_MODE */ - - memset(&pwdinfo->nego_req_info, 0x00, sizeof(struct tx_nego_req_info)); - memset(&pwdinfo->groupid_info, 0x00, sizeof(struct group_id_info)); - - pwdinfo->nego_req_info.peer_channel_num[0] = uintPeerChannel; - memcpy(pwdinfo->nego_req_info.peerDevAddr, pnetwork->network.MacAddress, ETH_ALEN); - pwdinfo->nego_req_info.benable = true; - - _cancel_timer_ex(&pwdinfo->restore_p2p_state_timer); - if (rtw_p2p_state(pwdinfo) != P2P_STATE_GONEGO_OK) - { - /* Restore to the listen state if the current p2p state is not nego OK */ - rtw_p2p_set_state(pwdinfo, P2P_STATE_LISTEN); - } - - rtw_p2p_set_pre_state(pwdinfo, rtw_p2p_state(pwdinfo)); - rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_ING); - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - { - /* Have to enter the power saving with the AP */ - set_channel_bwmode(padapter, pbuddy_mlmeext->cur_channel, pbuddy_mlmeext->cur_ch_offset, pbuddy_mlmeext->cur_bwmode); - - issue_nulldata(pbuddy_adapter, NULL, 1, 3, 500); - } -#endif /* CONFIG_CONCURRENT_MODE */ - - DBG_8192D("[%s] Start PreTx Procedure!\n", __func__); - _set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT); - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - { - _set_timer(&pwdinfo->restore_p2p_state_timer, P2P_CONCURRENT_GO_NEGO_TIMEOUT); - } - else - { - _set_timer(&pwdinfo->restore_p2p_state_timer, P2P_GO_NEGO_TIMEOUT); - } -#else - _set_timer(&pwdinfo->restore_p2p_state_timer, P2P_GO_NEGO_TIMEOUT); -#endif /* CONFIG_CONCURRENT_MODE */ - - } - else - { - DBG_8192D("[%s] Not Found in Scanning Queue~\n", __func__); - ret = -1; - } -exit: - return ret; -} - -static int rtw_p2p_invite_req(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - int jj, kk; - u8 peerMACStr[ETH_ALEN * 2] = { 0x00 }; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct list_head *plist, *phead; - struct __queue *queue = &(pmlmepriv->scanned_queue); - struct wlan_network *pnetwork = NULL; - uint uintPeerChannel = 0; - u8 attr_content[50] = { 0x00 }, _status = 0; - u8 *p2pie; - uint p2pielen = 0, attr_contentlen = 0; - struct tx_invite_req_info* pinvite_req_info = &pwdinfo->invitereq_info; -#ifdef CONFIG_CONCURRENT_MODE - struct rtw_adapter *pbuddy_adapter = padapter->pbuddy_adapter; - struct mlme_priv *pbuddy_mlmepriv = &pbuddy_adapter->mlmepriv; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; -#endif /* CONFIG_CONCURRENT_MODE */ - -#ifdef CONFIG_WFD - struct wifi_display_info* pwfd_info = pwdinfo->wfd_info; -#endif /* CONFIG_WFD */ - - /* Commented by Albert 20120321 */ - /* The input data contains two informations. */ - /* 1. First information is the P2P device address which you want to send to. */ - /* 2. Second information is the group id which combines with GO's mac address, space and GO's ssid. */ - /* Command line sample: iwpriv wlan0 p2p_set invite ="00:11:22:33:44:55 00:E0:4C:00:00:05 DIRECT-xy" */ - /* Format: 00:11:22:33:44:55 00:E0:4C:00:00:05 DIRECT-xy */ - - DBG_8192D("[%s] data = %s\n", __func__, extra); - - if (wrqu->data.length <= 37) - { - DBG_8192D("[%s] Wrong format!\n", __func__); - return ret; - } - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - DBG_8192D("[%s] WiFi Direct is disable!\n", __func__); - return ret; - } - else - { - /* Reset the content of struct tx_invite_req_info */ - pinvite_req_info->benable = false; - memset(pinvite_req_info->go_bssid, 0x00, ETH_ALEN); - memset(pinvite_req_info->go_ssid, 0x00, WLAN_SSID_MAXLEN); - pinvite_req_info->ssidlen = 0x00; - pinvite_req_info->operating_ch = pwdinfo->operating_channel; - memset(pinvite_req_info->peer_macaddr, 0x00, ETH_ALEN); - pinvite_req_info->token = 3; - } - - for (jj = 0, kk = 0; jj < ETH_ALEN; jj++, kk += 3) - { - pinvite_req_info->peer_macaddr[jj] = key_2char2num(extra[kk], extra[kk+ 1]); - } - - spin_lock_bh(&(pmlmepriv->scanned_queue.lock)); - - phead = get_list_head(queue); - plist = phead->next; - - while (1) - { - if (rtw_end_of_queue_search(phead, plist) == true) - break; - - pnetwork = container_of(plist, struct wlan_network, list); - - /* Commented by Albert 2011/05/18 */ - /* Match the device address located in the P2P IE */ - /* This is for the case that the P2P device address is not the same as the P2P interface address. */ - - if ((p2pie = rtw_get_p2p_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, NULL, &p2pielen))) - { - /* The P2P Device ID attribute is included in the Beacon frame. */ - /* The P2P Device Info attribute is included in the probe response frame. */ - - if (rtw_get_p2p_attr_content(p2pie, p2pielen, P2P_ATTR_DEVICE_ID, attr_content, &attr_contentlen)) - { - /* Handle the P2P Device ID attribute of Beacon first */ - if (!memcmp(attr_content, pinvite_req_info->peer_macaddr, ETH_ALEN)) - { - uintPeerChannel = pnetwork->network.Configuration.DSConfig; - break; - } - } - else if (rtw_get_p2p_attr_content(p2pie, p2pielen, P2P_ATTR_DEVICE_INFO, attr_content, &attr_contentlen)) - { - /* Handle the P2P Device Info attribute of probe response */ - if (!memcmp(attr_content, pinvite_req_info->peer_macaddr, ETH_ALEN)) - { - uintPeerChannel = pnetwork->network.Configuration.DSConfig; - break; - } - } - - } - - plist = plist->next; - - } - - spin_unlock_bh(&(pmlmepriv->scanned_queue.lock)); - -#ifdef CONFIG_WFD - if (uintPeerChannel) - { - u8 wfd_ie[128] = { 0x00 }; - uint wfd_ielen = 0; - - if (rtw_get_wfd_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, wfd_ie, &wfd_ielen)) - { - u8 wfd_devinfo[6] = { 0x00 }; - uint wfd_devlen = 6; - - DBG_8192D("[%s] Found WFD IE!\n", __func__); - if (rtw_get_wfd_attr_content(wfd_ie, wfd_ielen, WFD_ATTR_DEVICE_INFO, wfd_devinfo, &wfd_devlen)) - { - u16 wfd_devinfo_field = 0; - - /* Commented by Albert 20120319 */ - /* The first two bytes are the WFD device information field of WFD device information subelement. */ - /* In big endian format. */ - wfd_devinfo_field = RTW_GET_BE16(wfd_devinfo); - if (wfd_devinfo_field & WFD_DEVINFO_SESSION_AVAIL) - { - pwfd_info->peer_session_avail = true; - } - else - { - pwfd_info->peer_session_avail = false; - } - } - } - - if (false == pwfd_info->peer_session_avail) - { - DBG_8192D("[%s] WFD Session not avaiable!\n", __func__); - goto exit; - } - } -#endif /* CONFIG_WFD */ - - if (uintPeerChannel) - { -#ifdef CONFIG_CONCURRENT_MODE - if (check_fwstate(pbuddy_mlmepriv, _FW_LINKED)) - { - _cancel_timer_ex(&pwdinfo->ap_p2p_switch_timer); - } -#endif /* CONFIG_CONCURRENT_MODE */ - - /* Store the GO's bssid */ - for (jj = 0, kk = 18; jj < ETH_ALEN; jj++, kk += 3) - { - pinvite_req_info->go_bssid[jj] = key_2char2num(extra[kk], extra[kk+ 1]); - } - - /* Store the GO's ssid */ - pinvite_req_info->ssidlen = wrqu->data.length - 36; - memcpy(pinvite_req_info->go_ssid, &extra[36], (u32) pinvite_req_info->ssidlen); - pinvite_req_info->benable = true; - pinvite_req_info->peer_ch = uintPeerChannel; - - rtw_p2p_set_pre_state(pwdinfo, rtw_p2p_state(pwdinfo)); - rtw_p2p_set_state(pwdinfo, P2P_STATE_TX_INVITE_REQ); - -#ifdef CONFIG_CONCURRENT_MODE - if (check_fwstate(pbuddy_mlmepriv, _FW_LINKED)) - { - /* Have to enter the power saving with the AP */ - set_channel_bwmode(padapter, pbuddy_mlmeext->cur_channel, pbuddy_mlmeext->cur_ch_offset, pbuddy_mlmeext->cur_bwmode); - - issue_nulldata(pbuddy_adapter, NULL, 1, 3, 500); - } - else - { - set_channel_bwmode(padapter, uintPeerChannel, HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20); - } -#else - set_channel_bwmode(padapter, uintPeerChannel, HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20); -#endif - - _set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT); - -#ifdef CONFIG_CONCURRENT_MODE - if (check_fwstate(pbuddy_mlmepriv, _FW_LINKED)) - { - _set_timer(&pwdinfo->restore_p2p_state_timer, P2P_CONCURRENT_INVITE_TIMEOUT); - } - else - { - _set_timer(&pwdinfo->restore_p2p_state_timer, P2P_INVITE_TIMEOUT); - } -#else - _set_timer(&pwdinfo->restore_p2p_state_timer, P2P_INVITE_TIMEOUT); -#endif /* CONFIG_CONCURRENT_MODE */ - - } - else - { - DBG_8192D("[%s] NOT Found in the Scanning Queue!\n", __func__); - } -exit: - - return ret; -} - -static int rtw_p2p_set_persistent(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - int jj, kk; - u8 peerMACStr[ETH_ALEN * 2] = { 0x00 }; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct list_head *plist, *phead; - struct __queue *queue = &(pmlmepriv->scanned_queue); - struct wlan_network *pnetwork = NULL; - uint uintPeerChannel = 0; - u8 attr_content[50] = { 0x00 }, _status = 0; - u8 *p2pie; - uint p2pielen = 0, attr_contentlen = 0; - struct tx_invite_req_info* pinvite_req_info = &pwdinfo->invitereq_info; -#ifdef CONFIG_CONCURRENT_MODE - struct rtw_adapter *pbuddy_adapter = padapter->pbuddy_adapter; - struct mlme_priv *pbuddy_mlmepriv = &pbuddy_adapter->mlmepriv; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; -#endif /* CONFIG_CONCURRENT_MODE */ - -#ifdef CONFIG_WFD - struct wifi_display_info* pwfd_info = pwdinfo->wfd_info; -#endif /* CONFIG_WFD */ - - /* Commented by Albert 20120328 */ - /* The input data is 0 or 1 */ - /* 0: disable persistent group functionality */ - /* 1: enable persistent group founctionality */ - - DBG_8192D("[%s] data = %s\n", __func__, extra); - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - DBG_8192D("[%s] WiFi Direct is disable!\n", __func__); - return ret; - } - else - { - if (extra[0] == '0') /* Disable the persistent group function. */ - { - pwdinfo->persistent_supported = false; - } - else if (extra[0] == '1') /* Enable the persistent group function. */ - { - pwdinfo->persistent_supported = true; - } - else - { - pwdinfo->persistent_supported = false; - } - } - DBG_8192D("[%s] persistent_supported = %d\n", __func__, pwdinfo->persistent_supported); - -exit: - - return ret; -} - -#ifdef CONFIG_WFD -static int rtw_p2p_set_pc(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - u8 peerMAC[ETH_ALEN] = { 0x00 }; - int jj, kk; - u8 peerMACStr[ETH_ALEN * 2] = { 0x00 }; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct list_head *plist, *phead; - struct __queue *queue = &(pmlmepriv->scanned_queue); - struct wlan_network *pnetwork = NULL; - u8 attr_content[50] = { 0x00 }, _status = 0; - u8 *p2pie; - uint p2pielen = 0, attr_contentlen = 0; - uint uintPeerChannel = 0; -#ifdef CONFIG_CONCURRENT_MODE - struct rtw_adapter *pbuddy_adapter = padapter->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; -#endif /* CONFIG_CONCURRENT_MODE */ - struct wifi_display_info* pwfd_info = pwdinfo->wfd_info; - - /* Commented by Albert 20120512 */ - /* 1. Input information is the MAC address which wants to know the Preferred Connection bit (PC bit) */ - /* Format: 00:E0:4C:00:00:05 */ - - DBG_8192D("[%s] data = %s\n", __func__, extra); - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - DBG_8192D("[%s] WiFi Direct is disable!\n", __func__); - return ret; - } - - for (jj = 0, kk = 0; jj < ETH_ALEN; jj++, kk += 3) - { - peerMAC[jj] = key_2char2num(extra[kk], extra[kk+ 1]); - } - - spin_lock_bh(&(pmlmepriv->scanned_queue.lock)); - - phead = get_list_head(queue); - plist = phead->next; - - while (1) - { - if (rtw_end_of_queue_search(phead, plist) == true) - break; - - pnetwork = container_of(plist, struct wlan_network, list); - - /* Commented by Albert 2011/05/18 */ - /* Match the device address located in the P2P IE */ - /* This is for the case that the P2P device address is not the same as the P2P interface address. */ - - if ((p2pie = rtw_get_p2p_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, NULL, &p2pielen))) - { - /* The P2P Device ID attribute is included in the Beacon frame. */ - /* The P2P Device Info attribute is included in the probe response frame. */ - DBG_8192D("[%s] Got P2P IE\n", __func__); - if (rtw_get_p2p_attr_content(p2pie, p2pielen, P2P_ATTR_DEVICE_ID, attr_content, &attr_contentlen)) - { - /* Handle the P2P Device ID attribute of Beacon first */ - DBG_8192D("[%s] P2P_ATTR_DEVICE_ID\n", __func__); - if (!memcmp(attr_content, peerMAC, ETH_ALEN)) - { - uintPeerChannel = pnetwork->network.Configuration.DSConfig; - break; - } - } - else if (rtw_get_p2p_attr_content(p2pie, p2pielen, P2P_ATTR_DEVICE_INFO, attr_content, &attr_contentlen)) - { - /* Handle the P2P Device Info attribute of probe response */ - DBG_8192D("[%s] P2P_ATTR_DEVICE_INFO\n", __func__); - if (!memcmp(attr_content, peerMAC, ETH_ALEN)) - { - uintPeerChannel = pnetwork->network.Configuration.DSConfig; - break; - } - } - - } - - plist = plist->next; - - } - - spin_unlock_bh(&(pmlmepriv->scanned_queue.lock)); - DBG_8192D("[%s] channel = %d\n", __func__, uintPeerChannel); - - if (uintPeerChannel) - { - u8 wfd_ie[128] = { 0x00 }; - uint wfd_ielen = 0; - - if (rtw_get_wfd_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, wfd_ie, &wfd_ielen)) - { - u8 wfd_devinfo[6] = { 0x00 }; - uint wfd_devlen = 6; - - DBG_8192D("[%s] Found WFD IE!\n", __func__); - if (rtw_get_wfd_attr_content(wfd_ie, wfd_ielen, WFD_ATTR_DEVICE_INFO, wfd_devinfo, &wfd_devlen)) - { - u16 wfd_devinfo_field = 0; - - /* Commented by Albert 20120319 */ - /* The first two bytes are the WFD device information field of WFD device information subelement. */ - /* In big endian format. */ - wfd_devinfo_field = RTW_GET_BE16(wfd_devinfo); - if (wfd_devinfo_field & WFD_DEVINFO_PC_TDLS) - { - pwfd_info->wfd_pc = true; - } - else - { - pwfd_info->wfd_pc = false; - } - } - } - } - else - { - DBG_8192D("[%s] NOT Found in the Scanning Queue!\n", __func__); - } - -exit: - - return ret; -} - -static int rtw_p2p_set_wfd_device_type(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - struct wifi_display_info *pwfd_info = pwdinfo->wfd_info; - - /* Commented by Albert 20120328 */ - /* The input data is 0 or 1 */ - /* 0: specify to Miracast source device */ - /* 1 or others: specify to Miracast sink device (display device) */ - - DBG_8192D("[%s] data = %s\n", __func__, extra); - - if (extra[0] == '0') /* Set to Miracast source device. */ - { - pwfd_info->wfd_device_type = WFD_DEVINFO_SOURCE; - } - else /* Set to Miracast sink device. */ - { - pwfd_info->wfd_device_type = WFD_DEVINFO_PSINK; - } - -exit: - - return ret; -} - -static int rtw_p2p_set_scan_result_type(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - struct wifi_display_info *pwfd_info = pwdinfo->wfd_info; - - /* Commented by Albert 20120328 */ - /* The input data is 0 , 1 , 2 */ - /* 0: when the P2P is enabled, the scan result will return all the found P2P device. */ - /* 1: when the P2P is enabled, the scan result will return all the found P2P device and AP. */ - /* 2: when the P2P is enabled, the scan result will show up the found Miracast devices base on... */ - /* It will show up all the Miracast source device if this device is sink. */ - /* It will show up all the Miracast sink device if this device is source. */ - - DBG_8192D("[%s] data = %s\n", __func__, extra); - - if (extra[0] == '0') - { - pwfd_info->scan_result_type = SCAN_RESULT_P2P_ONLY; - } - else if (extra[0] == '1') - { - pwfd_info->scan_result_type = SCAN_RESULT_ALL; - } - else if (extra[0] == '2') - { - pwfd_info->scan_result_type = SCAN_RESULT_WFD_TYPE; - } - else - { - pwfd_info->scan_result_type = SCAN_RESULT_P2P_ONLY; - } - -exit: - - return ret; -} - -/* To set the WFD session available to enable or disable */ -static int rtw_p2p_set_sa(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - struct wifi_display_info *pwfd_info = pwdinfo->wfd_info; - - DBG_8192D("[%s] data = %s\n", __func__, extra); - - if (extra[0] == '0') /* Disable the session available. */ - pwdinfo->session_available = false; - else if (extra[0] == '1') /* Enable the session available. */ - pwdinfo->session_available = true; - else - pwdinfo->session_available = false; - DBG_8192D("[%s] session available = %d\n", __func__, pwdinfo->session_available); - -exit: - - return ret; -} -#endif /* CONFIG_WFD */ - -static int rtw_p2p_prov_disc(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - u8 peerMAC[ETH_ALEN] = { 0x00 }; - int jj, kk; - u8 peerMACStr[ETH_ALEN * 2] = { 0x00 }; - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - struct list_head *plist, *phead; - struct __queue *queue = &(pmlmepriv->scanned_queue); - struct wlan_network *pnetwork = NULL; - uint uintPeerChannel = 0; - u8 attr_content[100] = { 0x00 }, _status = 0; - u8 *p2pie; - uint p2pielen = 0, attr_contentlen = 0; -#ifdef CONFIG_CONCURRENT_MODE - struct rtw_adapter *pbuddy_adapter = padapter->pbuddy_adapter; - struct mlme_ext_priv *pbuddy_mlmeext = &pbuddy_adapter->mlmeextpriv; -#endif /* CONFIG_CONCURRENT_MODE */ - -#ifdef CONFIG_WFD - struct wifi_display_info* pwfd_info = pwdinfo->wfd_info; -#endif /* CONFIG_WFD */ - - /* Commented by Albert 20110301 */ - /* The input data contains two informations. */ - /* 1. First information is the MAC address which wants to issue the provisioning discovery request frame. */ - /* 2. Second information is the WPS configuration method which wants to discovery */ - /* Format: 00:E0:4C:00:00:05_display */ - /* Format: 00:E0:4C:00:00:05_keypad */ - /* Format: 00:E0:4C:00:00:05_pbc */ - /* Format: 00:E0:4C:00:00:05_label */ - - DBG_8192D("[%s] data = %s\n", __func__, extra); - - if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) - { - DBG_8192D("[%s] WiFi Direct is disable!\n", __func__); - return ret; - } - else - { - /* Reset the content of struct tx_provdisc_req_info excluded the wps_config_method_request. */ - memset(pwdinfo->tx_prov_disc_info.peerDevAddr, 0x00, ETH_ALEN); - memset(pwdinfo->tx_prov_disc_info.peerIFAddr, 0x00, ETH_ALEN); - memset(&pwdinfo->tx_prov_disc_info.ssid, 0x00, sizeof(struct ndis_802_11_ssid)); - pwdinfo->tx_prov_disc_info.peer_channel_num[0] = 0; - pwdinfo->tx_prov_disc_info.peer_channel_num[1] = 0; - pwdinfo->tx_prov_disc_info.benable = false; - } - - for (jj = 0, kk = 0; jj < ETH_ALEN; jj++, kk += 3) - { - peerMAC[jj] = key_2char2num(extra[kk], extra[kk+ 1]); - } - - if (!memcmp(&extra[18], "display", 7)) - { - pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_DISPLYA; - } - else if (!memcmp(&extra[18], "keypad", 7)) - { - pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_KEYPAD; - } - else if (!memcmp(&extra[18], "pbc", 3)) - { - pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_PUSH_BUTTON; - } - else if (!memcmp(&extra[18], "label", 5)) - { - pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_LABEL; - } - else - { - DBG_8192D("[%s] Unknown WPS config methodn", __func__); - return(ret); - } - - spin_lock_bh(&(pmlmepriv->scanned_queue.lock)); - - phead = get_list_head(queue); - plist = phead->next; - - while (1) - { - if (rtw_end_of_queue_search(phead, plist) == true) - break; - - if (uintPeerChannel != 0) - break; - - pnetwork = container_of(plist, struct wlan_network, list); - - /* Commented by Albert 2011/05/18 */ - /* Match the device address located in the P2P IE */ - /* This is for the case that the P2P device address is not the same as the P2P interface address. */ - - if ((p2pie = rtw_get_p2p_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, NULL, &p2pielen))) - { - while (p2pie) - { - /* The P2P Device ID attribute is included in the Beacon frame. */ - /* The P2P Device Info attribute is included in the probe response frame. */ - - if (rtw_get_p2p_attr_content(p2pie, p2pielen, P2P_ATTR_DEVICE_ID, attr_content, &attr_contentlen)) - { - /* Handle the P2P Device ID attribute of Beacon first */ - if (!memcmp(attr_content, peerMAC, ETH_ALEN)) - { - uintPeerChannel = pnetwork->network.Configuration.DSConfig; - break; - } - } - else if (rtw_get_p2p_attr_content(p2pie, p2pielen, P2P_ATTR_DEVICE_INFO, attr_content, &attr_contentlen)) - { - /* Handle the P2P Device Info attribute of probe response */ - if (!memcmp(attr_content, peerMAC, ETH_ALEN)) - { - uintPeerChannel = pnetwork->network.Configuration.DSConfig; - break; - } - } - - /* Get the next P2P IE */ - p2pie = rtw_get_p2p_ie(p2pie+p2pielen, pnetwork->network.IELength - 12 -(p2pie -&pnetwork->network.IEs[12] + p2pielen), NULL, &p2pielen); - } - } - - plist = plist->next; - - } - - spin_unlock_bh(&(pmlmepriv->scanned_queue.lock)); - -#ifdef CONFIG_WFD - { - u8 wfd_ie[128] = { 0x00 }; - uint wfd_ielen = 0; - - if (rtw_get_wfd_ie(&pnetwork->network.IEs[12], pnetwork->network.IELength - 12, wfd_ie, &wfd_ielen)) - { - u8 wfd_devinfo[6] = { 0x00 }; - uint wfd_devlen = 6; - - DBG_8192D("[%s] Found WFD IE!\n", __func__); - if (rtw_get_wfd_attr_content(wfd_ie, wfd_ielen, WFD_ATTR_DEVICE_INFO, wfd_devinfo, &wfd_devlen)) - { - u16 wfd_devinfo_field = 0; - - /* Commented by Albert 20120319 */ - /* The first two bytes are the WFD device information field of WFD device information subelement. */ - /* In big endian format. */ - wfd_devinfo_field = RTW_GET_BE16(wfd_devinfo); - if (wfd_devinfo_field & WFD_DEVINFO_SESSION_AVAIL) - { - pwfd_info->peer_session_avail = true; - } - else - { - pwfd_info->peer_session_avail = false; - } - } - } - - if (false == pwfd_info->peer_session_avail) - { - DBG_8192D("[%s] WFD Session not avaiable!\n", __func__); - goto exit; - } - } -#endif /* CONFIG_WFD */ - - if (uintPeerChannel) - { - - DBG_8192D("[%s] peer channel: %d!\n", __func__, uintPeerChannel); -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - { - _cancel_timer_ex(&pwdinfo->ap_p2p_switch_timer); - } -#endif /* CONFIG_CONCURRENT_MODE */ - memcpy(pwdinfo->tx_prov_disc_info.peerIFAddr, pnetwork->network.MacAddress, ETH_ALEN); - memcpy(pwdinfo->tx_prov_disc_info.peerDevAddr, peerMAC, ETH_ALEN); - pwdinfo->tx_prov_disc_info.peer_channel_num[0] = (u16) uintPeerChannel; - pwdinfo->tx_prov_disc_info.benable = true; - rtw_p2p_set_pre_state(pwdinfo, rtw_p2p_state(pwdinfo)); - rtw_p2p_set_state(pwdinfo, P2P_STATE_TX_PROVISION_DIS_REQ); - - if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_CLIENT)) - { - memcpy(&pwdinfo->tx_prov_disc_info.ssid, &pnetwork->network.Ssid, sizeof(struct ndis_802_11_ssid)); - } - else if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_DEVICE) || rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) - { - memcpy(pwdinfo->tx_prov_disc_info.ssid.Ssid, pwdinfo->p2p_wildcard_ssid, P2P_WILDCARD_SSID_LEN); - pwdinfo->tx_prov_disc_info.ssid.SsidLength = P2P_WILDCARD_SSID_LEN; - } - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - { - /* Have to enter the power saving with the AP */ - set_channel_bwmode(padapter, pbuddy_mlmeext->cur_channel, pbuddy_mlmeext->cur_ch_offset, pbuddy_mlmeext->cur_bwmode); - - issue_nulldata(pbuddy_adapter, NULL, 1, 3, 500); - } - else - { - set_channel_bwmode(padapter, uintPeerChannel, HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20); - } -#else - set_channel_bwmode(padapter, uintPeerChannel, HAL_PRIME_CHNL_OFFSET_DONT_CARE, HT_CHANNEL_WIDTH_20); -#endif - - _set_timer(&pwdinfo->pre_tx_scan_timer, P2P_TX_PRESCAN_TIMEOUT); - -#ifdef CONFIG_CONCURRENT_MODE - if (check_buddy_fwstate(padapter, _FW_LINKED)) - { - _set_timer(&pwdinfo->restore_p2p_state_timer, P2P_CONCURRENT_PROVISION_TIMEOUT); - } - else - { - _set_timer(&pwdinfo->restore_p2p_state_timer, P2P_PROVISION_TIMEOUT); - } -#else - _set_timer(&pwdinfo->restore_p2p_state_timer, P2P_PROVISION_TIMEOUT); -#endif /* CONFIG_CONCURRENT_MODE */ - - } - else - { - DBG_8192D("[%s] NOT Found in the Scanning Queue!\n", __func__); - } -exit: - - return ret; -} - -/* Added by Albert 20110328 */ -/* This function is used to inform the driver the user had specified the pin code value or pbc */ -/* to application. */ - -static int rtw_p2p_got_wpsinfo(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - - int ret = 0; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - - DBG_8192D("[%s] data = %s\n", __func__, extra); - /* Added by Albert 20110328 */ - /* if the input data is P2P_NO_WPSINFO -> reset the wpsinfo */ - /* if the input data is P2P_GOT_WPSINFO_PEER_DISPLAY_PIN -> the utility just input the PIN code got from the peer P2P device. */ - /* if the input data is P2P_GOT_WPSINFO_SELF_DISPLAY_PIN -> the utility just got the PIN code from itself. */ - /* if the input data is P2P_GOT_WPSINFO_PBC -> the utility just determine to use the PBC */ - - if (*extra == '0') - { - pwdinfo->ui_got_wps_info = P2P_NO_WPSINFO; - } - else if (*extra == '1') - { - pwdinfo->ui_got_wps_info = P2P_GOT_WPSINFO_PEER_DISPLAY_PIN; - } - else if (*extra == '2') - { - pwdinfo->ui_got_wps_info = P2P_GOT_WPSINFO_SELF_DISPLAY_PIN; - } - else if (*extra == '3') - { - pwdinfo->ui_got_wps_info = P2P_GOT_WPSINFO_PBC; - } - else - { - pwdinfo->ui_got_wps_info = P2P_NO_WPSINFO; - } - - return ret; -} - -#endif /* CONFIG_P2P */ - -static int rtw_p2p_set(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - int ret = 0; -#ifdef CONFIG_P2P - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct mlme_priv *pmlmepriv = &(padapter->mlmepriv); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; - - DBG_8192D("[%s] extra = %s\n", __func__, extra); - - if (!memcmp(extra, "enable =", 7)) - { - rtw_wext_p2p_enable(dev, info, wrqu, &extra[7]); - } - else if (!memcmp(extra, "setDN =", 6)) - { - wrqu->data.length -= 6; - rtw_p2p_setDN(dev, info, wrqu, &extra[6]); - } - else if (!memcmp(extra, "profilefound =", 13)) - { - wrqu->data.length -= 13; - rtw_p2p_profilefound(dev, info, wrqu, &extra[13]); - } - else if (!memcmp(extra, "prov_disc =", 10)) - { - wrqu->data.length -= 10; - rtw_p2p_prov_disc(dev, info, wrqu, &extra[10]); - } - else if (!memcmp(extra, "nego =", 5)) - { - wrqu->data.length -= 5; - rtw_p2p_connect(dev, info, wrqu, &extra[5]); - } - else if (!memcmp(extra, "intent =", 7)) - { - /* Commented by Albert 2011/03/23 */ - /* The wrqu->data.length will include the null character */ - /* So, we will decrease 7 + 1 */ - wrqu->data.length -= 8; - rtw_p2p_set_intent(dev, info, wrqu, &extra[7]); - } - else if (!memcmp(extra, "ssid =", 5)) - { - wrqu->data.length -= 5; - rtw_p2p_set_go_nego_ssid(dev, info, wrqu, &extra[5]); - } - else if (!memcmp(extra, "got_wpsinfo =", 12)) - { - wrqu->data.length -= 12; - rtw_p2p_got_wpsinfo(dev, info, wrqu, &extra[12]); - } - else if (!memcmp(extra, "listen_ch =", 10)) - { - /* Commented by Albert 2011/05/24 */ - /* The wrqu->data.length will include the null character */ - /* So, we will decrease (10 + 1) */ - wrqu->data.length -= 11; - rtw_p2p_set_listen_ch(dev, info, wrqu, &extra[10]); - } - else if (!memcmp(extra, "op_ch =", 6)) - { - /* Commented by Albert 2011/05/24 */ - /* The wrqu->data.length will include the null character */ - /* So, we will decrease (6 + 1) */ - wrqu->data.length -= 7; - rtw_p2p_set_op_ch(dev, info, wrqu, &extra[6]); - } - else if (!memcmp(extra, "invite =", 7)) - { - wrqu->data.length -= 8; - rtw_p2p_invite_req(dev, info, wrqu, &extra[7]); - } - else if (!memcmp(extra, "persistent =", 11)) - { - wrqu->data.length -= 11; - rtw_p2p_set_persistent(dev, info, wrqu, &extra[11]); - } -#ifdef CONFIG_WFD - else if (!memcmp(extra, "sa =", 3)) - { - /* sa: WFD Session Available information */ - wrqu->data.length -= 3; - rtw_p2p_set_sa(dev, info, wrqu, &extra[3]); - } - else if (!memcmp(extra, "pc =", 3)) - { - /* pc: WFD Preferred Connection */ - wrqu->data.length -= 3; - rtw_p2p_set_pc(dev, info, wrqu, &extra[3]); - } - else if (!memcmp(extra, "wfd_type =", 9)) - { - /* Specify this device is Mircast source or sink */ - wrqu->data.length -= 9; - rtw_p2p_set_wfd_device_type(dev, info, wrqu, &extra[9]); - } - else if (!memcmp(extra, "scan_type =", 10)) - { - wrqu->data.length -= 10; - rtw_p2p_set_scan_result_type(dev, info, wrqu, &extra[10]); - } -#endif /* CONFIG_WFD */ - -#endif /* CONFIG_P2P */ - - return ret; -} - -static int rtw_p2p_get(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - int ret = 0; - -#ifdef CONFIG_P2P - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct mlme_priv *pmlmepriv = &(padapter->mlmepriv); - struct iw_point *pdata = &wrqu->data; - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); - struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; - - if (padapter->bShowGetP2PState) - DBG_8192D("[%s] extra = %s\n", __func__, (char *)wrqu->data.pointer); - - if (!memcmp(wrqu->data.pointer, "status", 6)) { - rtw_p2p_get_status(dev, info, wrqu, extra); - } else if (!memcmp(wrqu->data.pointer, "role", 4)) { - rtw_p2p_get_role(dev, info, wrqu, extra); - } else if (!memcmp(wrqu->data.pointer, "peer_ifa", 8)) { - rtw_p2p_get_peer_ifaddr(dev, info, wrqu, extra); - } else if (!memcmp(wrqu->data.pointer, "req_cm", 6)) { - rtw_p2p_get_req_cm(dev, info, wrqu, extra); - } else if (!memcmp(wrqu->data.pointer, "peer_deva", 9)) { - /* Get the P2P device address when receiving the provision discovery request frame. */ - rtw_p2p_get_peer_devaddr(dev, info, wrqu, extra); - } else if (!memcmp(wrqu->data.pointer, "group_id", 8)) { - rtw_p2p_get_groupid(dev, info, wrqu, extra); - } else if (!memcmp(wrqu->data.pointer, "peer_deva_inv", 9)) { - /* Get the P2P device address when receiving the P2P Invitation request frame. */ - rtw_p2p_get_peer_devaddr_by_invitation(dev, info, wrqu, extra); - } else if (!memcmp((void const *)wrqu->data.pointer, "op_ch", 5)) { - rtw_p2p_get_op_ch(dev, info, wrqu, extra); - } -#ifdef CONFIG_WFD - else if (!memcmp(wrqu->data.pointer, "peer_port", 9)) { - rtw_p2p_get_peer_wfd_port(dev, info, wrqu, extra); - } else if (!memcmp(wrqu->data.pointer, "wfd_sa", 6)) { - rtw_p2p_get_peer_wfd_session_available(dev, info, wrqu, extra); - } else if (!memcmp(wrqu->data.pointer, "wfd_pc", 6)) { - rtw_p2p_get_peer_wfd_preferred_connection(dev, info, wrqu, extra); - } -#endif /* CONFIG_WFD */ - -#endif /* CONFIG_P2P */ - - return ret; -} - -static int rtw_p2p_get2(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - - int ret = 0; - -#ifdef CONFIG_P2P - - int length = wrqu->data.length; - char *buffer = (u8 *)kmalloc(length, GFP_KERNEL); - - if (buffer == NULL) - { - ret = -ENOMEM; - goto bad; - } - - if (copy_from_user(buffer, wrqu->data.pointer, wrqu->data.length)) - { - ret = -EFAULT; - goto bad; - } - - DBG_8192D("[%s] buffer = %s\n", __func__, buffer); - - if (!memcmp(buffer, "wpsCM =", 6)) - { - ret = rtw_p2p_get_wps_configmethod(dev, info, wrqu, extra, &buffer[6]); - } else if (!memcmp(buffer, "devN =", 5)) - { - ret = rtw_p2p_get_device_name(dev, info, wrqu, extra, &buffer[5]); - } else if (!memcmp(buffer, "dev_type =", 9)) - { - ret = rtw_p2p_get_device_type(dev, info, wrqu, extra, &buffer[9]); - } else if (!memcmp(buffer, "go_devadd =", 10)) - { - ret = rtw_p2p_get_go_device_address(dev, info, wrqu, extra, &buffer[10]); - } else if (!memcmp(buffer, "InvProc =", 8)) - { - ret = rtw_p2p_get_invitation_procedure(dev, info, wrqu, extra, &buffer[8]); - } else - { - snprintf(extra, sizeof("Command not found."), "Command not found."); - wrqu->data.length = strlen(extra); - } - -bad: - kfree(buffer); - -#endif /* CONFIG_P2P */ - - return ret; -} - -static int rtw_rereg_nd_name(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - int ret = 0; - struct rtw_adapter *padapter = rtw_netdev_priv(dev); - struct rereg_nd_name_data *rereg_priv = &padapter->rereg_nd_name_priv; - char new_ifname[IFNAMSIZ]; - - if (rereg_priv->old_ifname[0] == 0) { - char *reg_ifname; -#ifdef CONFIG_CONCURRENT_MODE - if (padapter->isprimary) - reg_ifname = padapter->registrypriv.ifname; - else -#endif - reg_ifname = padapter->registrypriv.if2name; - - strncpy(rereg_priv->old_ifname, reg_ifname, IFNAMSIZ); - rereg_priv->old_ifname[IFNAMSIZ-1] = 0; - } - - /* DBG_8192D("%s wrqu->data.length:%d\n", __func__, wrqu->data.length); */ - if (wrqu->data.length > IFNAMSIZ) - return -EFAULT; - - if (copy_from_user(new_ifname, wrqu->data.pointer, IFNAMSIZ)) { - return -EFAULT; - } - - if (0 == strcmp(rereg_priv->old_ifname, new_ifname)) { - return ret; - } - - DBG_8192D("%s new_ifname:%s\n", __func__, new_ifname); - if (0 != (ret = rtw_change_ifname(padapter, new_ifname))) { - goto exit; - } - - if (!memcmp(rereg_priv->old_ifname, "disable%d", 9)) { - padapter->ledpriv.bRegUseLed = rereg_priv->old_bRegUseLed; - rtw_hal_sw_led_init(padapter); - rtw_ips_mode_req(&padapter->pwrctrlpriv, rereg_priv->old_ips_mode); - } - - strncpy(rereg_priv->old_ifname, new_ifname, IFNAMSIZ); - rereg_priv->old_ifname[IFNAMSIZ-1] = 0; - - if (!memcmp(new_ifname, "disable%d", 9)) { - DBG_8192D("%s disable\n", __func__); - /* free network queue for Android's timming issue */ - rtw_free_network_queue(padapter, true); - - /* close led */ - rtw_led_control(padapter, LED_CTL_POWER_OFF); - rereg_priv->old_bRegUseLed = padapter->ledpriv.bRegUseLed; - padapter->ledpriv.bRegUseLed = false; - rtw_hal_sw_led_deinit(padapter); - - /* the interface is being "disabled", we can do deeper IPS */ - rereg_priv->old_ips_mode = rtw_get_ips_mode_req(&padapter->pwrctrlpriv); - rtw_ips_mode_req(&padapter->pwrctrlpriv, IPS_NORMAL); - } -exit: - return ret; -} - -static void mac_reg_dump(struct rtw_adapter *padapter) +static void mac_reg_dump(struct rtw_adapter *padapter) { int i, j = 1; DBG_8192D("\n ======= MAC REG =======\n"); @@ -5657,13 +3396,7 @@ static int rtw_dbg_port(struct net_device *dev, break; } case 0x24: - { -#ifdef CONFIG_P2P - DBG_8192D("turn %s the bShowGetP2PState Variable\n", (extra_arg == 1)?"on":"off"); - padapter->bShowGetP2PState = extra_arg; -#endif /* CONFIG_P2P */ - break; - } + break; case 0xdd:/* registers dump , 0 for mac reg, 1 for bb reg, 2 for rf reg */ if (extra_arg == 0) { mac_reg_dump(padapter); @@ -7459,21 +5192,6 @@ static int rtw_wfd_tdls_enable(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS -#ifdef CONFIG_WFD - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - - DBG_8192D("[%s] %s %d\n", __func__, extra, wrqu->data.length -1); - - if (extra[0] == '0') - padapter->wdinfo.wfd_tdls_enable = 0; - else - padapter->wdinfo.wfd_tdls_enable = 1; - -#endif /* CONFIG_WFD */ -#endif /* CONFIG_TDLS */ - return ret; } @@ -7483,20 +5201,6 @@ static int rtw_tdls_weaksec(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS - - u8 i, j; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - - DBG_8192D("[%s] %s %d\n", __func__, extra, wrqu->data.length -1); - - if (extra[0] == '0') { - padapter->wdinfo.wfd_tdls_weaksec = 0; - } else { - padapter->wdinfo.wfd_tdls_weaksec = 1; - } -#endif - return ret; } @@ -7506,56 +5210,6 @@ static int rtw_tdls_enable(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - struct list_head *plist, *phead; - s32 index; - struct sta_info *psta = NULL; - struct sta_priv *pstapriv = &padapter->stapriv; - u8 tdls_sta[NUM_STA][ETH_ALEN]; - u8 empty_hwaddr[ETH_ALEN] = { 0x00 }; - - DBG_8192D("[%s] %s %d\n", __func__, extra, wrqu->data.length -1); - - memset(tdls_sta, 0x00, sizeof(tdls_sta)); - - if (extra[0] == '0') { - ptdlsinfo->enable = 0; - - if (pstapriv->asoc_sta_count == 1) - return ret; - - spin_lock_bh(&pstapriv->sta_hash_lock); - for (index = 0; index< NUM_STA; index++) { - phead = &(pstapriv->sta_hash[index]); - plist = phead->next; - - while ((rtw_end_of_queue_search(phead, plist)) == false) { - psta = container_of(plist, struct sta_info , hash_list); - - plist = plist->next; - - if (psta->tdls_sta_state != TDLS_STATE_NONE) - memcpy(tdls_sta[index], psta->hwaddr, ETH_ALEN); - } - } - spin_unlock_bh(&pstapriv->sta_hash_lock); - - for (index = 0; index< NUM_STA; index++) { - if (!!memcmp(tdls_sta[index], empty_hwaddr, ETH_ALEN)) { - DBG_8192D("issue tear down to %pM\n", tdls_sta[index]); - issue_tdls_teardown(padapter, tdls_sta[index]); - } - } - rtw_tdls_cmd(padapter, myid(&(padapter->eeprompriv)), TDLS_RS_RCR); - rtw_reset_tdls_info(padapter); - } else if (extra[0] == '1') { - ptdlsinfo->enable = 1; - } -#endif /* CONFIG_TDLS */ - return ret; } @@ -7565,38 +5219,6 @@ static int rtw_tdls_setup(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS - - u8 i, j; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - u8 mac_addr[ETH_ALEN]; - -#ifdef CONFIG_WFD - struct wifidirect_info *pwdinfo = &(padapter->wdinfo); -#endif /* CONFIG_WFD */ - - DBG_8192D("[%s] %s %d\n", __func__, extra, wrqu->data.length -1); - - for (i = 0, j = 0 ; i < ETH_ALEN; i++, j+= 3) - mac_addr[i]= key_2char2num(*(extra+j), *(extra+j+1)); - -#ifdef CONFIG_WFD - if (_AES_ != padapter->securitypriv.dot11PrivacyAlgrthm) { - /* Weak Security situation with AP. */ - if (0 == pwdinfo->wfd_tdls_weaksec) { - /* Can't send the tdls setup request out!! */ - DBG_8192D("[%s] Current link is not AES, SKIP sending the tdls setup request!!\n", __func__); - } else { - issue_tdls_setup_req(padapter, mac_addr); - } - } - else -#endif /* CONFIG_WFD */ - { - issue_tdls_setup_req(padapter, mac_addr); - } -#endif - return ret; } @@ -7606,27 +5228,6 @@ static int rtw_tdls_teardown(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS - - u8 i, j; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct sta_info *ptdls_sta = NULL; - u8 mac_addr[ETH_ALEN]; - - DBG_8192D("[%s] %s %d\n", __func__, extra, wrqu->data.length -1); - - for (i = 0, j = 0 ; i < ETH_ALEN; i++, j+= 3) - mac_addr[i]= key_2char2num(*(extra+j), *(extra+j+1)); - - ptdls_sta = rtw_get_stainfo(&(padapter->stapriv), mac_addr); - - if (ptdls_sta != NULL) { - ptdls_sta->stat_code = _RSON_TDLS_TEAR_UN_RSN_; - issue_tdls_teardown(padapter, mac_addr); - } - -#endif /* CONFIG_TDLS */ - return ret; } @@ -7636,18 +5237,6 @@ static int rtw_tdls_discovery(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - - DBG_8192D("[%s] %s %d\n", __func__, extra, wrqu->data.length -1); - - issue_tdls_dis_req(padapter, NULL); - -#endif /* CONFIG_TDLS */ - return ret; } @@ -7657,28 +5246,7 @@ static int rtw_tdls_ch_switch (struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - u8 i, j, mac_addr[ETH_ALEN]; - struct sta_info *ptdls_sta = NULL; - - DBG_8192S("[%s] %s %d\n", __func__, extra, wrqu->data.length -1); - - for (i = 0, j = 0 ; i < ETH_ALEN; i++, j+= 3) - mac_addr[i]= key_2char2num(*(extra+j), *(extra+j+1)); - - ptdls_sta = rtw_get_stainfo(&padapter->stapriv, mac_addr); - if (ptdls_sta == NULL) - return ret; - ptdlsinfo->ch_sensing = 1; - - rtw_tdls_cmd(padapter, ptdls_sta->hwaddr, TDLS_INIT_CH_SEN); - -#endif /* CONFIG_TDLS */ - - return ret; + return ret; } static int rtw_tdls_pson(struct net_device *dev, @@ -7687,25 +5255,6 @@ static int rtw_tdls_pson(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - u8 i, j, mac_addr[ETH_ALEN]; - struct sta_info *ptdls_sta = NULL; - - DBG_8192D("[%s] %s %d\n", __func__, extra, wrqu->data.length -1); - - for (i = 0, j = 0 ; i < ETH_ALEN; i++, j+= 3) - mac_addr[i]= key_2char2num(*(extra+j), *(extra+j+1)); - - ptdls_sta = rtw_get_stainfo(&padapter->stapriv, mac_addr); - - issue_nulldata_to_TDLS_peer_STA(padapter, ptdls_sta, 1); - -#endif /* CONFIG_TDLS */ - return ret; } @@ -7715,25 +5264,6 @@ static int rtw_tdls_psoff(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv); - struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info); - u8 i, j, mac_addr[ETH_ALEN]; - struct sta_info *ptdls_sta = NULL; - - DBG_8192D("[%s] %s %d\n", __func__, extra, wrqu->data.length -1); - - for (i = 0, j = 0 ; i < ETH_ALEN; i++, j+= 3) - mac_addr[i]= key_2char2num(*(extra+j), *(extra+j+1)); - - ptdls_sta = rtw_get_stainfo(&padapter->stapriv, mac_addr); - - issue_nulldata_to_TDLS_peer_STA(padapter, ptdls_sta, 0); - -#endif /* CONFIG_TDLS */ - return ret; } @@ -7743,41 +5273,6 @@ static int rtw_tdls_setip(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS -#ifdef CONFIG_WFD - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - struct wifi_display_info *pwfd_info = ptdlsinfo->wfd_info; - u8 i = 0, j = 0, k = 0, tag = 0, ip[3] = { 0xff }, *ptr = extra; - - DBG_8192D("[%s] %s %d\n", __func__, extra, wrqu->data.length - 1); - - while (i < 4) { - for (j = 0; j < 4; j++) { - if (*(extra + j + tag) == '.' || *(extra + j + tag) == '\0') { - if (j == 1) - pwfd_info->ip_address[i]= convert_ip_addr('0', '0', *(extra+(j-1)+tag)); - if (j == 2) - pwfd_info->ip_address[i]= convert_ip_addr('0', *(extra+(j-2)+tag), *(extra+(j-1)+tag)); - if (j == 3) - pwfd_info->ip_address[i]= convert_ip_addr(*(extra+(j-3)+tag), *(extra+(j-2)+tag), *(extra+(j-1)+tag)); - - tag += j + 1; - break; - } - } - i++; - } - - DBG_8192D("[%s] Set IP = %u.%u.%u.%u\n", __func__, - ptdlsinfo->wfd_info->ip_address[0], ptdlsinfo->wfd_info->ip_address[1], - ptdlsinfo->wfd_info->ip_address[2], ptdlsinfo->wfd_info->ip_address[3] - ); - -#endif /* CONFIG_WFD */ -#endif /* CONFIG_TDLS */ - return ret; } @@ -7787,28 +5282,6 @@ static int rtw_tdls_getip(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS -#ifdef CONFIG_WFD - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - struct wifi_display_info *pwfd_info = ptdlsinfo->wfd_info; - - DBG_8192D("[%s]\n", __func__); - - sprintf(extra, "\n\n%u.%u.%u.%u\n", - pwfd_info->peer_ip_address[0], pwfd_info->peer_ip_address[1], - pwfd_info->peer_ip_address[2], pwfd_info->peer_ip_address[3]); - - DBG_8192D("[%s] IP =%u.%u.%u.%u\n", __func__, - pwfd_info->peer_ip_address[0], pwfd_info->peer_ip_address[1], - pwfd_info->peer_ip_address[2], pwfd_info->peer_ip_address[3]); - - wrqu->data.length = strlen(extra); - -#endif /* CONFIG_WFD */ -#endif /* CONFIG_TDLS */ - return ret; } @@ -7818,23 +5291,6 @@ static int rtw_tdls_getport(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS -#ifdef CONFIG_WFD - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - struct wifi_display_info *pwfd_info = ptdlsinfo->wfd_info; - - DBG_8192D("[%s]\n", __func__); - - sprintf(extra, "\n\n%d\n", pwfd_info->peer_rtsp_ctrlport); - DBG_8192D("[%s] remote port = %d\n", __func__, pwfd_info->peer_rtsp_ctrlport); - - wrqu->data.length = strlen(extra); - -#endif /* CONFIG_WFD */ -#endif /* CONFIG_TDLS */ - return ret; } @@ -7846,25 +5302,6 @@ static int rtw_tdls_dis_result(struct net_device *dev, int ret = 0; -#ifdef CONFIG_TDLS -#ifdef CONFIG_WFD - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - struct wifi_display_info *pwfd_info = ptdlsinfo->wfd_info; - - DBG_8192D("[%s]\n", __func__); - - if (ptdlsinfo->dev_discovered == 1) { - sprintf(extra, "\n\nDis = 1\n"); - ptdlsinfo->dev_discovered = 0; - } - - wrqu->data.length = strlen(extra); - -#endif /* CONFIG_WFD */ -#endif /* CONFIG_TDLS */ - return ret; } @@ -7875,25 +5312,6 @@ static int rtw_wfd_tdls_status(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS -#ifdef CONFIG_WFD - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - struct tdls_info *ptdlsinfo = &padapter->tdlsinfo; - struct wifi_display_info *pwfd_info = ptdlsinfo->wfd_info; - - DBG_8192D("[%s]\n", __func__); - - if (ptdlsinfo->setup_state == TDLS_LINKED_STATE) - sprintf(extra, "\n\nStatus = 1\n"); - else - sprintf(extra, "\n\nStatus = 0\n"); - - wrqu->data.length = strlen(extra); - -#endif /* CONFIG_WFD */ -#endif /* CONFIG_TDLS */ - return ret; } @@ -7903,24 +5321,6 @@ static int rtw_tdls_ch_switch_off(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS - - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - u8 i, j, mac_addr[ETH_ALEN]; - struct sta_info *ptdls_sta = NULL; - - DBG_8192D("[%s] %s %d\n", __func__, extra, wrqu->data.length -1); - - for (i = 0, j = 0 ; i < ETH_ALEN; i++, j+= 3) { - mac_addr[i]= key_2char2num(*(extra+j), *(extra+j+1)); - } - - ptdls_sta = rtw_get_stainfo(&padapter->stapriv, mac_addr); - - ptdls_sta->tdls_sta_state |= TDLS_SW_OFF_STATE; - -#endif /* CONFIG_TDLS */ - return ret; } @@ -7930,63 +5330,6 @@ static int rtw_tdls(struct net_device *dev, { int ret = 0; -#ifdef CONFIG_TDLS - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - - DBG_8192D("[%s] extra = %s\n", __func__, extra); - /* WFD Sigma will use the tdls enable command to let the driver know we want to test the tdls now! */ - if (!memcmp(extra, "wfdenable =", 10)) { - wrqu->data.length -= 10; - rtw_wfd_tdls_enable(dev, info, wrqu, &extra[10]); - return ret; - } else if (!memcmp(extra, "weaksec =", 8)) { - wrqu->data.length -= 8; - rtw_tdls_weaksec(dev, info, wrqu, &extra[8]); - return ret; - } else if (!memcmp(extra, "tdlsenable =", 11)) { - wrqu->data.length -= 11; - rtw_tdls_enable(dev, info, wrqu, &extra[11]); - return ret; - } - - if (padapter->tdlsinfo.enable == 0) { - DBG_8192D("tdls haven't enabled\n"); - return 0; - } - - if (!memcmp(extra, "setup =", 6)) { - wrqu->data.length -= 6; - rtw_tdls_setup(dev, info, wrqu, &extra[6]); - } else if (!memcmp(extra, "tear =", 5)) { - wrqu->data.length -= 5; - rtw_tdls_teardown(dev, info, wrqu, &extra[5]); - } else if (!memcmp(extra, "dis =", 4)) { - wrqu->data.length -= 4; - rtw_tdls_discovery(dev, info, wrqu, &extra[4]); - } else if (!memcmp(extra, "sw =", 3)) { - wrqu->data.length -= 3; - rtw_tdls_ch_switch (dev, info, wrqu, &extra[3]); - } else if (!memcmp(extra, "swoff =", 6)) { - wrqu->data.length -= 6; - rtw_tdls_ch_switch_off(dev, info, wrqu, &extra[6]); - } else if (!memcmp(extra, "pson =", 5)) { - wrqu->data.length -= 5; - rtw_tdls_pson(dev, info, wrqu, &extra[5]); - } else if (!memcmp(extra, "psoff =", 6)) { - wrqu->data.length -= 6; - rtw_tdls_psoff(dev, info, wrqu, &extra[6]); - } -#ifdef CONFIG_WFD - else if (!memcmp(extra, "setip =", 6)) { - wrqu->data.length -= 6; - rtw_tdls_setip(dev, info, wrqu, &extra[6]); - } else if (!memcmp(extra, "tprobe =", 6)) { - issue_tunneled_probe_req((struct rtw_adapter *)rtw_netdev_priv(dev)); - } -#endif /* CONFIG_WFD */ - -#endif /* CONFIG_TDLS */ - return ret; } @@ -7994,23 +5337,6 @@ static int rtw_tdls_get(struct net_device *dev, struct iw_request_info *info, union iwreq_data *wrqu, char *extra) { -#ifdef CONFIG_WFD - - DBG_8192D("[%s] extra = %s\n", __func__, (char *)wrqu->data.pointer); - - if (!memcmp(wrqu->data.pointer, "ip", 2)) - rtw_tdls_getip(dev, info, wrqu, extra); - if (!memcmp(wrqu->data.pointer, "port", 4)) - rtw_tdls_getport(dev, info, wrqu, extra); - - /* WFDTDLS, for sigma test */ - if (!memcmp(wrqu->data.pointer, "dis", 3)) - rtw_tdls_dis_result(dev, info, wrqu, extra); - if (!memcmp(wrqu->data.pointer, "status", 6)) - rtw_wfd_tdls_status(dev, info, wrqu, extra); - -#endif /* CONFIG_WFD */ - return 0; } @@ -8092,35 +5418,6 @@ static int rtw_wowlan_ctrl(struct net_device *dev, } #endif /* CONFIG_WOWLAN */ -#ifdef CONFIG_INTEL_WIDI -static int rtw_widi_set(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - - process_intel_widi_cmd(padapter, extra); - - return 0; -} - -static int rtw_widi_set_probe_request(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(dev); - u8 *pbuf = NULL; - - pbuf = kmalloc(sizeof(l2_msg_t, GFP_KERNEL)); - if (pbuf) { - memcpy(pbuf, wrqu->data.pointer, wrqu->data.length); - intel_widi_wk_cmd(padapter, INTEL_WIDI_ISSUE_PROB_WK, pbuf); - } - return 0; -} - -#endif /* CONFIG_INTEL_WIDI */ - static int rtw_test(struct net_device *dev, struct iw_request_info *info, union iwreq_data *wrqu, char *extra) { @@ -8324,16 +5621,6 @@ static const struct iw_priv_args rtw_private_args[] = { SIOCIWFIRSTPRIV + 0x1D, IW_PRIV_TYPE_CHAR | 40, IW_PRIV_TYPE_CHAR | 0x7FF, "test" }, -#ifdef CONFIG_INTEL_WIDI - { - SIOCIWFIRSTPRIV + 0x1E, - IW_PRIV_TYPE_CHAR | 64, 0, "widi_set" - }, - { - SIOCIWFIRSTPRIV + 0x1F, - IW_PRIV_TYPE_CHAR | 128, 0, "widi_prob_req" - }, -#endif /* CONFIG_INTEL_WIDI */ }; static iw_handler rtw_private_handler[] = { @@ -8383,10 +5670,6 @@ static iw_handler rtw_private_handler[] = { rtw_mp_efuse_get, /* 0x1B */ NULL, /* 0x1C is reserved for hostapd */ rtw_test , /* 0x1D */ -#ifdef CONFIG_INTEL_WIDI - rtw_widi_set, /* 0x1E */ - rtw_widi_set_probe_request, /* 0x1F */ -#endif /* CONFIG_INTEL_WIDI */ }; #if WIRELESS_EXT >= 17 diff --git a/os_dep/ioctl_linux.c.rej b/os_dep/ioctl_linux.c.rej deleted file mode 100644 index 77069586..00000000 --- a/os_dep/ioctl_linux.c.rej +++ /dev/null @@ -1,35 +0,0 @@ ---- os_dep/ioctl_linux.c -+++ os_dep/ioctl_linux.c -@@ -260,7 +260,8 @@ - char *start, char *stop) - { - struct iw_event iwe; -- u16 cap; -+ __le16 cap; -+ u16 cpu_cap; - u32 ht_ielen = 0; - char custom[MAX_CUSTOM_LEN]; - char *p; -@@ -424,10 +425,10 @@ - memcpy((u8 *)&cap, rtw_get_capability_from_ie(pnetwork->network.IEs), 2); - - -- cap = le16_to_cpu(cap); -+ cpu_cap = le16_to_cpu(cap); - -- if (cap & (WLAN_CAPABILITY_IBSS |WLAN_CAPABILITY_BSS)) { -- if (cap & WLAN_CAPABILITY_BSS) -+ if (cpu_cap & (WLAN_CAPABILITY_IBSS |WLAN_CAPABILITY_BSS)) { -+ if (cpu_cap & WLAN_CAPABILITY_BSS) - iwe.u.mode = IW_MODE_MASTER; - else - iwe.u.mode = IW_MODE_ADHOC; -@@ -447,7 +448,7 @@ - - /* Add encryption capability */ - iwe.cmd = SIOCGIWENCODE; -- if (cap & WLAN_CAPABILITY_PRIVACY) -+ if (cpu_cap & WLAN_CAPABILITY_PRIVACY) - iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY; - else - iwe.u.data.flags = IW_ENCODE_DISABLED; diff --git a/os_dep/mlme_linux.c b/os_dep/mlme_linux.c index 551484e5..d4c1a938 100644 --- a/os_dep/mlme_linux.c +++ b/os_dep/mlme_linux.c @@ -43,7 +43,7 @@ static void _dynamic_check_timer_handlder (void *FunctionContext) } #ifdef CONFIG_SET_SCAN_DENY_TIMER -void _rtw_set_scan_deny_timer_hdl(void *FunctionContext) +static void _rtw_set_scan_deny_timer_hdl(void *FunctionContext) { struct rtw_adapter *adapter = (struct rtw_adapter *)FunctionContext; rtw_set_scan_deny_timer_hdl(adapter); @@ -67,9 +67,7 @@ void rtw_init_mlme_timer(struct rtw_adapter *padapter) void rtw_os_indicate_connect(struct rtw_adapter *adapter) { -#ifdef CONFIG_IOCTL_CFG80211 rtw_cfg80211_indicate_connect(adapter); -#endif /* CONFIG_IOCTL_CFG80211 */ rtw_indicate_wx_assoc_event(adapter); netif_carrier_on(adapter->pnetdev); @@ -81,9 +79,7 @@ void rtw_os_indicate_connect(struct rtw_adapter *adapter) void rtw_os_indicate_scan_done(struct rtw_adapter *padapter, bool aborted) { -#ifdef CONFIG_IOCTL_CFG80211 rtw_cfg80211_indicate_scan_done(wdev_to_priv(padapter->rtw_wdev), aborted); -#endif indicate_wx_scan_complete_event(padapter); } @@ -144,9 +140,7 @@ void rtw_os_indicate_disconnect(struct rtw_adapter *adapter) netif_carrier_off(adapter->pnetdev); /* Do it first for tx broadcast pkt after disconnection issue! */ -#ifdef CONFIG_IOCTL_CFG80211 rtw_cfg80211_indicate_disconnect(adapter); -#endif /* CONFIG_IOCTL_CFG80211 */ rtw_indicate_wx_disassoc_event(adapter); @@ -166,7 +160,7 @@ void rtw_report_sec_ie(struct rtw_adapter *adapter,u8 authmode,u8 *sec_ie) if (authmode==_WPA_IE_ID_) { RT_TRACE(_module_mlme_osdep_c_,_drv_info_,("rtw_report_sec_ie, authmode=%d\n", authmode)); - buff = kmalloc(IW_CUSTOM_MAX, GFP_KERNEL); + buff = kmalloc(IW_CUSTOM_MAX, GFP_ATOMIC); memset(buff,0,IW_CUSTOM_MAX); diff --git a/os_dep/os_intfs.c b/os_dep/os_intfs.c index 29b3bbd1..802f5a46 100644 --- a/os_dep/os_intfs.c +++ b/os_dep/os_intfs.c @@ -27,10 +27,6 @@ #include #include -#ifdef CONFIG_BR_EXT -#include -#endif /* CONFIG_BR_EXT */ - MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Realtek Wireless Lan Driver"); MODULE_AUTHOR("Realtek Semiconductor Corp."); @@ -227,7 +223,6 @@ static uint rtw_notch_filter = RTW_NOTCH_FILTER; module_param(rtw_notch_filter, uint, 0644); MODULE_PARM_DESC(rtw_notch_filter, "0:Disable, 1:Enable, 2:Enable only for P2P"); -int _netdev_open(struct net_device *pnetdev); int netdev_open (struct net_device *pnetdev); static int netdev_close (struct net_device *pnetdev); @@ -725,11 +720,6 @@ static uint loadparam(struct rtw_adapter *padapter, struct net_device *pnetdev) #ifdef CONFIG_AUTOSUSPEND registry_par->usbss_enable = (u8)rtw_enusbss;/* 0:disable, 1:enable */ #endif -#ifdef SUPPORT_HW_RFOFF_DETECTED - registry_par->hwpdn_mode = (u8)rtw_hwpdn_mode;/* 0:disable, 1:enable, 2:by EFUSE config */ - registry_par->hwpwrp_detect = (u8)rtw_hwpwrp_detect;/* 0:disable, 1:enable */ -#endif - registry_par->hw_wps_pbc = (u8)rtw_hw_wps_pbc; #ifdef CONFIG_ADAPTOR_INFO_CACHING_FILE @@ -739,9 +729,6 @@ static uint loadparam(struct rtw_adapter *padapter, struct net_device *pnetdev) #ifdef CONFIG_LAYER2_ROAMING registry_par->max_roaming_times = (u8)rtw_max_roaming_times; -#ifdef CONFIG_INTEL_WIDI - registry_par->max_roaming_times = (u8)rtw_max_roaming_times + 2; -#endif /* CONFIG_INTEL_WIDI */ #endif registry_par->mac_phy_mode = rtw_mac_phy_mode; @@ -1057,7 +1044,7 @@ void rtw_stop_drv_threads (struct rtw_adapter *padapter) #endif } -u8 rtw_init_default_value(struct rtw_adapter *padapter) +static u8 rtw_init_default_value(struct rtw_adapter *padapter) { u8 ret = _SUCCESS; struct registry_priv* pregistrypriv = &padapter->registrypriv; @@ -1115,9 +1102,6 @@ u8 rtw_init_default_value(struct rtw_adapter *padapter) padapter->bRxRSSIDisplay = 0; padapter->bForceWriteInitGain = 1; padapter->bNotifyChannelChange = 0; -#ifdef CONFIG_P2P - padapter->bShowGetP2PState = 1; -#endif return ret; } @@ -1192,19 +1176,6 @@ u8 rtw_init_drv_sw(struct rtw_adapter *padapter) goto exit; } -#ifdef CONFIG_P2P - rtw_init_wifidirect_timers(padapter); - init_wifidirect_info(padapter, P2P_ROLE_DISABLE); - reset_global_wifidirect_info(padapter); - #ifdef CONFIG_IOCTL_CFG80211 - rtw_init_cfg80211_wifidirect_info(padapter); - #endif -#ifdef CONFIG_WFD - if (rtw_init_wifi_display_info(padapter) == _FAIL) - RT_TRACE(_module_os_intfs_c_, _drv_err_, ("\n Can't init init_wifi_display_info\n")); -#endif -#endif /* CONFIG_P2P */ - if (init_mlme_ext_priv(padapter) == _FAIL) { RT_TRACE(_module_os_intfs_c_, _drv_err_, ("\n Can't init mlme_ext_priv\n")); @@ -1212,15 +1183,6 @@ u8 rtw_init_drv_sw(struct rtw_adapter *padapter) goto exit; } -#ifdef CONFIG_TDLS - if (rtw_init_tdls_info(padapter) == _FAIL) - { - DBG_8192D("Can't rtw_init_tdls_info\n"); - ret8 = _FAIL; - goto exit; - } -#endif /* CONFIG_TDLS */ - if (_rtw_init_xmit_priv(&padapter->xmitpriv, padapter) == _FAIL) { DBG_8192D("Can't _rtw_init_xmit_priv\n"); @@ -1259,24 +1221,8 @@ u8 rtw_init_drv_sw(struct rtw_adapter *padapter) #ifdef DBG_CONFIG_ERROR_DETECT rtw_hal_sreset_init(padapter); #endif - -#ifdef CONFIG_INTEL_WIDI - if (rtw_init_intel_widi(padapter) == _FAIL) - { - DBG_8192D("Can't rtw_init_intel_widi\n"); - ret8 = _FAIL; - goto exit; - } -#endif /* CONFIG_INTEL_WIDI */ - -#ifdef CONFIG_BR_EXT - _rtw_spinlock_init(&padapter->br_ext_lock); -#endif /* CONFIG_BR_EXT */ - exit: - RT_TRACE(_module_os_intfs_c_, _drv_info_, ("-rtw_init_drv_sw\n")); - return ret8; } @@ -1299,12 +1245,6 @@ void rtw_cancel_all_timer(struct rtw_adapter *padapter) _cancel_timer_ex(&padapter->pwrctrlpriv.pwr_state_check_timer); -#ifdef CONFIG_IOCTL_CFG80211 -#ifdef CONFIG_P2P - _cancel_timer_ex(&padapter->cfg80211_wdinfo.remain_on_ch_timer); -#endif /* CONFIG_P2P */ -#endif /* CONFIG_IOCTL_CFG80211 */ - #ifdef CONFIG_SET_SCAN_DENY_TIMER _cancel_timer_ex(&padapter->mlmepriv.set_scan_deny_timer); rtw_clear_scan_deny(padapter); @@ -1321,47 +1261,13 @@ u8 rtw_free_drv_sw(struct rtw_adapter *padapter) { RT_TRACE(_module_os_intfs_c_, _drv_info_, ("==>rtw_free_drv_sw")); - /* we can call rtw_p2p_enable here, but: */ - /* 1. rtw_p2p_enable may have IO operation */ - /* 2. rtw_p2p_enable is bundled with wext interface */ - #ifdef CONFIG_P2P - { - struct wifidirect_info *pwdinfo = &padapter->wdinfo; - 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); -#ifdef CONFIG_CONCURRENT_MODE - _cancel_timer_ex(&pwdinfo->ap_p2p_switch_timer); -#endif /* CONFIG_CONCURRENT_MODE */ - rtw_p2p_set_state(pwdinfo, P2P_STATE_NONE); - } - } - #endif - -#ifdef CONFIG_BR_EXT - _rtw_spinlock_free(&padapter->br_ext_lock); -#endif /* CONFIG_BR_EXT */ - -#ifdef CONFIG_INTEL_WIDI - rtw_free_intel_widi(padapter); -#endif /* CONFIG_INTEL_WIDI */ - free_mlme_ext_priv(&padapter->mlmeextpriv); - rtw_free_cmd_priv(&padapter->cmdpriv); - rtw_free_evt_priv(&padapter->evtpriv); - rtw_free_mlme_priv(&padapter->mlmepriv); - _rtw_free_xmit_priv(&padapter->xmitpriv); - _rtw_free_sta_priv(&padapter->stapriv); /* will free bcmc_stainfo here */ - _rtw_free_recv_priv(&padapter->recvpriv); - rtw_free_pwrctrl_priv(padapter); #ifdef CONFIG_DRVEXT_MODULE @@ -1405,9 +1311,7 @@ int _netdev_vir_if_open(struct net_device *pnetdev) goto _netdev_virtual_iface_open_error; if (primary_padapter->bup == false || primary_padapter->hw_init_completed == false) - { - _netdev_open(primary_padapter->pnetdev); - } + netdev_open(primary_padapter->pnetdev); if (padapter->bup == false && primary_padapter->bup == true && primary_padapter->hw_init_completed == true) @@ -1430,9 +1334,7 @@ int _netdev_vir_if_open(struct net_device *pnetdev) padapter->dir_dev = NULL; rtw_proc_init_one(pnetdev); -#ifdef CONFIG_IOCTL_CFG80211 rtw_cfg80211_init_wiphy(padapter); -#endif padapter->bup = true; padapter->hw_init_completed = true; @@ -1486,10 +1388,8 @@ static int netdev_vir_if_close(struct net_device *pnetdev) rtw_netif_stop_queue(pnetdev); } -#ifdef CONFIG_IOCTL_CFG80211 rtw_scan_abort(padapter); wdev_to_priv(padapter->rtw_wdev)->bandroid_scan = false; -#endif return 0; } @@ -1568,9 +1468,7 @@ _adapter *rtw_drv_add_vir_if (struct rtw_adapter *primary_padapter, char *name, pdvobjpriv->padapters[pdvobjpriv->iface_nums++] = padapter; SET_NETDEV_DEV(pnetdev, dvobj_to_dev(pdvobjpriv)); -#ifdef CONFIG_IOCTL_CFG80211 rtw_wdev_alloc(padapter, dvobj_to_dev(pdvobjpriv)); -#endif /* CONFIG_IOCTL_CFG80211 */ /* set interface_type/chip_type/HardwareType */ padapter->interface_type = primary_padapter->interface_type; @@ -1686,9 +1584,7 @@ void rtw_drv_stop_vir_if (struct rtw_adapter *padapter) padapter->bup = false; } -#ifdef CONFIG_IOCTL_CFG80211 rtw_wdev_unregister(padapter->rtw_wdev); -#endif /* CONFIG_IOCTL_CFG80211 */ } void rtw_drv_free_vir_if (struct rtw_adapter *padapter) @@ -1703,9 +1599,7 @@ void rtw_drv_free_vir_if (struct rtw_adapter *padapter) pnetdev = padapter->pnetdev; -#ifdef CONFIG_IOCTL_CFG80211 rtw_wdev_free(padapter->rtw_wdev); -#endif /* CONFIG_IOCTL_CFG80211 */ rtw_free_drv_sw(padapter); @@ -1761,7 +1655,7 @@ static int _netdev_if2_open(struct net_device *pnetdev) if (primary_padapter->bup == false || primary_padapter->hw_init_completed == false) { - _netdev_open(primary_padapter->pnetdev); + netdev_open(primary_padapter->pnetdev); } if (padapter->bup == false && primary_padapter->bup == true && @@ -1790,9 +1684,7 @@ static int _netdev_if2_open(struct net_device *pnetdev) padapter->dir_dev = NULL; rtw_proc_init_one(pnetdev); -#ifdef CONFIG_IOCTL_CFG80211 rtw_cfg80211_init_wiphy(padapter); -#endif padapter->bup = true; @@ -1843,10 +1735,8 @@ static int netdev_if2_close(struct net_device *pnetdev) rtw_netif_stop_queue(pnetdev); } -#ifdef CONFIG_IOCTL_CFG80211 rtw_scan_abort(padapter); wdev_to_priv(padapter->rtw_wdev)->bandroid_scan = false; -#endif return 0; } @@ -1919,9 +1809,7 @@ struct rtw_adapter *rtw_drv_if2_init(struct rtw_adapter *primary_padapter, char pdvobjpriv->padapters[pdvobjpriv->iface_nums++] = padapter; SET_NETDEV_DEV(pnetdev, dvobj_to_dev(pdvobjpriv)); - #ifdef CONFIG_IOCTL_CFG80211 rtw_wdev_alloc(padapter, dvobj_to_dev(pdvobjpriv)); - #endif /* CONFIG_IOCTL_CFG80211 */ /* set interface_type/chip_type/HardwareType */ padapter->interface_type = primary_padapter->interface_type; @@ -2022,9 +1910,7 @@ void rtw_drv_if2_free(struct rtw_adapter *if2) pnetdev = padapter->pnetdev; -#ifdef CONFIG_IOCTL_CFG80211 rtw_wdev_free(padapter->rtw_wdev); -#endif /* CONFIG_IOCTL_CFG80211 */ rtw_free_drv_sw(padapter); @@ -2061,82 +1947,34 @@ void rtw_drv_if2_stop(struct rtw_adapter *if2) padapter->bup = false; } - #ifdef CONFIG_IOCTL_CFG80211 rtw_wdev_unregister(padapter->rtw_wdev); - #endif } #endif /* end of CONFIG_CONCURRENT_MODE */ -#ifdef CONFIG_BR_EXT -void netdev_br_init(struct net_device *netdev) -{ - struct rtw_adapter *adapter = (struct rtw_adapter *)rtw_netdev_priv(netdev); - -#if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 35)) - rcu_read_lock(); -#endif /* (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 35)) */ - - { -#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) - if (netdev->br_port) -#else /* (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) */ - if (rcu_dereference(adapter->pnetdev->rx_handler_data)) -#endif /* (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35)) */ - { - struct net_device *br_netdev; -#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 24)) - br_netdev = dev_get_by_name(CONFIG_BR_EXT_BRNAME); -#else /* (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 24)) */ - struct net *devnet = NULL; - -#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 26)) - devnet = netdev->nd_net; -#else /* (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 26)) */ - devnet = dev_net(netdev); -#endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 26)) */ - - br_netdev = dev_get_by_name(devnet, CONFIG_BR_EXT_BRNAME); -#endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 24)) */ - - if (br_netdev) { - memcpy(adapter->br_mac, br_netdev->dev_addr, ETH_ALEN); - dev_put(br_netdev); - } else - printk("%s()-%d: dev_get_by_name(%s) failed!", __func__, __LINE__, CONFIG_BR_EXT_BRNAME); - } - - adapter->eth_br_ext_info.addPPPoETag = 1; - } - -#if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 35)) - rcu_read_unlock(); -#endif /* (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 35)) */ -} -#endif /* CONFIG_BR_EXT */ - -int _netdev_open(struct net_device *pnetdev) +int netdev_open(struct net_device *pnetdev) { uint status; struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(pnetdev); - struct pwrctrl_priv *pwrctrlpriv = &padapter->pwrctrlpriv; + struct pwrctrl_priv *pwrctrlpriv; RT_TRACE(_module_os_intfs_c_, _drv_info_, ("+871x_drv - dev_open\n")); DBG_8192D("+871x_drv - drv_open, bup =%d\n", padapter->bup); - if (pwrctrlpriv->ps_flag == true) { + mutex_lock(&adapter_to_dvobj(padapter)->hw_init_mutex); + + pwrctrlpriv = &padapter->pwrctrlpriv; + if (pwrctrlpriv->ps_flag) { padapter->net_closed = false; goto netdev_open_normal_process; } - if (padapter->bup == false) - { + if (!padapter->bup) { padapter->bDriverStopped = false; padapter->bSurpriseRemoved = false; padapter->bCardDisableWOHSM = false; status = rtw_hal_init(padapter); - if (status == _FAIL) - { + if (status == _FAIL) { RT_TRACE(_module_os_intfs_c_, _drv_err_, ("rtl871x_hal_init(): Can't init h/w!\n")); goto netdev_open_error; } @@ -2144,14 +1982,12 @@ int _netdev_open(struct net_device *pnetdev) DBG_8192D("MAC Address = %pM\n", pnetdev->dev_addr); status = rtw_start_drv_threads(padapter); - if (status == _FAIL) - { + if (status == _FAIL) { RT_TRACE(_module_os_intfs_c_, _drv_err_, ("Initialize driver software resource Failed!\n")); goto netdev_open_error; } - if (init_hw_mlme_ext(padapter) == _FAIL) - { + if (init_hw_mlme_ext(padapter) == _FAIL) { RT_TRACE(_module_os_intfs_c_, _drv_err_, ("can't init mlme_ext_priv\n")); goto netdev_open_error; } @@ -2161,14 +1997,10 @@ int _netdev_open(struct net_device *pnetdev) #endif if (padapter->intf_start) - { padapter->intf_start(padapter); - } rtw_proc_init_one(pnetdev); -#ifdef CONFIG_IOCTL_CFG80211 rtw_cfg80211_init_wiphy(padapter); -#endif rtw_led_control(padapter, LED_CTL_NO_LINK); @@ -2186,10 +2018,6 @@ int _netdev_open(struct net_device *pnetdev) else rtw_netif_wake_queue(pnetdev); -#ifdef CONFIG_BR_EXT - netdev_br_init(pnetdev); -#endif /* CONFIG_BR_EXT */ - netdev_open_normal_process: #ifdef CONFIG_CONCURRENT_MODE @@ -2202,6 +2030,7 @@ int _netdev_open(struct net_device *pnetdev) RT_TRACE(_module_os_intfs_c_, _drv_info_, ("-871x_drv - dev_open\n")); DBG_8192D("-871x_drv - drv_open, bup =%d\n", padapter->bup); + mutex_unlock(&adapter_to_dvobj(padapter)->hw_init_mutex); return 0; @@ -2215,19 +2044,8 @@ int _netdev_open(struct net_device *pnetdev) RT_TRACE(_module_os_intfs_c_, _drv_err_, ("-871x_drv - dev_open, fail!\n")); DBG_8192D("-871x_drv - drv_open fail, bup =%d\n", padapter->bup); - return (-1); -} - -int netdev_open(struct net_device *pnetdev) -{ - int ret; - struct rtw_adapter *padapter = (struct rtw_adapter *)rtw_netdev_priv(pnetdev); - - _enter_critical_mutex(&(adapter_to_dvobj(padapter)->hw_init_mutex)); - ret = _netdev_open(pnetdev); - _exit_critical_mutex(&(adapter_to_dvobj(padapter)->hw_init_mutex)); - - return ret; + mutex_unlock(&adapter_to_dvobj(padapter)->hw_init_mutex); + return -1; } #ifdef CONFIG_IPS @@ -2359,23 +2177,9 @@ static int netdev_close(struct net_device *pnetdev) rtw_led_control(padapter, LED_CTL_POWER_OFF); } -#ifdef CONFIG_BR_EXT - nat25_db_cleanup(padapter); -#endif /* CONFIG_BR_EXT */ - -#ifdef CONFIG_P2P - #ifdef CONFIG_IOCTL_CFG80211 - if (wdev_to_priv(padapter->rtw_wdev)->p2p_enabled == true) - wdev_to_priv(padapter->rtw_wdev)->p2p_enabled = false; - #endif - rtw_p2p_enable(padapter, P2P_ROLE_DISABLE); -#endif /* CONFIG_P2P */ - -#ifdef CONFIG_IOCTL_CFG80211 rtw_scan_abort(padapter); wdev_to_priv(padapter->rtw_wdev)->bandroid_scan = false; padapter->rtw_wdev->iftype = NL80211_IFTYPE_MONITOR; /* set this at the end */ -#endif /* CONFIG_IOCTL_CFG80211 */ RT_TRACE(_module_os_intfs_c_, _drv_info_, ("-871x_drv - drv_close\n")); DBG_8192D("-871x_drv - drv_close, bup =%d\n", padapter->bup); @@ -2392,8 +2196,6 @@ void rtw_ndev_destructor(struct net_device *ndev) { DBG_8192D(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev)); -#ifdef CONFIG_IOCTL_CFG80211 kfree(ndev->ieee80211_ptr); -#endif free_netdev(ndev); } diff --git a/os_dep/recv_linux.c b/os_dep/recv_linux.c index 4d30fb8c..7b27c175 100644 --- a/os_dep/recv_linux.c +++ b/os_dep/recv_linux.c @@ -87,9 +87,7 @@ int rtw_os_recvbuf_resource_free(struct rtw_adapter *padapter, struct recv_buf * void rtw_handle_tkip_mic_err(struct rtw_adapter *padapter,u8 bgroup) { -#ifdef CONFIG_IOCTL_CFG80211 enum nl80211_key_type key_type; -#endif union iwreq_data wrqu; struct iw_michaelmicfailure ev; struct mlme_priv* pmlmepriv = &padapter->mlmepriv; @@ -116,29 +114,19 @@ void rtw_handle_tkip_mic_err(struct rtw_adapter *padapter,u8 bgroup) } } -#ifdef CONFIG_IOCTL_CFG80211 if (bgroup) - { key_type |= NL80211_KEYTYPE_GROUP; - } else - { key_type |= NL80211_KEYTYPE_PAIRWISE; - } cfg80211_michael_mic_failure(padapter->pnetdev, (u8 *)&pmlmepriv->assoc_bssid[0], key_type, -1, NULL, GFP_ATOMIC); -#endif memset(&ev, 0x00, sizeof(ev)); if (bgroup) - { ev.flags |= IW_MICFAILURE_GROUP; - } else - { ev.flags |= IW_MICFAILURE_PAIRWISE; - } ev.src_addr.sa_family = ARPHRD_ETHER; memcpy(ev.src_addr.sa_data, &pmlmepriv->assoc_bssid[0], ETH_ALEN); diff --git a/os_dep/rtw_android.c b/os_dep/rtw_android.c index 6be8e9c9..dd475a03 100644 --- a/os_dep/rtw_android.c +++ b/os_dep/rtw_android.c @@ -219,7 +219,13 @@ int rtw_android_cmdstr_to_num(char *cmdstr) { int cmd_num; for (cmd_num=0 ; cmd_num= KERNEL_VERSION(4, 0, 0)) + if (!strncasecmp(cmdstr, android_wifi_cmd_str[cmd_num], + strlen(android_wifi_cmd_str[cmd_num]))) +#else + if (0 == strnicmp(cmdstr , android_wifi_cmd_str[cmd_num], + strlen(android_wifi_cmd_str[cmd_num]))) +#endif break; return cmd_num; @@ -292,9 +298,7 @@ static int rtw_android_set_block(struct net_device *net, char *command, int tota struct rtw_adapter *adapter = (struct rtw_adapter *)rtw_netdev_priv(net); char *block_value = command + strlen(android_wifi_cmd_str[ANDROID_WIFI_CMD_BLOCK]) + 1; - #ifdef CONFIG_IOCTL_CFG80211 wdev_to_priv(adapter->rtw_wdev)->block = (*block_value=='0')?false:true; - #endif return 0; } @@ -438,72 +442,13 @@ int rtw_android_priv_cmd(struct net_device *net, struct ifreq *ifr, int cmd) break; case ANDROID_WIFI_CMD_P2P_SET_PS: break; -#ifdef CONFIG_IOCTL_CFG80211 case ANDROID_WIFI_CMD_SET_AP_WPS_P2P_IE: { int skip = strlen(android_wifi_cmd_str[ANDROID_WIFI_CMD_SET_AP_WPS_P2P_IE]) + 3; bytes_written = rtw_cfg80211_set_mgnt_wpsp2pie(net, command + skip, priv_cmd.total_len - skip, *(command + skip - 2) - '0'); break; } -#endif /* CONFIG_IOCTL_CFG80211 */ - -#ifdef CONFIG_WFD - case ANDROID_WIFI_CMD_WFD_ENABLE: - { - /* Commented by Albert 2012/07/24 */ - /* We can enable the WFD function by using the following command: */ - /* wpa_cli driver wfd-enable */ - struct wifi_display_info *pwfd_info; - struct rtw_adapter* padapter = (struct rtw_adapter *) rtw_netdev_priv(net); - - pwfd_info = &padapter->wfd_info; - pwfd_info->wfd_enable = true; - break; - } - case ANDROID_WIFI_CMD_WFD_DISABLE: - { - /* Commented by Albert 2012/07/24 */ - /* We can disable the WFD function by using the following command: */ - /* wpa_cli driver wfd-disable */ - - struct wifi_display_info *pwfd_info; - struct rtw_adapter* padapter = (struct rtw_adapter *) rtw_netdev_priv(net); - - pwfd_info = &padapter->wfd_info; - pwfd_info->wfd_enable = false; - break; - } - case ANDROID_WIFI_CMD_WFD_SET_TCPPORT: - { - /* Commented by Albert 2012/07/24 */ - /* We can set the tcp port number by using the following command: */ - /* wpa_cli driver wfd-set-tcpport = 554 */ - - struct wifi_display_info *pwfd_info; - struct rtw_adapter* padapter = (struct rtw_adapter *) rtw_netdev_priv(net); - - pwfd_info = &padapter->wfd_info; - pwfd_info->rtsp_ctrlport = (u16) get_int_from_command(priv_cmd.buf); - break; - } - case ANDROID_WIFI_CMD_WFD_SET_MAX_TPUT: - break; - case ANDROID_WIFI_CMD_WFD_SET_DEVTYPE: - { - /* Commented by Albert 2012/08/28 */ - /* Specify the WFD device type (WFD source/primary sink) */ - - struct wifi_display_info *pwfd_info; - struct rtw_adapter* padapter = (struct rtw_adapter *) rtw_netdev_priv(net); - - pwfd_info = &padapter->wfd_info; - pwfd_info->wfd_device_type = (u8) get_int_from_command(priv_cmd.buf); - - pwfd_info->wfd_device_type &= WFD_DEVINFO_DUAL; - break; - } -#endif default: DBG_8192D("Unknown PRIVATE command %s - ignored\n", command); snprintf(command, 3, "OK"); @@ -636,7 +581,7 @@ int wifi_get_mac_addr(unsigned char *buf) } #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 35)) */ -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 39)) || defined(COMPAT_KERNEL_RELEASE) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 39)) void *wifi_get_country_code(char *ccode) { DBG_8192D("%s\n", __func__); diff --git a/os_dep/usb_intf.c b/os_dep/usb_intf.c index 79518f5c..585b4bdf 100644 --- a/os_dep/usb_intf.c +++ b/os_dep/usb_intf.c @@ -37,100 +37,6 @@ static void rtw_dev_remove(struct usb_interface *pusb_intf); #define USB_VENDER_ID_REALTEK 0x0BDA -/* DID_USB_v915_20121224 */ -#define RTL8192C_USB_IDS \ - /*=== Realtek demoboard ===*/ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8191)},/* Default ID */ \ - /****** 8188CUS ********/ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8176)},/* 8188cu 1*1 dongole */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8170)},/* 8188CE-VAU USB minCard */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x817E)},/* 8188CE-VAU USB minCard */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x817A)},/* 8188cu Slim Solo */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x817B)},/* 8188cu Slim Combo */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x817D)},/* 8188RU High-power USB Dongle */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8754)},/* 8188 Combo for BC4 */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x817F)},/* 8188RU */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x818A)},/* RTL8188CUS-VL */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x018A)},/* RTL8188CTV */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x17C0)}, /* RTK demoboard - USB-N10E */ \ - /****** 8192CUS ********/ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8177)},/* 8191cu 1*2 */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8178)},/* 8192cu 2*2 */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x817C)},/* 8192CE-VAU USB minCard */ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8191)},/* 8192CU 2*2 */ \ - {USB_DEVICE(0x1058, 0x0631)},/* Alpha, 8192CU */ \ - /*=== Customer ID ===*/ \ - /****** 8188CUS Dongle ********/ \ - {USB_DEVICE(0x2019, 0xED17)},/* PCI - Edimax */ \ - {USB_DEVICE(0x0DF6, 0x0052)},/* Sitecom - Edimax */ \ - {USB_DEVICE(0x7392, 0x7811)},/* Edimax - Edimax */ \ - {USB_DEVICE(0x07B8, 0x8189)},/* Abocom - Abocom */ \ - {USB_DEVICE(0x0EB0, 0x9071)},/* NO Brand - Etop */ \ - {USB_DEVICE(0x06F8, 0xE033)},/* Hercules - Edimax */ \ - {USB_DEVICE(0x103C, 0x1629)},/* HP - Lite-On ,8188CUS Slim Combo */ \ - {USB_DEVICE(0x2001, 0x3308)},/* D-Link - Alpha */ \ - {USB_DEVICE(0x050D, 0x1102)},/* Belkin - Edimax */ \ - {USB_DEVICE(0x2019, 0xAB2A)},/* Planex - Abocom */ \ - {USB_DEVICE(0x20F4, 0x648B)},/* TRENDnet - Cameo */ \ - {USB_DEVICE(0x4855, 0x0090)},/* - Feixun */ \ - {USB_DEVICE(0x13D3, 0x3357)},/* - AzureWave */ \ - {USB_DEVICE(0x0DF6, 0x005C)},/* Sitecom - Edimax */ \ - {USB_DEVICE(0x0BDA, 0x5088)},/* Thinkware - CC&C */ \ - {USB_DEVICE(0x4856, 0x0091)},/* NetweeN - Feixun */ \ - {USB_DEVICE(0x0846, 0x9041)}, /* Netgear - Cameo */ \ - {USB_DEVICE(0x2019, 0x4902)},/* Planex - Etop */ \ - {USB_DEVICE(0x2019, 0xAB2E)},/* SW-WF02-AD15 -Abocom */ \ - {USB_DEVICE(0x2001, 0x330B)}, /* D-LINK - T&W */ \ - {USB_DEVICE(0xCDAB, 0x8010)}, /* - - compare */ \ - {USB_DEVICE(0x0B05, 0x17BA)}, /* ASUS - Edimax */ \ - {USB_DEVICE(0x0BDA, 0x1E1E)}, /* Intel - - */ \ - {USB_DEVICE(0x04BB, 0x094c)}, /* I-O DATA - Edimax */ \ - /****** 8188CTV ********/ \ - {USB_DEVICE(0xCDAB, 0x8011)}, /* - - compare */ \ - {USB_DEVICE(0x0BDA, 0x0A8A)}, /* Sony - Foxconn */ \ - /****** 8188 RU ********/ \ - {USB_DEVICE(0x0BDA, 0x317F)},/* Netcore,Netcore */ \ - /****** 8188CE-VAU ********/ \ - {USB_DEVICE(0x13D3, 0x3359)},/* - Azwave */ \ - {USB_DEVICE(0x13D3, 0x3358)},/* - Azwave */ \ - /****** 8188CUS Slim Solo********/ \ - {USB_DEVICE(0x04F2, 0xAFF7)},/* XAVI - XAVI */ \ - {USB_DEVICE(0x04F2, 0xAFF9)},/* XAVI - XAVI */ \ - {USB_DEVICE(0x04F2, 0xAFFA)},/* XAVI - XAVI */ \ - /****** 8188CUS Slim Combo ********/ \ - {USB_DEVICE(0x04F2, 0xAFF8)},/* XAVI - XAVI */ \ - {USB_DEVICE(0x04F2, 0xAFFB)},/* XAVI - XAVI */ \ - {USB_DEVICE(0x04F2, 0xAFFC)},/* XAVI - XAVI */ \ - {USB_DEVICE(0x2019, 0x1201)},/* Planex - Vencer */ \ - /****** 8192CUS Dongle ********/ \ - {USB_DEVICE(0x2001, 0x3307)},/* D-Link - Cameo */ \ - {USB_DEVICE(0x2001, 0x330A)},/* D-Link - Alpha */ \ - {USB_DEVICE(0x2001, 0x3309)},/* D-Link - Alpha */ \ - {USB_DEVICE(0x0586, 0x341F)},/* Zyxel - Abocom */ \ - {USB_DEVICE(0x7392, 0x7822)},/* Edimax - Edimax */ \ - {USB_DEVICE(0x2019, 0xAB2B)},/* Planex - Abocom */ \ - {USB_DEVICE(0x07B8, 0x8178)},/* Abocom - Abocom */ \ - {USB_DEVICE(0x07AA, 0x0056)},/* ATKK - Gemtek */ \ - {USB_DEVICE(0x4855, 0x0091)},/* - Feixun */ \ - {USB_DEVICE(0x050D, 0x2102)},/* Belkin - Sercomm */ \ - {USB_DEVICE(0x050D, 0x2103)},/* Belkin - Edimax */ \ - {USB_DEVICE(0x20F4, 0x624D)},/* TRENDnet */ \ - {USB_DEVICE(0x0DF6, 0x0061)},/* Sitecom - Edimax */ \ - {USB_DEVICE(0x0B05, 0x17AB)},/* ASUS - Edimax */ \ - {USB_DEVICE(0x0846, 0x9021)},/* Netgear - Sercomm */ \ - {USB_DEVICE(0x0846, 0xF001)}, /* Netgear - Sercomm */ \ - {USB_DEVICE(0x0E66, 0x0019)},/* Hawking,Edimax */ \ - {USB_DEVICE(0x0E66, 0x0020)}, /* Hawking - Edimax */ \ - {USB_DEVICE(0x050D, 0x1004)}, /* Belkin - Edimax */ \ - {USB_DEVICE(0x0BDA, 0x2E2E)}, /* Intel - - */ \ - {USB_DEVICE(0x2357, 0x0100)}, /* TP-Link - TP-Link */ \ - {USB_DEVICE(0x06F8, 0xE035)}, /* Hercules - Edimax */ \ - {USB_DEVICE(0x04BB, 0x0950)}, /* IO-DATA - Edimax */ \ - {USB_DEVICE(0x0DF6, 0x0070)}, /* Sitecom - Edimax */ \ - {USB_DEVICE(0x0789, 0x016D)}, /* LOGITEC - Edimax */ \ - /****** 8192CE-VAU ********/ \ - {USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8186)},/* Intel-Xavi(Azwave) */ - #define RTL8192D_USB_IDS \ /*=== Realtek demoboard ===*/ \ /****** 8192DU ********/ \ @@ -161,7 +67,6 @@ static void rtw_dev_remove(struct usb_interface *pusb_intf); #define RTL8192C_USB_IDS static struct usb_device_id rtw_usb_id_tbl[] ={ - RTL8192C_USB_IDS RTL8192D_USB_IDS {} /* Terminating entry */ }; @@ -510,126 +415,6 @@ static void process_spec_devid(const struct usb_device_id *pdid) } } -#ifdef SUPPORT_HW_RFOFF_DETECTED -int rtw_hw_suspend(struct rtw_adapter *padapter) -{ - struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv; - struct usb_interface *pusb_intf = adapter_to_dvobj(padapter)->pusbintf; - struct net_device *pnetdev = padapter->pnetdev; - - if ((!padapter->bup) || (padapter->bDriverStopped)||(padapter->bSurpriseRemoved)) - { - DBG_8192D("padapter->bup=%d bDriverStopped=%d bSurpriseRemoved = %d\n", - padapter->bup, padapter->bDriverStopped,padapter->bSurpriseRemoved); - goto error_exit; - } - - if (padapter)/* system suspend */ - { - LeaveAllPowerSaveMode(padapter); - - DBG_8192D("==> rtw_hw_suspend\n"); - _enter_pwrlock(&pwrpriv->lock); - pwrpriv->bips_processing = true; - /* s1. */ - if (pnetdev) - { - netif_carrier_off(pnetdev); - rtw_netif_stop_queue(pnetdev); - } - - /* s2. */ - rtw_disassoc_cmd(padapter, 500, false); - - /* s2-2. indicate disconnect to os */ - { - struct mlme_priv *pmlmepriv = &padapter->mlmepriv; - - if (check_fwstate(pmlmepriv, _FW_LINKED)) - { - _clr_fwstate_(pmlmepriv, _FW_LINKED); - - rtw_led_control(padapter, LED_CTL_NO_LINK); - - rtw_os_indicate_disconnect(padapter); - - #ifdef CONFIG_LPS - /* donnot enqueue cmd */ - rtw_lps_ctrl_wk_cmd(padapter, LPS_CTRL_DISCONNECT, 0); - #endif - } - - } - /* s2-3. */ - rtw_free_assoc_resources(padapter, 1); - - /* s2-4. */ - rtw_free_network_queue(padapter,true); - #ifdef CONFIG_IPS - rtw_ips_dev_unload(padapter); - #endif - pwrpriv->rf_pwrstate = rf_off; - pwrpriv->bips_processing = false; - - _exit_pwrlock(&pwrpriv->lock); - } - else - goto error_exit; - - return 0; - -error_exit: - DBG_8192D("%s, failed\n",__func__); - return (-1); -} - -int rtw_hw_resume(struct rtw_adapter *padapter) -{ - struct pwrctrl_priv *pwrpriv = &padapter->pwrctrlpriv; - struct usb_interface *pusb_intf = adapter_to_dvobj(padapter)->pusbintf; - struct net_device *pnetdev = padapter->pnetdev; - - if (padapter)/* system resume */ - { - DBG_8192D("==> rtw_hw_resume\n"); - _enter_pwrlock(&pwrpriv->lock); - pwrpriv->bips_processing = true; - rtw_reset_drv_sw(padapter); - - if (pm_netdev_open(pnetdev,false) != 0) - { - _exit_pwrlock(&pwrpriv->lock); - goto error_exit; - } - - netif_device_attach(pnetdev); - netif_carrier_on(pnetdev); - - if (!netif_queue_stopped(pnetdev)) - netif_start_queue(pnetdev); - else - netif_wake_queue(pnetdev); - - pwrpriv->bkeepfwalive = false; - pwrpriv->brfoffbyhw = false; - - pwrpriv->rf_pwrstate = rf_on; - pwrpriv->bips_processing = false; - - _exit_pwrlock(&pwrpriv->lock); - } - else - { - goto error_exit; - } - - return 0; -error_exit: - DBG_8192D("%s, Open net dev failed\n",__func__); - return (-1); -} -#endif - static int rtw_suspend(struct usb_interface *pusb_intf, pm_message_t message) { struct dvobj_priv *dvobj = usb_get_intfdata(pusb_intf); @@ -653,19 +438,6 @@ static int rtw_suspend(struct usb_interface *pusb_intf, pm_message_t message) goto exit; } - if (pwrpriv->bInternalAutoSuspend) - { - #ifdef CONFIG_AUTOSUSPEND - #ifdef SUPPORT_HW_RFOFF_DETECTED - /* The FW command register update must after MAC and FW init ready. */ - if ((padapter->bFWReady) && (padapter->pwrctrlpriv.bHWPwrPindetect) && (padapter->registrypriv.usbss_enable)) - { - u8 bOpen = true; - rtw_interface_ps_func(padapter,HAL_USB_SELECT_SUSPEND,&bOpen); - } - #endif - #endif - } pwrpriv->bInSuspend = true; rtw_cancel_all_timer(padapter); LeaveAllPowerSaveMode(padapter); @@ -790,36 +562,22 @@ int rtw_resume_process(struct rtw_adapter *padapter) netif_carrier_on(pnetdev); #ifdef CONFIG_AUTOSUSPEND - if (pwrpriv->bInternalAutoSuspend) - { - #ifdef CONFIG_AUTOSUSPEND - #ifdef SUPPORT_HW_RFOFF_DETECTED - /* The FW command register update must after MAC and FW init ready. */ - if ((padapter->bFWReady) && (padapter->pwrctrlpriv.bHWPwrPindetect) && (padapter->registrypriv.usbss_enable)) - { - u8 bOpen = false; - rtw_interface_ps_func(padapter,HAL_USB_SELECT_SUSPEND,&bOpen); - } - #endif - #endif - + if (pwrpriv->bInternalAutoSuspend) { pwrpriv->bInternalAutoSuspend = false; pwrpriv->brfoffbyhw = false; + DBG_8192D("enc_algorithm(%x),wepkeymask(%x)\n", + padapter->securitypriv.dot11PrivacyAlgrthm,pwrpriv->wepkeymask); + if ( (_WEP40_ == padapter->securitypriv.dot11PrivacyAlgrthm) || + (_WEP104_ == padapter->securitypriv.dot11PrivacyAlgrthm)) { - DBG_8192D("enc_algorithm(%x),wepkeymask(%x)\n", - padapter->securitypriv.dot11PrivacyAlgrthm,pwrpriv->wepkeymask); - if ( (_WEP40_ == padapter->securitypriv.dot11PrivacyAlgrthm) || - (_WEP104_ == padapter->securitypriv.dot11PrivacyAlgrthm)) - { - int keyid; - - for (keyid=0;keyid<4;keyid++) { - if (pwrpriv->wepkeymask & BIT(keyid)) { - if (keyid == padapter->securitypriv.dot11PrivacyKeyIndex) - rtw_set_key(padapter,&padapter->securitypriv, keyid, 1); - else - rtw_set_key(padapter,&padapter->securitypriv, keyid, 0); - } + int keyid; + + for (keyid=0;keyid<4;keyid++) { + if (pwrpriv->wepkeymask & BIT(keyid)) { + if (keyid == padapter->securitypriv.dot11PrivacyKeyIndex) + rtw_set_key(padapter,&padapter->securitypriv, keyid, 1); + else + rtw_set_key(padapter,&padapter->securitypriv, keyid, 0); } } } @@ -968,11 +726,8 @@ static struct rtw_adapter *rtw_usb_if1_init(struct dvobj_priv *dvobj, if (rtw_handle_dualmac(padapter, 1) != _SUCCESS) goto free_adapter; -#ifdef CONFIG_IOCTL_CFG80211 - if (rtw_wdev_alloc(padapter, dvobj_to_dev(dvobj)) != 0) { + if (rtw_wdev_alloc(padapter, dvobj_to_dev(dvobj)) != 0) goto handle_dualmac; - } -#endif /* step 2. hook HalFunc, allocate HalData */ if (padapter->chip_type == RTL8192D) { @@ -1079,10 +834,8 @@ static struct rtw_adapter *rtw_usb_if1_init(struct dvobj_priv *dvobj, kfree(padapter->HalData); free_wdev: if (status != _SUCCESS) { - #ifdef CONFIG_IOCTL_CFG80211 rtw_wdev_unregister(padapter->rtw_wdev); rtw_wdev_free(padapter->rtw_wdev); - #endif } handle_dualmac: if (status != _SUCCESS) @@ -1133,10 +886,8 @@ static void rtw_usb_if1_deinit(struct rtw_adapter *if1) /* s6. */ rtw_handle_dualmac(if1, 0); -#ifdef CONFIG_IOCTL_CFG80211 rtw_wdev_unregister(if1->rtw_wdev); rtw_wdev_free(if1->rtw_wdev); -#endif /* CONFIG_IOCTL_CFG80211 */ rtw_free_drv_sw(if1); @@ -1212,19 +963,15 @@ static void rtw_dev_remove(struct usb_interface *pusb_intf) { struct dvobj_priv *dvobj = usb_get_intfdata(pusb_intf); struct rtw_adapter *padapter = dvobj->if1; -#ifdef CONFIG_IOCTL_CFG80211 struct wireless_dev *pwdev = padapter->rtw_wdev; -#endif DBG_8192D("+rtw_dev_remove\n"); if (usb_drv->drv_registered ) padapter->bSurpriseRemoved = true; -#ifdef CONFIG_IOCTL_CFG80211 /* to avoid WARN_ON in __cfg80211_disconnected() */ pwdev->iftype = NL80211_IFTYPE_STATION; -#endif #if defined(CONFIG_HAS_EARLYSUSPEND) || defined(CONFIG_ANDROID_POWER) rtw_unregister_early_suspend(&padapter->pwrctrlpriv); diff --git a/os_dep/usb_ops_linux.c b/os_dep/usb_ops_linux.c index d03734a6..e8b63338 100644 --- a/os_dep/usb_ops_linux.c +++ b/os_dep/usb_ops_linux.c @@ -302,12 +302,6 @@ u32 usb_write_port(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *wmem) usb_write_port_complete, pxmitbuf);/* context is pxmitbuf */ -#ifdef CONFIG_USE_USB_BUFFER_ALLOC_TX - purb->transfer_dma = pxmitbuf->dma_transfer_addr; - purb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; - purb->transfer_flags |= URB_ZERO_PACKET; -#endif /* CONFIG_USE_USB_BUFFER_ALLOC_TX */ - status = usb_submit_urb(purb, GFP_ATOMIC); if (!status) { #ifdef DBG_CONFIG_ERROR_DETECT diff --git a/os_dep/xmit_linux.c b/os_dep/xmit_linux.c index 928f854d..18e17978 100644 --- a/os_dep/xmit_linux.c +++ b/os_dep/xmit_linux.c @@ -27,49 +27,6 @@ #include #include -uint rtw_remainder_len(struct pkt_file *pfile) -{ - return (pfile->buf_len - ((SIZE_PTR)(pfile->cur_addr) - (SIZE_PTR)(pfile->buf_start))); -} - -void _rtw_open_pktfile (struct sk_buff *pktptr, struct pkt_file *pfile) -{ - - pfile->pkt = pktptr; - pfile->cur_addr = pfile->buf_start = pktptr->data; - pfile->pkt_len = pfile->buf_len = pktptr->len; - - pfile->cur_buffer = pfile->buf_start ; - -} - -uint _rtw_pktfile_read (struct pkt_file *pfile, u8 *rmem, uint rlen) -{ - uint len = 0; - - len = rtw_remainder_len(pfile); - len = (rlen > len)? len: rlen; - - if (rmem) - skb_copy_bits(pfile->pkt, pfile->buf_len-pfile->pkt_len, rmem, len); - - pfile->cur_addr += len; - pfile->pkt_len -= len; - - return len; -} - -int rtw_endofpktfile(struct pkt_file *pfile) -{ - - if (pfile->pkt_len == 0) { - - return true; - } - - return false; -} - void rtw_set_tx_chksum_offload(struct sk_buff *pkt, struct pkt_attrib *pattrib) { @@ -106,29 +63,16 @@ int rtw_os_xmit_resource_alloc(struct rtw_adapter *padapter, struct xmit_buf *px struct dvobj_priv *pdvobjpriv = adapter_to_dvobj(padapter); struct usb_device *pusbd = pdvobjpriv->pusbdev; -#ifdef CONFIG_USE_USB_BUFFER_ALLOC_TX - pxmitbuf->pallocated_buf = rtw_usb_buffer_alloc(pusbd, (size_t)alloc_sz, GFP_ATOMIC, &pxmitbuf->dma_transfer_addr); - pxmitbuf->pbuf = pxmitbuf->pallocated_buf; - if (pxmitbuf->pallocated_buf == NULL) - return _FAIL; -#else /* CONFIG_USE_USB_BUFFER_ALLOC_TX */ - pxmitbuf->pallocated_buf = kzalloc(alloc_sz, GFP_KERNEL); if (pxmitbuf->pallocated_buf == NULL) - { return _FAIL; - } pxmitbuf->pbuf = (u8 *)N_BYTE_ALIGMENT((SIZE_PTR)(pxmitbuf->pallocated_buf), XMITBUF_ALIGN_SZ); pxmitbuf->dma_transfer_addr = 0; -#endif /* CONFIG_USE_USB_BUFFER_ALLOC_TX */ - - for (i=0; i<8; i++) - { + for (i = 0; i < 8; i++) { pxmitbuf->pxmit_urb[i] = usb_alloc_urb(0, GFP_KERNEL); - if (pxmitbuf->pxmit_urb[i] == NULL) - { + if (pxmitbuf->pxmit_urb[i] == NULL) { DBG_8192D("pxmitbuf->pxmit_urb[i]==NULL"); return _FAIL; } @@ -139,25 +83,15 @@ int rtw_os_xmit_resource_alloc(struct rtw_adapter *padapter, struct xmit_buf *px void rtw_os_xmit_resource_free(struct rtw_adapter *padapter, struct xmit_buf *pxmitbuf,u32 free_sz) { - int i; struct dvobj_priv *pdvobjpriv = adapter_to_dvobj(padapter); struct usb_device *pusbd = pdvobjpriv->pusbdev; + int i; - for (i=0; i<8; i++) - { + for (i = 0; i < 8; i++) { if (pxmitbuf->pxmit_urb[i]) - { usb_free_urb(pxmitbuf->pxmit_urb[i]); - } } - -#ifdef CONFIG_USE_USB_BUFFER_ALLOC_TX - rtw_usb_buffer_free(pusbd, (size_t)free_sz, pxmitbuf->pallocated_buf, pxmitbuf->dma_transfer_addr); - pxmitbuf->pallocated_buf = NULL; - pxmitbuf->dma_transfer_addr = 0; -#else /* CONFIG_USE_USB_BUFFER_ALLOC_TX */ kfree(pxmitbuf->pallocated_buf); -#endif /* CONFIG_USE_USB_BUFFER_ALLOC_TX */ } void rtw_os_pkt_complete(struct rtw_adapter *padapter, struct sk_buff *pkt) @@ -220,10 +154,11 @@ static int rtw_mlcst2unicst(struct rtw_adapter *padapter, struct sk_buff *skb) struct sta_info *psta = NULL; s32 res; +#ifdef CONFIG_92D_AP_MODE spin_lock_bh(&pstapriv->asoc_list_lock); phead = &pstapriv->asoc_list; plist = phead->next; - +#endif /* free sta asoc_queue */ while ((rtw_end_of_queue_search(phead, plist)) == false) { @@ -250,12 +185,16 @@ static int rtw_mlcst2unicst(struct rtw_adapter *padapter, struct sk_buff *skb) DBG_8192D("%s-%d: skb_copy() failed!\n", __func__, __LINE__); pxmitpriv->tx_drop++; +#ifdef CONFIG_92D_AP_MODE spin_unlock_bh(&pstapriv->asoc_list_lock); +#endif return false; /* Caller shall tx this multicast frame via normal way. */ } } +#ifdef CONFIG_92D_AP_MODE spin_unlock_bh(&pstapriv->asoc_list_lock); +#endif dev_kfree_skb_any(skb); return true; }