Commit 17b19396 authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman

staging: rtl8723au: rtw_check_bcn_info23a(): Don't make a local copy of beacon just to parse it

In addition be consistent with return values and parsing them.
Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0c45e617
...@@ -857,7 +857,7 @@ OnBeacon23a(struct rtw_adapter *padapter, struct recv_frame *precv_frame) ...@@ -857,7 +857,7 @@ OnBeacon23a(struct rtw_adapter *padapter, struct recv_frame *precv_frame)
psta = rtw_get_stainfo23a(pstapriv, mgmt->sa); psta = rtw_get_stainfo23a(pstapriv, mgmt->sa);
if (psta) { if (psta) {
ret = rtw_check_bcn_info23a(padapter, mgmt, pkt_len); ret = rtw_check_bcn_info23a(padapter, mgmt, pkt_len);
if (!ret) { if (ret != _SUCCESS) {
DBG_8723A_LEVEL(_drv_always_, "ap has changed, " DBG_8723A_LEVEL(_drv_always_, "ap has changed, "
"disconnect now\n"); "disconnect now\n");
receive_disconnect23a(padapter, pmlmeinfo->network.MacAddress, 65535); receive_disconnect23a(padapter, pmlmeinfo->network.MacAddress, 65535);
......
...@@ -885,28 +885,19 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter, ...@@ -885,28 +885,19 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter,
{ {
struct wlan_network *cur_network = &Adapter->mlmepriv.cur_network; struct wlan_network *cur_network = &Adapter->mlmepriv.cur_network;
struct ieee80211_ht_operation *pht_info; struct ieee80211_ht_operation *pht_info;
struct wlan_bssid_ex *bssid;
unsigned short val16; unsigned short val16;
u8 encryp_protocol; u8 encryp_protocol;
int group_cipher = 0, pairwise_cipher = 0, is_8021x = 0, r; int group_cipher = 0, pairwise_cipher = 0, is_8021x = 0, r;
u32 bcn_channel; u32 bcn_channel;
int len, pie_len, ie_offset; int pie_len, ie_offset, ssid_len, privacy;
const u8 *p; const u8 *p, *ssid;
u8 *pie;
if (is_client_associated_to_ap23a(Adapter) == false) if (is_client_associated_to_ap23a(Adapter) == false)
return true; return _SUCCESS;
if (unlikely(!ieee80211_is_beacon(mgmt->frame_control))) { if (unlikely(!ieee80211_is_beacon(mgmt->frame_control))) {
printk(KERN_WARNING "%s: received a non beacon frame!\n", printk(KERN_WARNING "%s: received a non beacon frame!\n",
__func__); __func__);
return false;
}
len = pkt_len - sizeof(struct ieee80211_hdr_3addr);
if (len > MAX_IE_SZ) {
DBG_8723A("%s IE too long for survey event\n", __func__);
return _FAIL; return _FAIL;
} }
...@@ -914,36 +905,25 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter, ...@@ -914,36 +905,25 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter,
DBG_8723A("%s: linked but recv other bssid bcn" DBG_8723A("%s: linked but recv other bssid bcn"
MAC_FMT MAC_FMT "\n", __func__, MAC_ARG(mgmt->bssid), MAC_FMT MAC_FMT "\n", __func__, MAC_ARG(mgmt->bssid),
MAC_ARG(cur_network->network.MacAddress)); MAC_ARG(cur_network->network.MacAddress));
return true;
}
bssid = kzalloc(sizeof(struct wlan_bssid_ex), GFP_ATOMIC);
if (!bssid)
return _FAIL; return _FAIL;
}
bssid->reserved = 1;
bssid->Length = offsetof(struct wlan_bssid_ex, IEs) + len;
/* below is to copy the information element */
bssid->IELength = len;
memcpy(bssid->IEs, &mgmt->u, len);
/* check bw and channel offset */ /* check bw and channel offset */
/* parsing HT_CAP_IE */ /* parsing HT_CAP_IE */
ie_offset = offsetof(struct ieee80211_mgmt, u.beacon.variable) - ie_offset = offsetof(struct ieee80211_mgmt, u.beacon.variable) -
offsetof(struct ieee80211_mgmt, u); offsetof(struct ieee80211_mgmt, u);
pie = bssid->IEs + ie_offset; pie_len = pkt_len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
pie_len = pkt_len - ie_offset;
/* Checking for channel */ /* Checking for channel */
p = cfg80211_find_ie(WLAN_EID_DS_PARAMS, pie, pie_len); p = cfg80211_find_ie(WLAN_EID_DS_PARAMS, mgmt->u.beacon.variable,
pie_len);
if (p) if (p)
bcn_channel = p[2]; bcn_channel = p[2];
else { else {
/* In 5G, some ap do not have DSSET IE checking HT /* In 5G, some ap do not have DSSET IE checking HT
info for channel */ info for channel */
p = cfg80211_find_ie(WLAN_EID_HT_OPERATION, pie, pie_len); p = cfg80211_find_ie(WLAN_EID_HT_OPERATION,
mgmt->u.beacon.variable, pie_len);
if (p && p[1] > 0) { if (p && p[1] > 0) {
pht_info = (struct ieee80211_ht_operation *)(p + 2); pht_info = (struct ieee80211_ht_operation *)(p + 2);
...@@ -962,60 +942,55 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter, ...@@ -962,60 +942,55 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter,
} }
/* checking SSID */ /* checking SSID */
p = cfg80211_find_ie(WLAN_EID_SSID, pie, pie_len); p = cfg80211_find_ie(WLAN_EID_SSID, mgmt->u.beacon.variable, pie_len);
if (p && p[1]) { if (p && p[1]) {
memcpy(bssid->Ssid.ssid, p + 2, p[1]); ssid = p + 2;
bssid->Ssid.ssid_len = p[1]; ssid_len = p[1];
} else { } else {
DBG_8723A("%s marc: cannot find SSID for survey event\n", DBG_8723A("%s marc: cannot find SSID for survey event\n",
__func__); __func__);
bssid->Ssid.ssid_len = 0; ssid = NULL;
bssid->Ssid.ssid[0] = '\0'; ssid_len = 0;
} }
RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_, RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_,
("%s bssid.Ssid.Ssid:%s bssid.Ssid.SsidLength:%d " ("%s bssid.Ssid.Ssid:%s bssid.Ssid.SsidLength:%d "
"cur_network->network.Ssid.Ssid:%s len:%d\n", __func__, "cur_network->network.Ssid.Ssid:%s len:%d\n", __func__,
bssid->Ssid.ssid, bssid->Ssid.ssid_len, ssid, ssid_len, cur_network->network.Ssid.ssid,
cur_network->network.Ssid.ssid,
cur_network->network.Ssid.ssid_len)); cur_network->network.Ssid.ssid_len));
if (memcmp(bssid->Ssid.ssid, cur_network->network.Ssid.ssid, 32) || if (ssid_len != cur_network->network.Ssid.ssid_len || ssid_len > 32 ||
bssid->Ssid.ssid_len != cur_network->network.Ssid.ssid_len) { (ssid_len &&
if (bssid->Ssid.ssid[0] != '\0' && memcmp(ssid, cur_network->network.Ssid.ssid, ssid_len))) {
bssid->Ssid.ssid_len != 0) { /* not hidden ssid */ DBG_8723A("%s(), SSID is not match return FAIL\n", __func__);
DBG_8723A("%s(), SSID is not match return FAIL\n",
__func__);
goto _mismatch; goto _mismatch;
} }
}
/* check encryption info */ /* check encryption info */
val16 = rtw_get_capability23a(bssid); val16 = le16_to_cpu(mgmt->u.beacon.capab_info);
if (val16 & WLAN_CAPABILITY_PRIVACY) if (val16 & WLAN_CAPABILITY_PRIVACY)
bssid->Privacy = 1; privacy = 1;
else else
bssid->Privacy = 0; privacy = 0;
RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_, RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_,
("%s(): cur_network->network.Privacy is %d, bssid.Privacy " ("%s(): cur_network->network.Privacy is %d, bssid.Privacy "
"is %d\n", __func__, cur_network->network.Privacy, "is %d\n", __func__, cur_network->network.Privacy, privacy));
bssid->Privacy)); if (cur_network->network.Privacy != privacy) {
if (cur_network->network.Privacy != bssid->Privacy) {
DBG_8723A("%s(), privacy is not match return FAIL\n", __func__); DBG_8723A("%s(), privacy is not match return FAIL\n", __func__);
goto _mismatch; goto _mismatch;
} }
p = cfg80211_find_ie(WLAN_EID_RSN, pie, pie_len); p = cfg80211_find_ie(WLAN_EID_RSN, mgmt->u.beacon.variable, pie_len);
if (p && p[1]) { if (p && p[1]) {
encryp_protocol = ENCRYP_PROTOCOL_WPA2; encryp_protocol = ENCRYP_PROTOCOL_WPA2;
} else if (cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT, } else if (cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT,
WLAN_OUI_TYPE_MICROSOFT_WPA, WLAN_OUI_TYPE_MICROSOFT_WPA,
pie, pie_len)) { mgmt->u.beacon.variable, pie_len)) {
encryp_protocol = ENCRYP_PROTOCOL_WPA; encryp_protocol = ENCRYP_PROTOCOL_WPA;
} else { } else {
if (bssid->Privacy) if (privacy)
encryp_protocol = ENCRYP_PROTOCOL_WEP; encryp_protocol = ENCRYP_PROTOCOL_WEP;
else else
encryp_protocol = ENCRYP_PROTOCOL_OPENSYS; encryp_protocol = ENCRYP_PROTOCOL_OPENSYS;
...@@ -1030,7 +1005,7 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter, ...@@ -1030,7 +1005,7 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter,
encryp_protocol == ENCRYP_PROTOCOL_WPA2) { encryp_protocol == ENCRYP_PROTOCOL_WPA2) {
p = cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT, p = cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT,
WLAN_OUI_TYPE_MICROSOFT_WPA, WLAN_OUI_TYPE_MICROSOFT_WPA,
pie, pie_len); mgmt->u.beacon.variable, pie_len);
if (p && p[1] > 0) { if (p && p[1] > 0) {
r = rtw_parse_wpa_ie23a(p, p[1] + 2, &group_cipher, r = rtw_parse_wpa_ie23a(p, p[1] + 2, &group_cipher,
&pairwise_cipher, &is_8021x); &pairwise_cipher, &is_8021x);
...@@ -1041,7 +1016,8 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter, ...@@ -1041,7 +1016,8 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter,
"%d\n", __func__, pairwise_cipher, "%d\n", __func__, pairwise_cipher,
group_cipher, is_8021x)); group_cipher, is_8021x));
} else { } else {
p = cfg80211_find_ie(WLAN_EID_RSN, pie, pie_len); p = cfg80211_find_ie(WLAN_EID_RSN,
mgmt->u.beacon.variable, pie_len);
if (p && p[1] > 0) { if (p && p[1] > 0) {
r = rtw_parse_wpa2_ie23a(p, p[1] + 2, r = rtw_parse_wpa2_ie23a(p, p[1] + 2,
...@@ -1080,11 +1056,9 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter, ...@@ -1080,11 +1056,9 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter,
} }
} }
kfree(bssid);
return _SUCCESS; return _SUCCESS;
_mismatch: _mismatch:
kfree(bssid);
return _FAIL; return _FAIL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment