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