blob: bbbcfc8257da9499e7ac76e6fae7bcf62eb428fe [file] [log] [blame]
Larry Finger5e93f352014-03-28 21:37:38 -05001/******************************************************************************
2 *
3 * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 ******************************************************************************/
15#define _IEEE80211_C
16
17#include <drv_types.h>
18#include <linux/ieee80211.h>
19#include <ieee80211.h>
20#include <wifi.h>
21#include <osdep_service.h>
22#include <wlan_bssdef.h>
23
24u8 RTW_WPA_OUI23A_TYPE[] = { 0x00, 0x50, 0xf2, 1 };
25u16 RTW_WPA_VERSION23A = 1;
26u8 WPA_AUTH_KEY_MGMT_NONE23A[] = { 0x00, 0x50, 0xf2, 0 };
27u8 WPA_AUTH_KEY_MGMT_UNSPEC_802_1X23A[] = { 0x00, 0x50, 0xf2, 1 };
28u8 WPA_AUTH_KEY_MGMT_PSK_OVER_802_1X23A[] = { 0x00, 0x50, 0xf2, 2 };
29u8 WPA_CIPHER_SUITE_NONE23A[] = { 0x00, 0x50, 0xf2, 0 };
30u8 WPA_CIPHER_SUITE_WEP4023A[] = { 0x00, 0x50, 0xf2, 1 };
31u8 WPA_CIPHER_SUITE_TKIP23A[] = { 0x00, 0x50, 0xf2, 2 };
32u8 WPA_CIPHER_SUITE_WRAP23A[] = { 0x00, 0x50, 0xf2, 3 };
33u8 WPA_CIPHER_SUITE_CCMP23A[] = { 0x00, 0x50, 0xf2, 4 };
34u8 WPA_CIPHER_SUITE_WEP10423A[] = { 0x00, 0x50, 0xf2, 5 };
35
Larry Finger5e93f352014-03-28 21:37:38 -050036u8 RSN_AUTH_KEY_MGMT_UNSPEC_802_1X23A[] = { 0x00, 0x0f, 0xac, 1 };
37u8 RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X23A[] = { 0x00, 0x0f, 0xac, 2 };
38u8 RSN_CIPHER_SUITE_NONE23A[] = { 0x00, 0x0f, 0xac, 0 };
39u8 RSN_CIPHER_SUITE_WEP4023A[] = { 0x00, 0x0f, 0xac, 1 };
40u8 RSN_CIPHER_SUITE_TKIP23A[] = { 0x00, 0x0f, 0xac, 2 };
41u8 RSN_CIPHER_SUITE_WRAP23A[] = { 0x00, 0x0f, 0xac, 3 };
42u8 RSN_CIPHER_SUITE_CCMP23A[] = { 0x00, 0x0f, 0xac, 4 };
43u8 RSN_CIPHER_SUITE_WEP10423A[] = { 0x00, 0x0f, 0xac, 5 };
44/* */
45/* for adhoc-master to generate ie and provide supported-rate to fw */
46/* */
47
Jes Sorensenea0c9272014-05-09 15:03:09 +020048static u8 WIFI_CCKRATES[] = {
49 IEEE80211_CCK_RATE_1MB | IEEE80211_BASIC_RATE_MASK,
50 IEEE80211_CCK_RATE_2MB | IEEE80211_BASIC_RATE_MASK,
51 IEEE80211_CCK_RATE_5MB | IEEE80211_BASIC_RATE_MASK,
52 IEEE80211_CCK_RATE_11MB | IEEE80211_BASIC_RATE_MASK
53};
Larry Finger5e93f352014-03-28 21:37:38 -050054
Jes Sorensenea0c9272014-05-09 15:03:09 +020055static u8 WIFI_OFDMRATES[] = {
56 IEEE80211_OFDM_RATE_6MB,
57 IEEE80211_OFDM_RATE_9MB,
58 IEEE80211_OFDM_RATE_12MB,
59 IEEE80211_OFDM_RATE_18MB,
60 IEEE80211_OFDM_RATE_24MB,
61 IEEE80211_OFDM_RATE_36MB,
62 IEEE80211_OFDM_RATE_48MB,
63 IEEE80211_OFDM_RATE_54MB
64};
Larry Finger5e93f352014-03-28 21:37:38 -050065
66int rtw_get_bit_value_from_ieee_value23a(u8 val)
67{
68 unsigned char dot11_rate_table[]=
69 {2, 4, 11, 22, 12, 18, 24, 36, 48, 72, 96, 108, 0};
70
71 int i = 0;
Yeliz Taneroglu99ea15d2014-10-09 01:22:12 +030072
Larry Finger5e93f352014-03-28 21:37:38 -050073 while (dot11_rate_table[i] != 0) {
74 if (dot11_rate_table[i] == val)
75 return BIT(i);
76 i++;
77 }
78 return 0;
79}
80
Jes Sorensenb34a6432014-05-09 15:03:08 +020081static bool rtw_is_cckrates_included(u8 *rate)
Larry Finger5e93f352014-03-28 21:37:38 -050082{
83 u32 i = 0;
84
Jes Sorensenea0c9272014-05-09 15:03:09 +020085 while (rate[i]) {
86 if ((rate[i] & 0x7f) == 2 || (rate[i] & 0x7f) == 4 ||
87 (rate[i] & 0x7f) == 11 || (rate[i] & 0x7f) == 22)
Larry Finger5e93f352014-03-28 21:37:38 -050088 return true;
89 i++;
90 }
91
92 return false;
93}
94
Jes Sorensenb34a6432014-05-09 15:03:08 +020095static bool rtw_is_cckratesonly_included(u8 *rate)
Larry Finger5e93f352014-03-28 21:37:38 -050096{
97 u32 i = 0;
98
Jes Sorensenea0c9272014-05-09 15:03:09 +020099 while (rate[i]) {
100 if ((rate[i] & 0x7f) != 2 && (rate[i] & 0x7f) != 4 &&
101 (rate[i] & 0x7f) != 11 && (rate[i] & 0x7f) != 22)
Larry Finger5e93f352014-03-28 21:37:38 -0500102 return false;
103
104 i++;
105 }
106
107 return true;
108}
109
110int rtw_check_network_type23a(unsigned char *rate, int ratelen, int channel)
111{
112 if (channel > 14) {
Jes Sorensenb34a6432014-05-09 15:03:08 +0200113 if (rtw_is_cckrates_included(rate))
Larry Finger5e93f352014-03-28 21:37:38 -0500114 return WIRELESS_INVALID;
115 else
116 return WIRELESS_11A;
117 } else { /* could be pure B, pure G, or B/G */
Jes Sorensenb34a6432014-05-09 15:03:08 +0200118 if (rtw_is_cckratesonly_included(rate))
Larry Finger5e93f352014-03-28 21:37:38 -0500119 return WIRELESS_11B;
Jes Sorensenb34a6432014-05-09 15:03:08 +0200120 else if (rtw_is_cckrates_included(rate))
Larry Finger5e93f352014-03-28 21:37:38 -0500121 return WIRELESS_11BG;
122 else
123 return WIRELESS_11G;
124 }
125}
126
Larry Finger5e93f352014-03-28 21:37:38 -0500127/* rtw_set_ie23a will update frame length */
Jes Sorensen7a653822014-04-15 19:43:23 +0200128u8 *rtw_set_ie23a(u8 *pbuf, int index, uint len, const u8 *source, uint *frlen)
Larry Finger5e93f352014-03-28 21:37:38 -0500129{
130
131 *pbuf = (u8)index;
132
133 *(pbuf + 1) = (u8)len;
134
135 if (len > 0)
136 memcpy((void *)(pbuf + 2), (void *)source, len);
137
138 *frlen = *frlen + (len + 2);
139
Larry Finger5e93f352014-03-28 21:37:38 -0500140 return pbuf + len + 2;
141}
142
143inline u8 *rtw_set_ie23a_ch_switch (u8 *buf, u32 *buf_len, u8 ch_switch_mode,
144 u8 new_ch, u8 ch_switch_cnt)
145{
146 u8 ie_data[3];
147
148 ie_data[0] = ch_switch_mode;
149 ie_data[1] = new_ch;
150 ie_data[2] = ch_switch_cnt;
151 return rtw_set_ie23a(buf, WLAN_EID_CHANNEL_SWITCH, 3, ie_data, buf_len);
152}
153
Larry Finger5e93f352014-03-28 21:37:38 -0500154inline u8 hal_ch_offset_to_secondary_ch_offset23a(u8 ch_offset)
155{
Jes Sorensenbf51cb62014-06-09 15:16:21 +0200156 if (ch_offset == HAL_PRIME_CHNL_OFFSET_LOWER)
157 return IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Larry Finger5e93f352014-03-28 21:37:38 -0500158 else if (ch_offset == HAL_PRIME_CHNL_OFFSET_UPPER)
Jes Sorensenbf51cb62014-06-09 15:16:21 +0200159 return IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Larry Finger5e93f352014-03-28 21:37:38 -0500160
Jes Sorensenbf51cb62014-06-09 15:16:21 +0200161 return IEEE80211_HT_PARAM_CHA_SEC_NONE;
Larry Finger5e93f352014-03-28 21:37:38 -0500162}
163
164inline u8 *rtw_set_ie23a_secondary_ch_offset(u8 *buf, u32 *buf_len,
165 u8 secondary_ch_offset)
166{
167 return rtw_set_ie23a(buf, WLAN_EID_SECONDARY_CHANNEL_OFFSET,
168 1, &secondary_ch_offset, buf_len);
169}
170
Larry Finger5e93f352014-03-28 21:37:38 -0500171/*----------------------------------------------------------------------------
172index: the information element id index, limit is the limit for search
173-----------------------------------------------------------------------------*/
174u8 *rtw_get_ie23a(u8 *pbuf, int index, int *len, int limit)
175{
176 int tmp, i;
177 u8 *p;
178
179 if (limit < 1) {
180
181 return NULL;
182 }
183
184 p = pbuf;
185 i = 0;
186 *len = 0;
187 while (1) {
188 if (*p == index) {
189 *len = *(p + 1);
190 return p;
191 } else {
192 tmp = *(p + 1);
193 p += (tmp + 2);
194 i += (tmp + 2);
195 }
196 if (i >= limit)
197 break;
198 }
199
200 return NULL;
201}
202
203/**
204 * rtw_get_ie23a_ex - Search specific IE from a series of IEs
205 * @in_ie: Address of IEs to search
206 * @in_len: Length limit from in_ie
207 * @eid: Element ID to match
208 * @oui: OUI to match
209 * @oui_len: OUI length
210 * @ie: If not NULL and the specific IE is found, the IE will be copied
211 * to the buf starting from the specific IE
212 * @ielen: If not NULL and the specific IE is found, will set to the length
213 * of the entire IE
214 *
215 * Returns: The address of the specific IE found, or NULL
216 */
217u8 *rtw_get_ie23a_ex(u8 *in_ie, uint in_len, u8 eid, u8 *oui, u8 oui_len,
218 u8 *ie, uint *ielen)
219{
220 uint cnt;
221 u8 *target_ie = NULL;
222
223 if (ielen)
224 *ielen = 0;
225
226 if (!in_ie || in_len <= 0)
227 return target_ie;
228
229 cnt = 0;
230
231 while (cnt < in_len) {
232 if (eid == in_ie[cnt] &&
233 (!oui || !memcmp(&in_ie[cnt+2], oui, oui_len))) {
234 target_ie = &in_ie[cnt];
235
236 if (ie)
237 memcpy(ie, &in_ie[cnt], in_ie[cnt+1]+2);
238
239 if (ielen)
240 *ielen = in_ie[cnt+1]+2;
241 break;
242 } else {
243 cnt += in_ie[cnt + 1] + 2; /* goto next */
244 }
245 }
246
247 return target_ie;
248}
249
250/**
251 * rtw_ies_remove_ie23a - Find matching IEs and remove
252 * @ies: Address of IEs to search
253 * @ies_len: Pointer of length of ies, will update to new length
Masanari Iida808bcb42014-07-22 23:42:53 +0900254 * @offset: The offset to start search
Larry Finger5e93f352014-03-28 21:37:38 -0500255 * @eid: Element ID to match
256 * @oui: OUI to match
257 * @oui_len: OUI length
258 *
259 * Returns: _SUCCESS: ies is updated, _FAIL: not updated
260 */
261int rtw_ies_remove_ie23a(u8 *ies, uint *ies_len, uint offset, u8 eid,
262 u8 *oui, u8 oui_len)
263{
264 int ret = _FAIL;
265 u8 *target_ie;
266 u32 target_ielen;
267 u8 *start;
268 uint search_len;
269
270 if (!ies || !ies_len || *ies_len <= offset)
271 goto exit;
272
273 start = ies + offset;
274 search_len = *ies_len - offset;
275
276 while (1) {
277 target_ie = rtw_get_ie23a_ex(start, search_len, eid, oui, oui_len,
278 NULL, &target_ielen);
279 if (target_ie && target_ielen) {
280 u8 buf[MAX_IE_SZ] = {0};
281 u8 *remain_ies = target_ie + target_ielen;
282 uint remain_len = search_len - (remain_ies - start);
283
284 memcpy(buf, remain_ies, remain_len);
285 memcpy(target_ie, buf, remain_len);
286 *ies_len = *ies_len - target_ielen;
287 ret = _SUCCESS;
288
289 start = target_ie;
290 search_len = remain_len;
291 } else {
292 break;
293 }
294 }
295exit:
296 return ret;
297}
298
Greg Donald4e66cf02014-08-22 10:57:49 -0500299void rtw_set_supported_rate23a(u8 *SupportedRates, uint mode)
Larry Finger5e93f352014-03-28 21:37:38 -0500300{
301
302
303 memset(SupportedRates, 0, NDIS_802_11_LENGTH_RATES_EX);
304
Tina Ruchandanif2372162014-10-23 20:16:51 -0700305 switch (mode) {
Larry Finger5e93f352014-03-28 21:37:38 -0500306 case WIRELESS_11B:
307 memcpy(SupportedRates, WIFI_CCKRATES, IEEE80211_CCK_RATE_LEN);
308 break;
309
310 case WIRELESS_11G:
311 case WIRELESS_11A:
312 case WIRELESS_11_5N:
313 case WIRELESS_11A_5N:/* Todo: no basic rate for ofdm ? */
314 memcpy(SupportedRates, WIFI_OFDMRATES,
315 IEEE80211_NUM_OFDM_RATESLEN);
316 break;
317
318 case WIRELESS_11BG:
319 case WIRELESS_11G_24N:
320 case WIRELESS_11_24N:
321 case WIRELESS_11BG_24N:
322 memcpy(SupportedRates, WIFI_CCKRATES, IEEE80211_CCK_RATE_LEN);
323 memcpy(SupportedRates + IEEE80211_CCK_RATE_LEN, WIFI_OFDMRATES,
324 IEEE80211_NUM_OFDM_RATESLEN);
325 break;
326 }
327
328}
329
330uint rtw_get_rateset_len23a(u8 *rateset)
331{
332 uint i = 0;
333
334 while(1) {
Jes Sorensenea0c9272014-05-09 15:03:09 +0200335 if (rateset[i] == 0)
Larry Finger5e93f352014-03-28 21:37:38 -0500336 break;
337
338 if (i > 12)
339 break;
340
341 i++;
342 }
343
344 return i;
345}
346
347int rtw_generate_ie23a(struct registry_priv *pregistrypriv)
348{
349 u8 wireless_mode;
350 int sz = 0, rateLen;
351 struct wlan_bssid_ex* pdev_network = &pregistrypriv->dev_network;
352 u8* ie = pdev_network->IEs;
Jes Sorensena4cf0d62014-06-24 15:03:28 +0200353 u16 cap;
Larry Finger5e93f352014-03-28 21:37:38 -0500354
Jes Sorensena4cf0d62014-06-24 15:03:28 +0200355 pdev_network->tsf = 0;
Larry Finger5e93f352014-03-28 21:37:38 -0500356
Jes Sorensena4cf0d62014-06-24 15:03:28 +0200357 cap = WLAN_CAPABILITY_IBSS;
Larry Finger5e93f352014-03-28 21:37:38 -0500358
Jes Sorensen68e6c792014-06-24 15:03:29 +0200359 if (pregistrypriv->preamble == PREAMBLE_SHORT)
Jes Sorensena4cf0d62014-06-24 15:03:28 +0200360 cap |= WLAN_CAPABILITY_SHORT_PREAMBLE;
Larry Finger5e93f352014-03-28 21:37:38 -0500361
Jes Sorensen68e6c792014-06-24 15:03:29 +0200362 if (pdev_network->Privacy)
Jes Sorensena4cf0d62014-06-24 15:03:28 +0200363 cap |= WLAN_CAPABILITY_PRIVACY;
Larry Finger5e93f352014-03-28 21:37:38 -0500364
Jes Sorensena4cf0d62014-06-24 15:03:28 +0200365 pdev_network->capability = cap;
Larry Finger5e93f352014-03-28 21:37:38 -0500366
367 /* SSID */
Jes Sorensen4323b042014-04-15 19:43:28 +0200368 ie = rtw_set_ie23a(ie, WLAN_EID_SSID, pdev_network->Ssid.ssid_len,
Larry Finger5e93f352014-03-28 21:37:38 -0500369 pdev_network->Ssid.ssid, &sz);
370
371 /* supported rates */
372 if (pregistrypriv->wireless_mode == WIRELESS_11ABGN) {
Jes Sorensen37cb9822014-05-21 09:37:40 +0200373 if (pdev_network->DSConfig > 14)
Larry Finger5e93f352014-03-28 21:37:38 -0500374 wireless_mode = WIRELESS_11A_5N;
375 else
376 wireless_mode = WIRELESS_11BG_24N;
377 } else {
378 wireless_mode = pregistrypriv->wireless_mode;
379 }
380
381 rtw_set_supported_rate23a(pdev_network->SupportedRates, wireless_mode) ;
382
383 rateLen = rtw_get_rateset_len23a(pdev_network->SupportedRates);
384
385 if (rateLen > 8) {
Jes Sorensen4323b042014-04-15 19:43:28 +0200386 ie = rtw_set_ie23a(ie, WLAN_EID_SUPP_RATES, 8,
Larry Finger5e93f352014-03-28 21:37:38 -0500387 pdev_network->SupportedRates, &sz);
388 /* ie = rtw_set_ie23a(ie, _EXT_SUPPORTEDRATES_IE_, (rateLen - 8), (pdev_network->SupportedRates + 8), &sz); */
389 } else {
Jes Sorensen4323b042014-04-15 19:43:28 +0200390 ie = rtw_set_ie23a(ie, WLAN_EID_SUPP_RATES, rateLen,
Larry Finger5e93f352014-03-28 21:37:38 -0500391 pdev_network->SupportedRates, &sz);
392 }
393
394 /* DS parameter set */
Jes Sorensen4323b042014-04-15 19:43:28 +0200395 ie = rtw_set_ie23a(ie, WLAN_EID_DS_PARAMS, 1,
Jes Sorensen37cb9822014-05-21 09:37:40 +0200396 (u8 *)&pdev_network->DSConfig, &sz);
Larry Finger5e93f352014-03-28 21:37:38 -0500397
398 /* IBSS Parameter Set */
399
Jes Sorensen4323b042014-04-15 19:43:28 +0200400 ie = rtw_set_ie23a(ie, WLAN_EID_IBSS_PARAMS, 2,
Jes Sorensen37cb9822014-05-21 09:37:40 +0200401 (u8 *)&pdev_network->ATIMWindow, &sz);
Larry Finger5e93f352014-03-28 21:37:38 -0500402
403 if (rateLen > 8) {
Jes Sorensen4323b042014-04-15 19:43:28 +0200404 ie = rtw_set_ie23a(ie, WLAN_EID_EXT_SUPP_RATES, (rateLen - 8),
Larry Finger5e93f352014-03-28 21:37:38 -0500405 (pdev_network->SupportedRates + 8), &sz);
406 }
407
408
409
410 /* return _SUCCESS; */
411
412 return sz;
413}
414
Jes Sorensen0cac3f92014-06-09 15:16:02 +0200415static int rtw_get_wpa_cipher_suite(const u8 *s)
Larry Finger5e93f352014-03-28 21:37:38 -0500416{
417 if (!memcmp(s, WPA_CIPHER_SUITE_NONE23A, WPA_SELECTOR_LEN))
418 return WPA_CIPHER_NONE;
419 if (!memcmp(s, WPA_CIPHER_SUITE_WEP4023A, WPA_SELECTOR_LEN))
420 return WPA_CIPHER_WEP40;
421 if (!memcmp(s, WPA_CIPHER_SUITE_TKIP23A, WPA_SELECTOR_LEN))
422 return WPA_CIPHER_TKIP;
423 if (!memcmp(s, WPA_CIPHER_SUITE_CCMP23A, WPA_SELECTOR_LEN))
424 return WPA_CIPHER_CCMP;
425 if (!memcmp(s, WPA_CIPHER_SUITE_WEP10423A, WPA_SELECTOR_LEN))
426 return WPA_CIPHER_WEP104;
427
428 return 0;
429}
430
Jes Sorensen0cac3f92014-06-09 15:16:02 +0200431static int rtw_get_wpa2_cipher_suite(const u8 *s)
Larry Finger5e93f352014-03-28 21:37:38 -0500432{
433 if (!memcmp(s, RSN_CIPHER_SUITE_NONE23A, RSN_SELECTOR_LEN))
434 return WPA_CIPHER_NONE;
435 if (!memcmp(s, RSN_CIPHER_SUITE_WEP4023A, RSN_SELECTOR_LEN))
436 return WPA_CIPHER_WEP40;
437 if (!memcmp(s, RSN_CIPHER_SUITE_TKIP23A, RSN_SELECTOR_LEN))
438 return WPA_CIPHER_TKIP;
439 if (!memcmp(s, RSN_CIPHER_SUITE_CCMP23A, RSN_SELECTOR_LEN))
440 return WPA_CIPHER_CCMP;
441 if (!memcmp(s, RSN_CIPHER_SUITE_WEP10423A, RSN_SELECTOR_LEN))
442 return WPA_CIPHER_WEP104;
443
444 return 0;
445}
446
Jes Sorensen95c4345a2014-04-15 19:44:03 +0200447int rtw_parse_wpa_ie23a(const u8* wpa_ie, int wpa_ie_len, int *group_cipher, int *pairwise_cipher, int *is_8021x)
Larry Finger5e93f352014-03-28 21:37:38 -0500448{
449 int i, ret = _SUCCESS;
450 int left, count;
Jes Sorensen95c4345a2014-04-15 19:44:03 +0200451 const u8 *pos;
Larry Finger5e93f352014-03-28 21:37:38 -0500452
453 if (wpa_ie_len <= 0) {
454 /* No WPA IE - fail silently */
455 return _FAIL;
456 }
457
Jes Sorensen1ffc7622014-04-26 18:55:45 +0200458 if (wpa_ie[1] != (u8)(wpa_ie_len - 2))
Larry Finger5e93f352014-03-28 21:37:38 -0500459 return _FAIL;
Larry Finger5e93f352014-03-28 21:37:38 -0500460
461 pos = wpa_ie;
462
463 pos += 8;
464 left = wpa_ie_len - 8;
465
466 /* group_cipher */
467 if (left >= WPA_SELECTOR_LEN) {
468
Jes Sorensen0cac3f92014-06-09 15:16:02 +0200469 *group_cipher = rtw_get_wpa_cipher_suite(pos);
Larry Finger5e93f352014-03-28 21:37:38 -0500470
471 pos += WPA_SELECTOR_LEN;
472 left -= WPA_SELECTOR_LEN;
473 } else if (left > 0) {
474 RT_TRACE(_module_rtl871x_mlme_c_, _drv_err_,
475 ("%s: ie length mismatch, %u too much",
476 __func__, left));
477
478 return _FAIL;
479 }
480
481 /* pairwise_cipher */
482 if (left >= 2) {
483 /* count = le16_to_cpu(*(u16*)pos); */
Larry Fingerc17416e2014-03-28 21:37:42 -0500484 count = get_unaligned_le16(pos);
Larry Finger5e93f352014-03-28 21:37:38 -0500485 pos += 2;
486 left -= 2;
487
488 if (count == 0 || left < count * WPA_SELECTOR_LEN) {
489 RT_TRACE(_module_rtl871x_mlme_c_, _drv_err_,
490 ("%s: ie count botch (pairwise), "
491 "count %u left %u", __func__,
492 count, left));
493 return _FAIL;
494 }
495
496 for (i = 0; i < count; i++) {
Jes Sorensen0cac3f92014-06-09 15:16:02 +0200497 *pairwise_cipher |= rtw_get_wpa_cipher_suite(pos);
Larry Finger5e93f352014-03-28 21:37:38 -0500498
499 pos += WPA_SELECTOR_LEN;
500 left -= WPA_SELECTOR_LEN;
501 }
502 } else if (left == 1) {
503 RT_TRACE(_module_rtl871x_mlme_c_, _drv_err_,
504 ("%s: ie too short (for key mgmt)", __func__));
505 return _FAIL;
506 }
507
508 if (is_8021x) {
509 if (left >= 6) {
510 pos += 2;
Jes Sorensen7964eba02014-04-15 19:44:11 +0200511 if (!memcmp(pos, RTW_WPA_OUI23A_TYPE, 4)) {
Larry Finger5e93f352014-03-28 21:37:38 -0500512 RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_,
513 ("%s : there has 802.1x auth\n",
514 __func__));
515 *is_8021x = 1;
516 }
517 }
518 }
519
520 return ret;
521}
522
Greg Donald4e66cf02014-08-22 10:57:49 -0500523int rtw_parse_wpa2_ie23a(const u8 *rsn_ie, int rsn_ie_len, int *group_cipher,
Larry Finger5e93f352014-03-28 21:37:38 -0500524 int *pairwise_cipher, int *is_8021x)
525{
526 int i, ret = _SUCCESS;
527 int left, count;
Jes Sorensen95c4345a2014-04-15 19:44:03 +0200528 const u8 *pos;
Larry Finger5e93f352014-03-28 21:37:38 -0500529 u8 SUITE_1X[4] = {0x00, 0x0f, 0xac, 0x01};
530
531 if (rsn_ie_len <= 0) {
532 /* No RSN IE - fail silently */
533 return _FAIL;
534 }
535
Jes Sorensena131aac2014-06-21 16:50:15 +0200536 if (*rsn_ie != WLAN_EID_RSN || *(rsn_ie+1) != (u8)(rsn_ie_len - 2)) {
Larry Finger5e93f352014-03-28 21:37:38 -0500537 return _FAIL;
538 }
539
540 pos = rsn_ie;
541 pos += 4;
542 left = rsn_ie_len - 4;
543
544 /* group_cipher */
545 if (left >= RSN_SELECTOR_LEN) {
Jes Sorensen0cac3f92014-06-09 15:16:02 +0200546 *group_cipher = rtw_get_wpa2_cipher_suite(pos);
Larry Finger5e93f352014-03-28 21:37:38 -0500547
548 pos += RSN_SELECTOR_LEN;
549 left -= RSN_SELECTOR_LEN;
550 } else if (left > 0) {
551 RT_TRACE(_module_rtl871x_mlme_c_, _drv_err_,
552 ("%s: ie length mismatch, %u too much",
553 __func__, left));
554 return _FAIL;
555 }
556
557 /* pairwise_cipher */
558 if (left >= 2) {
559 /* count = le16_to_cpu(*(u16*)pos); */
Larry Fingerc17416e2014-03-28 21:37:42 -0500560 count = get_unaligned_le16(pos);
Larry Finger5e93f352014-03-28 21:37:38 -0500561 pos += 2;
562 left -= 2;
563
564 if (count == 0 || left < count * RSN_SELECTOR_LEN) {
565 RT_TRACE(_module_rtl871x_mlme_c_, _drv_err_,
566 ("%s: ie count botch (pairwise), "
567 "count %u left %u",
568 __func__, count, left));
569 return _FAIL;
570 }
571
572 for (i = 0; i < count; i++) {
Jes Sorensen0cac3f92014-06-09 15:16:02 +0200573 *pairwise_cipher |= rtw_get_wpa2_cipher_suite(pos);
Larry Finger5e93f352014-03-28 21:37:38 -0500574
575 pos += RSN_SELECTOR_LEN;
576 left -= RSN_SELECTOR_LEN;
577 }
578 } else if (left == 1) {
579 RT_TRACE(_module_rtl871x_mlme_c_, _drv_err_,
580 ("%s: ie too short (for key mgmt)", __func__));
581
582 return _FAIL;
583 }
584
585 if (is_8021x) {
586 if (left >= 6) {
587 pos += 2;
588 if (!memcmp(pos, SUITE_1X, 4)) {
589 RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_,
590 ("%s (): there has 802.1x auth\n",
591 __func__));
592 *is_8021x = 1;
593 }
594 }
595 }
596
597 return ret;
598}
599
Larry Finger5e93f352014-03-28 21:37:38 -0500600/**
Larry Finger5e93f352014-03-28 21:37:38 -0500601 * rtw_get_wps_attr23a - Search a specific WPS attribute from a given WPS IE
602 * @wps_ie: Address of WPS IE to search
603 * @wps_ielen: Length limit from wps_ie
604 * @target_attr_id: The attribute ID of WPS attribute to search
605 * @buf_attr: If not NULL and the WPS attribute is found, WPS attribute
606 * will be copied to the buf starting from buf_attr
607 * @len_attr: If not NULL and the WPS attribute is found, will set to the
608 * length of the entire WPS attribute
609 *
610 * Returns: the address of the specific WPS attribute found, or NULL
611 */
Jes Sorensen6e5e4182014-06-09 15:15:54 +0200612const u8 *rtw_get_wps_attr23a(const u8 *wps_ie, uint wps_ielen,
613 u16 target_attr_id, u8 *buf_attr, u32 *len_attr)
Larry Finger5e93f352014-03-28 21:37:38 -0500614{
Jes Sorensen6e5e4182014-06-09 15:15:54 +0200615 const u8 *attr_ptr = NULL;
616 const u8 *target_attr_ptr = NULL;
Larry Finger5e93f352014-03-28 21:37:38 -0500617 u8 wps_oui[4] = {0x00, 0x50, 0xF2, 0x04};
618
619 if (len_attr)
620 *len_attr = 0;
621
Jes Sorensenea0c9272014-05-09 15:03:09 +0200622 if (wps_ie[0] != WLAN_EID_VENDOR_SPECIFIC ||
Larry Finger5e93f352014-03-28 21:37:38 -0500623 memcmp(wps_ie + 2, wps_oui, 4)) {
624 return attr_ptr;
625 }
626
627 /* 6 = 1(Element ID) + 1(Length) + 4(WPS OUI) */
628 attr_ptr = wps_ie + 6; /* goto first attr */
629
630 while (attr_ptr - wps_ie < wps_ielen) {
631 /* 4 = 2(Attribute ID) + 2(Length) */
Larry Fingerc17416e2014-03-28 21:37:42 -0500632 u16 attr_id = get_unaligned_be16(attr_ptr);
633 u16 attr_data_len = get_unaligned_be16(attr_ptr + 2);
Larry Finger5e93f352014-03-28 21:37:38 -0500634 u16 attr_len = attr_data_len + 4;
635
636 /* DBG_8723A("%s attr_ptr:%p, id:%u, length:%u\n", __func__, attr_ptr, attr_id, attr_data_len); */
637 if (attr_id == target_attr_id) {
638 target_attr_ptr = attr_ptr;
639
640 if (buf_attr)
641 memcpy(buf_attr, attr_ptr, attr_len);
642
643 if (len_attr)
644 *len_attr = attr_len;
645
646 break;
647 } else {
648 attr_ptr += attr_len; /* goto next */
649 }
650 }
651
652 return target_attr_ptr;
653}
654
655/**
656 * rtw_get_wps_attr_content23a - Search a specific WPS attribute content
657 * from a given WPS IE
658 * @wps_ie: Address of WPS IE to search
659 * @wps_ielen: Length limit from wps_ie
660 * @target_attr_id: The attribute ID of WPS attribute to search
661 * @buf_content: If not NULL and the WPS attribute is found, WPS attribute
662 * content will be copied to the buf starting from buf_content
663 * @len_content: If not NULL and the WPS attribute is found, will set to the
664 * length of the WPS attribute content
665 *
666 * Returns: the address of the specific WPS attribute content found, or NULL
667 */
Jes Sorensen6e5e4182014-06-09 15:15:54 +0200668const u8 *rtw_get_wps_attr_content23a(const u8 *wps_ie, uint wps_ielen,
Jes Sorensenc250e072014-06-24 15:03:33 +0200669 u16 target_attr_id, u8 *buf_content)
Larry Finger5e93f352014-03-28 21:37:38 -0500670{
Jes Sorensen6e5e4182014-06-09 15:15:54 +0200671 const u8 *attr_ptr;
Larry Finger5e93f352014-03-28 21:37:38 -0500672 u32 attr_len;
673
Larry Finger5e93f352014-03-28 21:37:38 -0500674 attr_ptr = rtw_get_wps_attr23a(wps_ie, wps_ielen, target_attr_id,
675 NULL, &attr_len);
676
677 if (attr_ptr && attr_len) {
678 if (buf_content)
679 memcpy(buf_content, attr_ptr + 4, attr_len - 4);
680
Larry Finger5e93f352014-03-28 21:37:38 -0500681 return attr_ptr + 4;
682 }
683
684 return NULL;
685}
686
Larry Finger5e93f352014-03-28 21:37:38 -0500687static int rtw_get_cipher_info(struct wlan_network *pnetwork)
688{
Jes Sorensen95c4345a2014-04-15 19:44:03 +0200689 const u8 *pbuf;
Larry Finger5e93f352014-03-28 21:37:38 -0500690 int group_cipher = 0, pairwise_cipher = 0, is8021x = 0;
691 int ret = _FAIL;
Jes Sorensen68e6c792014-06-24 15:03:29 +0200692 int r, plen;
Jes Sorensend7f03692014-04-15 19:44:04 +0200693 char *pie;
Jes Sorensen95c4345a2014-04-15 19:44:03 +0200694
Jes Sorensen68e6c792014-06-24 15:03:29 +0200695 pie = pnetwork->network.IEs;
696 plen = pnetwork->network.IELength;
Larry Finger5e93f352014-03-28 21:37:38 -0500697
Jes Sorensend7f03692014-04-15 19:44:04 +0200698 pbuf = cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT,
699 WLAN_OUI_TYPE_MICROSOFT_WPA, pie, plen);
700
701 if (pbuf && pbuf[1] > 0) {
Larry Finger5e93f352014-03-28 21:37:38 -0500702 RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_,
Jes Sorensend7f03692014-04-15 19:44:04 +0200703 ("rtw_get_cipher_info: wpa_ielen: %d", pbuf[1]));
704 r = rtw_parse_wpa_ie23a(pbuf, pbuf[1] + 2, &group_cipher,
Larry Finger5e93f352014-03-28 21:37:38 -0500705 &pairwise_cipher, &is8021x);
706 if (r == _SUCCESS) {
707 pnetwork->BcnInfo.pairwise_cipher = pairwise_cipher;
708 pnetwork->BcnInfo.group_cipher = group_cipher;
709 pnetwork->BcnInfo.is_8021x = is8021x;
710 RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_,
711 ("%s: pnetwork->pairwise_cipher: %d, is_"
712 "8021x is %d", __func__,
713 pnetwork->BcnInfo.pairwise_cipher,
714 pnetwork->BcnInfo.is_8021x));
715 ret = _SUCCESS;
716 }
717 } else {
Jes Sorensend7f03692014-04-15 19:44:04 +0200718 pbuf = cfg80211_find_ie(WLAN_EID_RSN, pie, plen);
Larry Finger5e93f352014-03-28 21:37:38 -0500719
Jes Sorensend7f03692014-04-15 19:44:04 +0200720 if (pbuf && pbuf[1] > 0) {
Larry Finger5e93f352014-03-28 21:37:38 -0500721 RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_,
722 ("get RSN IE\n"));
Jes Sorensend7f03692014-04-15 19:44:04 +0200723 r = rtw_parse_wpa2_ie23a(pbuf, pbuf[1] + 2,
Larry Finger5e93f352014-03-28 21:37:38 -0500724 &group_cipher, &pairwise_cipher,
725 &is8021x);
726 if (r == _SUCCESS) {
727 RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_,
728 ("get RSN IE OK!!!\n"));
729 pnetwork->BcnInfo.pairwise_cipher =
730 pairwise_cipher;
731 pnetwork->BcnInfo.group_cipher = group_cipher;
732 pnetwork->BcnInfo.is_8021x = is8021x;
733 RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_,
734 ("%s: pnetwork->pairwise_cipher: %d,"
735 "pnetwork->group_cipher is %d, "
736 "is_8021x is %d", __func__,
737 pnetwork->BcnInfo.pairwise_cipher,
738 pnetwork->BcnInfo.group_cipher,
739 pnetwork->BcnInfo.is_8021x));
740 ret = _SUCCESS;
741 }
742 }
743 }
744
745 return ret;
746}
747
748void rtw_get_bcn_info23a(struct wlan_network *pnetwork)
749{
Larry Finger5e93f352014-03-28 21:37:38 -0500750 u8 bencrypt = 0;
Jes Sorensen68e6c792014-06-24 15:03:29 +0200751 int pie_len;
Jes Sorensen54ddd222014-06-09 15:15:59 +0200752 u8 *pie;
753 const u8 *p;
Larry Finger5e93f352014-03-28 21:37:38 -0500754
Jes Sorensen9ce73e22014-06-19 11:37:32 +0200755 if (pnetwork->network.capability & WLAN_CAPABILITY_PRIVACY) {
Larry Finger5e93f352014-03-28 21:37:38 -0500756 bencrypt = 1;
757 pnetwork->network.Privacy = 1;
Jes Sorensen56b84122014-05-21 09:38:30 +0200758 } else
Larry Finger5e93f352014-03-28 21:37:38 -0500759 pnetwork->BcnInfo.encryp_protocol = ENCRYP_PROTOCOL_OPENSYS;
Jes Sorensen56b84122014-05-21 09:38:30 +0200760
Larry Finger5e93f352014-03-28 21:37:38 -0500761 RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_,
Jes Sorensen03964162014-06-19 11:37:33 +0200762 ("%s: ssid =%s\n", __func__, pnetwork->network.Ssid.ssid));
Larry Finger5e93f352014-03-28 21:37:38 -0500763
Jes Sorensen68e6c792014-06-24 15:03:29 +0200764 pie = pnetwork->network.IEs;
765 pie_len = pnetwork->network.IELength;
Jes Sorensen54ddd222014-06-09 15:15:59 +0200766
767 p = cfg80211_find_ie(WLAN_EID_RSN, pie, pie_len);
768 if (p && p[1]) {
Larry Finger5e93f352014-03-28 21:37:38 -0500769 pnetwork->BcnInfo.encryp_protocol = ENCRYP_PROTOCOL_WPA2;
Jes Sorensen54ddd222014-06-09 15:15:59 +0200770 } else if (cfg80211_find_vendor_ie(WLAN_OUI_MICROSOFT,
771 WLAN_OUI_TYPE_MICROSOFT_WPA,
772 pie, pie_len)) {
Larry Finger5e93f352014-03-28 21:37:38 -0500773 pnetwork->BcnInfo.encryp_protocol = ENCRYP_PROTOCOL_WPA;
Jes Sorensen54ddd222014-06-09 15:15:59 +0200774 } else {
Larry Finger5e93f352014-03-28 21:37:38 -0500775 if (bencrypt)
776 pnetwork->BcnInfo.encryp_protocol = ENCRYP_PROTOCOL_WEP;
777 }
778 RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_,
Jes Sorensen03964162014-06-19 11:37:33 +0200779 ("%s: pnetwork->encryp_protocol is %x\n", __func__,
Larry Finger5e93f352014-03-28 21:37:38 -0500780 pnetwork->BcnInfo.encryp_protocol));
781 RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_,
Jes Sorensen03964162014-06-19 11:37:33 +0200782 ("%s: pnetwork->encryp_protocol is %x\n", __func__,
Larry Finger5e93f352014-03-28 21:37:38 -0500783 pnetwork->BcnInfo.encryp_protocol));
784 rtw_get_cipher_info(pnetwork);
785
786 /* get bwmode and ch_offset */
Larry Finger5e93f352014-03-28 21:37:38 -0500787}
788
789/* show MCS rate, unit: 100Kbps */
790u16 rtw_mcs_rate23a(u8 rf_type, u8 bw_40MHz, u8 short_GI_20, u8 short_GI_40,
Jes Sorensen198e95d2014-05-31 18:05:10 +0200791 struct ieee80211_mcs_info *mcs)
Larry Finger5e93f352014-03-28 21:37:38 -0500792{
793 u16 max_rate = 0;
794
795 if (rf_type == RF_1T1R) {
Jes Sorensen198e95d2014-05-31 18:05:10 +0200796 if (mcs->rx_mask[0] & BIT(7))
Larry Finger5e93f352014-03-28 21:37:38 -0500797 max_rate = (bw_40MHz) ? ((short_GI_40)?1500:1350):
798 ((short_GI_20)?722:650);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200799 else if (mcs->rx_mask[0] & BIT(6))
Larry Finger5e93f352014-03-28 21:37:38 -0500800 max_rate = (bw_40MHz) ? ((short_GI_40)?1350:1215):
801 ((short_GI_20)?650:585);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200802 else if (mcs->rx_mask[0] & BIT(5))
Larry Finger5e93f352014-03-28 21:37:38 -0500803 max_rate = (bw_40MHz) ? ((short_GI_40)?1200:1080):
804 ((short_GI_20)?578:520);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200805 else if (mcs->rx_mask[0] & BIT(4))
Larry Finger5e93f352014-03-28 21:37:38 -0500806 max_rate = (bw_40MHz) ? ((short_GI_40)?900:810):
807 ((short_GI_20)?433:390);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200808 else if (mcs->rx_mask[0] & BIT(3))
Larry Finger5e93f352014-03-28 21:37:38 -0500809 max_rate = (bw_40MHz) ? ((short_GI_40)?600:540):
810 ((short_GI_20)?289:260);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200811 else if (mcs->rx_mask[0] & BIT(2))
Larry Finger5e93f352014-03-28 21:37:38 -0500812 max_rate = (bw_40MHz) ? ((short_GI_40)?450:405):
813 ((short_GI_20)?217:195);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200814 else if (mcs->rx_mask[0] & BIT(1))
Larry Finger5e93f352014-03-28 21:37:38 -0500815 max_rate = (bw_40MHz) ? ((short_GI_40)?300:270):
816 ((short_GI_20)?144:130);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200817 else if (mcs->rx_mask[0] & BIT(0))
Larry Finger5e93f352014-03-28 21:37:38 -0500818 max_rate = (bw_40MHz) ? ((short_GI_40)?150:135):
819 ((short_GI_20)?72:65);
820 } else {
Jes Sorensen198e95d2014-05-31 18:05:10 +0200821 if (mcs->rx_mask[1]) {
822 if (mcs->rx_mask[1] & BIT(7))
Larry Finger5e93f352014-03-28 21:37:38 -0500823 max_rate = (bw_40MHz) ? ((short_GI_40)?3000:2700):((short_GI_20)?1444:1300);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200824 else if (mcs->rx_mask[1] & BIT(6))
Larry Finger5e93f352014-03-28 21:37:38 -0500825 max_rate = (bw_40MHz) ? ((short_GI_40)?2700:2430):((short_GI_20)?1300:1170);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200826 else if (mcs->rx_mask[1] & BIT(5))
Larry Finger5e93f352014-03-28 21:37:38 -0500827 max_rate = (bw_40MHz) ? ((short_GI_40)?2400:2160):((short_GI_20)?1156:1040);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200828 else if (mcs->rx_mask[1] & BIT(4))
Larry Finger5e93f352014-03-28 21:37:38 -0500829 max_rate = (bw_40MHz) ? ((short_GI_40)?1800:1620):((short_GI_20)?867:780);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200830 else if (mcs->rx_mask[1] & BIT(3))
Larry Finger5e93f352014-03-28 21:37:38 -0500831 max_rate = (bw_40MHz) ? ((short_GI_40)?1200:1080):((short_GI_20)?578:520);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200832 else if (mcs->rx_mask[1] & BIT(2))
Larry Finger5e93f352014-03-28 21:37:38 -0500833 max_rate = (bw_40MHz) ? ((short_GI_40)?900:810):((short_GI_20)?433:390);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200834 else if (mcs->rx_mask[1] & BIT(1))
Larry Finger5e93f352014-03-28 21:37:38 -0500835 max_rate = (bw_40MHz) ? ((short_GI_40)?600:540):((short_GI_20)?289:260);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200836 else if (mcs->rx_mask[1] & BIT(0))
Larry Finger5e93f352014-03-28 21:37:38 -0500837 max_rate = (bw_40MHz) ? ((short_GI_40)?300:270):((short_GI_20)?144:130);
838 } else {
Jes Sorensen198e95d2014-05-31 18:05:10 +0200839 if (mcs->rx_mask[0] & BIT(7))
Larry Finger5e93f352014-03-28 21:37:38 -0500840 max_rate = (bw_40MHz) ? ((short_GI_40)?1500:1350):((short_GI_20)?722:650);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200841 else if (mcs->rx_mask[0] & BIT(6))
Larry Finger5e93f352014-03-28 21:37:38 -0500842 max_rate = (bw_40MHz) ? ((short_GI_40)?1350:1215):((short_GI_20)?650:585);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200843 else if (mcs->rx_mask[0] & BIT(5))
Larry Finger5e93f352014-03-28 21:37:38 -0500844 max_rate = (bw_40MHz) ? ((short_GI_40)?1200:1080):((short_GI_20)?578:520);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200845 else if (mcs->rx_mask[0] & BIT(4))
Larry Finger5e93f352014-03-28 21:37:38 -0500846 max_rate = (bw_40MHz) ? ((short_GI_40)?900:810):((short_GI_20)?433:390);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200847 else if (mcs->rx_mask[0] & BIT(3))
Larry Finger5e93f352014-03-28 21:37:38 -0500848 max_rate = (bw_40MHz) ? ((short_GI_40)?600:540):((short_GI_20)?289:260);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200849 else if (mcs->rx_mask[0] & BIT(2))
Larry Finger5e93f352014-03-28 21:37:38 -0500850 max_rate = (bw_40MHz) ? ((short_GI_40)?450:405):((short_GI_20)?217:195);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200851 else if (mcs->rx_mask[0] & BIT(1))
Larry Finger5e93f352014-03-28 21:37:38 -0500852 max_rate = (bw_40MHz) ? ((short_GI_40)?300:270):((short_GI_20)?144:130);
Jes Sorensen198e95d2014-05-31 18:05:10 +0200853 else if (mcs->rx_mask[0] & BIT(0))
Larry Finger5e93f352014-03-28 21:37:38 -0500854 max_rate = (bw_40MHz) ? ((short_GI_40)?150:135):((short_GI_20)?72:65);
855 }
856 }
857 return max_rate;
858}