blob: e06ec7c54720c4cdfe55f413862bad605fe6b861 [file] [log] [blame]
Om Prakash Tripathi7e3f45d2016-12-28 16:58:54 +05301/*
2 * Copyright (c) 2017 The Linux Foundation. All rights reserved.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for
5 * any purpose with or without fee is hereby granted, provided that the
6 * above copyright notice and this permission notice appear in all
7 * copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
10 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
12 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16 * PERFORMANCE OF THIS SOFTWARE.
17 */
18
19/*
20 * DOC: Defines scan utility functions
21 */
Om Prakash Tripathi22f95dc2016-12-19 10:45:59 +053022
Abhishek Singh4caf1a92017-02-21 15:01:08 +053023#include <wlan_cmn.h>
Om Prakash Tripathi22f95dc2016-12-19 10:45:59 +053024#include <wlan_scan_ucfg_api.h>
25#include <wlan_scan_utils_api.h>
26#include <../../core/src/wlan_scan_cache_db.h>
27#include <../../core/src/wlan_scan_main.h>
28
29const char*
30util_scan_get_ev_type_name(enum scan_event_type type)
31{
32 static const char * const event_name[] = {
33 [SCAN_EVENT_TYPE_STARTED] = "STARTED",
34 [SCAN_EVENT_TYPE_COMPLETED] = "COMPLETED",
35 [SCAN_EVENT_TYPE_BSS_CHANNEL] = "HOME_CHANNEL",
36 [SCAN_EVENT_TYPE_FOREIGN_CHANNEL] = "FOREIGN_CHANNEL",
37 [SCAN_EVENT_TYPE_DEQUEUED] = "DEQUEUED",
38 [SCAN_EVENT_TYPE_PREEMPTED] = "PREEMPTED",
39 [SCAN_EVENT_TYPE_START_FAILED] = "START_FAILED",
40 [SCAN_EVENT_TYPE_RESTARTED] = "RESTARTED",
41 [SCAN_EVENT_TYPE_FOREIGN_CHANNEL_EXIT] = "FOREIGN_CHANNEL_EXIT",
42 [SCAN_EVENT_TYPE_SUSPENDED] = "SUSPENDED",
43 [SCAN_EVENT_TYPE_RESUMED] = "RESUMED",
44 [SCAN_EVENT_TYPE_NLO_COMPLETE] = "NLO_COMPLETE",
Abhishek Singh8c6e82d2017-03-03 21:57:29 +053045 [SCAN_EVENT_TYPE_NLO_MATCH] = "NLO_MATCH",
Om Prakash Tripathi22f95dc2016-12-19 10:45:59 +053046 [SCAN_EVENT_TYPE_INVALID] = "INVALID",
47 [SCAN_EVENT_TYPE_GPIO_TIMEOUT] = "GPIO_TIMEOUT",
48 [SCAN_EVENT_TYPE_RADIO_MEASUREMENT_START] =
49 "RADIO_MEASUREMENT_START",
50 [SCAN_EVENT_TYPE_RADIO_MEASUREMENT_END] =
51 "RADIO_MEASUREMENT_END",
52 [SCAN_EVENT_TYPE_BSSID_MATCH] = "BSSID_MATCH",
53 [SCAN_EVENT_TYPE_FOREIGN_CHANNEL_GET_NF] =
54 "FOREIGN_CHANNEL_GET_NF",
55 };
56
Abhishek Singh483d9142017-03-06 13:28:13 +053057 if (type >= SCAN_EVENT_TYPE_MAX)
Om Prakash Tripathi22f95dc2016-12-19 10:45:59 +053058 return "UNKNOWN";
Om Prakash Tripathi22f95dc2016-12-19 10:45:59 +053059
60 return event_name[type];
61}
62
63
64const char*
65util_scan_get_ev_reason_name(enum scan_completion_reason reason)
66{
67 static const char * const reason_name[] = {
68 [SCAN_REASON_NONE] = "NONE",
69 [SCAN_REASON_COMPLETED] = "COMPLETED",
70 [SCAN_REASON_CANCELLED] = "CANCELLED",
71 [SCAN_REASON_PREEMPTED] = "PREEMPTED",
72 [SCAN_REASON_TIMEDOUT] = "TIMEDOUT",
73 [SCAN_REASON_INTERNAL_FAILURE] = "INTERNAL_FAILURE",
74 [SCAN_REASON_SUSPENDED] = "SUSPENDED",
75 [SCAN_REASON_RUN_FAILED] = "RUN_FAILED",
76 [SCAN_REASON_TERMINATION_FUNCTION] = "TERMINATION_FUNCTION",
77 [SCAN_REASON_MAX_OFFCHAN_RETRIES] = "MAX_OFFCHAN_RETRIES",
78 };
79
Abhishek Singh483d9142017-03-06 13:28:13 +053080 if (reason >= SCAN_REASON_MAX)
Om Prakash Tripathi22f95dc2016-12-19 10:45:59 +053081 return "UNKNOWN";
Om Prakash Tripathi22f95dc2016-12-19 10:45:59 +053082
83 return reason_name[reason];
84}
85
86qdf_time_t
87util_get_last_scan_time(struct wlan_objmgr_vdev *vdev)
88{
89 uint8_t pdev_id;
90 struct wlan_scan_obj *scan_obj;
91
92 if (!vdev) {
93 scm_warn("null vdev");
94 QDF_ASSERT(0);
95 return 0;
96 }
97 pdev_id = wlan_scan_vdev_get_pdev_id(vdev);
98 scan_obj = wlan_vdev_get_scan_obj(vdev);
99
100 return scan_obj->pdev_info[pdev_id].last_scan_time;
101}
Abhishek Singh4caf1a92017-02-21 15:01:08 +0530102
Abhishek Singhb80af7e2017-07-19 18:48:42 +0530103enum wlan_band util_scan_scm_chan_to_band(uint32_t chan)
Abhishek Singh4caf1a92017-02-21 15:01:08 +0530104{
105 if (WLAN_CHAN_IS_2GHZ(chan))
106 return WLAN_BAND_2_4_GHZ;
107
108 return WLAN_BAND_5_GHZ;
109}
110
Abhishek Singhd4e600f2017-02-21 15:16:28 +0530111bool util_is_scan_entry_match(
112 struct scan_cache_entry *entry1,
113 struct scan_cache_entry *entry2)
114{
115
116 if (entry1->cap_info.wlan_caps.ess !=
117 entry1->cap_info.wlan_caps.ess)
118 return false;
119
120 if (entry1->cap_info.wlan_caps.ess &&
121 !qdf_mem_cmp(entry1->bssid.bytes,
Om Prakash Tripathic3fcb682017-08-01 18:24:55 +0530122 entry2->bssid.bytes, QDF_MAC_ADDR_SIZE) &&
Abhishek Singhb80af7e2017-07-19 18:48:42 +0530123 util_scan_scm_chan_to_band(
Abhishek Singhd4e600f2017-02-21 15:16:28 +0530124 entry1->channel.chan_idx) ==
Abhishek Singhb80af7e2017-07-19 18:48:42 +0530125 util_scan_scm_chan_to_band(entry2->channel.chan_idx)) {
Abhishek Singhd4e600f2017-02-21 15:16:28 +0530126 /* Check for BSS */
127 if (util_is_ssid_match(
128 &entry1->ssid, &entry2->ssid))
129 return true;
130 } else if (entry1->cap_info.wlan_caps.ibss &&
131 (entry1->channel.chan_idx ==
132 entry2->channel.chan_idx)) {
133 /*
134 * Same channel cannot have same SSID for
135 * different IBSS, so no need to check BSSID
136 */
137 if (util_is_ssid_match(
138 &entry1->ssid, &entry2->ssid))
139 return true;
140 } else if (!entry1->cap_info.wlan_caps.ibss &&
141 !entry1->cap_info.wlan_caps.ess &&
142 !qdf_mem_cmp(entry1->bssid.bytes,
Om Prakash Tripathic3fcb682017-08-01 18:24:55 +0530143 entry2->bssid.bytes, QDF_MAC_ADDR_SIZE)) {
Abhishek Singhd4e600f2017-02-21 15:16:28 +0530144 /* In case of P2P devices, ess and ibss will be set to zero */
145 return true;
146 }
147
148 return false;
149}
150
Abhishek Singh4caf1a92017-02-21 15:01:08 +0530151static bool util_is_pureg_rate(uint8_t *rates, uint8_t nrates)
152{
153 static const uint8_t g_rates[] = {12, 18, 24, 36, 48, 72, 96, 108};
154 bool pureg = false;
155 uint8_t i, j;
156
157 for (i = 0; i < nrates; i++) {
158 for (j = 0; j < QDF_ARRAY_SIZE(g_rates); j++) {
159 if (WLAN_RV(rates[i]) == g_rates[j]) {
160 pureg = true;
161 break;
162 }
163 }
164 if (pureg)
165 break;
166 }
167
168 return pureg;
169}
170static enum wlan_phymode
171util_scan_get_phymode_5g(struct scan_cache_entry *scan_params)
172{
173 enum wlan_phymode phymode = WLAN_PHYMODE_AUTO;
174 uint16_t ht_cap = 0;
175 struct htcap_cmn_ie *htcap;
176 struct wlan_ie_htinfo_cmn *htinfo;
177 struct wlan_ie_vhtop *vhtop;
178
179 htcap = (struct htcap_cmn_ie *)
180 util_scan_entry_htcap(scan_params);
181 htinfo = (struct wlan_ie_htinfo_cmn *)
182 util_scan_entry_htinfo(scan_params);
183 vhtop = (struct wlan_ie_vhtop *)
184 util_scan_entry_vhtop(scan_params);
185
186 if (!(htcap && htinfo))
187 return WLAN_PHYMODE_11A;
188
189 if (htcap)
190 ht_cap = le16toh(htcap->hc_cap);
191
192 if (util_scan_entry_vhtcap(scan_params) && vhtop) {
193 switch (vhtop->vht_op_chwidth) {
194 case WLAN_VHTOP_CHWIDTH_2040:
195 if ((ht_cap & WLAN_HTCAP_C_CHWIDTH40) &&
196 (htinfo->hi_extchoff ==
197 WLAN_HTINFO_EXTOFFSET_ABOVE))
198 phymode = WLAN_PHYMODE_11AC_VHT40PLUS;
199 else if ((ht_cap & WLAN_HTCAP_C_CHWIDTH40) &&
200 (htinfo->hi_extchoff ==
201 WLAN_HTINFO_EXTOFFSET_BELOW))
202 phymode = WLAN_PHYMODE_11AC_VHT40MINUS;
203 else
204 phymode = WLAN_PHYMODE_11AC_VHT20;
205 break;
206 case WLAN_VHTOP_CHWIDTH_80:
207 if (WLAN_IS_REVSIG_VHT80_80(vhtop))
208 phymode = WLAN_PHYMODE_11AC_VHT80_80;
209 else if (WLAN_IS_REVSIG_VHT160(vhtop))
210 phymode = WLAN_PHYMODE_11AC_VHT160;
211 else
212 phymode = WLAN_PHYMODE_11AC_VHT80;
213 break;
214 case WLAN_VHTOP_CHWIDTH_160:
215 phymode = WLAN_PHYMODE_11AC_VHT160;
216 break;
217 case WLAN_VHTOP_CHWIDTH_80_80:
218 phymode = WLAN_PHYMODE_11AC_VHT80_80;
219 break;
220 default:
221 scm_err("bad channel: %d",
222 vhtop->vht_op_chwidth);
223 break;
224 }
225 } else if ((ht_cap & WLAN_HTCAP_C_CHWIDTH40) &&
226 (htinfo->hi_extchoff == WLAN_HTINFO_EXTOFFSET_ABOVE))
227 phymode = WLAN_PHYMODE_11NA_HT40PLUS;
228 else if ((ht_cap & WLAN_HTCAP_C_CHWIDTH40) &&
229 (htinfo->hi_extchoff == WLAN_HTINFO_EXTOFFSET_BELOW))
230 phymode = WLAN_PHYMODE_11NA_HT40MINUS;
231 else
232 phymode = WLAN_PHYMODE_11NA_HT20;
233
234 return phymode;
235}
236
237static enum wlan_phymode
238util_scan_get_phymode_2g(struct scan_cache_entry *scan_params)
239{
240 enum wlan_phymode phymode = WLAN_PHYMODE_AUTO;
241 uint16_t ht_cap = 0;
242 struct htcap_cmn_ie *htcap;
243 struct wlan_ie_htinfo_cmn *htinfo;
244 struct wlan_ie_vhtop *vhtop;
245
246 htcap = (struct htcap_cmn_ie *)
247 util_scan_entry_htcap(scan_params);
248 htinfo = (struct wlan_ie_htinfo_cmn *)
249 util_scan_entry_htinfo(scan_params);
250 vhtop = (struct wlan_ie_vhtop *)
251 util_scan_entry_vhtop(scan_params);
252
253 if (htcap)
254 ht_cap = le16toh(htcap->hc_cap);
255
256 if (htcap && htinfo) {
257 if ((ht_cap & WLAN_HTCAP_C_CHWIDTH40) &&
258 (htinfo->hi_extchoff == WLAN_HTINFO_EXTOFFSET_ABOVE))
259 phymode = WLAN_PHYMODE_11NG_HT40PLUS;
260 else if ((ht_cap & WLAN_HTCAP_C_CHWIDTH40) &&
261 (htinfo->hi_extchoff == WLAN_HTINFO_EXTOFFSET_BELOW))
262 phymode = WLAN_PHYMODE_11NG_HT40MINUS;
263 else
264 phymode = WLAN_PHYMODE_11NG_HT20;
265 } else if (util_scan_entry_xrates(scan_params)) {
266 /* only 11G stations will have more than 8 rates */
267 phymode = WLAN_PHYMODE_11G;
268 } else {
269 /* Some mischievous g-only APs do not set extended rates */
270 if (util_scan_entry_rates(scan_params)) {
271 if (util_is_pureg_rate(&scan_params->ie_list.rates[2],
272 scan_params->ie_list.rates[1]))
273 phymode = WLAN_PHYMODE_11G;
274 else
275 phymode = WLAN_PHYMODE_11B;
276 } else {
277 phymode = WLAN_PHYMODE_11B;
278 }
279 }
280
281 return phymode;
282}
283
284static QDF_STATUS
285util_scan_parse_chan_switch_wrapper_ie(struct scan_cache_entry *scan_params,
286 struct ie_header *sub_ie, qdf_size_t sub_ie_len)
287{
288 /* Walk through to check nothing is malformed */
289 while (sub_ie_len >= sizeof(struct ie_header)) {
290 /* At least one more header is present */
291 sub_ie_len -= sizeof(struct ie_header);
292
293 if (sub_ie->ie_len == 0) {
294 sub_ie += 1;
295 continue;
296 }
297 if (sub_ie_len < sub_ie->ie_len) {
298 scm_err("Incomplete corrupted IE:%x",
299 WLAN_ELEMID_CHAN_SWITCH_WRAP);
300 return QDF_STATUS_E_INVAL;
301 }
302 switch (sub_ie->ie_id) {
303 case WLAN_ELEMID_COUNTRY:
304 scan_params->ie_list.country = (uint8_t *)sub_ie;
305 break;
306 case WLAN_ELEMID_WIDE_BAND_CHAN_SWITCH:
307 scan_params->ie_list.widebw = (uint8_t *)sub_ie;
308 break;
309 case WLAN_ELEMID_VHT_TX_PWR_ENVLP:
310 scan_params->ie_list.txpwrenvlp = (uint8_t *)sub_ie;
311 break;
312 }
313 /* Consume sub info element */
314 sub_ie_len -= sub_ie->ie_len;
315 /* go to next Sub IE */
316 sub_ie = (struct ie_header *)
317 (((uint8_t *) sub_ie) +
318 sizeof(struct ie_header) + sub_ie->ie_len);
319 }
320
321 return QDF_STATUS_SUCCESS;
322}
323
Om Prakash Tripathi1d1525d2017-09-08 13:59:34 +0530324bool
Abhishek Singh4caf1a92017-02-21 15:01:08 +0530325util_scan_is_hidden_ssid(struct ie_ssid *ssid)
326{
327 uint8_t i;
328
329 /*
330 * We flag this as Hidden SSID if the Length is 0
331 * of the SSID only contains 0's
332 */
333 if (!ssid || !ssid->ssid_len)
334 return true;
335
336 for (i = 0; i < ssid->ssid_len; i++)
337 if (ssid->ssid[i] != 0)
338 return false;
339
340 /* All 0's */
341 return true;
342}
343
344static void
Venkateswara Swamy Bandaru851184b2017-04-25 11:02:39 +0530345util_scan_parse_extn_ie(struct scan_cache_entry *scan_params,
346 struct ie_header *ie)
347{
348 struct extn_ie_header *extn_ie = (struct extn_ie_header *) ie;
349
350 switch (extn_ie->ie_extn_id) {
351 case WLAN_EXTN_ELEMID_SRP:
Gyanranjan Hazarikab5d426d2017-08-22 21:45:07 -0700352 scan_params->ie_list.srp = (uint8_t *)ie;
353 break;
354 case WLAN_EXTN_ELEMID_HECAP:
355 scan_params->ie_list.hecap = (uint8_t *)ie;
356 break;
357 case WLAN_EXTN_ELEMID_HEOP:
358 scan_params->ie_list.heop = (uint8_t *)ie;
Venkateswara Swamy Bandaru851184b2017-04-25 11:02:39 +0530359 break;
Abhishek Singhb80af7e2017-07-19 18:48:42 +0530360 case WLAN_EXTN_ELEMID_ESP:
361 scan_params->ie_list.esp = (uint8_t *)ie;
362 break;
Venkateswara Swamy Bandaru851184b2017-04-25 11:02:39 +0530363 default:
364 break;
365 }
366}
367
368static void
Abhishek Singh4caf1a92017-02-21 15:01:08 +0530369util_scan_parse_vendor_ie(struct scan_cache_entry *scan_params,
370 struct ie_header *ie)
371{
372
373 if (scan_params->ie_list.vendor == NULL)
374 scan_params->ie_list.vendor = (uint8_t *)ie;
375
376 if (is_wpa_oui((uint8_t *)ie)) {
377 scan_params->ie_list.wpa = (uint8_t *)ie;
378 } else if (is_wps_oui((uint8_t *)ie)) {
379 scan_params->ie_list.wps = (uint8_t *)ie;
380 /* WCN IE should be a subset of WPS IE */
381 if (is_wcn_oui((uint8_t *)ie))
382 scan_params->ie_list.wcn = (uint8_t *)ie;
383 } else if (is_wme_param((uint8_t *)ie)) {
384 scan_params->ie_list.wmeparam = (uint8_t *)ie;
385 } else if (is_wme_info((uint8_t *)ie)) {
386 scan_params->ie_list.wmeinfo = (uint8_t *)ie;
387 } else if (is_atheros_oui((uint8_t *)ie)) {
388 scan_params->ie_list.athcaps = (uint8_t *)ie;
389 } else if (is_atheros_extcap_oui((uint8_t *)ie)) {
390 scan_params->ie_list.athextcaps = (uint8_t *)ie;
391 } else if (is_sfa_oui((uint8_t *)ie)) {
392 scan_params->ie_list.sfa = (uint8_t *)ie;
393 } else if (is_p2p_oui((uint8_t *)ie)) {
394 scan_params->ie_list.p2p = (uint8_t *)ie;
Bharat Bhushan Chakravarty145d3932017-03-20 12:52:16 -0700395 } else if (is_qca_son_oui((uint8_t *)ie,
396 QCA_OUI_WHC_AP_INFO_SUBTYPE)) {
Abhishek Singh4caf1a92017-02-21 15:01:08 +0530397 scan_params->ie_list.sonadv = (uint8_t *)ie;
398 } else if (is_ht_cap((uint8_t *)ie)) {
399 /* we only care if there isn't already an HT IE (ANA) */
400 if (scan_params->ie_list.htcap == NULL)
401 scan_params->ie_list.htcap =
402 (uint8_t *)&(((struct wlan_vendor_ie_htcap *)ie)->ie);
403 } else if (is_ht_info((uint8_t *)ie)) {
404 /* we only care if there isn't already an HT IE (ANA) */
405 if (scan_params->ie_list.htinfo == NULL)
406 scan_params->ie_list.htinfo =
407 (uint8_t *)&(((struct wlan_vendor_ie_htinfo *)
408 ie)->hi_ie);
409 } else if (is_interop_vht((uint8_t *)ie) &&
410 !(scan_params->ie_list.vhtop)) {
411 /* location where Interop Vht Cap IE and VHT OP IE Present */
412 scan_params->ie_list.vhtcap = (((uint8_t *)(ie)) + 7);
413 scan_params->ie_list.vhtop = (((uint8_t *)(ie)) + 21);
414 } else if (is_bwnss_oui((uint8_t *)ie)) {
415 /*
416 * Bandwidth-NSS map has sub-type & version.
417 * hence copy data just after version byte
418 */
419 scan_params->ie_list.bwnss_map = (((uint8_t *)ie) + 8);
420 }
421}
422
423static QDF_STATUS
424util_scan_populate_bcn_ie_list(struct scan_cache_entry *scan_params)
425{
426 struct ie_header *ie, *sub_ie;
427 uint32_t ie_len, sub_ie_len;
428 QDF_STATUS status;
429
430 ie_len = util_scan_entry_ie_len(scan_params);
431 ie = (struct ie_header *)
432 util_scan_entry_ie_data(scan_params);
433
434 while (ie_len >= sizeof(struct ie_header)) {
435 ie_len -= sizeof(struct ie_header);
436
437 if (!ie->ie_len) {
438 ie += 1;
439 continue;
440 }
441
442 if (ie_len < ie->ie_len) {
443 scm_err("Incomplete corrupted IE:%x",
444 ie->ie_id);
445 return QDF_STATUS_E_INVAL;
446 }
447
448 switch (ie->ie_id) {
449 case WLAN_ELEMID_SSID:
450 scan_params->ie_list.ssid = (uint8_t *)ie;
451 break;
452 case WLAN_ELEMID_RATES:
453 scan_params->ie_list.rates = (uint8_t *)ie;
454 break;
455 case WLAN_ELEMID_DSPARMS:
456 scan_params->channel.chan_idx =
457 ((struct ds_ie *)ie)->cur_chan;
458 break;
459 case WLAN_ELEMID_TIM:
460 scan_params->ie_list.tim = (uint8_t *)ie;
461 scan_params->dtim_period =
462 ((struct wlan_tim_ie *)ie)->tim_period;
463 break;
464 case WLAN_ELEMID_COUNTRY:
465 scan_params->ie_list.country = (uint8_t *)ie;
466 break;
467 case WLAN_ELEMID_QBSS_LOAD:
468 scan_params->ie_list.qbssload = (uint8_t *)ie;
469 break;
470 case WLAN_ELEMID_CHANSWITCHANN:
471 scan_params->ie_list.csa = (uint8_t *)ie;
472 break;
473 case WLAN_ELEMID_IBSSDFS:
474 scan_params->ie_list.ibssdfs = (uint8_t *)ie;
475 break;
476 case WLAN_ELEMID_QUIET:
477 scan_params->ie_list.quiet = (uint8_t *)ie;
478 break;
479 case WLAN_ELEMID_ERP:
480 scan_params->erp = ((struct erp_ie *)ie)->value;
481 break;
482 case WLAN_ELEMID_HTCAP_ANA:
483 scan_params->ie_list.htcap =
484 (uint8_t *)&(((struct htcap_ie *)ie)->ie);
485 break;
486 case WLAN_ELEMID_RSN:
487 scan_params->ie_list.rsn = (uint8_t *)ie;
488 break;
489 case WLAN_ELEMID_XRATES:
490 scan_params->ie_list.xrates = (uint8_t *)ie;
491 break;
492 case WLAN_ELEMID_EXTCHANSWITCHANN:
493 scan_params->ie_list.xcsa = (uint8_t *)ie;
494 break;
495 case WLAN_ELEMID_SECCHANOFFSET:
496 scan_params->ie_list.secchanoff = (uint8_t *)ie;
497 break;
498 case WLAN_ELEMID_HTINFO_ANA:
499 scan_params->ie_list.htinfo =
500 (uint8_t *)&(((struct wlan_ie_htinfo *) ie)->hi_ie);
501 scan_params->channel.chan_idx =
502 ((struct wlan_ie_htinfo_cmn *)
503 (scan_params->ie_list.htinfo))->hi_ctrlchannel;
504 break;
505 case WLAN_ELEMID_WAPI:
506 scan_params->ie_list.wapi = (uint8_t *)ie;
507 break;
508 case WLAN_ELEMID_XCAPS:
509 scan_params->ie_list.extcaps = (uint8_t *)ie;
510 break;
511 case WLAN_ELEMID_VHTCAP:
512 scan_params->ie_list.vhtcap = (uint8_t *)ie;
513 break;
514 case WLAN_ELEMID_VHTOP:
515 scan_params->ie_list.vhtop = (uint8_t *)ie;
516 break;
517 case WLAN_ELEMID_OP_MODE_NOTIFY:
518 scan_params->ie_list.opmode = (uint8_t *)ie;
519 break;
520 case WLAN_ELEMID_MOBILITY_DOMAIN:
521 scan_params->ie_list.mdie = (uint8_t *)ie;
522 break;
523 case WLAN_ELEMID_VENDOR:
524 util_scan_parse_vendor_ie(scan_params,
525 ie);
526 break;
527 case WLAN_ELEMID_CHAN_SWITCH_WRAP:
528 scan_params->ie_list.cswrp = (uint8_t *)ie;
529 /* Go to next sub IE */
530 sub_ie = (struct ie_header *)
531 (((uint8_t *)ie) + sizeof(struct ie_header));
532 sub_ie_len = ie->ie_len;
533 status =
534 util_scan_parse_chan_switch_wrapper_ie(
535 scan_params, sub_ie, sub_ie_len);
536 if (QDF_IS_STATUS_ERROR(status)) {
537 scm_err("failed to parse chan_switch_wrapper_ie");
538 return status;
539 }
540 break;
Kapil Guptade02d4f2017-06-05 12:37:59 +0530541 case WLAN_ELEMID_FILS_INDICATION:
542 scan_params->ie_list.fils_indication = (uint8_t *)ie;
543 break;
Venkateswara Swamy Bandaru851184b2017-04-25 11:02:39 +0530544 case WLAN_ELEMID_EXTN_ELEM:
545 util_scan_parse_extn_ie(scan_params, ie);
546 break;
Abhishek Singh4caf1a92017-02-21 15:01:08 +0530547 default:
548 break;
549 }
550
551 /* Consume info element */
552 ie_len -= ie->ie_len;
553 /* Go to next IE */
554 ie = (struct ie_header *)
555 (((uint8_t *) ie) +
556 sizeof(struct ie_header) +
557 ie->ie_len);
558 }
559
560 return QDF_STATUS_SUCCESS;
561}
562
Abhishek Singhb80af7e2017-07-19 18:48:42 +0530563/**
564 * util_scan_update_esp_data: update ESP params from beacon/probe response
565 * @esp_information: pointer to wlan_esp_information
566 * @scan_entry: new received entry
567 *
568 * The Estimated Service Parameters element is
569 * used by a AP to provide information to another STA which
570 * can then use the information as input to an algorithm to
571 * generate an estimate of throughput between the two STAs.
572 * The ESP Information List field contains from 1 to 4 ESP
573 * Information fields(each field 24 bits), each corresponding
574 * to an access category for which estimated service parameters
575 * information is provided.
576 *
577 * Return: None
578 */
579static void util_scan_update_esp_data(struct wlan_esp_ie *esp_information,
580 struct scan_cache_entry *scan_entry)
581{
582
583 uint8_t *data;
584 int i = 0;
585 int total_elements;
586 struct wlan_esp_info *esp_info;
587 struct wlan_esp_ie *esp_ie;
588
589 esp_ie = (struct wlan_esp_ie *)
590 util_scan_entry_esp_info(scan_entry);
591
592 total_elements = esp_ie->esp_len;
593 data = (uint8_t *)esp_ie + 3;
594 do_div(total_elements, ESP_INFORMATION_LIST_LENGTH);
595
596 if (total_elements > MAX_ESP_INFORMATION_FIELD) {
597 scm_err("No of Air time fractions are greater than supported");
598 return;
599 }
600
601 for (i = 0; i < total_elements; i++) {
602 esp_info = (struct wlan_esp_info *)data;
603 if (esp_info->access_category == ESP_AC_BK) {
604 qdf_mem_copy(&esp_information->esp_info_AC_BK,
605 data, 3);
606 data = data + ESP_INFORMATION_LIST_LENGTH;
607 continue;
608 }
609 if (esp_info->access_category == ESP_AC_BE) {
610 qdf_mem_copy(&esp_information->esp_info_AC_BE,
611 data, 3);
612 data = data + ESP_INFORMATION_LIST_LENGTH;
613 continue;
614 }
615 if (esp_info->access_category == ESP_AC_VI) {
616 qdf_mem_copy(&esp_information->esp_info_AC_VI,
617 data, 3);
618 data = data + ESP_INFORMATION_LIST_LENGTH;
619 continue;
620 }
621 if (esp_info->access_category == ESP_AC_VO) {
622 qdf_mem_copy(&esp_information->esp_info_AC_VO,
623 data, 3);
624 data = data + ESP_INFORMATION_LIST_LENGTH;
625 break;
626 }
627 }
628}
629
630/**
631 * util_scan_scm_update_bss_with_esp_dataa: calculate estimated air time
632 * fraction
633 * @scan_entry: new received entry
634 *
635 * This function process all Access category ESP params and provide
636 * best effort air time fraction.
637 * If best effort is not available, it will choose VI, VO and BK in sequence
638 *
639 */
640static void util_scan_scm_update_bss_with_esp_data(
641 struct scan_cache_entry *scan_entry)
642{
643 uint8_t air_time_fraction = 0;
644 struct wlan_esp_ie esp_information;
645
646 if (!scan_entry->ie_list.esp)
647 return;
648
649 util_scan_update_esp_data(&esp_information, scan_entry);
650
651 /*
652 * If the ESP metric is transmitting multiple airtime fractions, then
653 * follow the sequence AC_BE, AC_VI, AC_VO, AC_BK and pick whichever is
654 * the first one available
655 */
656 if (esp_information.esp_info_AC_BE.access_category
657 == ESP_AC_BE)
658 air_time_fraction =
659 esp_information.esp_info_AC_BE.
660 estimated_air_fraction;
661 else if (esp_information.esp_info_AC_VI.access_category
662 == ESP_AC_VI)
663 air_time_fraction =
664 esp_information.esp_info_AC_VI.
665 estimated_air_fraction;
666 else if (esp_information.esp_info_AC_VO.access_category
667 == ESP_AC_VO)
668 air_time_fraction =
669 esp_information.esp_info_AC_VO.
670 estimated_air_fraction;
671 else if (esp_information.esp_info_AC_BK.access_category
672 == ESP_AC_BK)
673 air_time_fraction =
674 esp_information.esp_info_AC_BK.
675 estimated_air_fraction;
676 scan_entry->air_time_fraction = air_time_fraction;
677}
678
679/**
680 * util_scan_scm_calc_nss_supported_by_ap() - finds out nss from AP
681 * @scan_entry: new received entry
682 *
683 * Return: number of nss advertised by AP
684 */
685static int util_scan_scm_calc_nss_supported_by_ap(
686 struct scan_cache_entry *scan_params)
687{
688 struct htcap_cmn_ie *htcap;
689 struct wlan_ie_vhtcaps *vhtcaps;
690 uint8_t rx_mcs_map;
691
692 htcap = (struct htcap_cmn_ie *)
693 util_scan_entry_htcap(scan_params);
694 vhtcaps = (struct wlan_ie_vhtcaps *)
695 util_scan_entry_vhtcap(scan_params);
696 if (vhtcaps) {
697 rx_mcs_map = vhtcaps->rx_mcs_map;
698 if ((rx_mcs_map & 0xC0) != 0xC0)
699 return 4;
700
701 if ((rx_mcs_map & 0x30) != 0x30)
702 return 3;
703
704 if ((rx_mcs_map & 0x0C) != 0x0C)
705 return 2;
706 } else if (htcap) {
707 if (htcap->mcsset[3])
708 return 4;
709
710 if (htcap->mcsset[2])
711 return 3;
712
713 if (htcap->mcsset[1])
714 return 2;
715
716 }
717 return 1;
718}
719
Abhishek Singh4caf1a92017-02-21 15:01:08 +0530720struct scan_cache_entry *
721util_scan_unpack_beacon_frame(uint8_t *frame,
722 qdf_size_t frame_len, uint32_t frm_subtype,
723 struct mgmt_rx_event_params *rx_param)
724{
725 struct wlan_frame_hdr *hdr;
726 struct wlan_bcn_frame *bcn;
727 QDF_STATUS status;
728 struct ie_ssid *ssid;
729 struct scan_cache_entry *scan_entry = NULL;
730
731 scan_entry = qdf_mem_malloc(sizeof(*scan_entry));
732 if (!scan_entry) {
733 scm_err("failed to allocate memory for scan_entry");
734 return NULL;
735 }
736 scan_entry->raw_frame.ptr =
737 qdf_mem_malloc(frame_len);
738 if (!scan_entry->raw_frame.ptr) {
739 scm_err("failed to allocate memory for frame");
740 qdf_mem_free(scan_entry);
741 return NULL;
742 }
743
744 bcn = (struct wlan_bcn_frame *)
745 (frame + sizeof(*hdr));
746 hdr = (struct wlan_frame_hdr *)frame;
747
748 scan_entry->frm_subtype = frm_subtype;
749 qdf_mem_copy(scan_entry->bssid.bytes,
750 hdr->i_addr3, QDF_MAC_ADDR_SIZE);
751 /* Scr addr */
752 qdf_mem_copy(scan_entry->mac_addr.bytes,
753 hdr->i_addr2, QDF_MAC_ADDR_SIZE);
754 scan_entry->seq_num =
755 (le16toh(*(uint16_t *)hdr->i_seq) >> WLAN_SEQ_SEQ_SHIFT);
756
757 scan_entry->rssi_raw = rx_param->rssi;
Om Prakash Tripathi6af738b2017-08-22 15:46:38 +0530758 scan_entry->avg_rssi = WLAN_RSSI_IN(scan_entry->rssi_raw);
Abhishek Singh4caf1a92017-02-21 15:01:08 +0530759 scan_entry->tsf_delta = rx_param->tsf_delta;
760
761 /* store jiffies */
762 scan_entry->rrm_parent_tsf = (u_int32_t) qdf_system_ticks();
763
764 scan_entry->bcn_int = le16toh(bcn->beacon_interval);
765
766 /*
767 * In case if the beacon dosnt have
768 * valid beacon interval falback to def
769 */
770 if (!scan_entry->bcn_int)
771 scan_entry->bcn_int = 100;
772 scan_entry->cap_info.value = le16toh(bcn->capability.value);
773 qdf_mem_copy(scan_entry->tsf_info.data,
774 bcn->timestamp, 8);
775 scan_entry->erp = ERP_NON_ERP_PRESENT;
776
Om Prakash Tripathicdcbb392017-04-18 18:51:20 +0530777 scan_entry->scan_entry_time =
778 qdf_mc_timer_get_system_time();
Abhishek Singh4caf1a92017-02-21 15:01:08 +0530779
780 scan_entry->raw_frame.len = frame_len;
781 qdf_mem_copy(scan_entry->raw_frame.ptr,
782 frame, frame_len);
783 status = util_scan_populate_bcn_ie_list(scan_entry);
784 if (QDF_IS_STATUS_ERROR(status)) {
785 scm_err("failed to parse beacon IE");
786 qdf_mem_free(scan_entry->raw_frame.ptr);
787 qdf_mem_free(scan_entry);
788 return NULL;
789 }
790
791 if (!scan_entry->ie_list.rates) {
792 qdf_mem_free(scan_entry->raw_frame.ptr);
793 qdf_mem_free(scan_entry);
794 return NULL;
795 }
796
797 ssid = (struct ie_ssid *)
798 scan_entry->ie_list.ssid;
799
800 if (ssid && (ssid->ssid_len > WLAN_SSID_MAX_LEN)) {
801 qdf_mem_free(scan_entry->raw_frame.ptr);
802 qdf_mem_free(scan_entry);
803 return NULL;
804 }
805
806 if (scan_entry->ie_list.p2p)
807 scan_entry->is_p2p = true;
808
809 /* If no channel info is present in beacon use meta channel */
810 if (!scan_entry->channel.chan_idx) {
811 scan_entry->channel.chan_idx =
812 rx_param->channel;
813 } else if (rx_param->channel !=
814 scan_entry->channel.chan_idx) {
815 scan_entry->channel_mismatch = true;
816 }
817
818 if (util_scan_is_hidden_ssid(ssid)) {
819 scan_entry->ie_list.ssid = NULL;
820 } else {
821 qdf_mem_copy(scan_entry->ssid.ssid,
822 ssid->ssid, WLAN_SSID_MAX_LEN);
823 scan_entry->ssid.length = ssid->ssid_len;
824 scan_entry->hidden_ssid_timestamp =
825 scan_entry->scan_entry_time;
826 }
827
828 if (WLAN_CHAN_IS_5GHZ(scan_entry->channel.chan_idx))
829 scan_entry->phy_mode = util_scan_get_phymode_5g(scan_entry);
830 else
831 scan_entry->phy_mode = util_scan_get_phymode_2g(scan_entry);
832
Abhishek Singhb80af7e2017-07-19 18:48:42 +0530833 scan_entry->nss = util_scan_scm_calc_nss_supported_by_ap(scan_entry);
834 util_scan_scm_update_bss_with_esp_data(scan_entry);
835
Abhishek Singh4caf1a92017-02-21 15:01:08 +0530836 /* TODO calculate channel struct */
837 return scan_entry;
838}
Om Prakash Tripathic3fcb682017-08-01 18:24:55 +0530839
840QDF_STATUS
841util_scan_entry_update_mlme_info(struct wlan_objmgr_pdev *pdev,
842 struct scan_cache_entry *scan_entry)
843{
844
845 if (!pdev || !scan_entry) {
846 scm_err("pdev 0x%p, scan_entry: 0x%p", pdev, scan_entry);
847 return QDF_STATUS_E_INVAL;
848 }
849
850 return scm_update_scan_mlme_info(pdev, scan_entry);
851}