]> git.ipfire.org Git - thirdparty/hostap.git/blob - wpa_supplicant/scan.c
SME: Optimize recovery from common load balancing mechanisms
[thirdparty/hostap.git] / wpa_supplicant / scan.c
1 /*
2 * WPA Supplicant - Scanning
3 * Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
11 *
12 * See README and COPYING for more details.
13 */
14
15 #include "utils/includes.h"
16
17 #include "utils/common.h"
18 #include "utils/eloop.h"
19 #include "common/ieee802_11_defs.h"
20 #include "config.h"
21 #include "wpa_supplicant_i.h"
22 #include "driver_i.h"
23 #include "mlme.h"
24 #include "wps_supplicant.h"
25 #include "p2p_supplicant.h"
26 #include "p2p/p2p.h"
27 #include "notify.h"
28 #include "bss.h"
29 #include "scan.h"
30
31
32 static void wpa_supplicant_gen_assoc_event(struct wpa_supplicant *wpa_s)
33 {
34 struct wpa_ssid *ssid;
35 union wpa_event_data data;
36
37 ssid = wpa_supplicant_get_ssid(wpa_s);
38 if (ssid == NULL)
39 return;
40
41 if (wpa_s->current_ssid == NULL) {
42 wpa_s->current_ssid = ssid;
43 if (wpa_s->current_ssid != NULL)
44 wpas_notify_network_changed(wpa_s);
45 }
46 wpa_supplicant_initiate_eapol(wpa_s);
47 wpa_printf(MSG_DEBUG, "Already associated with a configured network - "
48 "generating associated event");
49 os_memset(&data, 0, sizeof(data));
50 wpa_supplicant_event(wpa_s, EVENT_ASSOC, &data);
51 }
52
53
54 #ifdef CONFIG_WPS
55 static int wpas_wps_in_use(struct wpa_config *conf,
56 enum wps_request_type *req_type)
57 {
58 struct wpa_ssid *ssid;
59 int wps = 0;
60
61 for (ssid = conf->ssid; ssid; ssid = ssid->next) {
62 if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS))
63 continue;
64
65 wps = 1;
66 *req_type = wpas_wps_get_req_type(ssid);
67 if (!ssid->eap.phase1)
68 continue;
69
70 if (os_strstr(ssid->eap.phase1, "pbc=1"))
71 return 2;
72 }
73
74 return wps;
75 }
76 #endif /* CONFIG_WPS */
77
78
79 int wpa_supplicant_enabled_networks(struct wpa_config *conf)
80 {
81 struct wpa_ssid *ssid = conf->ssid;
82 while (ssid) {
83 if (!ssid->disabled)
84 return 1;
85 ssid = ssid->next;
86 }
87 return 0;
88 }
89
90
91 static void wpa_supplicant_assoc_try(struct wpa_supplicant *wpa_s,
92 struct wpa_ssid *ssid)
93 {
94 while (ssid) {
95 if (!ssid->disabled)
96 break;
97 ssid = ssid->next;
98 }
99
100 /* ap_scan=2 mode - try to associate with each SSID. */
101 if (ssid == NULL) {
102 wpa_printf(MSG_DEBUG, "wpa_supplicant_scan: Reached "
103 "end of scan list - go back to beginning");
104 wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
105 wpa_supplicant_req_scan(wpa_s, 0, 0);
106 return;
107 }
108 if (ssid->next) {
109 /* Continue from the next SSID on the next attempt. */
110 wpa_s->prev_scan_ssid = ssid;
111 } else {
112 /* Start from the beginning of the SSID list. */
113 wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
114 }
115 wpa_supplicant_associate(wpa_s, NULL, ssid);
116 }
117
118
119 static int int_array_len(const int *a)
120 {
121 int i;
122 for (i = 0; a && a[i]; i++)
123 ;
124 return i;
125 }
126
127
128 static void int_array_concat(int **res, const int *a)
129 {
130 int reslen, alen, i;
131 int *n;
132
133 reslen = int_array_len(*res);
134 alen = int_array_len(a);
135
136 n = os_realloc(*res, (reslen + alen + 1) * sizeof(int));
137 if (n == NULL) {
138 os_free(*res);
139 *res = NULL;
140 return;
141 }
142 for (i = 0; i <= alen; i++)
143 n[reslen + i] = a[i];
144 *res = n;
145 }
146
147
148 static int freq_cmp(const void *a, const void *b)
149 {
150 int _a = *(int *) a;
151 int _b = *(int *) b;
152
153 if (_a == 0)
154 return 1;
155 if (_b == 0)
156 return -1;
157 return _a - _b;
158 }
159
160
161 static void int_array_sort_unique(int *a)
162 {
163 int alen;
164 int i, j;
165
166 if (a == NULL)
167 return;
168
169 alen = int_array_len(a);
170 qsort(a, alen, sizeof(int), freq_cmp);
171
172 i = 0;
173 j = 1;
174 while (a[i] && a[j]) {
175 if (a[i] == a[j]) {
176 j++;
177 continue;
178 }
179 a[++i] = a[j++];
180 }
181 if (a[i])
182 i++;
183 a[i] = 0;
184 }
185
186
187 int wpa_supplicant_trigger_scan(struct wpa_supplicant *wpa_s,
188 struct wpa_driver_scan_params *params)
189 {
190 int ret;
191
192 wpa_supplicant_notify_scanning(wpa_s, 1);
193
194 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
195 ret = ieee80211_sta_req_scan(wpa_s, params);
196 else
197 ret = wpa_drv_scan(wpa_s, params);
198
199 if (ret) {
200 wpa_supplicant_notify_scanning(wpa_s, 0);
201 wpas_notify_scan_done(wpa_s, 0);
202 } else
203 wpa_s->scan_runs++;
204
205 return ret;
206 }
207
208
209 static struct wpa_driver_scan_filter *
210 wpa_supplicant_build_filter_ssids(struct wpa_config *conf, size_t *num_ssids)
211 {
212 struct wpa_driver_scan_filter *ssids;
213 struct wpa_ssid *ssid;
214 size_t count;
215
216 *num_ssids = 0;
217 if (!conf->filter_ssids)
218 return NULL;
219
220 for (count = 0, ssid = conf->ssid; ssid; ssid = ssid->next) {
221 if (ssid->ssid && ssid->ssid_len)
222 count++;
223 }
224 if (count == 0)
225 return NULL;
226 ssids = os_zalloc(count * sizeof(struct wpa_driver_scan_filter));
227 if (ssids == NULL)
228 return NULL;
229
230 for (ssid = conf->ssid; ssid; ssid = ssid->next) {
231 if (!ssid->ssid || !ssid->ssid_len)
232 continue;
233 os_memcpy(ssids[*num_ssids].ssid, ssid->ssid, ssid->ssid_len);
234 ssids[*num_ssids].ssid_len = ssid->ssid_len;
235 (*num_ssids)++;
236 }
237
238 return ssids;
239 }
240
241
242 static void wpa_supplicant_scan(void *eloop_ctx, void *timeout_ctx)
243 {
244 struct wpa_supplicant *wpa_s = eloop_ctx;
245 struct wpa_ssid *ssid;
246 int scan_req = 0, ret;
247 struct wpabuf *wps_ie = NULL;
248 #ifdef CONFIG_WPS
249 int wps = 0;
250 enum wps_request_type req_type = WPS_REQ_ENROLLEE_INFO;
251 #endif /* CONFIG_WPS */
252 struct wpa_driver_scan_params params;
253 size_t max_ssids;
254 enum wpa_states prev_state;
255
256 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
257 wpa_printf(MSG_DEBUG, "Skip scan - interface disabled");
258 return;
259 }
260
261 if (wpa_s->disconnected && !wpa_s->scan_req) {
262 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
263 return;
264 }
265
266 if (!wpa_supplicant_enabled_networks(wpa_s->conf) &&
267 !wpa_s->scan_req) {
268 wpa_printf(MSG_DEBUG, "No enabled networks - do not scan");
269 wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
270 return;
271 }
272
273 if (wpa_s->conf->ap_scan != 0 &&
274 (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED)) {
275 wpa_printf(MSG_DEBUG, "Using wired authentication - "
276 "overriding ap_scan configuration");
277 wpa_s->conf->ap_scan = 0;
278 wpas_notify_ap_scan_changed(wpa_s);
279 }
280
281 if (wpa_s->conf->ap_scan == 0) {
282 wpa_supplicant_gen_assoc_event(wpa_s);
283 return;
284 }
285
286 if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME) ||
287 wpa_s->conf->ap_scan == 2)
288 max_ssids = 1;
289 else {
290 max_ssids = wpa_s->max_scan_ssids;
291 if (max_ssids > WPAS_MAX_SCAN_SSIDS)
292 max_ssids = WPAS_MAX_SCAN_SSIDS;
293 }
294
295 #ifdef CONFIG_WPS
296 wps = wpas_wps_in_use(wpa_s->conf, &req_type);
297 #endif /* CONFIG_WPS */
298
299 scan_req = wpa_s->scan_req;
300 wpa_s->scan_req = 0;
301
302 os_memset(&params, 0, sizeof(params));
303
304 prev_state = wpa_s->wpa_state;
305 if (wpa_s->wpa_state == WPA_DISCONNECTED ||
306 wpa_s->wpa_state == WPA_INACTIVE)
307 wpa_supplicant_set_state(wpa_s, WPA_SCANNING);
308
309 /* Find the starting point from which to continue scanning */
310 ssid = wpa_s->conf->ssid;
311 if (wpa_s->prev_scan_ssid != WILDCARD_SSID_SCAN) {
312 while (ssid) {
313 if (ssid == wpa_s->prev_scan_ssid) {
314 ssid = ssid->next;
315 break;
316 }
317 ssid = ssid->next;
318 }
319 }
320
321 if (scan_req != 2 && (wpa_s->conf->ap_scan == 2 ||
322 wpa_s->connect_without_scan)) {
323 wpa_s->connect_without_scan = 0;
324 wpa_supplicant_assoc_try(wpa_s, ssid);
325 return;
326 } else if (wpa_s->conf->ap_scan == 2) {
327 /*
328 * User-initiated scan request in ap_scan == 2; scan with
329 * wildcard SSID.
330 */
331 ssid = NULL;
332 } else {
333 struct wpa_ssid *start = ssid, *tssid;
334 int freqs_set = 0;
335 if (ssid == NULL && max_ssids > 1)
336 ssid = wpa_s->conf->ssid;
337 while (ssid) {
338 if (!ssid->disabled && ssid->scan_ssid) {
339 wpa_hexdump_ascii(MSG_DEBUG, "Scan SSID",
340 ssid->ssid, ssid->ssid_len);
341 params.ssids[params.num_ssids].ssid =
342 ssid->ssid;
343 params.ssids[params.num_ssids].ssid_len =
344 ssid->ssid_len;
345 params.num_ssids++;
346 if (params.num_ssids + 1 >= max_ssids)
347 break;
348 }
349 ssid = ssid->next;
350 if (ssid == start)
351 break;
352 if (ssid == NULL && max_ssids > 1 &&
353 start != wpa_s->conf->ssid)
354 ssid = wpa_s->conf->ssid;
355 }
356
357 for (tssid = wpa_s->conf->ssid; tssid; tssid = tssid->next) {
358 if (tssid->disabled)
359 continue;
360 if ((params.freqs || !freqs_set) && tssid->scan_freq) {
361 int_array_concat(&params.freqs,
362 tssid->scan_freq);
363 } else {
364 os_free(params.freqs);
365 params.freqs = NULL;
366 }
367 freqs_set = 1;
368 }
369 int_array_sort_unique(params.freqs);
370 }
371
372 if (ssid) {
373 wpa_s->prev_scan_ssid = ssid;
374 if (max_ssids > 1) {
375 wpa_printf(MSG_DEBUG, "Include wildcard SSID in the "
376 "scan request");
377 params.num_ssids++;
378 }
379 wpa_printf(MSG_DEBUG, "Starting AP scan for specific SSID(s)");
380 } else {
381 wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
382 params.num_ssids++;
383 wpa_printf(MSG_DEBUG, "Starting AP scan for wildcard SSID");
384 }
385
386 #ifdef CONFIG_P2P
387 wpa_s->wps->dev.p2p = 1;
388 if (!wps) {
389 wps = 1;
390 req_type = WPS_REQ_ENROLLEE_INFO;
391 }
392
393 if (params.freqs == NULL && wpa_s->p2p_in_provisioning &&
394 wpa_s->go_params) {
395 /* Optimize provisioning state scan based on GO information */
396 if (wpa_s->p2p_in_provisioning < 5 &&
397 wpa_s->go_params->freq > 0) {
398 wpa_printf(MSG_DEBUG, "P2P: Scan only GO preferred "
399 "frequency %d MHz",
400 wpa_s->go_params->freq);
401 params.freqs = os_zalloc(2 * sizeof(int));
402 if (params.freqs)
403 params.freqs[0] = wpa_s->go_params->freq;
404 } else if (wpa_s->p2p_in_provisioning < 8 &&
405 wpa_s->go_params->freq_list[0]) {
406 wpa_printf(MSG_DEBUG, "P2P: Scan only common "
407 "channels");
408 int_array_concat(&params.freqs,
409 wpa_s->go_params->freq_list);
410 if (params.freqs)
411 int_array_sort_unique(params.freqs);
412 }
413 wpa_s->p2p_in_provisioning++;
414 }
415 #endif /* CONFIG_P2P */
416
417 #ifdef CONFIG_WPS
418 if (params.freqs == NULL && wpa_s->after_wps && wpa_s->wps_freq) {
419 /*
420 * Optimize post-provisioning scan based on channel used
421 * during provisioning.
422 */
423 wpa_printf(MSG_DEBUG, "WPS: Scan only frequency %u MHz that "
424 "was used during provisioning", wpa_s->wps_freq);
425 params.freqs = os_zalloc(2 * sizeof(int));
426 if (params.freqs)
427 params.freqs[0] = wpa_s->wps_freq;
428 wpa_s->after_wps--;
429 }
430
431 if (wps) {
432 wps_ie = wps_build_probe_req_ie(wps == 2, &wpa_s->wps->dev,
433 wpa_s->wps->uuid, req_type);
434 if (wps_ie) {
435 params.extra_ies = wpabuf_head(wps_ie);
436 params.extra_ies_len = wpabuf_len(wps_ie);
437 }
438 }
439 #endif /* CONFIG_WPS */
440
441 #ifdef CONFIG_P2P
442 if (wps_ie) {
443 if (wpabuf_resize(&wps_ie, 100) == 0) {
444 wpas_p2p_scan_ie(wpa_s, wps_ie);
445 params.extra_ies = wpabuf_head(wps_ie);
446 params.extra_ies_len = wpabuf_len(wps_ie);
447 }
448 }
449 #endif /* CONFIG_P2P */
450
451 if (params.freqs == NULL && wpa_s->next_scan_freqs) {
452 wpa_printf(MSG_DEBUG, "Optimize scan based on previously "
453 "generated frequency list");
454 params.freqs = wpa_s->next_scan_freqs;
455 } else
456 os_free(wpa_s->next_scan_freqs);
457 wpa_s->next_scan_freqs = NULL;
458
459 params.filter_ssids = wpa_supplicant_build_filter_ssids(
460 wpa_s->conf, &params.num_filter_ssids);
461
462 ret = wpa_supplicant_trigger_scan(wpa_s, &params);
463
464 wpabuf_free(wps_ie);
465 os_free(params.freqs);
466 os_free(params.filter_ssids);
467
468 if (ret) {
469 wpa_printf(MSG_WARNING, "Failed to initiate AP scan.");
470 if (prev_state != wpa_s->wpa_state)
471 wpa_supplicant_set_state(wpa_s, prev_state);
472 wpa_supplicant_req_scan(wpa_s, 1, 0);
473 }
474 }
475
476
477 /**
478 * wpa_supplicant_req_scan - Schedule a scan for neighboring access points
479 * @wpa_s: Pointer to wpa_supplicant data
480 * @sec: Number of seconds after which to scan
481 * @usec: Number of microseconds after which to scan
482 *
483 * This function is used to schedule a scan for neighboring access points after
484 * the specified time.
485 */
486 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec)
487 {
488 /* If there's at least one network that should be specifically scanned
489 * then don't cancel the scan and reschedule. Some drivers do
490 * background scanning which generates frequent scan results, and that
491 * causes the specific SSID scan to get continually pushed back and
492 * never happen, which causes hidden APs to never get probe-scanned.
493 */
494 if (eloop_is_timeout_registered(wpa_supplicant_scan, wpa_s, NULL) &&
495 wpa_s->conf->ap_scan == 1) {
496 struct wpa_ssid *ssid = wpa_s->conf->ssid;
497
498 while (ssid) {
499 if (!ssid->disabled && ssid->scan_ssid)
500 break;
501 ssid = ssid->next;
502 }
503 if (ssid) {
504 wpa_msg(wpa_s, MSG_DEBUG, "Not rescheduling scan to "
505 "ensure that specific SSID scans occur");
506 return;
507 }
508 }
509
510 wpa_msg(wpa_s, MSG_DEBUG, "Setting scan request: %d sec %d usec",
511 sec, usec);
512 eloop_cancel_timeout(wpa_supplicant_scan, wpa_s, NULL);
513 eloop_register_timeout(sec, usec, wpa_supplicant_scan, wpa_s, NULL);
514 }
515
516
517 /**
518 * wpa_supplicant_cancel_scan - Cancel a scheduled scan request
519 * @wpa_s: Pointer to wpa_supplicant data
520 *
521 * This function is used to cancel a scan request scheduled with
522 * wpa_supplicant_req_scan().
523 */
524 void wpa_supplicant_cancel_scan(struct wpa_supplicant *wpa_s)
525 {
526 wpa_msg(wpa_s, MSG_DEBUG, "Cancelling scan request");
527 eloop_cancel_timeout(wpa_supplicant_scan, wpa_s, NULL);
528 }
529
530
531 void wpa_supplicant_notify_scanning(struct wpa_supplicant *wpa_s,
532 int scanning)
533 {
534 if (wpa_s->scanning != scanning) {
535 wpa_s->scanning = scanning;
536 wpas_notify_scanning(wpa_s);
537 }
538 }
539
540
541 static int wpa_scan_get_max_rate(const struct wpa_scan_res *res)
542 {
543 int rate = 0;
544 const u8 *ie;
545 int i;
546
547 ie = wpa_scan_get_ie(res, WLAN_EID_SUPP_RATES);
548 for (i = 0; ie && i < ie[1]; i++) {
549 if ((ie[i + 2] & 0x7f) > rate)
550 rate = ie[i + 2] & 0x7f;
551 }
552
553 ie = wpa_scan_get_ie(res, WLAN_EID_EXT_SUPP_RATES);
554 for (i = 0; ie && i < ie[1]; i++) {
555 if ((ie[i + 2] & 0x7f) > rate)
556 rate = ie[i + 2] & 0x7f;
557 }
558
559 return rate;
560 }
561
562
563 const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie)
564 {
565 const u8 *end, *pos;
566
567 pos = (const u8 *) (res + 1);
568 end = pos + res->ie_len;
569
570 while (pos + 1 < end) {
571 if (pos + 2 + pos[1] > end)
572 break;
573 if (pos[0] == ie)
574 return pos;
575 pos += 2 + pos[1];
576 }
577
578 return NULL;
579 }
580
581
582 const u8 * wpa_scan_get_vendor_ie(const struct wpa_scan_res *res,
583 u32 vendor_type)
584 {
585 const u8 *end, *pos;
586
587 pos = (const u8 *) (res + 1);
588 end = pos + res->ie_len;
589
590 while (pos + 1 < end) {
591 if (pos + 2 + pos[1] > end)
592 break;
593 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
594 vendor_type == WPA_GET_BE32(&pos[2]))
595 return pos;
596 pos += 2 + pos[1];
597 }
598
599 return NULL;
600 }
601
602
603 struct wpabuf * wpa_scan_get_vendor_ie_multi(const struct wpa_scan_res *res,
604 u32 vendor_type)
605 {
606 struct wpabuf *buf;
607 const u8 *end, *pos;
608
609 buf = wpabuf_alloc(res->ie_len);
610 if (buf == NULL)
611 return NULL;
612
613 pos = (const u8 *) (res + 1);
614 end = pos + res->ie_len;
615
616 while (pos + 1 < end) {
617 if (pos + 2 + pos[1] > end)
618 break;
619 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
620 vendor_type == WPA_GET_BE32(&pos[2]))
621 wpabuf_put_data(buf, pos + 2 + 4, pos[1] - 4);
622 pos += 2 + pos[1];
623 }
624
625 if (wpabuf_len(buf) == 0) {
626 wpabuf_free(buf);
627 buf = NULL;
628 }
629
630 return buf;
631 }
632
633
634 struct wpabuf * wpa_scan_get_vendor_ie_multi_beacon(
635 const struct wpa_scan_res *res, u32 vendor_type)
636 {
637 struct wpabuf *buf;
638 const u8 *end, *pos;
639
640 if (res->beacon_ie_len == 0)
641 return NULL;
642 buf = wpabuf_alloc(res->beacon_ie_len);
643 if (buf == NULL)
644 return NULL;
645
646 pos = (const u8 *) (res + 1);
647 pos += res->ie_len;
648 end = pos + res->beacon_ie_len;
649
650 while (pos + 1 < end) {
651 if (pos + 2 + pos[1] > end)
652 break;
653 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
654 vendor_type == WPA_GET_BE32(&pos[2]))
655 wpabuf_put_data(buf, pos + 2 + 4, pos[1] - 4);
656 pos += 2 + pos[1];
657 }
658
659 if (wpabuf_len(buf) == 0) {
660 wpabuf_free(buf);
661 buf = NULL;
662 }
663
664 return buf;
665 }
666
667
668 /* Compare function for sorting scan results. Return >0 if @b is considered
669 * better. */
670 static int wpa_scan_result_compar(const void *a, const void *b)
671 {
672 struct wpa_scan_res **_wa = (void *) a;
673 struct wpa_scan_res **_wb = (void *) b;
674 struct wpa_scan_res *wa = *_wa;
675 struct wpa_scan_res *wb = *_wb;
676 int wpa_a, wpa_b, maxrate_a, maxrate_b;
677
678 /* WPA/WPA2 support preferred */
679 wpa_a = wpa_scan_get_vendor_ie(wa, WPA_IE_VENDOR_TYPE) != NULL ||
680 wpa_scan_get_ie(wa, WLAN_EID_RSN) != NULL;
681 wpa_b = wpa_scan_get_vendor_ie(wb, WPA_IE_VENDOR_TYPE) != NULL ||
682 wpa_scan_get_ie(wb, WLAN_EID_RSN) != NULL;
683
684 if (wpa_b && !wpa_a)
685 return 1;
686 if (!wpa_b && wpa_a)
687 return -1;
688
689 /* privacy support preferred */
690 if ((wa->caps & IEEE80211_CAP_PRIVACY) == 0 &&
691 (wb->caps & IEEE80211_CAP_PRIVACY))
692 return 1;
693 if ((wa->caps & IEEE80211_CAP_PRIVACY) &&
694 (wb->caps & IEEE80211_CAP_PRIVACY) == 0)
695 return -1;
696
697 /* best/max rate preferred if signal level close enough XXX */
698 if ((wa->level && wb->level && abs(wb->level - wa->level) < 5) ||
699 (wa->qual && wb->qual && abs(wb->qual - wa->qual) < 10)) {
700 maxrate_a = wpa_scan_get_max_rate(wa);
701 maxrate_b = wpa_scan_get_max_rate(wb);
702 if (maxrate_a != maxrate_b)
703 return maxrate_b - maxrate_a;
704 }
705
706 /* use freq for channel preference */
707
708 /* all things being equal, use signal level; if signal levels are
709 * identical, use quality values since some drivers may only report
710 * that value and leave the signal level zero */
711 if (wb->level == wa->level)
712 return wb->qual - wa->qual;
713 return wb->level - wa->level;
714 }
715
716
717 #ifdef CONFIG_WPS
718 /* Compare function for sorting scan results when searching a WPS AP for
719 * provisioning. Return >0 if @b is considered better. */
720 static int wpa_scan_result_wps_compar(const void *a, const void *b)
721 {
722 struct wpa_scan_res **_wa = (void *) a;
723 struct wpa_scan_res **_wb = (void *) b;
724 struct wpa_scan_res *wa = *_wa;
725 struct wpa_scan_res *wb = *_wb;
726 int uses_wps_a, uses_wps_b;
727 struct wpabuf *wps_a, *wps_b;
728 int res;
729
730 /* Optimization - check WPS IE existence before allocated memory and
731 * doing full reassembly. */
732 uses_wps_a = wpa_scan_get_vendor_ie(wa, WPS_IE_VENDOR_TYPE) != NULL;
733 uses_wps_b = wpa_scan_get_vendor_ie(wb, WPS_IE_VENDOR_TYPE) != NULL;
734 if (uses_wps_a && !uses_wps_b)
735 return -1;
736 if (!uses_wps_a && uses_wps_b)
737 return 1;
738
739 if (uses_wps_a && uses_wps_b) {
740 wps_a = wpa_scan_get_vendor_ie_multi(wa, WPS_IE_VENDOR_TYPE);
741 wps_b = wpa_scan_get_vendor_ie_multi(wb, WPS_IE_VENDOR_TYPE);
742 res = wps_ap_priority_compar(wps_a, wps_b);
743 wpabuf_free(wps_a);
744 wpabuf_free(wps_b);
745 if (res)
746 return res;
747 }
748
749 /*
750 * Do not use current AP security policy as a sorting criteria during
751 * WPS provisioning step since the AP may get reconfigured at the
752 * completion of provisioning.
753 */
754
755 /* all things being equal, use signal level; if signal levels are
756 * identical, use quality values since some drivers may only report
757 * that value and leave the signal level zero */
758 if (wb->level == wa->level)
759 return wb->qual - wa->qual;
760 return wb->level - wa->level;
761 }
762 #endif /* CONFIG_WPS */
763
764
765 /**
766 * wpa_supplicant_get_scan_results - Get scan results
767 * @wpa_s: Pointer to wpa_supplicant data
768 * @info: Information about what was scanned or %NULL if not available
769 * @new_scan: Whether a new scan was performed
770 * Returns: Scan results, %NULL on failure
771 *
772 * This function request the current scan results from the driver and updates
773 * the local BSS list wpa_s->bss. The caller is responsible for freeing the
774 * results with wpa_scan_results_free().
775 */
776 struct wpa_scan_results *
777 wpa_supplicant_get_scan_results(struct wpa_supplicant *wpa_s,
778 struct scan_info *info, int new_scan)
779 {
780 struct wpa_scan_results *scan_res;
781 size_t i;
782 int (*compar)(const void *, const void *) = wpa_scan_result_compar;
783
784 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
785 scan_res = ieee80211_sta_get_scan_results(wpa_s);
786 else
787 scan_res = wpa_drv_get_scan_results2(wpa_s);
788 if (scan_res == NULL) {
789 wpa_printf(MSG_DEBUG, "Failed to get scan results");
790 return NULL;
791 }
792
793 #ifdef CONFIG_WPS
794 if (wpas_wps_in_progress(wpa_s)) {
795 wpa_printf(MSG_DEBUG, "WPS: Order scan results with WPS "
796 "provisioning rules");
797 compar = wpa_scan_result_wps_compar;
798 }
799 #endif /* CONFIG_WPS */
800
801 qsort(scan_res->res, scan_res->num, sizeof(struct wpa_scan_res *),
802 compar);
803
804 wpa_bss_update_start(wpa_s);
805 for (i = 0; i < scan_res->num; i++)
806 wpa_bss_update_scan_res(wpa_s, scan_res->res[i]);
807 wpa_bss_update_end(wpa_s, info, new_scan);
808
809 return scan_res;
810 }
811
812
813 int wpa_supplicant_update_scan_results(struct wpa_supplicant *wpa_s)
814 {
815 struct wpa_scan_results *scan_res;
816 scan_res = wpa_supplicant_get_scan_results(wpa_s, NULL, 0);
817 if (scan_res == NULL)
818 return -1;
819 wpa_scan_results_free(scan_res);
820
821 return 0;
822 }
823
824
825 void wpa_scan_results_free(struct wpa_scan_results *res)
826 {
827 size_t i;
828
829 if (res == NULL)
830 return;
831
832 for (i = 0; i < res->num; i++)
833 os_free(res->res[i]);
834 os_free(res->res);
835 os_free(res);
836 }