]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/scan.c
nl80211: Fix DFS radar event parsing
[thirdparty/hostap.git] / wpa_supplicant / scan.c
CommitLineData
6fc6879b
JM
1/*
2 * WPA Supplicant - Scanning
2c09af30 3 * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
6fc6879b 4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
6fc6879b
JM
7 */
8
9ba9fa07 9#include "utils/includes.h"
6fc6879b 10
9ba9fa07
JM
11#include "utils/common.h"
12#include "utils/eloop.h"
13#include "common/ieee802_11_defs.h"
66fe0f70 14#include "common/wpa_ctrl.h"
6fc6879b
JM
15#include "config.h"
16#include "wpa_supplicant_i.h"
2d5b792d 17#include "driver_i.h"
b01c18a8 18#include "wps_supplicant.h"
0e65037c
JM
19#include "p2p_supplicant.h"
20#include "p2p/p2p.h"
c923b8a5 21#include "hs20_supplicant.h"
8bac466b 22#include "notify.h"
9ba9fa07 23#include "bss.h"
cbc54848 24#include "gas_query.h"
9ba9fa07 25#include "scan.h"
6fc6879b
JM
26
27
28static void wpa_supplicant_gen_assoc_event(struct wpa_supplicant *wpa_s)
29{
30 struct wpa_ssid *ssid;
31 union wpa_event_data data;
32
33 ssid = wpa_supplicant_get_ssid(wpa_s);
34 if (ssid == NULL)
35 return;
36
8bac466b 37 if (wpa_s->current_ssid == NULL) {
6fc6879b 38 wpa_s->current_ssid = ssid;
8bac466b
JM
39 if (wpa_s->current_ssid != NULL)
40 wpas_notify_network_changed(wpa_s);
41 }
6fc6879b 42 wpa_supplicant_initiate_eapol(wpa_s);
f049052b
BG
43 wpa_dbg(wpa_s, MSG_DEBUG, "Already associated with a configured "
44 "network - generating associated event");
6fc6879b
JM
45 os_memset(&data, 0, sizeof(data));
46 wpa_supplicant_event(wpa_s, EVENT_ASSOC, &data);
47}
48
49
ad08c363 50#ifdef CONFIG_WPS
5f738a21 51static int wpas_wps_in_use(struct wpa_supplicant *wpa_s,
f90c86d4 52 enum wps_request_type *req_type)
ad08c363
JM
53{
54 struct wpa_ssid *ssid;
55 int wps = 0;
ad08c363 56
5f738a21 57 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
ad08c363
JM
58 if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS))
59 continue;
60
61 wps = 1;
b01c18a8 62 *req_type = wpas_wps_get_req_type(ssid);
ad08c363
JM
63 if (!ssid->eap.phase1)
64 continue;
65
ad08c363
JM
66 if (os_strstr(ssid->eap.phase1, "pbc=1"))
67 return 2;
68 }
69
5f738a21 70#ifdef CONFIG_P2P
7a808c7e
JM
71 if (!wpa_s->global->p2p_disabled && wpa_s->global->p2p &&
72 !wpa_s->conf->p2p_disabled) {
b21ff9cb
JM
73 wpa_s->wps->dev.p2p = 1;
74 if (!wps) {
75 wps = 1;
76 *req_type = WPS_REQ_ENROLLEE_INFO;
77 }
5f738a21
LC
78 }
79#endif /* CONFIG_P2P */
80
ad08c363
JM
81 return wps;
82}
83#endif /* CONFIG_WPS */
84
e76baaac 85
2c09af30
JM
86/**
87 * wpa_supplicant_enabled_networks - Check whether there are enabled networks
88 * @wpa_s: Pointer to wpa_supplicant data
89 * Returns: 0 if no networks are enabled, >0 if networks are enabled
90 *
91 * This function is used to figure out whether any networks (or Interworking
92 * with enabled credentials and auto_interworking) are present in the current
93 * configuration.
94 */
349493bd 95int wpa_supplicant_enabled_networks(struct wpa_supplicant *wpa_s)
e76baaac 96{
349493bd 97 struct wpa_ssid *ssid = wpa_s->conf->ssid;
d4534bde 98 int count = 0, disabled = 0;
e76baaac 99 while (ssid) {
349493bd 100 if (!wpas_network_disabled(wpa_s, ssid))
5471c343 101 count++;
d4534bde
JM
102 else
103 disabled++;
e76baaac
JM
104 ssid = ssid->next;
105 }
4d5bda5f
JM
106 if (wpa_s->conf->cred && wpa_s->conf->interworking &&
107 wpa_s->conf->auto_interworking)
108 count++;
d4534bde
JM
109 if (count == 0 && disabled > 0) {
110 wpa_dbg(wpa_s, MSG_DEBUG, "No enabled networks (%d disabled "
111 "networks)", disabled);
112 }
5471c343 113 return count;
e76baaac
JM
114}
115
116
117static void wpa_supplicant_assoc_try(struct wpa_supplicant *wpa_s,
118 struct wpa_ssid *ssid)
119{
120 while (ssid) {
349493bd 121 if (!wpas_network_disabled(wpa_s, ssid))
e76baaac
JM
122 break;
123 ssid = ssid->next;
124 }
125
126 /* ap_scan=2 mode - try to associate with each SSID. */
127 if (ssid == NULL) {
f049052b
BG
128 wpa_dbg(wpa_s, MSG_DEBUG, "wpa_supplicant_assoc_try: Reached "
129 "end of scan list - go back to beginning");
ba2a573c 130 wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
e76baaac
JM
131 wpa_supplicant_req_scan(wpa_s, 0, 0);
132 return;
133 }
134 if (ssid->next) {
135 /* Continue from the next SSID on the next attempt. */
136 wpa_s->prev_scan_ssid = ssid;
137 } else {
138 /* Start from the beginning of the SSID list. */
ba2a573c 139 wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
e76baaac
JM
140 }
141 wpa_supplicant_associate(wpa_s, NULL, ssid);
142}
143
144
d3a98225
JM
145static int int_array_len(const int *a)
146{
147 int i;
148 for (i = 0; a && a[i]; i++)
149 ;
150 return i;
151}
152
153
154static void int_array_concat(int **res, const int *a)
155{
156 int reslen, alen, i;
157 int *n;
158
159 reslen = int_array_len(*res);
160 alen = int_array_len(a);
161
067ffa26 162 n = os_realloc_array(*res, reslen + alen + 1, sizeof(int));
d3a98225
JM
163 if (n == NULL) {
164 os_free(*res);
165 *res = NULL;
e6c0ebff 166 return;
d3a98225
JM
167 }
168 for (i = 0; i <= alen; i++)
169 n[reslen + i] = a[i];
170 *res = n;
171}
172
173
174static int freq_cmp(const void *a, const void *b)
175{
176 int _a = *(int *) a;
177 int _b = *(int *) b;
178
179 if (_a == 0)
180 return 1;
181 if (_b == 0)
182 return -1;
183 return _a - _b;
184}
185
186
187static void int_array_sort_unique(int *a)
188{
189 int alen;
190 int i, j;
191
192 if (a == NULL)
193 return;
194
195 alen = int_array_len(a);
196 qsort(a, alen, sizeof(int), freq_cmp);
197
198 i = 0;
199 j = 1;
200 while (a[i] && a[j]) {
201 if (a[i] == a[j]) {
202 j++;
203 continue;
204 }
205 a[++i] = a[j++];
206 }
207 if (a[i])
208 i++;
209 a[i] = 0;
210}
211
212
2c09af30
JM
213/**
214 * wpa_supplicant_trigger_scan - Request driver to start a scan
215 * @wpa_s: Pointer to wpa_supplicant data
216 * @params: Scan parameters
217 * Returns: 0 on success, -1 on failure
218 */
60b94c98
JM
219int wpa_supplicant_trigger_scan(struct wpa_supplicant *wpa_s,
220 struct wpa_driver_scan_params *params)
221{
222 int ret;
223
224 wpa_supplicant_notify_scanning(wpa_s, 1);
225
17fbb751 226 ret = wpa_drv_scan(wpa_s, params);
60b94c98
JM
227 if (ret) {
228 wpa_supplicant_notify_scanning(wpa_s, 0);
229 wpas_notify_scan_done(wpa_s, 0);
0b7a25c0 230 } else {
4342326f 231 os_get_time(&wpa_s->scan_trigger_time);
60b94c98 232 wpa_s->scan_runs++;
0b7a25c0
JM
233 wpa_s->normal_scans++;
234 }
60b94c98
JM
235
236 return ret;
237}
238
239
6a90053c
LC
240static void
241wpa_supplicant_delayed_sched_scan_timeout(void *eloop_ctx, void *timeout_ctx)
242{
243 struct wpa_supplicant *wpa_s = eloop_ctx;
244
245 wpa_dbg(wpa_s, MSG_DEBUG, "Starting delayed sched scan");
246
247 if (wpa_supplicant_req_sched_scan(wpa_s))
248 wpa_supplicant_req_scan(wpa_s, 0, 0);
249}
250
251
cbdf3507
LC
252static void
253wpa_supplicant_sched_scan_timeout(void *eloop_ctx, void *timeout_ctx)
254{
255 struct wpa_supplicant *wpa_s = eloop_ctx;
256
257 wpa_dbg(wpa_s, MSG_DEBUG, "Sched scan timeout - stopping it");
258
259 wpa_s->sched_scan_timed_out = 1;
260 wpa_supplicant_cancel_sched_scan(wpa_s);
261}
262
263
264static int
265wpa_supplicant_start_sched_scan(struct wpa_supplicant *wpa_s,
266 struct wpa_driver_scan_params *params,
267 int interval)
268{
269 int ret;
270
cbdf3507
LC
271 wpa_supplicant_notify_scanning(wpa_s, 1);
272 ret = wpa_drv_sched_scan(wpa_s, params, interval * 1000);
273 if (ret)
274 wpa_supplicant_notify_scanning(wpa_s, 0);
275 else
276 wpa_s->sched_scanning = 1;
277
278 return ret;
279}
280
281
282static int wpa_supplicant_stop_sched_scan(struct wpa_supplicant *wpa_s)
283{
284 int ret;
285
286 ret = wpa_drv_stop_sched_scan(wpa_s);
287 if (ret) {
288 wpa_dbg(wpa_s, MSG_DEBUG, "stopping sched_scan failed!");
289 /* TODO: what to do if stopping fails? */
290 return -1;
291 }
292
293 return ret;
294}
295
296
3812464c
JM
297static struct wpa_driver_scan_filter *
298wpa_supplicant_build_filter_ssids(struct wpa_config *conf, size_t *num_ssids)
299{
300 struct wpa_driver_scan_filter *ssids;
301 struct wpa_ssid *ssid;
302 size_t count;
303
304 *num_ssids = 0;
305 if (!conf->filter_ssids)
306 return NULL;
307
308 for (count = 0, ssid = conf->ssid; ssid; ssid = ssid->next) {
309 if (ssid->ssid && ssid->ssid_len)
310 count++;
311 }
312 if (count == 0)
313 return NULL;
314 ssids = os_zalloc(count * sizeof(struct wpa_driver_scan_filter));
315 if (ssids == NULL)
316 return NULL;
317
318 for (ssid = conf->ssid; ssid; ssid = ssid->next) {
319 if (!ssid->ssid || !ssid->ssid_len)
320 continue;
321 os_memcpy(ssids[*num_ssids].ssid, ssid->ssid, ssid->ssid_len);
322 ssids[*num_ssids].ssid_len = ssid->ssid_len;
323 (*num_ssids)++;
324 }
325
326 return ssids;
327}
328
329
5f738a21
LC
330static void wpa_supplicant_optimize_freqs(
331 struct wpa_supplicant *wpa_s, struct wpa_driver_scan_params *params)
332{
333#ifdef CONFIG_P2P
334 if (params->freqs == NULL && wpa_s->p2p_in_provisioning &&
335 wpa_s->go_params) {
336 /* Optimize provisioning state scan based on GO information */
337 if (wpa_s->p2p_in_provisioning < 5 &&
338 wpa_s->go_params->freq > 0) {
339 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Scan only GO "
340 "preferred frequency %d MHz",
341 wpa_s->go_params->freq);
342 params->freqs = os_zalloc(2 * sizeof(int));
343 if (params->freqs)
344 params->freqs[0] = wpa_s->go_params->freq;
345 } else if (wpa_s->p2p_in_provisioning < 8 &&
346 wpa_s->go_params->freq_list[0]) {
347 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Scan only common "
348 "channels");
349 int_array_concat(&params->freqs,
350 wpa_s->go_params->freq_list);
351 if (params->freqs)
352 int_array_sort_unique(params->freqs);
353 }
354 wpa_s->p2p_in_provisioning++;
355 }
356#endif /* CONFIG_P2P */
357
358#ifdef CONFIG_WPS
359 if (params->freqs == NULL && wpa_s->after_wps && wpa_s->wps_freq) {
360 /*
361 * Optimize post-provisioning scan based on channel used
362 * during provisioning.
363 */
364 wpa_dbg(wpa_s, MSG_DEBUG, "WPS: Scan only frequency %u MHz "
365 "that was used during provisioning", wpa_s->wps_freq);
366 params->freqs = os_zalloc(2 * sizeof(int));
367 if (params->freqs)
368 params->freqs[0] = wpa_s->wps_freq;
369 wpa_s->after_wps--;
370 }
371
1e7fb4f1
JM
372 if (params->freqs == NULL && wpa_s->known_wps_freq && wpa_s->wps_freq)
373 {
374 /* Optimize provisioning scan based on already known channel */
375 wpa_dbg(wpa_s, MSG_DEBUG, "WPS: Scan only frequency %u MHz",
376 wpa_s->wps_freq);
377 params->freqs = os_zalloc(2 * sizeof(int));
378 if (params->freqs)
379 params->freqs[0] = wpa_s->wps_freq;
380 wpa_s->known_wps_freq = 0; /* only do this once */
381 }
5f738a21
LC
382#endif /* CONFIG_WPS */
383}
384
385
46ee0427
JM
386#ifdef CONFIG_INTERWORKING
387static void wpas_add_interworking_elements(struct wpa_supplicant *wpa_s,
388 struct wpabuf *buf)
389{
390 if (wpa_s->conf->interworking == 0)
391 return;
392
393 wpabuf_put_u8(buf, WLAN_EID_EXT_CAPAB);
394 wpabuf_put_u8(buf, 4);
395 wpabuf_put_u8(buf, 0x00);
396 wpabuf_put_u8(buf, 0x00);
397 wpabuf_put_u8(buf, 0x00);
398 wpabuf_put_u8(buf, 0x80); /* Bit 31 - Interworking */
399
400 wpabuf_put_u8(buf, WLAN_EID_INTERWORKING);
401 wpabuf_put_u8(buf, is_zero_ether_addr(wpa_s->conf->hessid) ? 1 :
402 1 + ETH_ALEN);
11540c0b 403 wpabuf_put_u8(buf, wpa_s->conf->access_network_type);
46ee0427
JM
404 /* No Venue Info */
405 if (!is_zero_ether_addr(wpa_s->conf->hessid))
406 wpabuf_put_data(buf, wpa_s->conf->hessid, ETH_ALEN);
407}
408#endif /* CONFIG_INTERWORKING */
409
410
a13e07ec 411static struct wpabuf * wpa_supplicant_extra_ies(struct wpa_supplicant *wpa_s)
6fc6879b 412{
46ee0427 413 struct wpabuf *extra_ie = NULL;
b01c18a8 414#ifdef CONFIG_WPS
509a3972 415 int wps = 0;
f90c86d4 416 enum wps_request_type req_type = WPS_REQ_ENROLLEE_INFO;
46ee0427
JM
417#endif /* CONFIG_WPS */
418
419#ifdef CONFIG_INTERWORKING
420 if (wpa_s->conf->interworking &&
421 wpabuf_resize(&extra_ie, 100) == 0)
422 wpas_add_interworking_elements(wpa_s, extra_ie);
423#endif /* CONFIG_INTERWORKING */
5f738a21 424
46ee0427 425#ifdef CONFIG_WPS
5f738a21
LC
426 wps = wpas_wps_in_use(wpa_s, &req_type);
427
428 if (wps) {
46ee0427 429 struct wpabuf *wps_ie;
360182ed
JM
430 wps_ie = wps_build_probe_req_ie(wps == 2 ? DEV_PW_PUSHBUTTON :
431 DEV_PW_DEFAULT,
432 &wpa_s->wps->dev,
5f738a21
LC
433 wpa_s->wps->uuid, req_type,
434 0, NULL);
435 if (wps_ie) {
46ee0427
JM
436 if (wpabuf_resize(&extra_ie, wpabuf_len(wps_ie)) == 0)
437 wpabuf_put_buf(extra_ie, wps_ie);
438 wpabuf_free(wps_ie);
5f738a21
LC
439 }
440 }
441
442#ifdef CONFIG_P2P
46ee0427 443 if (wps) {
5f738a21 444 size_t ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
46ee0427
JM
445 if (wpabuf_resize(&extra_ie, ielen) == 0)
446 wpas_p2p_scan_ie(wpa_s, extra_ie);
5f738a21
LC
447 }
448#endif /* CONFIG_P2P */
449
b01c18a8 450#endif /* CONFIG_WPS */
5f738a21 451
0f105f9e
JM
452#ifdef CONFIG_HS20
453 if (wpa_s->conf->hs20 && wpabuf_resize(&extra_ie, 7) == 0)
454 wpas_hs20_add_indication(extra_ie);
455#endif /* CONFIG_HS20 */
456
46ee0427 457 return extra_ie;
5f738a21
LC
458}
459
460
5cc70322
JM
461#ifdef CONFIG_P2P
462
463/*
464 * Check whether there are any enabled networks or credentials that could be
465 * used for a non-P2P connection.
466 */
467static int non_p2p_network_enabled(struct wpa_supplicant *wpa_s)
468{
469 struct wpa_ssid *ssid;
470
471 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
472 if (wpas_network_disabled(wpa_s, ssid))
473 continue;
474 if (!ssid->p2p_group)
475 return 1;
476 }
477
478 if (wpa_s->conf->cred && wpa_s->conf->interworking &&
479 wpa_s->conf->auto_interworking)
480 return 1;
481
482 return 0;
483}
484
6124e858 485#endif /* CONFIG_P2P */
5cc70322 486
5cc70322 487
faf9a858
JM
488static struct hostapd_hw_modes * get_mode(struct hostapd_hw_modes *modes,
489 u16 num_modes,
490 enum hostapd_hw_mode mode)
491{
492 u16 i;
493
494 for (i = 0; i < num_modes; i++) {
495 if (modes[i].mode == mode)
496 return &modes[i];
497 }
498
499 return NULL;
500}
501
502
503static void wpa_setband_scan_freqs_list(struct wpa_supplicant *wpa_s,
504 enum hostapd_hw_mode band,
505 struct wpa_driver_scan_params *params)
506{
507 /* Include only supported channels for the specified band */
508 struct hostapd_hw_modes *mode;
509 int count, i;
510
511 mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, band);
512 if (mode == NULL) {
513 /* No channels supported in this band - use empty list */
514 params->freqs = os_zalloc(sizeof(int));
515 return;
516 }
517
518 params->freqs = os_zalloc((mode->num_channels + 1) * sizeof(int));
519 if (params->freqs == NULL)
520 return;
521 for (count = 0, i = 0; i < mode->num_channels; i++) {
522 if (mode->channels[i].flag & HOSTAPD_CHAN_DISABLED)
523 continue;
524 params->freqs[count++] = mode->channels[i].freq;
525 }
526}
527
528
529static void wpa_setband_scan_freqs(struct wpa_supplicant *wpa_s,
530 struct wpa_driver_scan_params *params)
531{
532 if (wpa_s->hw.modes == NULL)
533 return; /* unknown what channels the driver supports */
534 if (params->freqs)
535 return; /* already using a limited channel set */
536 if (wpa_s->setband == WPA_SETBAND_5G)
537 wpa_setband_scan_freqs_list(wpa_s, HOSTAPD_MODE_IEEE80211A,
538 params);
539 else if (wpa_s->setband == WPA_SETBAND_2G)
540 wpa_setband_scan_freqs_list(wpa_s, HOSTAPD_MODE_IEEE80211G,
541 params);
542}
543
544
5f738a21
LC
545static void wpa_supplicant_scan(void *eloop_ctx, void *timeout_ctx)
546{
547 struct wpa_supplicant *wpa_s = eloop_ctx;
548 struct wpa_ssid *ssid;
4115303b
JM
549 enum scan_req_type scan_req = NORMAL_SCAN_REQ;
550 int ret;
b9b12d02 551 struct wpabuf *extra_ie = NULL;
e76baaac 552 struct wpa_driver_scan_params params;
7c865c68 553 struct wpa_driver_scan_params *scan_params;
e76baaac 554 size_t max_ssids;
207ef3fb 555 enum wpa_states prev_state;
6fc6879b 556
8401a6b0 557 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
f049052b 558 wpa_dbg(wpa_s, MSG_DEBUG, "Skip scan - interface disabled");
b1cd021e 559 wpas_p2p_continue_after_scan(wpa_s);
8401a6b0
JM
560 return;
561 }
562
4115303b 563 if (wpa_s->disconnected && wpa_s->scan_req == NORMAL_SCAN_REQ) {
ac06fb12 564 wpa_dbg(wpa_s, MSG_DEBUG, "Disconnected - do not scan");
3180d7a2 565 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
b1cd021e 566 wpas_p2p_continue_after_scan(wpa_s);
6fc6879b 567 return;
3180d7a2 568 }
6fc6879b 569
349493bd 570 if (!wpa_supplicant_enabled_networks(wpa_s) &&
4115303b 571 wpa_s->scan_req == NORMAL_SCAN_REQ) {
f049052b 572 wpa_dbg(wpa_s, MSG_DEBUG, "No enabled networks - do not scan");
6fc6879b 573 wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
b1cd021e 574 wpas_p2p_continue_after_scan(wpa_s);
6fc6879b
JM
575 return;
576 }
6fc6879b 577
c2a04078
JM
578 if (wpa_s->conf->ap_scan != 0 &&
579 (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED)) {
f049052b
BG
580 wpa_dbg(wpa_s, MSG_DEBUG, "Using wired authentication - "
581 "overriding ap_scan configuration");
6fc6879b 582 wpa_s->conf->ap_scan = 0;
8bac466b 583 wpas_notify_ap_scan_changed(wpa_s);
6fc6879b
JM
584 }
585
586 if (wpa_s->conf->ap_scan == 0) {
587 wpa_supplicant_gen_assoc_event(wpa_s);
588 return;
589 }
590
303f60d3 591#ifdef CONFIG_P2P
c3775143 592 if (wpas_p2p_in_progress(wpa_s) || wpas_wpa_is_in_progress(wpa_s, 0)) {
99fcd404
JM
593 if (wpa_s->sta_scan_pending &&
594 wpas_p2p_in_progress(wpa_s) == 2 &&
e665ca9a 595 wpa_s->global->p2p_cb_on_scan_complete) {
99fcd404
JM
596 wpa_dbg(wpa_s, MSG_DEBUG, "Process pending station "
597 "mode scan during P2P search");
598 } else {
303f60d3
JM
599 wpa_dbg(wpa_s, MSG_DEBUG, "Delay station mode scan "
600 "while P2P operation is in progress");
99fcd404 601 wpa_s->sta_scan_pending = 1;
303f60d3 602 wpa_supplicant_req_scan(wpa_s, 5, 0);
99fcd404 603 return;
303f60d3 604 }
303f60d3
JM
605 }
606#endif /* CONFIG_P2P */
607
cbc54848
JM
608#ifdef CONFIG_GAS
609 if (gas_query_in_progress(wpa_s->gas)) {
610 wpa_dbg(wpa_s, MSG_DEBUG, "Delay scan while GAS query is in progress");
611 wpa_supplicant_req_scan(wpa_s, 1, 0);
612 return;
613 }
614#endif /* CONFIG_GAS */
615
17fbb751 616 if (wpa_s->conf->ap_scan == 2)
e76baaac
JM
617 max_ssids = 1;
618 else {
619 max_ssids = wpa_s->max_scan_ssids;
620 if (max_ssids > WPAS_MAX_SCAN_SSIDS)
621 max_ssids = WPAS_MAX_SCAN_SSIDS;
622 }
623
e76baaac 624 scan_req = wpa_s->scan_req;
4115303b 625 wpa_s->scan_req = NORMAL_SCAN_REQ;
e76baaac
JM
626
627 os_memset(&params, 0, sizeof(params));
628
207ef3fb 629 prev_state = wpa_s->wpa_state;
6fc6879b
JM
630 if (wpa_s->wpa_state == WPA_DISCONNECTED ||
631 wpa_s->wpa_state == WPA_INACTIVE)
632 wpa_supplicant_set_state(wpa_s, WPA_SCANNING);
633
7c865c68
TB
634 /*
635 * If autoscan has set its own scanning parameters
636 */
637 if (wpa_s->autoscan_params != NULL) {
638 scan_params = wpa_s->autoscan_params;
639 goto scan;
640 }
641
4115303b 642 if (scan_req != MANUAL_SCAN_REQ && wpa_s->connect_without_scan) {
7dcdcfd6
JM
643 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
644 if (ssid == wpa_s->connect_without_scan)
645 break;
646 }
647 wpa_s->connect_without_scan = NULL;
648 if (ssid) {
649 wpa_printf(MSG_DEBUG, "Start a pre-selected network "
650 "without scan step");
651 wpa_supplicant_associate(wpa_s, NULL, ssid);
652 return;
653 }
654 }
655
a21c05db 656#ifdef CONFIG_P2P
85ea132a
JM
657 if ((wpa_s->p2p_in_provisioning || wpa_s->show_group_started) &&
658 wpa_s->go_params) {
a21c05db 659 wpa_printf(MSG_DEBUG, "P2P: Use specific SSID for scan during "
85ea132a 660 "P2P group formation");
a21c05db
JM
661 params.ssids[0].ssid = wpa_s->go_params->ssid;
662 params.ssids[0].ssid_len = wpa_s->go_params->ssid_len;
663 params.num_ssids = 1;
664 goto ssid_list_set;
665 }
666#endif /* CONFIG_P2P */
667
e76baaac 668 /* Find the starting point from which to continue scanning */
6fc6879b 669 ssid = wpa_s->conf->ssid;
ba2a573c 670 if (wpa_s->prev_scan_ssid != WILDCARD_SSID_SCAN) {
6fc6879b
JM
671 while (ssid) {
672 if (ssid == wpa_s->prev_scan_ssid) {
673 ssid = ssid->next;
674 break;
675 }
676 ssid = ssid->next;
677 }
678 }
6fc6879b 679
4115303b 680 if (scan_req != MANUAL_SCAN_REQ && wpa_s->conf->ap_scan == 2) {
7dcdcfd6 681 wpa_s->connect_without_scan = NULL;
b3aa456b 682 wpa_s->prev_scan_wildcard = 0;
e76baaac
JM
683 wpa_supplicant_assoc_try(wpa_s, ssid);
684 return;
685 } else if (wpa_s->conf->ap_scan == 2) {
6fc6879b 686 /*
ba2a573c
JM
687 * User-initiated scan request in ap_scan == 2; scan with
688 * wildcard SSID.
6fc6879b 689 */
e76baaac
JM
690 ssid = NULL;
691 } else {
5be45e2e 692 struct wpa_ssid *start = ssid, *tssid;
d3a98225 693 int freqs_set = 0;
e76baaac
JM
694 if (ssid == NULL && max_ssids > 1)
695 ssid = wpa_s->conf->ssid;
696 while (ssid) {
349493bd
JM
697 if (!wpas_network_disabled(wpa_s, ssid) &&
698 ssid->scan_ssid) {
e76baaac
JM
699 wpa_hexdump_ascii(MSG_DEBUG, "Scan SSID",
700 ssid->ssid, ssid->ssid_len);
701 params.ssids[params.num_ssids].ssid =
702 ssid->ssid;
703 params.ssids[params.num_ssids].ssid_len =
704 ssid->ssid_len;
705 params.num_ssids++;
706 if (params.num_ssids + 1 >= max_ssids)
707 break;
708 }
709 ssid = ssid->next;
710 if (ssid == start)
711 break;
712 if (ssid == NULL && max_ssids > 1 &&
713 start != wpa_s->conf->ssid)
714 ssid = wpa_s->conf->ssid;
6fc6879b 715 }
d3a98225 716
5be45e2e 717 for (tssid = wpa_s->conf->ssid; tssid; tssid = tssid->next) {
349493bd 718 if (wpas_network_disabled(wpa_s, tssid))
d3a98225 719 continue;
5be45e2e 720 if ((params.freqs || !freqs_set) && tssid->scan_freq) {
d3a98225 721 int_array_concat(&params.freqs,
5be45e2e 722 tssid->scan_freq);
d3a98225
JM
723 } else {
724 os_free(params.freqs);
725 params.freqs = NULL;
726 }
727 freqs_set = 1;
728 }
729 int_array_sort_unique(params.freqs);
6fc6879b
JM
730 }
731
b3aa456b
ES
732 if (ssid && max_ssids == 1) {
733 /*
734 * If the driver is limited to 1 SSID at a time interleave
735 * wildcard SSID scans with specific SSID scans to avoid
736 * waiting a long time for a wildcard scan.
737 */
738 if (!wpa_s->prev_scan_wildcard) {
739 params.ssids[0].ssid = NULL;
740 params.ssids[0].ssid_len = 0;
741 wpa_s->prev_scan_wildcard = 1;
742 wpa_dbg(wpa_s, MSG_DEBUG, "Starting AP scan for "
743 "wildcard SSID (Interleave with specific)");
744 } else {
745 wpa_s->prev_scan_ssid = ssid;
746 wpa_s->prev_scan_wildcard = 0;
747 wpa_dbg(wpa_s, MSG_DEBUG,
748 "Starting AP scan for specific SSID: %s",
749 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
e76baaac 750 }
b3aa456b
ES
751 } else if (ssid) {
752 /* max_ssids > 1 */
753
754 wpa_s->prev_scan_ssid = ssid;
755 wpa_dbg(wpa_s, MSG_DEBUG, "Include wildcard SSID in "
756 "the scan request");
757 params.num_ssids++;
e76baaac 758 } else {
ba2a573c 759 wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
e76baaac 760 params.num_ssids++;
f049052b
BG
761 wpa_dbg(wpa_s, MSG_DEBUG, "Starting AP scan for wildcard "
762 "SSID");
6fc6879b 763 }
a21c05db
JM
764#ifdef CONFIG_P2P
765ssid_list_set:
766#endif /* CONFIG_P2P */
6fc6879b 767
5f738a21 768 wpa_supplicant_optimize_freqs(wpa_s, &params);
a13e07ec 769 extra_ie = wpa_supplicant_extra_ies(wpa_s);
0e65037c 770
f47d639d 771 if (params.freqs == NULL && wpa_s->next_scan_freqs) {
f049052b
BG
772 wpa_dbg(wpa_s, MSG_DEBUG, "Optimize scan based on previously "
773 "generated frequency list");
f47d639d
JM
774 params.freqs = wpa_s->next_scan_freqs;
775 } else
776 os_free(wpa_s->next_scan_freqs);
777 wpa_s->next_scan_freqs = NULL;
faf9a858 778 wpa_setband_scan_freqs(wpa_s, &params);
f47d639d 779
f5ffc348
BG
780 /* See if user specified frequencies. If so, scan only those. */
781 if (wpa_s->conf->freq_list && !params.freqs) {
782 wpa_dbg(wpa_s, MSG_DEBUG,
783 "Optimize scan based on conf->freq_list");
784 int_array_concat(&params.freqs, wpa_s->conf->freq_list);
785 }
786
6124e858
BG
787 /* Use current associated channel? */
788 if (wpa_s->conf->scan_cur_freq && !params.freqs) {
53c5dfc2
IP
789 unsigned int num = wpa_s->num_multichan_concurrent;
790
791 params.freqs = os_calloc(num + 1, sizeof(int));
792 if (params.freqs) {
793 num = get_shared_radio_freqs(wpa_s, params.freqs, num);
794 if (num > 0) {
795 wpa_dbg(wpa_s, MSG_DEBUG, "Scan only the "
796 "current operating channels since "
797 "scan_cur_freq is enabled");
798 } else {
799 os_free(params.freqs);
800 params.freqs = NULL;
801 }
6124e858
BG
802 }
803 }
804
3812464c
JM
805 params.filter_ssids = wpa_supplicant_build_filter_ssids(
806 wpa_s->conf, &params.num_filter_ssids);
46ee0427
JM
807 if (extra_ie) {
808 params.extra_ies = wpabuf_head(extra_ie);
809 params.extra_ies_len = wpabuf_len(extra_ie);
810 }
3812464c 811
d1dd48e3 812#ifdef CONFIG_P2P
85ea132a
JM
813 if (wpa_s->p2p_in_provisioning ||
814 (wpa_s->show_group_started && wpa_s->go_params)) {
d1dd48e3
JM
815 /*
816 * The interface may not yet be in P2P mode, so we have to
817 * explicitly request P2P probe to disable CCK rates.
818 */
819 params.p2p_probe = 1;
820 }
821#endif /* CONFIG_P2P */
822
7c865c68
TB
823 scan_params = &params;
824
825scan:
5cc70322
JM
826#ifdef CONFIG_P2P
827 /*
828 * If the driver does not support multi-channel concurrency and a
829 * virtual interface that shares the same radio with the wpa_s interface
830 * is operating there may not be need to scan other channels apart from
831 * the current operating channel on the other virtual interface. Filter
832 * out other channels in case we are trying to find a connection for a
833 * station interface when we are not configured to prefer station
834 * connection and a concurrent operation is already in process.
835 */
4115303b 836 if (wpa_s->scan_for_connection && scan_req == NORMAL_SCAN_REQ &&
5cc70322
JM
837 !scan_params->freqs && !params.freqs &&
838 wpas_is_p2p_prioritized(wpa_s) &&
5cc70322
JM
839 wpa_s->p2p_group_interface == NOT_P2P_GROUP_INTERFACE &&
840 non_p2p_network_enabled(wpa_s)) {
53c5dfc2
IP
841 unsigned int num = wpa_s->num_multichan_concurrent;
842
843 params.freqs = os_calloc(num + 1, sizeof(int));
844 if (params.freqs) {
845 num = get_shared_radio_freqs(wpa_s, params.freqs, num);
846 if (num > 0 && num == wpa_s->num_multichan_concurrent) {
847 wpa_dbg(wpa_s, MSG_DEBUG, "Scan only the current operating channels since all channels are already used");
848 } else {
849 os_free(params.freqs);
850 params.freqs = NULL;
851 }
5cc70322
JM
852 }
853 }
854#endif /* CONFIG_P2P */
855
7c865c68 856 ret = wpa_supplicant_trigger_scan(wpa_s, scan_params);
6fc6879b 857
46ee0427 858 wpabuf_free(extra_ie);
d3a98225 859 os_free(params.freqs);
3812464c 860 os_free(params.filter_ssids);
ad08c363 861
6fc6879b 862 if (ret) {
f049052b 863 wpa_msg(wpa_s, MSG_WARNING, "Failed to initiate AP scan");
207ef3fb
JM
864 if (prev_state != wpa_s->wpa_state)
865 wpa_supplicant_set_state(wpa_s, prev_state);
23270cd8
JM
866 /* Restore scan_req since we will try to scan again */
867 wpa_s->scan_req = scan_req;
1c4c9c50 868 wpa_supplicant_req_scan(wpa_s, 1, 0);
5cc70322
JM
869 } else {
870 wpa_s->scan_for_connection = 0;
d902a9c1 871 }
6fc6879b
JM
872}
873
874
9e737f08
PF
875void wpa_supplicant_update_scan_int(struct wpa_supplicant *wpa_s, int sec)
876{
877 struct os_time remaining, new_int;
878 int cancelled;
879
880 cancelled = eloop_cancel_timeout_one(wpa_supplicant_scan, wpa_s, NULL,
881 &remaining);
882
883 new_int.sec = sec;
884 new_int.usec = 0;
885 if (cancelled && os_time_before(&remaining, &new_int)) {
886 new_int.sec = remaining.sec;
887 new_int.usec = remaining.usec;
888 }
889
890 eloop_register_timeout(new_int.sec, new_int.usec, wpa_supplicant_scan,
891 wpa_s, NULL);
892 wpa_s->scan_interval = sec;
893}
894
895
6fc6879b
JM
896/**
897 * wpa_supplicant_req_scan - Schedule a scan for neighboring access points
898 * @wpa_s: Pointer to wpa_supplicant data
899 * @sec: Number of seconds after which to scan
900 * @usec: Number of microseconds after which to scan
901 *
902 * This function is used to schedule a scan for neighboring access points after
903 * the specified time.
904 */
905void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec)
906{
7e148849
DW
907 /* If there's at least one network that should be specifically scanned
908 * then don't cancel the scan and reschedule. Some drivers do
909 * background scanning which generates frequent scan results, and that
910 * causes the specific SSID scan to get continually pushed back and
911 * never happen, which causes hidden APs to never get probe-scanned.
912 */
913 if (eloop_is_timeout_registered(wpa_supplicant_scan, wpa_s, NULL) &&
914 wpa_s->conf->ap_scan == 1) {
915 struct wpa_ssid *ssid = wpa_s->conf->ssid;
916
917 while (ssid) {
349493bd
JM
918 if (!wpas_network_disabled(wpa_s, ssid) &&
919 ssid->scan_ssid)
7e148849
DW
920 break;
921 ssid = ssid->next;
922 }
923 if (ssid) {
f049052b 924 wpa_dbg(wpa_s, MSG_DEBUG, "Not rescheduling scan to "
7e148849
DW
925 "ensure that specific SSID scans occur");
926 return;
927 }
928 }
929
f049052b 930 wpa_dbg(wpa_s, MSG_DEBUG, "Setting scan request: %d sec %d usec",
6fc6879b
JM
931 sec, usec);
932 eloop_cancel_timeout(wpa_supplicant_scan, wpa_s, NULL);
933 eloop_register_timeout(sec, usec, wpa_supplicant_scan, wpa_s, NULL);
934}
935
936
6a90053c
LC
937/**
938 * wpa_supplicant_delayed_sched_scan - Request a delayed scheduled scan
939 * @wpa_s: Pointer to wpa_supplicant data
940 * @sec: Number of seconds after which to scan
941 * @usec: Number of microseconds after which to scan
2c09af30 942 * Returns: 0 on success or -1 otherwise
6a90053c
LC
943 *
944 * This function is used to schedule periodic scans for neighboring
945 * access points after the specified time.
946 */
947int wpa_supplicant_delayed_sched_scan(struct wpa_supplicant *wpa_s,
948 int sec, int usec)
949{
950 if (!wpa_s->sched_scan_supported)
951 return -1;
952
953 eloop_register_timeout(sec, usec,
954 wpa_supplicant_delayed_sched_scan_timeout,
955 wpa_s, NULL);
956
957 return 0;
958}
959
960
cbdf3507
LC
961/**
962 * wpa_supplicant_req_sched_scan - Start a periodic scheduled scan
963 * @wpa_s: Pointer to wpa_supplicant data
2c09af30 964 * Returns: 0 is sched_scan was started or -1 otherwise
cbdf3507
LC
965 *
966 * This function is used to schedule periodic scans for neighboring
967 * access points repeating the scan continuously.
968 */
969int wpa_supplicant_req_sched_scan(struct wpa_supplicant *wpa_s)
970{
971 struct wpa_driver_scan_params params;
7c865c68 972 struct wpa_driver_scan_params *scan_params;
cbdf3507 973 enum wpa_states prev_state;
7c865c68 974 struct wpa_ssid *ssid = NULL;
a13e07ec 975 struct wpabuf *extra_ie = NULL;
cbdf3507 976 int ret;
cbdf3507 977 unsigned int max_sched_scan_ssids;
76a5249e 978 int wildcard = 0;
0b7a25c0 979 int need_ssids;
cbdf3507
LC
980
981 if (!wpa_s->sched_scan_supported)
982 return -1;
983
984 if (wpa_s->max_sched_scan_ssids > WPAS_MAX_SCAN_SSIDS)
985 max_sched_scan_ssids = WPAS_MAX_SCAN_SSIDS;
986 else
987 max_sched_scan_ssids = wpa_s->max_sched_scan_ssids;
54ddd743 988 if (max_sched_scan_ssids < 1 || wpa_s->conf->disable_scan_offload)
76a5249e 989 return -1;
cbdf3507 990
1966e3d1
ES
991 if (wpa_s->sched_scanning) {
992 wpa_dbg(wpa_s, MSG_DEBUG, "Already sched scanning");
cbdf3507 993 return 0;
1966e3d1 994 }
cbdf3507 995
0b7a25c0
JM
996 need_ssids = 0;
997 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
349493bd 998 if (!wpas_network_disabled(wpa_s, ssid) && !ssid->scan_ssid) {
0b7a25c0
JM
999 /* Use wildcard SSID to find this network */
1000 wildcard = 1;
349493bd
JM
1001 } else if (!wpas_network_disabled(wpa_s, ssid) &&
1002 ssid->ssid_len)
0b7a25c0 1003 need_ssids++;
aa283ddd
JM
1004
1005#ifdef CONFIG_WPS
349493bd 1006 if (!wpas_network_disabled(wpa_s, ssid) &&
fea7c3a0 1007 ssid->key_mgmt == WPA_KEY_MGMT_WPS) {
aa283ddd
JM
1008 /*
1009 * Normal scan is more reliable and faster for WPS
1010 * operations and since these are for short periods of
1011 * time, the benefit of trying to use sched_scan would
1012 * be limited.
1013 */
1014 wpa_dbg(wpa_s, MSG_DEBUG, "Use normal scan instead of "
1015 "sched_scan for WPS");
1016 return -1;
1017 }
1018#endif /* CONFIG_WPS */
0b7a25c0
JM
1019 }
1020 if (wildcard)
1021 need_ssids++;
1022
1023 if (wpa_s->normal_scans < 3 &&
1024 (need_ssids <= wpa_s->max_scan_ssids ||
1025 wpa_s->max_scan_ssids >= (int) max_sched_scan_ssids)) {
1026 /*
1027 * When normal scan can speed up operations, use that for the
1028 * first operations before starting the sched_scan to allow
1029 * user space sleep more. We do this only if the normal scan
1030 * has functionality that is suitable for this or if the
1031 * sched_scan does not have better support for multiple SSIDs.
1032 */
1033 wpa_dbg(wpa_s, MSG_DEBUG, "Use normal scan instead of "
1034 "sched_scan for initial scans (normal_scans=%d)",
1035 wpa_s->normal_scans);
1036 return -1;
1037 }
1038
cbdf3507
LC
1039 os_memset(&params, 0, sizeof(params));
1040
b59e6f26
LC
1041 /* If we can't allocate space for the filters, we just don't filter */
1042 params.filter_ssids = os_zalloc(wpa_s->max_match_sets *
1043 sizeof(struct wpa_driver_scan_filter));
1044
cbdf3507
LC
1045 prev_state = wpa_s->wpa_state;
1046 if (wpa_s->wpa_state == WPA_DISCONNECTED ||
1047 wpa_s->wpa_state == WPA_INACTIVE)
1048 wpa_supplicant_set_state(wpa_s, WPA_SCANNING);
1049
7c865c68
TB
1050 if (wpa_s->autoscan_params != NULL) {
1051 scan_params = wpa_s->autoscan_params;
1052 goto scan;
1053 }
1054
cbdf3507
LC
1055 /* Find the starting point from which to continue scanning */
1056 ssid = wpa_s->conf->ssid;
1057 if (wpa_s->prev_sched_ssid) {
1058 while (ssid) {
1059 if (ssid == wpa_s->prev_sched_ssid) {
1060 ssid = ssid->next;
1061 break;
1062 }
1063 ssid = ssid->next;
1064 }
1065 }
1066
1067 if (!ssid || !wpa_s->prev_sched_ssid) {
1068 wpa_dbg(wpa_s, MSG_DEBUG, "Beginning of SSID list");
4aa81868
SF
1069 if (wpa_s->conf->sched_scan_interval)
1070 wpa_s->sched_scan_interval =
1071 wpa_s->conf->sched_scan_interval;
7c865c68
TB
1072 if (wpa_s->sched_scan_interval == 0)
1073 wpa_s->sched_scan_interval = 10;
cbdf3507
LC
1074 wpa_s->sched_scan_timeout = max_sched_scan_ssids * 2;
1075 wpa_s->first_sched_scan = 1;
1076 ssid = wpa_s->conf->ssid;
1077 wpa_s->prev_sched_ssid = ssid;
1078 }
1079
76a5249e
JM
1080 if (wildcard) {
1081 wpa_dbg(wpa_s, MSG_DEBUG, "Add wildcard SSID to sched_scan");
1082 params.num_ssids++;
1083 }
1084
cbdf3507 1085 while (ssid) {
349493bd 1086 if (wpas_network_disabled(wpa_s, ssid))
5edddf41 1087 goto next;
cbdf3507 1088
fcd16847
JM
1089 if (params.num_filter_ssids < wpa_s->max_match_sets &&
1090 params.filter_ssids && ssid->ssid && ssid->ssid_len) {
1966e3d1
ES
1091 wpa_dbg(wpa_s, MSG_DEBUG, "add to filter ssid: %s",
1092 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
b59e6f26
LC
1093 os_memcpy(params.filter_ssids[params.num_filter_ssids].ssid,
1094 ssid->ssid, ssid->ssid_len);
1095 params.filter_ssids[params.num_filter_ssids].ssid_len =
1096 ssid->ssid_len;
1097 params.num_filter_ssids++;
86b47aaf
JM
1098 } else if (params.filter_ssids && ssid->ssid && ssid->ssid_len)
1099 {
1100 wpa_dbg(wpa_s, MSG_DEBUG, "Not enough room for SSID "
1101 "filter for sched_scan - drop filter");
1102 os_free(params.filter_ssids);
1103 params.filter_ssids = NULL;
1104 params.num_filter_ssids = 0;
b59e6f26
LC
1105 }
1106
3f56f3a4 1107 if (ssid->scan_ssid && ssid->ssid && ssid->ssid_len) {
76a5249e
JM
1108 if (params.num_ssids == max_sched_scan_ssids)
1109 break; /* only room for broadcast SSID */
3f56f3a4
JM
1110 wpa_dbg(wpa_s, MSG_DEBUG,
1111 "add to active scan ssid: %s",
1966e3d1 1112 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
cbdf3507
LC
1113 params.ssids[params.num_ssids].ssid =
1114 ssid->ssid;
1115 params.ssids[params.num_ssids].ssid_len =
1116 ssid->ssid_len;
1117 params.num_ssids++;
b59e6f26 1118 if (params.num_ssids >= max_sched_scan_ssids) {
cbdf3507 1119 wpa_s->prev_sched_ssid = ssid;
b55aca46
JM
1120 do {
1121 ssid = ssid->next;
1122 } while (ssid &&
349493bd 1123 (wpas_network_disabled(wpa_s, ssid) ||
fea7c3a0 1124 !ssid->scan_ssid));
cbdf3507
LC
1125 break;
1126 }
1127 }
b59e6f26 1128
5edddf41 1129 next:
cbdf3507
LC
1130 wpa_s->prev_sched_ssid = ssid;
1131 ssid = ssid->next;
1132 }
1133
7c6a266c
JM
1134 if (params.num_filter_ssids == 0) {
1135 os_free(params.filter_ssids);
1136 params.filter_ssids = NULL;
1137 }
1138
a13e07ec
ES
1139 extra_ie = wpa_supplicant_extra_ies(wpa_s);
1140 if (extra_ie) {
1141 params.extra_ies = wpabuf_head(extra_ie);
1142 params.extra_ies_len = wpabuf_len(extra_ie);
1143 }
cbdf3507 1144
7c865c68
TB
1145 scan_params = &params;
1146
1147scan:
a8cb5a88 1148 if (ssid || !wpa_s->first_sched_scan) {
a8cb5a88
JM
1149 wpa_dbg(wpa_s, MSG_DEBUG,
1150 "Starting sched scan: interval %d timeout %d",
1151 wpa_s->sched_scan_interval, wpa_s->sched_scan_timeout);
7d21a223
JM
1152 } else {
1153 wpa_dbg(wpa_s, MSG_DEBUG,
1154 "Starting sched scan: interval %d (no timeout)",
1155 wpa_s->sched_scan_interval);
a8cb5a88 1156 }
cbdf3507 1157
faf9a858
JM
1158 wpa_setband_scan_freqs(wpa_s, scan_params);
1159
7c865c68 1160 ret = wpa_supplicant_start_sched_scan(wpa_s, scan_params,
cbdf3507 1161 wpa_s->sched_scan_interval);
a13e07ec 1162 wpabuf_free(extra_ie);
b59e6f26 1163 os_free(params.filter_ssids);
cbdf3507
LC
1164 if (ret) {
1165 wpa_msg(wpa_s, MSG_WARNING, "Failed to initiate sched scan");
1166 if (prev_state != wpa_s->wpa_state)
1167 wpa_supplicant_set_state(wpa_s, prev_state);
1168 return ret;
1169 }
1170
1171 /* If we have more SSIDs to scan, add a timeout so we scan them too */
1172 if (ssid || !wpa_s->first_sched_scan) {
1173 wpa_s->sched_scan_timed_out = 0;
1174 eloop_register_timeout(wpa_s->sched_scan_timeout, 0,
1175 wpa_supplicant_sched_scan_timeout,
1176 wpa_s, NULL);
1177 wpa_s->first_sched_scan = 0;
1178 wpa_s->sched_scan_timeout /= 2;
1179 wpa_s->sched_scan_interval *= 2;
a09fc1cc
DS
1180 if (wpa_s->sched_scan_timeout < wpa_s->sched_scan_interval) {
1181 wpa_s->sched_scan_interval = 10;
1182 wpa_s->sched_scan_timeout = max_sched_scan_ssids * 2;
1183 }
cbdf3507
LC
1184 }
1185
7ed52f67
DS
1186 /* If there is no more ssids, start next time from the beginning */
1187 if (!ssid)
1188 wpa_s->prev_sched_ssid = NULL;
1189
cbdf3507
LC
1190 return 0;
1191}
1192
1193
6fc6879b
JM
1194/**
1195 * wpa_supplicant_cancel_scan - Cancel a scheduled scan request
1196 * @wpa_s: Pointer to wpa_supplicant data
1197 *
1198 * This function is used to cancel a scan request scheduled with
1199 * wpa_supplicant_req_scan().
1200 */
1201void wpa_supplicant_cancel_scan(struct wpa_supplicant *wpa_s)
1202{
f049052b 1203 wpa_dbg(wpa_s, MSG_DEBUG, "Cancelling scan request");
6fc6879b 1204 eloop_cancel_timeout(wpa_supplicant_scan, wpa_s, NULL);
b1cd021e 1205 wpas_p2p_continue_after_scan(wpa_s);
6fc6879b 1206}
cb8564b1
DW
1207
1208
831770bf
CZ
1209/**
1210 * wpa_supplicant_cancel_delayed_sched_scan - Stop a delayed scheduled scan
1211 * @wpa_s: Pointer to wpa_supplicant data
1212 *
1213 * This function is used to stop a delayed scheduled scan.
1214 */
1215void wpa_supplicant_cancel_delayed_sched_scan(struct wpa_supplicant *wpa_s)
1216{
1217 if (!wpa_s->sched_scan_supported)
1218 return;
1219
1220 wpa_dbg(wpa_s, MSG_DEBUG, "Cancelling delayed sched scan");
1221 eloop_cancel_timeout(wpa_supplicant_delayed_sched_scan_timeout,
1222 wpa_s, NULL);
1223}
1224
1225
cbdf3507
LC
1226/**
1227 * wpa_supplicant_cancel_sched_scan - Stop running scheduled scans
1228 * @wpa_s: Pointer to wpa_supplicant data
1229 *
1230 * This function is used to stop a periodic scheduled scan.
1231 */
1232void wpa_supplicant_cancel_sched_scan(struct wpa_supplicant *wpa_s)
1233{
1234 if (!wpa_s->sched_scanning)
1235 return;
1236
1237 wpa_dbg(wpa_s, MSG_DEBUG, "Cancelling sched scan");
1238 eloop_cancel_timeout(wpa_supplicant_sched_scan_timeout, wpa_s, NULL);
1239 wpa_supplicant_stop_sched_scan(wpa_s);
1240}
1241
1242
2c09af30
JM
1243/**
1244 * wpa_supplicant_notify_scanning - Indicate possible scan state change
1245 * @wpa_s: Pointer to wpa_supplicant data
1246 * @scanning: Whether scanning is currently in progress
1247 *
1248 * This function is to generate scanning notifycations. It is called whenever
1249 * there may have been a change in scanning (scan started, completed, stopped).
1250 * wpas_notify_scanning() is called whenever the scanning state changed from the
1251 * previously notified state.
1252 */
cb8564b1
DW
1253void wpa_supplicant_notify_scanning(struct wpa_supplicant *wpa_s,
1254 int scanning)
1255{
1256 if (wpa_s->scanning != scanning) {
1257 wpa_s->scanning = scanning;
8bac466b 1258 wpas_notify_scanning(wpa_s);
cb8564b1
DW
1259 }
1260}
1261
9ba9fa07
JM
1262
1263static int wpa_scan_get_max_rate(const struct wpa_scan_res *res)
1264{
1265 int rate = 0;
1266 const u8 *ie;
1267 int i;
1268
1269 ie = wpa_scan_get_ie(res, WLAN_EID_SUPP_RATES);
1270 for (i = 0; ie && i < ie[1]; i++) {
1271 if ((ie[i + 2] & 0x7f) > rate)
1272 rate = ie[i + 2] & 0x7f;
1273 }
1274
1275 ie = wpa_scan_get_ie(res, WLAN_EID_EXT_SUPP_RATES);
1276 for (i = 0; ie && i < ie[1]; i++) {
1277 if ((ie[i + 2] & 0x7f) > rate)
1278 rate = ie[i + 2] & 0x7f;
1279 }
1280
1281 return rate;
1282}
1283
1284
2c09af30
JM
1285/**
1286 * wpa_scan_get_ie - Fetch a specified information element from a scan result
1287 * @res: Scan result entry
1288 * @ie: Information element identitifier (WLAN_EID_*)
1289 * Returns: Pointer to the information element (id field) or %NULL if not found
1290 *
1291 * This function returns the first matching information element in the scan
1292 * result.
1293 */
d1f9c410
JM
1294const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie)
1295{
1296 const u8 *end, *pos;
1297
1298 pos = (const u8 *) (res + 1);
1299 end = pos + res->ie_len;
1300
1301 while (pos + 1 < end) {
1302 if (pos + 2 + pos[1] > end)
1303 break;
1304 if (pos[0] == ie)
1305 return pos;
1306 pos += 2 + pos[1];
1307 }
1308
1309 return NULL;
1310}
1311
1312
2c09af30
JM
1313/**
1314 * wpa_scan_get_vendor_ie - Fetch vendor information element from a scan result
1315 * @res: Scan result entry
1316 * @vendor_type: Vendor type (four octets starting the IE payload)
1317 * Returns: Pointer to the information element (id field) or %NULL if not found
1318 *
1319 * This function returns the first matching information element in the scan
1320 * result.
1321 */
9ba9fa07
JM
1322const u8 * wpa_scan_get_vendor_ie(const struct wpa_scan_res *res,
1323 u32 vendor_type)
1324{
1325 const u8 *end, *pos;
1326
1327 pos = (const u8 *) (res + 1);
1328 end = pos + res->ie_len;
1329
1330 while (pos + 1 < end) {
1331 if (pos + 2 + pos[1] > end)
1332 break;
1333 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
1334 vendor_type == WPA_GET_BE32(&pos[2]))
1335 return pos;
1336 pos += 2 + pos[1];
1337 }
1338
1339 return NULL;
1340}
1341
1342
aaeb9c98
JM
1343/**
1344 * wpa_scan_get_vendor_ie_beacon - Fetch vendor information from a scan result
1345 * @res: Scan result entry
1346 * @vendor_type: Vendor type (four octets starting the IE payload)
1347 * Returns: Pointer to the information element (id field) or %NULL if not found
1348 *
1349 * This function returns the first matching information element in the scan
1350 * result.
1351 *
1352 * This function is like wpa_scan_get_vendor_ie(), but uses IE buffer only
1353 * from Beacon frames instead of either Beacon or Probe Response frames.
1354 */
1355const u8 * wpa_scan_get_vendor_ie_beacon(const struct wpa_scan_res *res,
1356 u32 vendor_type)
1357{
1358 const u8 *end, *pos;
1359
1360 if (res->beacon_ie_len == 0)
1361 return NULL;
1362
1363 pos = (const u8 *) (res + 1);
1364 pos += res->ie_len;
1365 end = pos + res->beacon_ie_len;
1366
1367 while (pos + 1 < end) {
1368 if (pos + 2 + pos[1] > end)
1369 break;
1370 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
1371 vendor_type == WPA_GET_BE32(&pos[2]))
1372 return pos;
1373 pos += 2 + pos[1];
1374 }
1375
1376 return NULL;
1377}
1378
1379
2c09af30
JM
1380/**
1381 * wpa_scan_get_vendor_ie_multi - Fetch vendor IE data from a scan result
1382 * @res: Scan result entry
1383 * @vendor_type: Vendor type (four octets starting the IE payload)
1384 * Returns: Pointer to the information element payload or %NULL if not found
1385 *
1386 * This function returns concatenated payload of possibly fragmented vendor
1387 * specific information elements in the scan result. The caller is responsible
1388 * for freeing the returned buffer.
1389 */
9ba9fa07
JM
1390struct wpabuf * wpa_scan_get_vendor_ie_multi(const struct wpa_scan_res *res,
1391 u32 vendor_type)
1392{
1393 struct wpabuf *buf;
1394 const u8 *end, *pos;
1395
1396 buf = wpabuf_alloc(res->ie_len);
1397 if (buf == NULL)
1398 return NULL;
1399
1400 pos = (const u8 *) (res + 1);
1401 end = pos + res->ie_len;
1402
54f489be
JM
1403 while (pos + 1 < end) {
1404 if (pos + 2 + pos[1] > end)
1405 break;
1406 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
1407 vendor_type == WPA_GET_BE32(&pos[2]))
1408 wpabuf_put_data(buf, pos + 2 + 4, pos[1] - 4);
1409 pos += 2 + pos[1];
1410 }
1411
1412 if (wpabuf_len(buf) == 0) {
1413 wpabuf_free(buf);
1414 buf = NULL;
1415 }
1416
1417 return buf;
1418}
1419
1420
577db0ae
GM
1421/*
1422 * Channels with a great SNR can operate at full rate. What is a great SNR?
1423 * This doc https://supportforums.cisco.com/docs/DOC-12954 says, "the general
1424 * rule of thumb is that any SNR above 20 is good." This one
1425 * http://www.cisco.com/en/US/tech/tk722/tk809/technologies_q_and_a_item09186a00805e9a96.shtml#qa23
1426 * recommends 25 as a minimum SNR for 54 Mbps data rate. 30 is chosen here as a
1427 * conservative value.
1428 */
1429#define GREAT_SNR 30
1430
9ba9fa07
JM
1431/* Compare function for sorting scan results. Return >0 if @b is considered
1432 * better. */
1433static int wpa_scan_result_compar(const void *a, const void *b)
1434{
577db0ae
GM
1435#define IS_5GHZ(n) (n > 4000)
1436#define MIN(a,b) a < b ? a : b
9ba9fa07
JM
1437 struct wpa_scan_res **_wa = (void *) a;
1438 struct wpa_scan_res **_wb = (void *) b;
1439 struct wpa_scan_res *wa = *_wa;
1440 struct wpa_scan_res *wb = *_wb;
1441 int wpa_a, wpa_b, maxrate_a, maxrate_b;
577db0ae 1442 int snr_a, snr_b;
9ba9fa07
JM
1443
1444 /* WPA/WPA2 support preferred */
1445 wpa_a = wpa_scan_get_vendor_ie(wa, WPA_IE_VENDOR_TYPE) != NULL ||
1446 wpa_scan_get_ie(wa, WLAN_EID_RSN) != NULL;
1447 wpa_b = wpa_scan_get_vendor_ie(wb, WPA_IE_VENDOR_TYPE) != NULL ||
1448 wpa_scan_get_ie(wb, WLAN_EID_RSN) != NULL;
1449
1450 if (wpa_b && !wpa_a)
1451 return 1;
1452 if (!wpa_b && wpa_a)
1453 return -1;
1454
1455 /* privacy support preferred */
1456 if ((wa->caps & IEEE80211_CAP_PRIVACY) == 0 &&
1457 (wb->caps & IEEE80211_CAP_PRIVACY))
1458 return 1;
1459 if ((wa->caps & IEEE80211_CAP_PRIVACY) &&
1460 (wb->caps & IEEE80211_CAP_PRIVACY) == 0)
1461 return -1;
1462
577db0ae
GM
1463 if ((wa->flags & wb->flags & WPA_SCAN_LEVEL_DBM) &&
1464 !((wa->flags | wb->flags) & WPA_SCAN_NOISE_INVALID)) {
1465 snr_a = MIN(wa->level - wa->noise, GREAT_SNR);
1466 snr_b = MIN(wb->level - wb->noise, GREAT_SNR);
1467 } else {
1468 /* Not suitable information to calculate SNR, so use level */
1469 snr_a = wa->level;
1470 snr_b = wb->level;
1471 }
1472
577db0ae
GM
1473 /* best/max rate preferred if SNR close enough */
1474 if ((snr_a && snr_b && abs(snr_b - snr_a) < 5) ||
9ba9fa07
JM
1475 (wa->qual && wb->qual && abs(wb->qual - wa->qual) < 10)) {
1476 maxrate_a = wpa_scan_get_max_rate(wa);
1477 maxrate_b = wpa_scan_get_max_rate(wb);
1478 if (maxrate_a != maxrate_b)
1479 return maxrate_b - maxrate_a;
577db0ae
GM
1480 if (IS_5GHZ(wa->freq) ^ IS_5GHZ(wb->freq))
1481 return IS_5GHZ(wa->freq) ? -1 : 1;
9ba9fa07
JM
1482 }
1483
1484 /* use freq for channel preference */
1485
577db0ae 1486 /* all things being equal, use SNR; if SNRs are
9ba9fa07
JM
1487 * identical, use quality values since some drivers may only report
1488 * that value and leave the signal level zero */
577db0ae 1489 if (snr_b == snr_a)
9ba9fa07 1490 return wb->qual - wa->qual;
577db0ae
GM
1491 return snr_b - snr_a;
1492#undef MIN
1493#undef IS_5GHZ
9ba9fa07
JM
1494}
1495
1496
41e650ae
JM
1497#ifdef CONFIG_WPS
1498/* Compare function for sorting scan results when searching a WPS AP for
1499 * provisioning. Return >0 if @b is considered better. */
1500static int wpa_scan_result_wps_compar(const void *a, const void *b)
1501{
1502 struct wpa_scan_res **_wa = (void *) a;
1503 struct wpa_scan_res **_wb = (void *) b;
1504 struct wpa_scan_res *wa = *_wa;
1505 struct wpa_scan_res *wb = *_wb;
1506 int uses_wps_a, uses_wps_b;
1507 struct wpabuf *wps_a, *wps_b;
1508 int res;
1509
1510 /* Optimization - check WPS IE existence before allocated memory and
1511 * doing full reassembly. */
1512 uses_wps_a = wpa_scan_get_vendor_ie(wa, WPS_IE_VENDOR_TYPE) != NULL;
1513 uses_wps_b = wpa_scan_get_vendor_ie(wb, WPS_IE_VENDOR_TYPE) != NULL;
1514 if (uses_wps_a && !uses_wps_b)
1515 return -1;
1516 if (!uses_wps_a && uses_wps_b)
1517 return 1;
1518
1519 if (uses_wps_a && uses_wps_b) {
1520 wps_a = wpa_scan_get_vendor_ie_multi(wa, WPS_IE_VENDOR_TYPE);
1521 wps_b = wpa_scan_get_vendor_ie_multi(wb, WPS_IE_VENDOR_TYPE);
1522 res = wps_ap_priority_compar(wps_a, wps_b);
1523 wpabuf_free(wps_a);
1524 wpabuf_free(wps_b);
1525 if (res)
1526 return res;
1527 }
1528
1529 /*
1530 * Do not use current AP security policy as a sorting criteria during
1531 * WPS provisioning step since the AP may get reconfigured at the
1532 * completion of provisioning.
1533 */
1534
1535 /* all things being equal, use signal level; if signal levels are
1536 * identical, use quality values since some drivers may only report
1537 * that value and leave the signal level zero */
1538 if (wb->level == wa->level)
1539 return wb->qual - wa->qual;
1540 return wb->level - wa->level;
1541}
1542#endif /* CONFIG_WPS */
1543
1544
aa820e02
JM
1545static void dump_scan_res(struct wpa_scan_results *scan_res)
1546{
76202aed 1547#ifndef CONFIG_NO_STDOUT_DEBUG
aa820e02
JM
1548 size_t i;
1549
1550 if (scan_res->res == NULL || scan_res->num == 0)
1551 return;
1552
1553 wpa_printf(MSG_EXCESSIVE, "Sorted scan results");
1554
1555 for (i = 0; i < scan_res->num; i++) {
1556 struct wpa_scan_res *r = scan_res->res[i];
1cbe86e2 1557 u8 *pos;
aa820e02
JM
1558 if ((r->flags & (WPA_SCAN_LEVEL_DBM | WPA_SCAN_NOISE_INVALID))
1559 == WPA_SCAN_LEVEL_DBM) {
1560 int snr = r->level - r->noise;
1561 wpa_printf(MSG_EXCESSIVE, MACSTR " freq=%d qual=%d "
c5f10e80
JM
1562 "noise=%d level=%d snr=%d%s flags=0x%x "
1563 "age=%u",
aa820e02
JM
1564 MAC2STR(r->bssid), r->freq, r->qual,
1565 r->noise, r->level, snr,
c5f10e80
JM
1566 snr >= GREAT_SNR ? "*" : "", r->flags,
1567 r->age);
aa820e02
JM
1568 } else {
1569 wpa_printf(MSG_EXCESSIVE, MACSTR " freq=%d qual=%d "
c5f10e80 1570 "noise=%d level=%d flags=0x%x age=%u",
aa820e02 1571 MAC2STR(r->bssid), r->freq, r->qual,
c5f10e80 1572 r->noise, r->level, r->flags, r->age);
aa820e02 1573 }
1cbe86e2
JM
1574 pos = (u8 *) (r + 1);
1575 if (r->ie_len)
1576 wpa_hexdump(MSG_EXCESSIVE, "IEs", pos, r->ie_len);
1577 pos += r->ie_len;
1578 if (r->beacon_ie_len)
1579 wpa_hexdump(MSG_EXCESSIVE, "Beacon IEs",
1580 pos, r->beacon_ie_len);
aa820e02 1581 }
76202aed 1582#endif /* CONFIG_NO_STDOUT_DEBUG */
aa820e02
JM
1583}
1584
1585
2c09af30
JM
1586/**
1587 * wpa_supplicant_filter_bssid_match - Is the specified BSSID allowed
1588 * @wpa_s: Pointer to wpa_supplicant data
1589 * @bssid: BSSID to check
1590 * Returns: 0 if the BSSID is filtered or 1 if not
1591 *
1592 * This function is used to filter out specific BSSIDs from scan reslts mainly
1593 * for testing purposes (SET bssid_filter ctrl_iface command).
1594 */
d445a5cd
JM
1595int wpa_supplicant_filter_bssid_match(struct wpa_supplicant *wpa_s,
1596 const u8 *bssid)
1597{
1598 size_t i;
1599
1600 if (wpa_s->bssid_filter == NULL)
1601 return 1;
1602
1603 for (i = 0; i < wpa_s->bssid_filter_count; i++) {
1604 if (os_memcmp(wpa_s->bssid_filter + i * ETH_ALEN, bssid,
1605 ETH_ALEN) == 0)
1606 return 1;
1607 }
1608
1609 return 0;
1610}
1611
1612
1613static void filter_scan_res(struct wpa_supplicant *wpa_s,
1614 struct wpa_scan_results *res)
1615{
1616 size_t i, j;
1617
1618 if (wpa_s->bssid_filter == NULL)
1619 return;
1620
1621 for (i = 0, j = 0; i < res->num; i++) {
1622 if (wpa_supplicant_filter_bssid_match(wpa_s,
1623 res->res[i]->bssid)) {
1624 res->res[j++] = res->res[i];
1625 } else {
1626 os_free(res->res[i]);
1627 res->res[i] = NULL;
1628 }
1629 }
1630
1631 if (res->num != j) {
1632 wpa_printf(MSG_DEBUG, "Filtered out %d scan results",
1633 (int) (res->num - j));
1634 res->num = j;
1635 }
1636}
1637
1638
9ba9fa07
JM
1639/**
1640 * wpa_supplicant_get_scan_results - Get scan results
1641 * @wpa_s: Pointer to wpa_supplicant data
1642 * @info: Information about what was scanned or %NULL if not available
1643 * @new_scan: Whether a new scan was performed
1644 * Returns: Scan results, %NULL on failure
1645 *
1646 * This function request the current scan results from the driver and updates
1647 * the local BSS list wpa_s->bss. The caller is responsible for freeing the
1648 * results with wpa_scan_results_free().
1649 */
1650struct wpa_scan_results *
1651wpa_supplicant_get_scan_results(struct wpa_supplicant *wpa_s,
1652 struct scan_info *info, int new_scan)
1653{
1654 struct wpa_scan_results *scan_res;
1655 size_t i;
41e650ae 1656 int (*compar)(const void *, const void *) = wpa_scan_result_compar;
9ba9fa07 1657
17fbb751 1658 scan_res = wpa_drv_get_scan_results2(wpa_s);
9ba9fa07 1659 if (scan_res == NULL) {
f049052b 1660 wpa_dbg(wpa_s, MSG_DEBUG, "Failed to get scan results");
9ba9fa07
JM
1661 return NULL;
1662 }
c5f10e80
JM
1663 if (scan_res->fetch_time.sec == 0) {
1664 /*
1665 * Make sure we have a valid timestamp if the driver wrapper
1666 * does not set this.
1667 */
1668 os_get_time(&scan_res->fetch_time);
1669 }
d445a5cd 1670 filter_scan_res(wpa_s, scan_res);
9ba9fa07 1671
41e650ae
JM
1672#ifdef CONFIG_WPS
1673 if (wpas_wps_in_progress(wpa_s)) {
f049052b
BG
1674 wpa_dbg(wpa_s, MSG_DEBUG, "WPS: Order scan results with WPS "
1675 "provisioning rules");
41e650ae
JM
1676 compar = wpa_scan_result_wps_compar;
1677 }
1678#endif /* CONFIG_WPS */
1679
9ba9fa07 1680 qsort(scan_res->res, scan_res->num, sizeof(struct wpa_scan_res *),
41e650ae 1681 compar);
aa820e02 1682 dump_scan_res(scan_res);
9ba9fa07
JM
1683
1684 wpa_bss_update_start(wpa_s);
1685 for (i = 0; i < scan_res->num; i++)
c5f10e80
JM
1686 wpa_bss_update_scan_res(wpa_s, scan_res->res[i],
1687 &scan_res->fetch_time);
9ba9fa07
JM
1688 wpa_bss_update_end(wpa_s, info, new_scan);
1689
1690 return scan_res;
1691}
1692
1693
2c09af30
JM
1694/**
1695 * wpa_supplicant_update_scan_results - Update scan results from the driver
1696 * @wpa_s: Pointer to wpa_supplicant data
1697 * Returns: 0 on success, -1 on failure
1698 *
1699 * This function updates the BSS table within wpa_supplicant based on the
1700 * currently available scan results from the driver without requesting a new
1701 * scan. This is used in cases where the driver indicates an association
1702 * (including roaming within ESS) and wpa_supplicant does not yet have the
1703 * needed information to complete the connection (e.g., to perform validation
1704 * steps in 4-way handshake).
1705 */
9ba9fa07
JM
1706int wpa_supplicant_update_scan_results(struct wpa_supplicant *wpa_s)
1707{
1708 struct wpa_scan_results *scan_res;
1709 scan_res = wpa_supplicant_get_scan_results(wpa_s, NULL, 0);
1710 if (scan_res == NULL)
1711 return -1;
1712 wpa_scan_results_free(scan_res);
1713
1714 return 0;
1715}
66fe0f70
DS
1716
1717
1718/**
1719 * scan_only_handler - Reports scan results
1720 */
1721void scan_only_handler(struct wpa_supplicant *wpa_s,
1722 struct wpa_scan_results *scan_res)
1723{
1724 wpa_dbg(wpa_s, MSG_DEBUG, "Scan-only results received");
1725 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS);
1726 wpas_notify_scan_results(wpa_s);
1727 wpas_notify_scan_done(wpa_s, 1);
1728}
407be00b
JM
1729
1730
1731int wpas_scan_scheduled(struct wpa_supplicant *wpa_s)
1732{
1733 return eloop_is_timeout_registered(wpa_supplicant_scan, wpa_s, NULL);
1734}