blob: c1f3efc8c577264a9dc3be9e5940991891217a27 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant - Scanning
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003 * Copyright (c) 2003-2014, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#include "utils/includes.h"
10
11#include "utils/common.h"
12#include "utils/eloop.h"
13#include "common/ieee802_11_defs.h"
Dmitry Shmidt3a787e62013-01-17 10:32:35 -080014#include "common/wpa_ctrl.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070015#include "config.h"
16#include "wpa_supplicant_i.h"
17#include "driver_i.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070018#include "wps_supplicant.h"
19#include "p2p_supplicant.h"
20#include "p2p/p2p.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070021#include "hs20_supplicant.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070022#include "notify.h"
23#include "bss.h"
24#include "scan.h"
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080025#include "mesh.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070026
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
37 if (wpa_s->current_ssid == NULL) {
38 wpa_s->current_ssid = ssid;
39 if (wpa_s->current_ssid != NULL)
40 wpas_notify_network_changed(wpa_s);
41 }
42 wpa_supplicant_initiate_eapol(wpa_s);
43 wpa_dbg(wpa_s, MSG_DEBUG, "Already associated with a configured "
44 "network - generating associated event");
45 os_memset(&data, 0, sizeof(data));
46 wpa_supplicant_event(wpa_s, EVENT_ASSOC, &data);
47}
48
49
50#ifdef CONFIG_WPS
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080051static int wpas_wps_in_use(struct wpa_supplicant *wpa_s,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070052 enum wps_request_type *req_type)
53{
54 struct wpa_ssid *ssid;
55 int wps = 0;
56
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080057 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070058 if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS))
59 continue;
60
61 wps = 1;
62 *req_type = wpas_wps_get_req_type(ssid);
63 if (!ssid->eap.phase1)
64 continue;
65
66 if (os_strstr(ssid->eap.phase1, "pbc=1"))
67 return 2;
68 }
69
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080070#ifdef CONFIG_P2P
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080071 if (!wpa_s->global->p2p_disabled && wpa_s->global->p2p &&
72 !wpa_s->conf->p2p_disabled) {
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -080073 wpa_s->wps->dev.p2p = 1;
74 if (!wps) {
75 wps = 1;
76 *req_type = WPS_REQ_ENROLLEE_INFO;
77 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080078 }
79#endif /* CONFIG_P2P */
80
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070081 return wps;
82}
83#endif /* CONFIG_WPS */
84
85
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080086/**
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 */
Dmitry Shmidt04949592012-07-19 12:16:46 -070095int wpa_supplicant_enabled_networks(struct wpa_supplicant *wpa_s)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070096{
Dmitry Shmidt04949592012-07-19 12:16:46 -070097 struct wpa_ssid *ssid = wpa_s->conf->ssid;
Dmitry Shmidtaa532512012-09-24 10:35:31 -070098 int count = 0, disabled = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070099 while (ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700100 if (!wpas_network_disabled(wpa_s, ssid))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700101 count++;
Dmitry Shmidtaa532512012-09-24 10:35:31 -0700102 else
103 disabled++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700104 ssid = ssid->next;
105 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700106 if (wpa_s->conf->cred && wpa_s->conf->interworking &&
107 wpa_s->conf->auto_interworking)
108 count++;
Dmitry Shmidtaa532512012-09-24 10:35:31 -0700109 if (count == 0 && disabled > 0) {
110 wpa_dbg(wpa_s, MSG_DEBUG, "No enabled networks (%d disabled "
111 "networks)", disabled);
112 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700113 return count;
114}
115
116
117static void wpa_supplicant_assoc_try(struct wpa_supplicant *wpa_s,
118 struct wpa_ssid *ssid)
119{
120 while (ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700121 if (!wpas_network_disabled(wpa_s, ssid))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700122 break;
123 ssid = ssid->next;
124 }
125
126 /* ap_scan=2 mode - try to associate with each SSID. */
127 if (ssid == NULL) {
128 wpa_dbg(wpa_s, MSG_DEBUG, "wpa_supplicant_assoc_try: Reached "
129 "end of scan list - go back to beginning");
130 wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
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. */
139 wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
140 }
141 wpa_supplicant_associate(wpa_s, NULL, ssid);
142}
143
144
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800145static void wpas_trigger_scan_cb(struct wpa_radio_work *work, int deinit)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700146{
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800147 struct wpa_supplicant *wpa_s = work->wpa_s;
148 struct wpa_driver_scan_params *params = work->ctx;
149 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700150
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800151 if (deinit) {
Dmitry Shmidtbd14a572014-02-18 10:33:49 -0800152 if (!work->started) {
153 wpa_scan_free_params(params);
154 return;
155 }
156 wpa_supplicant_notify_scanning(wpa_s, 0);
157 wpas_notify_scan_done(wpa_s, 0);
158 wpa_s->scan_work = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700159 return;
160 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700161
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700162 if (wpas_update_random_addr_disassoc(wpa_s) < 0) {
163 wpa_msg(wpa_s, MSG_INFO,
164 "Failed to assign random MAC address for a scan");
165 radio_work_done(work);
166 return;
167 }
168
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800169 wpa_supplicant_notify_scanning(wpa_s, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700170
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800171 if (wpa_s->clear_driver_scan_cache) {
172 wpa_printf(MSG_DEBUG,
173 "Request driver to clear scan cache due to local BSS flush");
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800174 params->only_new_results = 1;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800175 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800176 ret = wpa_drv_scan(wpa_s, params);
177 wpa_scan_free_params(params);
178 work->ctx = NULL;
179 if (ret) {
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800180 int retry = wpa_s->last_scan_req != MANUAL_SCAN_REQ;
181
182 if (wpa_s->disconnected)
183 retry = 0;
184
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800185 wpa_supplicant_notify_scanning(wpa_s, 0);
186 wpas_notify_scan_done(wpa_s, 0);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800187 if (wpa_s->wpa_state == WPA_SCANNING)
188 wpa_supplicant_set_state(wpa_s,
189 wpa_s->scan_prev_wpa_state);
190 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_SCAN_FAILED "ret=%d%s",
191 ret, retry ? " retry=1" : "");
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800192 radio_work_done(work);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800193
194 if (retry) {
195 /* Restore scan_req since we will try to scan again */
196 wpa_s->scan_req = wpa_s->last_scan_req;
197 wpa_supplicant_req_scan(wpa_s, 1, 0);
198 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700199 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700200 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800201
202 os_get_reltime(&wpa_s->scan_trigger_time);
203 wpa_s->scan_runs++;
204 wpa_s->normal_scans++;
205 wpa_s->own_scan_requested = 1;
206 wpa_s->clear_driver_scan_cache = 0;
207 wpa_s->scan_work = work;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700208}
209
210
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800211/**
212 * wpa_supplicant_trigger_scan - Request driver to start a scan
213 * @wpa_s: Pointer to wpa_supplicant data
214 * @params: Scan parameters
215 * Returns: 0 on success, -1 on failure
216 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700217int wpa_supplicant_trigger_scan(struct wpa_supplicant *wpa_s,
218 struct wpa_driver_scan_params *params)
219{
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800220 struct wpa_driver_scan_params *ctx;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700221
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800222 if (wpa_s->scan_work) {
223 wpa_dbg(wpa_s, MSG_INFO, "Reject scan trigger since one is already pending");
224 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800225 }
226
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800227 ctx = wpa_scan_clone_params(params);
228 if (ctx == NULL)
229 return -1;
230
231 if (radio_add_work(wpa_s, 0, "scan", 0, wpas_trigger_scan_cb, ctx) < 0)
232 {
233 wpa_scan_free_params(ctx);
234 return -1;
235 }
236
237 return 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800238}
239
240
241static void
242wpa_supplicant_delayed_sched_scan_timeout(void *eloop_ctx, void *timeout_ctx)
243{
244 struct wpa_supplicant *wpa_s = eloop_ctx;
245
246 wpa_dbg(wpa_s, MSG_DEBUG, "Starting delayed sched scan");
247
248 if (wpa_supplicant_req_sched_scan(wpa_s))
249 wpa_supplicant_req_scan(wpa_s, 0, 0);
250}
251
252
253static void
254wpa_supplicant_sched_scan_timeout(void *eloop_ctx, void *timeout_ctx)
255{
256 struct wpa_supplicant *wpa_s = eloop_ctx;
257
258 wpa_dbg(wpa_s, MSG_DEBUG, "Sched scan timeout - stopping it");
259
260 wpa_s->sched_scan_timed_out = 1;
261 wpa_supplicant_cancel_sched_scan(wpa_s);
262}
263
264
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800265int wpa_supplicant_start_sched_scan(struct wpa_supplicant *wpa_s,
266 struct wpa_driver_scan_params *params,
267 int interval)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800268{
269 int ret;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700270
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800271 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);
Dmitry Shmidtb96dad42013-11-05 10:07:29 -0800275 else
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800276 wpa_s->sched_scanning = 1;
277
278 return ret;
279}
280
281
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800282int wpa_supplicant_stop_sched_scan(struct wpa_supplicant *wpa_s)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800283{
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 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700292
293 return ret;
294}
295
296
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;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800314 ssids = os_calloc(count, sizeof(struct wpa_driver_scan_filter));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700315 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
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800330static 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);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800342 params->freqs = os_calloc(2, sizeof(int));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800343 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 }
Dmitry Shmidt15907092014-03-25 10:42:57 -0700356
357 if (params->freqs == NULL && wpa_s->p2p_in_invitation) {
358 /*
359 * Optimize scan based on GO information during persistent
360 * group reinvocation
361 */
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -0700362 if (wpa_s->p2p_in_invitation < 5 &&
Dmitry Shmidt15907092014-03-25 10:42:57 -0700363 wpa_s->p2p_invite_go_freq > 0) {
364 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Scan only GO preferred frequency %d MHz during invitation",
365 wpa_s->p2p_invite_go_freq);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800366 params->freqs = os_calloc(2, sizeof(int));
Dmitry Shmidt15907092014-03-25 10:42:57 -0700367 if (params->freqs)
368 params->freqs[0] = wpa_s->p2p_invite_go_freq;
369 }
370 wpa_s->p2p_in_invitation++;
371 if (wpa_s->p2p_in_invitation > 20) {
372 /*
373 * This should not really happen since the variable is
374 * cleared on group removal, but if it does happen, make
375 * sure we do not get stuck in special invitation scan
376 * mode.
377 */
378 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Clear p2p_in_invitation");
379 wpa_s->p2p_in_invitation = 0;
380 }
381 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800382#endif /* CONFIG_P2P */
383
384#ifdef CONFIG_WPS
385 if (params->freqs == NULL && wpa_s->after_wps && wpa_s->wps_freq) {
386 /*
387 * Optimize post-provisioning scan based on channel used
388 * during provisioning.
389 */
390 wpa_dbg(wpa_s, MSG_DEBUG, "WPS: Scan only frequency %u MHz "
391 "that was used during provisioning", wpa_s->wps_freq);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800392 params->freqs = os_calloc(2, sizeof(int));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800393 if (params->freqs)
394 params->freqs[0] = wpa_s->wps_freq;
395 wpa_s->after_wps--;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800396 } else if (wpa_s->after_wps)
397 wpa_s->after_wps--;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800398
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800399 if (params->freqs == NULL && wpa_s->known_wps_freq && wpa_s->wps_freq)
400 {
401 /* Optimize provisioning scan based on already known channel */
402 wpa_dbg(wpa_s, MSG_DEBUG, "WPS: Scan only frequency %u MHz",
403 wpa_s->wps_freq);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800404 params->freqs = os_calloc(2, sizeof(int));
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800405 if (params->freqs)
406 params->freqs[0] = wpa_s->wps_freq;
407 wpa_s->known_wps_freq = 0; /* only do this once */
408 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800409#endif /* CONFIG_WPS */
410}
411
412
413#ifdef CONFIG_INTERWORKING
414static void wpas_add_interworking_elements(struct wpa_supplicant *wpa_s,
415 struct wpabuf *buf)
416{
417 if (wpa_s->conf->interworking == 0)
418 return;
419
420 wpabuf_put_u8(buf, WLAN_EID_EXT_CAPAB);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800421 wpabuf_put_u8(buf, 6);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800422 wpabuf_put_u8(buf, 0x00);
423 wpabuf_put_u8(buf, 0x00);
424 wpabuf_put_u8(buf, 0x00);
425 wpabuf_put_u8(buf, 0x80); /* Bit 31 - Interworking */
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800426 wpabuf_put_u8(buf, 0x00);
427#ifdef CONFIG_HS20
428 wpabuf_put_u8(buf, 0x40); /* Bit 46 - WNM-Notification */
429#else /* CONFIG_HS20 */
430 wpabuf_put_u8(buf, 0x00);
431#endif /* CONFIG_HS20 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800432
433 wpabuf_put_u8(buf, WLAN_EID_INTERWORKING);
434 wpabuf_put_u8(buf, is_zero_ether_addr(wpa_s->conf->hessid) ? 1 :
435 1 + ETH_ALEN);
436 wpabuf_put_u8(buf, wpa_s->conf->access_network_type);
437 /* No Venue Info */
438 if (!is_zero_ether_addr(wpa_s->conf->hessid))
439 wpabuf_put_data(buf, wpa_s->conf->hessid, ETH_ALEN);
440}
441#endif /* CONFIG_INTERWORKING */
442
443
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700444static struct wpabuf * wpa_supplicant_extra_ies(struct wpa_supplicant *wpa_s)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800445{
446 struct wpabuf *extra_ie = NULL;
447#ifdef CONFIG_WPS
448 int wps = 0;
449 enum wps_request_type req_type = WPS_REQ_ENROLLEE_INFO;
450#endif /* CONFIG_WPS */
451
452#ifdef CONFIG_INTERWORKING
453 if (wpa_s->conf->interworking &&
454 wpabuf_resize(&extra_ie, 100) == 0)
455 wpas_add_interworking_elements(wpa_s, extra_ie);
456#endif /* CONFIG_INTERWORKING */
457
458#ifdef CONFIG_WPS
459 wps = wpas_wps_in_use(wpa_s, &req_type);
460
461 if (wps) {
462 struct wpabuf *wps_ie;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700463 wps_ie = wps_build_probe_req_ie(wps == 2 ? DEV_PW_PUSHBUTTON :
464 DEV_PW_DEFAULT,
465 &wpa_s->wps->dev,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800466 wpa_s->wps->uuid, req_type,
467 0, NULL);
468 if (wps_ie) {
469 if (wpabuf_resize(&extra_ie, wpabuf_len(wps_ie)) == 0)
470 wpabuf_put_buf(extra_ie, wps_ie);
471 wpabuf_free(wps_ie);
472 }
473 }
474
475#ifdef CONFIG_P2P
476 if (wps) {
477 size_t ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
478 if (wpabuf_resize(&extra_ie, ielen) == 0)
479 wpas_p2p_scan_ie(wpa_s, extra_ie);
480 }
481#endif /* CONFIG_P2P */
482
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800483 wpa_supplicant_mesh_add_scan_ie(wpa_s, &extra_ie);
484
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800485#endif /* CONFIG_WPS */
486
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -0700487#ifdef CONFIG_HS20
488 if (wpa_s->conf->hs20 && wpabuf_resize(&extra_ie, 7) == 0)
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800489 wpas_hs20_add_indication(extra_ie, -1);
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -0700490#endif /* CONFIG_HS20 */
491
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800492 return extra_ie;
493}
494
495
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800496#ifdef CONFIG_P2P
497
498/*
499 * Check whether there are any enabled networks or credentials that could be
500 * used for a non-P2P connection.
501 */
502static int non_p2p_network_enabled(struct wpa_supplicant *wpa_s)
503{
504 struct wpa_ssid *ssid;
505
506 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
507 if (wpas_network_disabled(wpa_s, ssid))
508 continue;
509 if (!ssid->p2p_group)
510 return 1;
511 }
512
513 if (wpa_s->conf->cred && wpa_s->conf->interworking &&
514 wpa_s->conf->auto_interworking)
515 return 1;
516
517 return 0;
518}
519
Dmitry Shmidtea69e842013-05-13 14:52:28 -0700520#endif /* CONFIG_P2P */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800521
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800522
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700523static struct hostapd_hw_modes * get_mode(struct hostapd_hw_modes *modes,
524 u16 num_modes,
525 enum hostapd_hw_mode mode)
526{
527 u16 i;
528
529 for (i = 0; i < num_modes; i++) {
530 if (modes[i].mode == mode)
531 return &modes[i];
532 }
533
534 return NULL;
535}
536
537
538static void wpa_setband_scan_freqs_list(struct wpa_supplicant *wpa_s,
539 enum hostapd_hw_mode band,
540 struct wpa_driver_scan_params *params)
541{
542 /* Include only supported channels for the specified band */
543 struct hostapd_hw_modes *mode;
544 int count, i;
545
546 mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, band);
547 if (mode == NULL) {
548 /* No channels supported in this band - use empty list */
549 params->freqs = os_zalloc(sizeof(int));
550 return;
551 }
552
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800553 params->freqs = os_calloc(mode->num_channels + 1, sizeof(int));
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700554 if (params->freqs == NULL)
555 return;
556 for (count = 0, i = 0; i < mode->num_channels; i++) {
557 if (mode->channels[i].flag & HOSTAPD_CHAN_DISABLED)
558 continue;
559 params->freqs[count++] = mode->channels[i].freq;
560 }
561}
562
563
564static void wpa_setband_scan_freqs(struct wpa_supplicant *wpa_s,
565 struct wpa_driver_scan_params *params)
566{
567 if (wpa_s->hw.modes == NULL)
568 return; /* unknown what channels the driver supports */
569 if (params->freqs)
570 return; /* already using a limited channel set */
571 if (wpa_s->setband == WPA_SETBAND_5G)
572 wpa_setband_scan_freqs_list(wpa_s, HOSTAPD_MODE_IEEE80211A,
573 params);
574 else if (wpa_s->setband == WPA_SETBAND_2G)
575 wpa_setband_scan_freqs_list(wpa_s, HOSTAPD_MODE_IEEE80211G,
576 params);
577}
578
579
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700580static void wpa_set_scan_ssids(struct wpa_supplicant *wpa_s,
581 struct wpa_driver_scan_params *params,
582 size_t max_ssids)
583{
584 unsigned int i;
585 struct wpa_ssid *ssid;
586
587 for (i = 0; i < wpa_s->scan_id_count; i++) {
588 unsigned int j;
589
590 ssid = wpa_config_get_network(wpa_s->conf, wpa_s->scan_id[i]);
591 if (!ssid || !ssid->scan_ssid)
592 continue;
593
594 for (j = 0; j < params->num_ssids; j++) {
595 if (params->ssids[j].ssid_len == ssid->ssid_len &&
596 params->ssids[j].ssid &&
597 os_memcmp(params->ssids[j].ssid, ssid->ssid,
598 ssid->ssid_len) == 0)
599 break;
600 }
601 if (j < params->num_ssids)
602 continue; /* already in the list */
603
604 if (params->num_ssids + 1 > max_ssids) {
605 wpa_printf(MSG_DEBUG,
606 "Over max scan SSIDs for manual request");
607 break;
608 }
609
610 wpa_printf(MSG_DEBUG, "Scan SSID (manual request): %s",
611 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
612 params->ssids[params->num_ssids].ssid = ssid->ssid;
613 params->ssids[params->num_ssids].ssid_len = ssid->ssid_len;
614 params->num_ssids++;
615 }
616
617 wpa_s->scan_id_count = 0;
618}
619
620
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700621static void wpa_supplicant_scan(void *eloop_ctx, void *timeout_ctx)
622{
623 struct wpa_supplicant *wpa_s = eloop_ctx;
624 struct wpa_ssid *ssid;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800625 int ret, p2p_in_prog;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700626 struct wpabuf *extra_ie = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700627 struct wpa_driver_scan_params params;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700628 struct wpa_driver_scan_params *scan_params;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700629 size_t max_ssids;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700630
Dmitry Shmidt18463232014-01-24 12:29:41 -0800631 if (wpa_s->pno || wpa_s->pno_sched_pending) {
632 wpa_dbg(wpa_s, MSG_DEBUG, "Skip scan - PNO is in progress");
633 return;
634 }
635
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700636 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
637 wpa_dbg(wpa_s, MSG_DEBUG, "Skip scan - interface disabled");
638 return;
639 }
640
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800641 if (wpa_s->disconnected && wpa_s->scan_req == NORMAL_SCAN_REQ) {
Dmitry Shmidtaa532512012-09-24 10:35:31 -0700642 wpa_dbg(wpa_s, MSG_DEBUG, "Disconnected - do not scan");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700643 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
644 return;
645 }
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800646
Dmitry Shmidt5887a9d2012-09-14 10:47:43 -0700647 if (wpa_s->scanning) {
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800648 /*
649 * If we are already in scanning state, we shall reschedule the
650 * the incoming scan request.
651 */
652 wpa_dbg(wpa_s, MSG_DEBUG, "Already scanning - Reschedule the incoming scan req");
653 wpa_supplicant_req_scan(wpa_s, 1, 0);
Dmitry Shmidt5887a9d2012-09-14 10:47:43 -0700654 return;
655 }
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800656
Dmitry Shmidt04949592012-07-19 12:16:46 -0700657 if (!wpa_supplicant_enabled_networks(wpa_s) &&
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800658 wpa_s->scan_req == NORMAL_SCAN_REQ) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700659 wpa_dbg(wpa_s, MSG_DEBUG, "No enabled networks - do not scan");
660 wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
661 return;
662 }
663
664 if (wpa_s->conf->ap_scan != 0 &&
665 (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED)) {
666 wpa_dbg(wpa_s, MSG_DEBUG, "Using wired authentication - "
667 "overriding ap_scan configuration");
668 wpa_s->conf->ap_scan = 0;
669 wpas_notify_ap_scan_changed(wpa_s);
670 }
671
672 if (wpa_s->conf->ap_scan == 0) {
673 wpa_supplicant_gen_assoc_event(wpa_s);
674 return;
675 }
676
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800677 p2p_in_prog = wpas_p2p_in_progress(wpa_s);
678 if (p2p_in_prog && p2p_in_prog != 2) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800679 wpa_dbg(wpa_s, MSG_DEBUG, "Delay station mode scan while P2P operation is in progress");
680 wpa_supplicant_req_scan(wpa_s, 5, 0);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700681 return;
682 }
Dmitry Shmidt051af732013-10-22 13:52:46 -0700683
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800684 if (wpa_s->conf->ap_scan == 2)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700685 max_ssids = 1;
686 else {
687 max_ssids = wpa_s->max_scan_ssids;
688 if (max_ssids > WPAS_MAX_SCAN_SSIDS)
689 max_ssids = WPAS_MAX_SCAN_SSIDS;
690 }
691
Dmitry Shmidt01904cf2013-12-05 11:08:35 -0800692 wpa_s->last_scan_req = wpa_s->scan_req;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800693 wpa_s->scan_req = NORMAL_SCAN_REQ;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700694
695 os_memset(&params, 0, sizeof(params));
696
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800697 wpa_s->scan_prev_wpa_state = wpa_s->wpa_state;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700698 if (wpa_s->wpa_state == WPA_DISCONNECTED ||
699 wpa_s->wpa_state == WPA_INACTIVE)
700 wpa_supplicant_set_state(wpa_s, WPA_SCANNING);
701
Dmitry Shmidt04949592012-07-19 12:16:46 -0700702 /*
703 * If autoscan has set its own scanning parameters
704 */
705 if (wpa_s->autoscan_params != NULL) {
706 scan_params = wpa_s->autoscan_params;
707 goto scan;
708 }
709
Dmitry Shmidt01904cf2013-12-05 11:08:35 -0800710 if (wpa_s->last_scan_req != MANUAL_SCAN_REQ &&
711 wpa_s->connect_without_scan) {
Jouni Malinen75ecf522011-06-27 15:19:46 -0700712 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
713 if (ssid == wpa_s->connect_without_scan)
714 break;
715 }
716 wpa_s->connect_without_scan = NULL;
717 if (ssid) {
718 wpa_printf(MSG_DEBUG, "Start a pre-selected network "
719 "without scan step");
720 wpa_supplicant_associate(wpa_s, NULL, ssid);
721 return;
722 }
723 }
724
Dmitry Shmidt04949592012-07-19 12:16:46 -0700725#ifdef CONFIG_P2P
726 if ((wpa_s->p2p_in_provisioning || wpa_s->show_group_started) &&
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800727 wpa_s->go_params && !wpa_s->conf->passive_scan) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800728 wpa_printf(MSG_DEBUG, "P2P: Use specific SSID for scan during P2P group formation (p2p_in_provisioning=%d show_group_started=%d)",
729 wpa_s->p2p_in_provisioning,
730 wpa_s->show_group_started);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700731 params.ssids[0].ssid = wpa_s->go_params->ssid;
732 params.ssids[0].ssid_len = wpa_s->go_params->ssid_len;
733 params.num_ssids = 1;
734 goto ssid_list_set;
735 }
Dmitry Shmidt15907092014-03-25 10:42:57 -0700736
737 if (wpa_s->p2p_in_invitation) {
738 if (wpa_s->current_ssid) {
739 wpa_printf(MSG_DEBUG, "P2P: Use specific SSID for scan during invitation");
740 params.ssids[0].ssid = wpa_s->current_ssid->ssid;
741 params.ssids[0].ssid_len =
742 wpa_s->current_ssid->ssid_len;
743 params.num_ssids = 1;
744 } else {
745 wpa_printf(MSG_DEBUG, "P2P: No specific SSID known for scan during invitation");
746 }
747 goto ssid_list_set;
748 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700749#endif /* CONFIG_P2P */
750
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700751 /* Find the starting point from which to continue scanning */
752 ssid = wpa_s->conf->ssid;
753 if (wpa_s->prev_scan_ssid != WILDCARD_SSID_SCAN) {
754 while (ssid) {
755 if (ssid == wpa_s->prev_scan_ssid) {
756 ssid = ssid->next;
757 break;
758 }
759 ssid = ssid->next;
760 }
761 }
762
Dmitry Shmidt01904cf2013-12-05 11:08:35 -0800763 if (wpa_s->last_scan_req != MANUAL_SCAN_REQ &&
764 wpa_s->conf->ap_scan == 2) {
Jouni Malinen75ecf522011-06-27 15:19:46 -0700765 wpa_s->connect_without_scan = NULL;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800766 wpa_s->prev_scan_wildcard = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700767 wpa_supplicant_assoc_try(wpa_s, ssid);
768 return;
769 } else if (wpa_s->conf->ap_scan == 2) {
770 /*
771 * User-initiated scan request in ap_scan == 2; scan with
772 * wildcard SSID.
773 */
774 ssid = NULL;
Dmitry Shmidt98660862014-03-11 17:26:21 -0700775 } else if (wpa_s->reattach && wpa_s->current_ssid != NULL) {
776 /*
777 * Perform single-channel single-SSID scan for
778 * reassociate-to-same-BSS operation.
779 */
780 /* Setup SSID */
781 ssid = wpa_s->current_ssid;
782 wpa_hexdump_ascii(MSG_DEBUG, "Scan SSID",
783 ssid->ssid, ssid->ssid_len);
784 params.ssids[0].ssid = ssid->ssid;
785 params.ssids[0].ssid_len = ssid->ssid_len;
786 params.num_ssids = 1;
787
788 /*
789 * Allocate memory for frequency array, allocate one extra
790 * slot for the zero-terminator.
791 */
792 params.freqs = os_malloc(sizeof(int) * 2);
793 if (params.freqs == NULL) {
794 wpa_dbg(wpa_s, MSG_ERROR, "Memory allocation failed");
795 return;
796 }
797 params.freqs[0] = wpa_s->assoc_freq;
798 params.freqs[1] = 0;
799
800 /*
801 * Reset the reattach flag so that we fall back to full scan if
802 * this scan fails.
803 */
804 wpa_s->reattach = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700805 } else {
806 struct wpa_ssid *start = ssid, *tssid;
807 int freqs_set = 0;
808 if (ssid == NULL && max_ssids > 1)
809 ssid = wpa_s->conf->ssid;
810 while (ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700811 if (!wpas_network_disabled(wpa_s, ssid) &&
812 ssid->scan_ssid) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700813 wpa_hexdump_ascii(MSG_DEBUG, "Scan SSID",
814 ssid->ssid, ssid->ssid_len);
815 params.ssids[params.num_ssids].ssid =
816 ssid->ssid;
817 params.ssids[params.num_ssids].ssid_len =
818 ssid->ssid_len;
819 params.num_ssids++;
820 if (params.num_ssids + 1 >= max_ssids)
821 break;
822 }
823 ssid = ssid->next;
824 if (ssid == start)
825 break;
826 if (ssid == NULL && max_ssids > 1 &&
827 start != wpa_s->conf->ssid)
828 ssid = wpa_s->conf->ssid;
829 }
830
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700831 if (wpa_s->scan_id_count &&
832 wpa_s->last_scan_req == MANUAL_SCAN_REQ)
833 wpa_set_scan_ssids(wpa_s, &params, max_ssids);
834
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800835 for (tssid = wpa_s->conf->ssid;
836 wpa_s->last_scan_req != MANUAL_SCAN_REQ && tssid;
837 tssid = tssid->next) {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700838 if (wpas_network_disabled(wpa_s, tssid))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700839 continue;
840 if ((params.freqs || !freqs_set) && tssid->scan_freq) {
841 int_array_concat(&params.freqs,
842 tssid->scan_freq);
843 } else {
844 os_free(params.freqs);
845 params.freqs = NULL;
846 }
847 freqs_set = 1;
848 }
849 int_array_sort_unique(params.freqs);
850 }
851
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800852 if (ssid && max_ssids == 1) {
853 /*
854 * If the driver is limited to 1 SSID at a time interleave
855 * wildcard SSID scans with specific SSID scans to avoid
856 * waiting a long time for a wildcard scan.
857 */
858 if (!wpa_s->prev_scan_wildcard) {
859 params.ssids[0].ssid = NULL;
860 params.ssids[0].ssid_len = 0;
861 wpa_s->prev_scan_wildcard = 1;
862 wpa_dbg(wpa_s, MSG_DEBUG, "Starting AP scan for "
863 "wildcard SSID (Interleave with specific)");
864 } else {
865 wpa_s->prev_scan_ssid = ssid;
866 wpa_s->prev_scan_wildcard = 0;
867 wpa_dbg(wpa_s, MSG_DEBUG,
868 "Starting AP scan for specific SSID: %s",
869 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700870 }
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800871 } else if (ssid) {
872 /* max_ssids > 1 */
873
874 wpa_s->prev_scan_ssid = ssid;
875 wpa_dbg(wpa_s, MSG_DEBUG, "Include wildcard SSID in "
876 "the scan request");
877 params.num_ssids++;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800878 } else if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
879 wpa_s->manual_scan_passive && params.num_ssids == 0) {
880 wpa_dbg(wpa_s, MSG_DEBUG, "Use passive scan based on manual request");
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800881 } else if (wpa_s->conf->passive_scan) {
882 wpa_dbg(wpa_s, MSG_DEBUG,
883 "Use passive scan based on configuration");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700884 } else {
885 wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
886 params.num_ssids++;
887 wpa_dbg(wpa_s, MSG_DEBUG, "Starting AP scan for wildcard "
888 "SSID");
889 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700890#ifdef CONFIG_P2P
891ssid_list_set:
892#endif /* CONFIG_P2P */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700893
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800894 wpa_supplicant_optimize_freqs(wpa_s, &params);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700895 extra_ie = wpa_supplicant_extra_ies(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700896
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800897 if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800898 wpa_s->manual_scan_only_new) {
899 wpa_printf(MSG_DEBUG,
900 "Request driver to clear scan cache due to manual only_new=1 scan");
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800901 params.only_new_results = 1;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800902 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800903
904 if (wpa_s->last_scan_req == MANUAL_SCAN_REQ && params.freqs == NULL &&
905 wpa_s->manual_scan_freqs) {
906 wpa_dbg(wpa_s, MSG_DEBUG, "Limit manual scan to specified channels");
907 params.freqs = wpa_s->manual_scan_freqs;
908 wpa_s->manual_scan_freqs = NULL;
909 }
910
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700911 if (params.freqs == NULL && wpa_s->next_scan_freqs) {
912 wpa_dbg(wpa_s, MSG_DEBUG, "Optimize scan based on previously "
913 "generated frequency list");
914 params.freqs = wpa_s->next_scan_freqs;
915 } else
916 os_free(wpa_s->next_scan_freqs);
917 wpa_s->next_scan_freqs = NULL;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700918 wpa_setband_scan_freqs(wpa_s, &params);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700919
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -0700920 /* See if user specified frequencies. If so, scan only those. */
921 if (wpa_s->conf->freq_list && !params.freqs) {
922 wpa_dbg(wpa_s, MSG_DEBUG,
923 "Optimize scan based on conf->freq_list");
924 int_array_concat(&params.freqs, wpa_s->conf->freq_list);
925 }
926
Dmitry Shmidtea69e842013-05-13 14:52:28 -0700927 /* Use current associated channel? */
928 if (wpa_s->conf->scan_cur_freq && !params.freqs) {
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700929 unsigned int num = wpa_s->num_multichan_concurrent;
930
931 params.freqs = os_calloc(num + 1, sizeof(int));
932 if (params.freqs) {
933 num = get_shared_radio_freqs(wpa_s, params.freqs, num);
934 if (num > 0) {
935 wpa_dbg(wpa_s, MSG_DEBUG, "Scan only the "
936 "current operating channels since "
937 "scan_cur_freq is enabled");
938 } else {
939 os_free(params.freqs);
940 params.freqs = NULL;
941 }
Dmitry Shmidtea69e842013-05-13 14:52:28 -0700942 }
943 }
944
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700945 params.filter_ssids = wpa_supplicant_build_filter_ssids(
946 wpa_s->conf, &params.num_filter_ssids);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800947 if (extra_ie) {
948 params.extra_ies = wpabuf_head(extra_ie);
949 params.extra_ies_len = wpabuf_len(extra_ie);
950 }
951
952#ifdef CONFIG_P2P
Dmitry Shmidt413dde72014-04-11 10:23:22 -0700953 if (wpa_s->p2p_in_provisioning || wpa_s->p2p_in_invitation ||
Dmitry Shmidt04949592012-07-19 12:16:46 -0700954 (wpa_s->show_group_started && wpa_s->go_params)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800955 /*
956 * The interface may not yet be in P2P mode, so we have to
957 * explicitly request P2P probe to disable CCK rates.
958 */
959 params.p2p_probe = 1;
960 }
961#endif /* CONFIG_P2P */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700962
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800963 if (wpa_s->mac_addr_rand_enable & MAC_ADDR_RAND_SCAN) {
964 params.mac_addr_rand = 1;
965 if (wpa_s->mac_addr_scan) {
966 params.mac_addr = wpa_s->mac_addr_scan;
967 params.mac_addr_mask = wpa_s->mac_addr_scan + ETH_ALEN;
968 }
969 }
970
Dmitry Shmidt04949592012-07-19 12:16:46 -0700971 scan_params = &params;
972
973scan:
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800974#ifdef CONFIG_P2P
975 /*
976 * If the driver does not support multi-channel concurrency and a
977 * virtual interface that shares the same radio with the wpa_s interface
978 * is operating there may not be need to scan other channels apart from
979 * the current operating channel on the other virtual interface. Filter
980 * out other channels in case we are trying to find a connection for a
981 * station interface when we are not configured to prefer station
982 * connection and a concurrent operation is already in process.
983 */
Dmitry Shmidt01904cf2013-12-05 11:08:35 -0800984 if (wpa_s->scan_for_connection &&
985 wpa_s->last_scan_req == NORMAL_SCAN_REQ &&
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800986 !scan_params->freqs && !params.freqs &&
987 wpas_is_p2p_prioritized(wpa_s) &&
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800988 wpa_s->p2p_group_interface == NOT_P2P_GROUP_INTERFACE &&
989 non_p2p_network_enabled(wpa_s)) {
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700990 unsigned int num = wpa_s->num_multichan_concurrent;
991
992 params.freqs = os_calloc(num + 1, sizeof(int));
993 if (params.freqs) {
994 num = get_shared_radio_freqs(wpa_s, params.freqs, num);
995 if (num > 0 && num == wpa_s->num_multichan_concurrent) {
996 wpa_dbg(wpa_s, MSG_DEBUG, "Scan only the current operating channels since all channels are already used");
997 } else {
998 os_free(params.freqs);
999 params.freqs = NULL;
1000 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001001 }
1002 }
1003#endif /* CONFIG_P2P */
1004
Dmitry Shmidt04949592012-07-19 12:16:46 -07001005 ret = wpa_supplicant_trigger_scan(wpa_s, scan_params);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001006
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001007 if (ret && wpa_s->last_scan_req == MANUAL_SCAN_REQ && params.freqs &&
1008 !wpa_s->manual_scan_freqs) {
1009 /* Restore manual_scan_freqs for the next attempt */
1010 wpa_s->manual_scan_freqs = params.freqs;
1011 params.freqs = NULL;
1012 }
1013
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001014 wpabuf_free(extra_ie);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001015 os_free(params.freqs);
1016 os_free(params.filter_ssids);
1017
1018 if (ret) {
1019 wpa_msg(wpa_s, MSG_WARNING, "Failed to initiate AP scan");
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08001020 if (wpa_s->scan_prev_wpa_state != wpa_s->wpa_state)
1021 wpa_supplicant_set_state(wpa_s,
1022 wpa_s->scan_prev_wpa_state);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001023 /* Restore scan_req since we will try to scan again */
Dmitry Shmidt01904cf2013-12-05 11:08:35 -08001024 wpa_s->scan_req = wpa_s->last_scan_req;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001025 wpa_supplicant_req_scan(wpa_s, 1, 0);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001026 } else {
1027 wpa_s->scan_for_connection = 0;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08001028#ifdef CONFIG_INTERWORKING
1029 wpa_s->interworking_fast_assoc_tried = 0;
1030#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001031 }
1032}
1033
1034
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08001035void wpa_supplicant_update_scan_int(struct wpa_supplicant *wpa_s, int sec)
1036{
Dmitry Shmidtfa3fc4a2013-11-21 13:34:38 -08001037 struct os_reltime remaining, new_int;
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08001038 int cancelled;
1039
1040 cancelled = eloop_cancel_timeout_one(wpa_supplicant_scan, wpa_s, NULL,
1041 &remaining);
1042
1043 new_int.sec = sec;
1044 new_int.usec = 0;
Dmitry Shmidtfa3fc4a2013-11-21 13:34:38 -08001045 if (cancelled && os_reltime_before(&remaining, &new_int)) {
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08001046 new_int.sec = remaining.sec;
1047 new_int.usec = remaining.usec;
1048 }
1049
Dmitry Shmidt051af732013-10-22 13:52:46 -07001050 if (cancelled) {
1051 eloop_register_timeout(new_int.sec, new_int.usec,
1052 wpa_supplicant_scan, wpa_s, NULL);
1053 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08001054 wpa_s->scan_interval = sec;
1055}
1056
1057
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001058/**
1059 * wpa_supplicant_req_scan - Schedule a scan for neighboring access points
1060 * @wpa_s: Pointer to wpa_supplicant data
1061 * @sec: Number of seconds after which to scan
1062 * @usec: Number of microseconds after which to scan
1063 *
1064 * This function is used to schedule a scan for neighboring access points after
1065 * the specified time.
1066 */
1067void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec)
1068{
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001069 int res = eloop_deplete_timeout(sec, usec, wpa_supplicant_scan, wpa_s,
1070 NULL);
1071 if (res == 1) {
1072 wpa_dbg(wpa_s, MSG_DEBUG, "Rescheduling scan request: %d.%06d sec",
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08001073 sec, usec);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001074 } else if (res == 0) {
1075 wpa_dbg(wpa_s, MSG_DEBUG, "Ignore new scan request for %d.%06d sec since an earlier request is scheduled to trigger sooner",
1076 sec, usec);
1077 } else {
1078 wpa_dbg(wpa_s, MSG_DEBUG, "Setting scan request: %d.%06d sec",
1079 sec, usec);
1080 eloop_register_timeout(sec, usec, wpa_supplicant_scan, wpa_s, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001081 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001082}
1083
1084
1085/**
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001086 * wpa_supplicant_delayed_sched_scan - Request a delayed scheduled scan
1087 * @wpa_s: Pointer to wpa_supplicant data
1088 * @sec: Number of seconds after which to scan
1089 * @usec: Number of microseconds after which to scan
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001090 * Returns: 0 on success or -1 otherwise
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001091 *
1092 * This function is used to schedule periodic scans for neighboring
1093 * access points after the specified time.
1094 */
1095int wpa_supplicant_delayed_sched_scan(struct wpa_supplicant *wpa_s,
1096 int sec, int usec)
1097{
1098 if (!wpa_s->sched_scan_supported)
1099 return -1;
1100
1101 eloop_register_timeout(sec, usec,
1102 wpa_supplicant_delayed_sched_scan_timeout,
1103 wpa_s, NULL);
1104
1105 return 0;
1106}
1107
1108
1109/**
1110 * wpa_supplicant_req_sched_scan - Start a periodic scheduled scan
1111 * @wpa_s: Pointer to wpa_supplicant data
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001112 * Returns: 0 is sched_scan was started or -1 otherwise
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001113 *
1114 * This function is used to schedule periodic scans for neighboring
1115 * access points repeating the scan continuously.
1116 */
1117int wpa_supplicant_req_sched_scan(struct wpa_supplicant *wpa_s)
1118{
1119 struct wpa_driver_scan_params params;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001120 struct wpa_driver_scan_params *scan_params;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001121 enum wpa_states prev_state;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001122 struct wpa_ssid *ssid = NULL;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001123 struct wpabuf *extra_ie = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001124 int ret;
1125 unsigned int max_sched_scan_ssids;
1126 int wildcard = 0;
1127 int need_ssids;
1128
1129 if (!wpa_s->sched_scan_supported)
1130 return -1;
1131
1132 if (wpa_s->max_sched_scan_ssids > WPAS_MAX_SCAN_SSIDS)
1133 max_sched_scan_ssids = WPAS_MAX_SCAN_SSIDS;
1134 else
1135 max_sched_scan_ssids = wpa_s->max_sched_scan_ssids;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001136 if (max_sched_scan_ssids < 1 || wpa_s->conf->disable_scan_offload)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001137 return -1;
1138
1139 if (wpa_s->sched_scanning) {
1140 wpa_dbg(wpa_s, MSG_DEBUG, "Already sched scanning");
1141 return 0;
1142 }
1143
1144 need_ssids = 0;
1145 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07001146 if (!wpas_network_disabled(wpa_s, ssid) && !ssid->scan_ssid) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001147 /* Use wildcard SSID to find this network */
1148 wildcard = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001149 } else if (!wpas_network_disabled(wpa_s, ssid) &&
1150 ssid->ssid_len)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001151 need_ssids++;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001152
1153#ifdef CONFIG_WPS
1154 if (!wpas_network_disabled(wpa_s, ssid) &&
1155 ssid->key_mgmt == WPA_KEY_MGMT_WPS) {
1156 /*
1157 * Normal scan is more reliable and faster for WPS
1158 * operations and since these are for short periods of
1159 * time, the benefit of trying to use sched_scan would
1160 * be limited.
1161 */
1162 wpa_dbg(wpa_s, MSG_DEBUG, "Use normal scan instead of "
1163 "sched_scan for WPS");
1164 return -1;
1165 }
1166#endif /* CONFIG_WPS */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001167 }
1168 if (wildcard)
1169 need_ssids++;
1170
1171 if (wpa_s->normal_scans < 3 &&
1172 (need_ssids <= wpa_s->max_scan_ssids ||
1173 wpa_s->max_scan_ssids >= (int) max_sched_scan_ssids)) {
1174 /*
1175 * When normal scan can speed up operations, use that for the
1176 * first operations before starting the sched_scan to allow
1177 * user space sleep more. We do this only if the normal scan
1178 * has functionality that is suitable for this or if the
1179 * sched_scan does not have better support for multiple SSIDs.
1180 */
1181 wpa_dbg(wpa_s, MSG_DEBUG, "Use normal scan instead of "
1182 "sched_scan for initial scans (normal_scans=%d)",
1183 wpa_s->normal_scans);
1184 return -1;
1185 }
1186
1187 os_memset(&params, 0, sizeof(params));
1188
1189 /* If we can't allocate space for the filters, we just don't filter */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001190 params.filter_ssids = os_calloc(wpa_s->max_match_sets,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001191 sizeof(struct wpa_driver_scan_filter));
1192
1193 prev_state = wpa_s->wpa_state;
1194 if (wpa_s->wpa_state == WPA_DISCONNECTED ||
1195 wpa_s->wpa_state == WPA_INACTIVE)
1196 wpa_supplicant_set_state(wpa_s, WPA_SCANNING);
1197
Dmitry Shmidt04949592012-07-19 12:16:46 -07001198 if (wpa_s->autoscan_params != NULL) {
1199 scan_params = wpa_s->autoscan_params;
1200 goto scan;
1201 }
1202
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001203 /* Find the starting point from which to continue scanning */
1204 ssid = wpa_s->conf->ssid;
1205 if (wpa_s->prev_sched_ssid) {
1206 while (ssid) {
1207 if (ssid == wpa_s->prev_sched_ssid) {
1208 ssid = ssid->next;
1209 break;
1210 }
1211 ssid = ssid->next;
1212 }
1213 }
1214
1215 if (!ssid || !wpa_s->prev_sched_ssid) {
1216 wpa_dbg(wpa_s, MSG_DEBUG, "Beginning of SSID list");
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001217 if (wpa_s->conf->sched_scan_interval)
1218 wpa_s->sched_scan_interval =
1219 wpa_s->conf->sched_scan_interval;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001220 if (wpa_s->sched_scan_interval == 0)
1221 wpa_s->sched_scan_interval = 10;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001222 wpa_s->sched_scan_timeout = max_sched_scan_ssids * 2;
1223 wpa_s->first_sched_scan = 1;
1224 ssid = wpa_s->conf->ssid;
1225 wpa_s->prev_sched_ssid = ssid;
1226 }
1227
1228 if (wildcard) {
1229 wpa_dbg(wpa_s, MSG_DEBUG, "Add wildcard SSID to sched_scan");
1230 params.num_ssids++;
1231 }
1232
1233 while (ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07001234 if (wpas_network_disabled(wpa_s, ssid))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001235 goto next;
1236
1237 if (params.num_filter_ssids < wpa_s->max_match_sets &&
1238 params.filter_ssids && ssid->ssid && ssid->ssid_len) {
1239 wpa_dbg(wpa_s, MSG_DEBUG, "add to filter ssid: %s",
1240 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
1241 os_memcpy(params.filter_ssids[params.num_filter_ssids].ssid,
1242 ssid->ssid, ssid->ssid_len);
1243 params.filter_ssids[params.num_filter_ssids].ssid_len =
1244 ssid->ssid_len;
1245 params.num_filter_ssids++;
1246 } else if (params.filter_ssids && ssid->ssid && ssid->ssid_len)
1247 {
1248 wpa_dbg(wpa_s, MSG_DEBUG, "Not enough room for SSID "
1249 "filter for sched_scan - drop filter");
1250 os_free(params.filter_ssids);
1251 params.filter_ssids = NULL;
1252 params.num_filter_ssids = 0;
1253 }
1254
1255 if (ssid->scan_ssid && ssid->ssid && ssid->ssid_len) {
1256 if (params.num_ssids == max_sched_scan_ssids)
1257 break; /* only room for broadcast SSID */
1258 wpa_dbg(wpa_s, MSG_DEBUG,
1259 "add to active scan ssid: %s",
1260 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
1261 params.ssids[params.num_ssids].ssid =
1262 ssid->ssid;
1263 params.ssids[params.num_ssids].ssid_len =
1264 ssid->ssid_len;
1265 params.num_ssids++;
1266 if (params.num_ssids >= max_sched_scan_ssids) {
1267 wpa_s->prev_sched_ssid = ssid;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001268 do {
1269 ssid = ssid->next;
1270 } while (ssid &&
1271 (wpas_network_disabled(wpa_s, ssid) ||
1272 !ssid->scan_ssid));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001273 break;
1274 }
1275 }
1276
1277 next:
1278 wpa_s->prev_sched_ssid = ssid;
1279 ssid = ssid->next;
1280 }
1281
1282 if (params.num_filter_ssids == 0) {
1283 os_free(params.filter_ssids);
1284 params.filter_ssids = NULL;
1285 }
1286
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001287 extra_ie = wpa_supplicant_extra_ies(wpa_s);
1288 if (extra_ie) {
1289 params.extra_ies = wpabuf_head(extra_ie);
1290 params.extra_ies_len = wpabuf_len(extra_ie);
1291 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001292
Dmitry Shmidt18463232014-01-24 12:29:41 -08001293 if (wpa_s->conf->filter_rssi)
1294 params.filter_rssi = wpa_s->conf->filter_rssi;
1295
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001296 /* See if user specified frequencies. If so, scan only those. */
1297 if (wpa_s->conf->freq_list && !params.freqs) {
1298 wpa_dbg(wpa_s, MSG_DEBUG,
1299 "Optimize scan based on conf->freq_list");
1300 int_array_concat(&params.freqs, wpa_s->conf->freq_list);
1301 }
1302
Dmitry Shmidt04949592012-07-19 12:16:46 -07001303 scan_params = &params;
1304
1305scan:
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001306 if (ssid || !wpa_s->first_sched_scan) {
1307 wpa_dbg(wpa_s, MSG_DEBUG,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001308 "Starting sched scan: interval %d timeout %d",
1309 wpa_s->sched_scan_interval, wpa_s->sched_scan_timeout);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001310 } else {
1311 wpa_dbg(wpa_s, MSG_DEBUG,
1312 "Starting sched scan: interval %d (no timeout)",
1313 wpa_s->sched_scan_interval);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001314 }
1315
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001316 wpa_setband_scan_freqs(wpa_s, scan_params);
1317
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001318 if (wpa_s->mac_addr_rand_enable & MAC_ADDR_RAND_SCHED_SCAN) {
1319 params.mac_addr_rand = 1;
1320 if (wpa_s->mac_addr_sched_scan) {
1321 params.mac_addr = wpa_s->mac_addr_sched_scan;
1322 params.mac_addr_mask = wpa_s->mac_addr_sched_scan +
1323 ETH_ALEN;
1324 }
1325 }
1326
Dmitry Shmidt04949592012-07-19 12:16:46 -07001327 ret = wpa_supplicant_start_sched_scan(wpa_s, scan_params,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001328 wpa_s->sched_scan_interval);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001329 wpabuf_free(extra_ie);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001330 os_free(params.filter_ssids);
1331 if (ret) {
1332 wpa_msg(wpa_s, MSG_WARNING, "Failed to initiate sched scan");
1333 if (prev_state != wpa_s->wpa_state)
1334 wpa_supplicant_set_state(wpa_s, prev_state);
1335 return ret;
1336 }
1337
1338 /* If we have more SSIDs to scan, add a timeout so we scan them too */
1339 if (ssid || !wpa_s->first_sched_scan) {
1340 wpa_s->sched_scan_timed_out = 0;
1341 eloop_register_timeout(wpa_s->sched_scan_timeout, 0,
1342 wpa_supplicant_sched_scan_timeout,
1343 wpa_s, NULL);
1344 wpa_s->first_sched_scan = 0;
1345 wpa_s->sched_scan_timeout /= 2;
1346 wpa_s->sched_scan_interval *= 2;
Dmitry Shmidt2f023192013-03-12 12:44:17 -07001347 if (wpa_s->sched_scan_timeout < wpa_s->sched_scan_interval) {
1348 wpa_s->sched_scan_interval = 10;
1349 wpa_s->sched_scan_timeout = max_sched_scan_ssids * 2;
1350 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001351 }
1352
Dmitry Shmidt2f023192013-03-12 12:44:17 -07001353 /* If there is no more ssids, start next time from the beginning */
1354 if (!ssid)
1355 wpa_s->prev_sched_ssid = NULL;
1356
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001357 return 0;
1358}
1359
1360
1361/**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001362 * wpa_supplicant_cancel_scan - Cancel a scheduled scan request
1363 * @wpa_s: Pointer to wpa_supplicant data
1364 *
1365 * This function is used to cancel a scan request scheduled with
1366 * wpa_supplicant_req_scan().
1367 */
1368void wpa_supplicant_cancel_scan(struct wpa_supplicant *wpa_s)
1369{
1370 wpa_dbg(wpa_s, MSG_DEBUG, "Cancelling scan request");
1371 eloop_cancel_timeout(wpa_supplicant_scan, wpa_s, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001372}
1373
1374
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001375/**
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07001376 * wpa_supplicant_cancel_delayed_sched_scan - Stop a delayed scheduled scan
1377 * @wpa_s: Pointer to wpa_supplicant data
1378 *
1379 * This function is used to stop a delayed scheduled scan.
1380 */
1381void wpa_supplicant_cancel_delayed_sched_scan(struct wpa_supplicant *wpa_s)
1382{
1383 if (!wpa_s->sched_scan_supported)
1384 return;
1385
1386 wpa_dbg(wpa_s, MSG_DEBUG, "Cancelling delayed sched scan");
1387 eloop_cancel_timeout(wpa_supplicant_delayed_sched_scan_timeout,
1388 wpa_s, NULL);
1389}
1390
1391
1392/**
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001393 * wpa_supplicant_cancel_sched_scan - Stop running scheduled scans
1394 * @wpa_s: Pointer to wpa_supplicant data
1395 *
1396 * This function is used to stop a periodic scheduled scan.
1397 */
1398void wpa_supplicant_cancel_sched_scan(struct wpa_supplicant *wpa_s)
1399{
1400 if (!wpa_s->sched_scanning)
1401 return;
1402
1403 wpa_dbg(wpa_s, MSG_DEBUG, "Cancelling sched scan");
1404 eloop_cancel_timeout(wpa_supplicant_sched_scan_timeout, wpa_s, NULL);
1405 wpa_supplicant_stop_sched_scan(wpa_s);
1406}
1407
1408
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001409/**
1410 * wpa_supplicant_notify_scanning - Indicate possible scan state change
1411 * @wpa_s: Pointer to wpa_supplicant data
1412 * @scanning: Whether scanning is currently in progress
1413 *
1414 * This function is to generate scanning notifycations. It is called whenever
1415 * there may have been a change in scanning (scan started, completed, stopped).
1416 * wpas_notify_scanning() is called whenever the scanning state changed from the
1417 * previously notified state.
1418 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001419void wpa_supplicant_notify_scanning(struct wpa_supplicant *wpa_s,
1420 int scanning)
1421{
1422 if (wpa_s->scanning != scanning) {
1423 wpa_s->scanning = scanning;
1424 wpas_notify_scanning(wpa_s);
1425 }
1426}
1427
1428
1429static int wpa_scan_get_max_rate(const struct wpa_scan_res *res)
1430{
1431 int rate = 0;
1432 const u8 *ie;
1433 int i;
1434
1435 ie = wpa_scan_get_ie(res, WLAN_EID_SUPP_RATES);
1436 for (i = 0; ie && i < ie[1]; i++) {
1437 if ((ie[i + 2] & 0x7f) > rate)
1438 rate = ie[i + 2] & 0x7f;
1439 }
1440
1441 ie = wpa_scan_get_ie(res, WLAN_EID_EXT_SUPP_RATES);
1442 for (i = 0; ie && i < ie[1]; i++) {
1443 if ((ie[i + 2] & 0x7f) > rate)
1444 rate = ie[i + 2] & 0x7f;
1445 }
1446
1447 return rate;
1448}
1449
1450
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001451/**
1452 * wpa_scan_get_ie - Fetch a specified information element from a scan result
1453 * @res: Scan result entry
1454 * @ie: Information element identitifier (WLAN_EID_*)
1455 * Returns: Pointer to the information element (id field) or %NULL if not found
1456 *
1457 * This function returns the first matching information element in the scan
1458 * result.
1459 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001460const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie)
1461{
1462 const u8 *end, *pos;
1463
1464 pos = (const u8 *) (res + 1);
1465 end = pos + res->ie_len;
1466
1467 while (pos + 1 < end) {
1468 if (pos + 2 + pos[1] > end)
1469 break;
1470 if (pos[0] == ie)
1471 return pos;
1472 pos += 2 + pos[1];
1473 }
1474
1475 return NULL;
1476}
1477
1478
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001479/**
1480 * wpa_scan_get_vendor_ie - Fetch vendor information element from a scan result
1481 * @res: Scan result entry
1482 * @vendor_type: Vendor type (four octets starting the IE payload)
1483 * Returns: Pointer to the information element (id field) or %NULL if not found
1484 *
1485 * This function returns the first matching information element in the scan
1486 * result.
1487 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001488const u8 * wpa_scan_get_vendor_ie(const struct wpa_scan_res *res,
1489 u32 vendor_type)
1490{
1491 const u8 *end, *pos;
1492
1493 pos = (const u8 *) (res + 1);
1494 end = pos + res->ie_len;
1495
1496 while (pos + 1 < end) {
1497 if (pos + 2 + pos[1] > end)
1498 break;
1499 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
1500 vendor_type == WPA_GET_BE32(&pos[2]))
1501 return pos;
1502 pos += 2 + pos[1];
1503 }
1504
1505 return NULL;
1506}
1507
1508
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001509/**
Dmitry Shmidt96571392013-10-14 12:54:46 -07001510 * wpa_scan_get_vendor_ie_beacon - Fetch vendor information from a scan result
1511 * @res: Scan result entry
1512 * @vendor_type: Vendor type (four octets starting the IE payload)
1513 * Returns: Pointer to the information element (id field) or %NULL if not found
1514 *
1515 * This function returns the first matching information element in the scan
1516 * result.
1517 *
1518 * This function is like wpa_scan_get_vendor_ie(), but uses IE buffer only
1519 * from Beacon frames instead of either Beacon or Probe Response frames.
1520 */
1521const u8 * wpa_scan_get_vendor_ie_beacon(const struct wpa_scan_res *res,
1522 u32 vendor_type)
1523{
1524 const u8 *end, *pos;
1525
1526 if (res->beacon_ie_len == 0)
1527 return NULL;
1528
1529 pos = (const u8 *) (res + 1);
1530 pos += res->ie_len;
1531 end = pos + res->beacon_ie_len;
1532
1533 while (pos + 1 < end) {
1534 if (pos + 2 + pos[1] > end)
1535 break;
1536 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
1537 vendor_type == WPA_GET_BE32(&pos[2]))
1538 return pos;
1539 pos += 2 + pos[1];
1540 }
1541
1542 return NULL;
1543}
1544
1545
1546/**
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001547 * wpa_scan_get_vendor_ie_multi - Fetch vendor IE data from a scan result
1548 * @res: Scan result entry
1549 * @vendor_type: Vendor type (four octets starting the IE payload)
1550 * Returns: Pointer to the information element payload or %NULL if not found
1551 *
1552 * This function returns concatenated payload of possibly fragmented vendor
1553 * specific information elements in the scan result. The caller is responsible
1554 * for freeing the returned buffer.
1555 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001556struct wpabuf * wpa_scan_get_vendor_ie_multi(const struct wpa_scan_res *res,
1557 u32 vendor_type)
1558{
1559 struct wpabuf *buf;
1560 const u8 *end, *pos;
1561
1562 buf = wpabuf_alloc(res->ie_len);
1563 if (buf == NULL)
1564 return NULL;
1565
1566 pos = (const u8 *) (res + 1);
1567 end = pos + res->ie_len;
1568
1569 while (pos + 1 < end) {
1570 if (pos + 2 + pos[1] > end)
1571 break;
1572 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
1573 vendor_type == WPA_GET_BE32(&pos[2]))
1574 wpabuf_put_data(buf, pos + 2 + 4, pos[1] - 4);
1575 pos += 2 + pos[1];
1576 }
1577
1578 if (wpabuf_len(buf) == 0) {
1579 wpabuf_free(buf);
1580 buf = NULL;
1581 }
1582
1583 return buf;
1584}
1585
1586
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001587/*
1588 * Channels with a great SNR can operate at full rate. What is a great SNR?
1589 * This doc https://supportforums.cisco.com/docs/DOC-12954 says, "the general
1590 * rule of thumb is that any SNR above 20 is good." This one
1591 * http://www.cisco.com/en/US/tech/tk722/tk809/technologies_q_and_a_item09186a00805e9a96.shtml#qa23
1592 * recommends 25 as a minimum SNR for 54 Mbps data rate. 30 is chosen here as a
1593 * conservative value.
1594 */
1595#define GREAT_SNR 30
1596
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001597#define IS_5GHZ(n) (n > 4000)
1598
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001599/* Compare function for sorting scan results. Return >0 if @b is considered
1600 * better. */
1601static int wpa_scan_result_compar(const void *a, const void *b)
1602{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001603#define MIN(a,b) a < b ? a : b
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001604 struct wpa_scan_res **_wa = (void *) a;
1605 struct wpa_scan_res **_wb = (void *) b;
1606 struct wpa_scan_res *wa = *_wa;
1607 struct wpa_scan_res *wb = *_wb;
1608 int wpa_a, wpa_b, maxrate_a, maxrate_b;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001609 int snr_a, snr_b;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001610
1611 /* WPA/WPA2 support preferred */
1612 wpa_a = wpa_scan_get_vendor_ie(wa, WPA_IE_VENDOR_TYPE) != NULL ||
1613 wpa_scan_get_ie(wa, WLAN_EID_RSN) != NULL;
1614 wpa_b = wpa_scan_get_vendor_ie(wb, WPA_IE_VENDOR_TYPE) != NULL ||
1615 wpa_scan_get_ie(wb, WLAN_EID_RSN) != NULL;
1616
1617 if (wpa_b && !wpa_a)
1618 return 1;
1619 if (!wpa_b && wpa_a)
1620 return -1;
1621
1622 /* privacy support preferred */
1623 if ((wa->caps & IEEE80211_CAP_PRIVACY) == 0 &&
1624 (wb->caps & IEEE80211_CAP_PRIVACY))
1625 return 1;
1626 if ((wa->caps & IEEE80211_CAP_PRIVACY) &&
1627 (wb->caps & IEEE80211_CAP_PRIVACY) == 0)
1628 return -1;
1629
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001630 if (wa->flags & wb->flags & WPA_SCAN_LEVEL_DBM) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001631 snr_a = MIN(wa->level - wa->noise, GREAT_SNR);
1632 snr_b = MIN(wb->level - wb->noise, GREAT_SNR);
1633 } else {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001634 /* Level is not in dBm, so we can't calculate
1635 * SNR. Just use raw level (units unknown). */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001636 snr_a = wa->level;
1637 snr_b = wb->level;
1638 }
1639
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001640 /* if SNR is close, decide by max rate or frequency band */
1641 if ((snr_a && snr_b && abs(snr_b - snr_a) < 5) ||
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001642 (wa->qual && wb->qual && abs(wb->qual - wa->qual) < 10)) {
1643 maxrate_a = wpa_scan_get_max_rate(wa);
1644 maxrate_b = wpa_scan_get_max_rate(wb);
1645 if (maxrate_a != maxrate_b)
1646 return maxrate_b - maxrate_a;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001647 if (IS_5GHZ(wa->freq) ^ IS_5GHZ(wb->freq))
1648 return IS_5GHZ(wa->freq) ? -1 : 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001649 }
1650
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001651 /* all things being equal, use SNR; if SNRs are
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001652 * identical, use quality values since some drivers may only report
1653 * that value and leave the signal level zero */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001654 if (snr_b == snr_a)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001655 return wb->qual - wa->qual;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001656 return snr_b - snr_a;
1657#undef MIN
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001658}
1659
1660
1661#ifdef CONFIG_WPS
1662/* Compare function for sorting scan results when searching a WPS AP for
1663 * provisioning. Return >0 if @b is considered better. */
1664static int wpa_scan_result_wps_compar(const void *a, const void *b)
1665{
1666 struct wpa_scan_res **_wa = (void *) a;
1667 struct wpa_scan_res **_wb = (void *) b;
1668 struct wpa_scan_res *wa = *_wa;
1669 struct wpa_scan_res *wb = *_wb;
1670 int uses_wps_a, uses_wps_b;
1671 struct wpabuf *wps_a, *wps_b;
1672 int res;
1673
1674 /* Optimization - check WPS IE existence before allocated memory and
1675 * doing full reassembly. */
1676 uses_wps_a = wpa_scan_get_vendor_ie(wa, WPS_IE_VENDOR_TYPE) != NULL;
1677 uses_wps_b = wpa_scan_get_vendor_ie(wb, WPS_IE_VENDOR_TYPE) != NULL;
1678 if (uses_wps_a && !uses_wps_b)
1679 return -1;
1680 if (!uses_wps_a && uses_wps_b)
1681 return 1;
1682
1683 if (uses_wps_a && uses_wps_b) {
1684 wps_a = wpa_scan_get_vendor_ie_multi(wa, WPS_IE_VENDOR_TYPE);
1685 wps_b = wpa_scan_get_vendor_ie_multi(wb, WPS_IE_VENDOR_TYPE);
1686 res = wps_ap_priority_compar(wps_a, wps_b);
1687 wpabuf_free(wps_a);
1688 wpabuf_free(wps_b);
1689 if (res)
1690 return res;
1691 }
1692
1693 /*
1694 * Do not use current AP security policy as a sorting criteria during
1695 * WPS provisioning step since the AP may get reconfigured at the
1696 * completion of provisioning.
1697 */
1698
1699 /* all things being equal, use signal level; if signal levels are
1700 * identical, use quality values since some drivers may only report
1701 * that value and leave the signal level zero */
1702 if (wb->level == wa->level)
1703 return wb->qual - wa->qual;
1704 return wb->level - wa->level;
1705}
1706#endif /* CONFIG_WPS */
1707
1708
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001709static void dump_scan_res(struct wpa_scan_results *scan_res)
1710{
1711#ifndef CONFIG_NO_STDOUT_DEBUG
1712 size_t i;
1713
1714 if (scan_res->res == NULL || scan_res->num == 0)
1715 return;
1716
1717 wpa_printf(MSG_EXCESSIVE, "Sorted scan results");
1718
1719 for (i = 0; i < scan_res->num; i++) {
1720 struct wpa_scan_res *r = scan_res->res[i];
Dmitry Shmidt04949592012-07-19 12:16:46 -07001721 u8 *pos;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001722 if (r->flags & WPA_SCAN_LEVEL_DBM) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001723 int snr = r->level - r->noise;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001724 int noise_valid = !(r->flags & WPA_SCAN_NOISE_INVALID);
1725
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001726 wpa_printf(MSG_EXCESSIVE, MACSTR " freq=%d qual=%d "
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001727 "noise=%d%s level=%d snr=%d%s flags=0x%x age=%u",
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001728 MAC2STR(r->bssid), r->freq, r->qual,
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001729 r->noise, noise_valid ? "" : "~", r->level,
1730 snr, snr >= GREAT_SNR ? "*" : "", r->flags,
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001731 r->age);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001732 } else {
1733 wpa_printf(MSG_EXCESSIVE, MACSTR " freq=%d qual=%d "
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001734 "noise=%d level=%d flags=0x%x age=%u",
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001735 MAC2STR(r->bssid), r->freq, r->qual,
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001736 r->noise, r->level, r->flags, r->age);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001737 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001738 pos = (u8 *) (r + 1);
1739 if (r->ie_len)
1740 wpa_hexdump(MSG_EXCESSIVE, "IEs", pos, r->ie_len);
1741 pos += r->ie_len;
1742 if (r->beacon_ie_len)
1743 wpa_hexdump(MSG_EXCESSIVE, "Beacon IEs",
1744 pos, r->beacon_ie_len);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001745 }
1746#endif /* CONFIG_NO_STDOUT_DEBUG */
1747}
1748
1749
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001750/**
1751 * wpa_supplicant_filter_bssid_match - Is the specified BSSID allowed
1752 * @wpa_s: Pointer to wpa_supplicant data
1753 * @bssid: BSSID to check
1754 * Returns: 0 if the BSSID is filtered or 1 if not
1755 *
1756 * This function is used to filter out specific BSSIDs from scan reslts mainly
1757 * for testing purposes (SET bssid_filter ctrl_iface command).
1758 */
Dmitry Shmidt04949592012-07-19 12:16:46 -07001759int wpa_supplicant_filter_bssid_match(struct wpa_supplicant *wpa_s,
1760 const u8 *bssid)
1761{
1762 size_t i;
1763
1764 if (wpa_s->bssid_filter == NULL)
1765 return 1;
1766
1767 for (i = 0; i < wpa_s->bssid_filter_count; i++) {
1768 if (os_memcmp(wpa_s->bssid_filter + i * ETH_ALEN, bssid,
1769 ETH_ALEN) == 0)
1770 return 1;
1771 }
1772
1773 return 0;
1774}
1775
1776
1777static void filter_scan_res(struct wpa_supplicant *wpa_s,
1778 struct wpa_scan_results *res)
1779{
1780 size_t i, j;
1781
1782 if (wpa_s->bssid_filter == NULL)
1783 return;
1784
1785 for (i = 0, j = 0; i < res->num; i++) {
1786 if (wpa_supplicant_filter_bssid_match(wpa_s,
1787 res->res[i]->bssid)) {
1788 res->res[j++] = res->res[i];
1789 } else {
1790 os_free(res->res[i]);
1791 res->res[i] = NULL;
1792 }
1793 }
1794
1795 if (res->num != j) {
1796 wpa_printf(MSG_DEBUG, "Filtered out %d scan results",
1797 (int) (res->num - j));
1798 res->num = j;
1799 }
1800}
1801
1802
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001803/*
1804 * Noise floor values to use when we have signal strength
1805 * measurements, but no noise floor measurments. These values were
1806 * measured in an office environment with many APs.
1807 */
1808#define DEFAULT_NOISE_FLOOR_2GHZ (-89)
1809#define DEFAULT_NOISE_FLOOR_5GHZ (-92)
1810
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001811/**
1812 * wpa_supplicant_get_scan_results - Get scan results
1813 * @wpa_s: Pointer to wpa_supplicant data
1814 * @info: Information about what was scanned or %NULL if not available
1815 * @new_scan: Whether a new scan was performed
1816 * Returns: Scan results, %NULL on failure
1817 *
1818 * This function request the current scan results from the driver and updates
1819 * the local BSS list wpa_s->bss. The caller is responsible for freeing the
1820 * results with wpa_scan_results_free().
1821 */
1822struct wpa_scan_results *
1823wpa_supplicant_get_scan_results(struct wpa_supplicant *wpa_s,
1824 struct scan_info *info, int new_scan)
1825{
1826 struct wpa_scan_results *scan_res;
1827 size_t i;
1828 int (*compar)(const void *, const void *) = wpa_scan_result_compar;
1829
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001830 scan_res = wpa_drv_get_scan_results2(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001831 if (scan_res == NULL) {
1832 wpa_dbg(wpa_s, MSG_DEBUG, "Failed to get scan results");
1833 return NULL;
1834 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001835 if (scan_res->fetch_time.sec == 0) {
1836 /*
1837 * Make sure we have a valid timestamp if the driver wrapper
1838 * does not set this.
1839 */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001840 os_get_reltime(&scan_res->fetch_time);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001841 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001842 filter_scan_res(wpa_s, scan_res);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001843
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001844 for (i = 0; i < scan_res->num; i++) {
1845 struct wpa_scan_res *scan_res_item = scan_res->res[i];
1846
1847 if (scan_res_item->flags & WPA_SCAN_NOISE_INVALID) {
1848 scan_res_item->noise =
1849 IS_5GHZ(scan_res_item->freq) ?
1850 DEFAULT_NOISE_FLOOR_5GHZ :
1851 DEFAULT_NOISE_FLOOR_2GHZ;
1852 }
1853 }
1854
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001855#ifdef CONFIG_WPS
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001856 if (wpas_wps_searching(wpa_s)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001857 wpa_dbg(wpa_s, MSG_DEBUG, "WPS: Order scan results with WPS "
1858 "provisioning rules");
1859 compar = wpa_scan_result_wps_compar;
1860 }
1861#endif /* CONFIG_WPS */
1862
1863 qsort(scan_res->res, scan_res->num, sizeof(struct wpa_scan_res *),
1864 compar);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001865 dump_scan_res(scan_res);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001866
1867 wpa_bss_update_start(wpa_s);
1868 for (i = 0; i < scan_res->num; i++)
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001869 wpa_bss_update_scan_res(wpa_s, scan_res->res[i],
1870 &scan_res->fetch_time);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001871 wpa_bss_update_end(wpa_s, info, new_scan);
1872
1873 return scan_res;
1874}
1875
1876
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001877/**
1878 * wpa_supplicant_update_scan_results - Update scan results from the driver
1879 * @wpa_s: Pointer to wpa_supplicant data
1880 * Returns: 0 on success, -1 on failure
1881 *
1882 * This function updates the BSS table within wpa_supplicant based on the
1883 * currently available scan results from the driver without requesting a new
1884 * scan. This is used in cases where the driver indicates an association
1885 * (including roaming within ESS) and wpa_supplicant does not yet have the
1886 * needed information to complete the connection (e.g., to perform validation
1887 * steps in 4-way handshake).
1888 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001889int wpa_supplicant_update_scan_results(struct wpa_supplicant *wpa_s)
1890{
1891 struct wpa_scan_results *scan_res;
1892 scan_res = wpa_supplicant_get_scan_results(wpa_s, NULL, 0);
1893 if (scan_res == NULL)
1894 return -1;
1895 wpa_scan_results_free(scan_res);
1896
1897 return 0;
1898}
Dmitry Shmidt3a787e62013-01-17 10:32:35 -08001899
1900
1901/**
1902 * scan_only_handler - Reports scan results
1903 */
1904void scan_only_handler(struct wpa_supplicant *wpa_s,
1905 struct wpa_scan_results *scan_res)
1906{
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08001907 wpa_dbg(wpa_s, MSG_DEBUG, "Scan-only results received");
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001908 if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
1909 wpa_s->manual_scan_use_id && wpa_s->own_scan_running) {
1910 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS "id=%u",
1911 wpa_s->manual_scan_id);
1912 wpa_s->manual_scan_use_id = 0;
1913 } else {
1914 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS);
1915 }
Dmitry Shmidt3a787e62013-01-17 10:32:35 -08001916 wpas_notify_scan_results(wpa_s);
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08001917 wpas_notify_scan_done(wpa_s, 1);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001918 if (wpa_s->scan_work) {
1919 struct wpa_radio_work *work = wpa_s->scan_work;
1920 wpa_s->scan_work = NULL;
1921 radio_work_done(work);
1922 }
Dmitry Shmidt3a787e62013-01-17 10:32:35 -08001923}
Dmitry Shmidt37d4d6a2013-03-18 13:09:42 -07001924
1925
1926int wpas_scan_scheduled(struct wpa_supplicant *wpa_s)
1927{
1928 return eloop_is_timeout_registered(wpa_supplicant_scan, wpa_s, NULL);
1929}
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001930
1931
1932struct wpa_driver_scan_params *
1933wpa_scan_clone_params(const struct wpa_driver_scan_params *src)
1934{
1935 struct wpa_driver_scan_params *params;
1936 size_t i;
1937 u8 *n;
1938
1939 params = os_zalloc(sizeof(*params));
1940 if (params == NULL)
1941 return NULL;
1942
1943 for (i = 0; i < src->num_ssids; i++) {
1944 if (src->ssids[i].ssid) {
1945 n = os_malloc(src->ssids[i].ssid_len);
1946 if (n == NULL)
1947 goto failed;
1948 os_memcpy(n, src->ssids[i].ssid,
1949 src->ssids[i].ssid_len);
1950 params->ssids[i].ssid = n;
1951 params->ssids[i].ssid_len = src->ssids[i].ssid_len;
1952 }
1953 }
1954 params->num_ssids = src->num_ssids;
1955
1956 if (src->extra_ies) {
1957 n = os_malloc(src->extra_ies_len);
1958 if (n == NULL)
1959 goto failed;
1960 os_memcpy(n, src->extra_ies, src->extra_ies_len);
1961 params->extra_ies = n;
1962 params->extra_ies_len = src->extra_ies_len;
1963 }
1964
1965 if (src->freqs) {
1966 int len = int_array_len(src->freqs);
1967 params->freqs = os_malloc((len + 1) * sizeof(int));
1968 if (params->freqs == NULL)
1969 goto failed;
1970 os_memcpy(params->freqs, src->freqs, (len + 1) * sizeof(int));
1971 }
1972
1973 if (src->filter_ssids) {
Dmitry Shmidt97672262014-02-03 13:02:54 -08001974 params->filter_ssids = os_malloc(sizeof(*params->filter_ssids) *
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001975 src->num_filter_ssids);
1976 if (params->filter_ssids == NULL)
1977 goto failed;
1978 os_memcpy(params->filter_ssids, src->filter_ssids,
Dmitry Shmidt97672262014-02-03 13:02:54 -08001979 sizeof(*params->filter_ssids) *
1980 src->num_filter_ssids);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001981 params->num_filter_ssids = src->num_filter_ssids;
1982 }
1983
1984 params->filter_rssi = src->filter_rssi;
1985 params->p2p_probe = src->p2p_probe;
1986 params->only_new_results = src->only_new_results;
Dmitry Shmidt2271d3f2014-06-23 12:16:31 -07001987 params->low_priority = src->low_priority;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001988
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001989 if (src->mac_addr_rand) {
1990 params->mac_addr_rand = src->mac_addr_rand;
1991
1992 if (src->mac_addr && src->mac_addr_mask) {
1993 u8 *mac_addr;
1994
1995 mac_addr = os_malloc(2 * ETH_ALEN);
1996 if (!mac_addr)
1997 goto failed;
1998
1999 os_memcpy(mac_addr, src->mac_addr, ETH_ALEN);
2000 os_memcpy(mac_addr + ETH_ALEN, src->mac_addr_mask,
2001 ETH_ALEN);
2002 params->mac_addr = mac_addr;
2003 params->mac_addr_mask = mac_addr + ETH_ALEN;
2004 }
2005 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002006 return params;
2007
2008failed:
2009 wpa_scan_free_params(params);
2010 return NULL;
2011}
2012
2013
2014void wpa_scan_free_params(struct wpa_driver_scan_params *params)
2015{
2016 size_t i;
2017
2018 if (params == NULL)
2019 return;
2020
2021 for (i = 0; i < params->num_ssids; i++)
2022 os_free((u8 *) params->ssids[i].ssid);
2023 os_free((u8 *) params->extra_ies);
2024 os_free(params->freqs);
2025 os_free(params->filter_ssids);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002026
2027 /*
2028 * Note: params->mac_addr_mask points to same memory allocation and
2029 * must not be freed separately.
2030 */
2031 os_free((u8 *) params->mac_addr);
2032
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002033 os_free(params);
2034}
Dmitry Shmidt98660862014-03-11 17:26:21 -07002035
2036
2037int wpas_start_pno(struct wpa_supplicant *wpa_s)
2038{
2039 int ret, interval;
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -07002040 size_t i, num_ssid, num_match_ssid;
Dmitry Shmidt98660862014-03-11 17:26:21 -07002041 struct wpa_ssid *ssid;
2042 struct wpa_driver_scan_params params;
2043
2044 if (!wpa_s->sched_scan_supported)
2045 return -1;
2046
2047 if (wpa_s->pno || wpa_s->pno_sched_pending)
2048 return 0;
2049
2050 if ((wpa_s->wpa_state > WPA_SCANNING) &&
2051 (wpa_s->wpa_state <= WPA_COMPLETED)) {
2052 wpa_printf(MSG_ERROR, "PNO: In assoc process");
2053 return -EAGAIN;
2054 }
2055
2056 if (wpa_s->wpa_state == WPA_SCANNING) {
2057 wpa_supplicant_cancel_scan(wpa_s);
2058 if (wpa_s->sched_scanning) {
2059 wpa_printf(MSG_DEBUG, "Schedule PNO on completion of "
2060 "ongoing sched scan");
2061 wpa_supplicant_cancel_sched_scan(wpa_s);
2062 wpa_s->pno_sched_pending = 1;
2063 return 0;
2064 }
2065 }
2066
2067 os_memset(&params, 0, sizeof(params));
2068
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -07002069 num_ssid = num_match_ssid = 0;
Dmitry Shmidt98660862014-03-11 17:26:21 -07002070 ssid = wpa_s->conf->ssid;
2071 while (ssid) {
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -07002072 if (!wpas_network_disabled(wpa_s, ssid)) {
2073 num_match_ssid++;
2074 if (ssid->scan_ssid)
2075 num_ssid++;
2076 }
Dmitry Shmidt98660862014-03-11 17:26:21 -07002077 ssid = ssid->next;
2078 }
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -07002079
2080 if (num_match_ssid == 0) {
2081 wpa_printf(MSG_DEBUG, "PNO: No configured SSIDs");
2082 return -1;
2083 }
2084
2085 if (num_match_ssid > num_ssid) {
2086 params.num_ssids++; /* wildcard */
2087 num_ssid++;
2088 }
2089
Dmitry Shmidt98660862014-03-11 17:26:21 -07002090 if (num_ssid > WPAS_MAX_SCAN_SSIDS) {
2091 wpa_printf(MSG_DEBUG, "PNO: Use only the first %u SSIDs from "
2092 "%u", WPAS_MAX_SCAN_SSIDS, (unsigned int) num_ssid);
2093 num_ssid = WPAS_MAX_SCAN_SSIDS;
2094 }
2095
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -07002096 if (num_match_ssid > wpa_s->max_match_sets) {
2097 num_match_ssid = wpa_s->max_match_sets;
2098 wpa_dbg(wpa_s, MSG_DEBUG, "PNO: Too many SSIDs to match");
Dmitry Shmidt98660862014-03-11 17:26:21 -07002099 }
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -07002100 params.filter_ssids = os_calloc(num_match_ssid,
2101 sizeof(struct wpa_driver_scan_filter));
Dmitry Shmidt98660862014-03-11 17:26:21 -07002102 if (params.filter_ssids == NULL)
2103 return -1;
2104 i = 0;
2105 ssid = wpa_s->conf->ssid;
2106 while (ssid) {
2107 if (!wpas_network_disabled(wpa_s, ssid)) {
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -07002108 if (ssid->scan_ssid && params.num_ssids < num_ssid) {
2109 params.ssids[params.num_ssids].ssid =
2110 ssid->ssid;
2111 params.ssids[params.num_ssids].ssid_len =
2112 ssid->ssid_len;
2113 params.num_ssids++;
2114 }
Dmitry Shmidt98660862014-03-11 17:26:21 -07002115 os_memcpy(params.filter_ssids[i].ssid, ssid->ssid,
2116 ssid->ssid_len);
2117 params.filter_ssids[i].ssid_len = ssid->ssid_len;
2118 params.num_filter_ssids++;
2119 i++;
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -07002120 if (i == num_match_ssid)
Dmitry Shmidt98660862014-03-11 17:26:21 -07002121 break;
2122 }
2123 ssid = ssid->next;
2124 }
2125
2126 if (wpa_s->conf->filter_rssi)
2127 params.filter_rssi = wpa_s->conf->filter_rssi;
2128
2129 interval = wpa_s->conf->sched_scan_interval ?
2130 wpa_s->conf->sched_scan_interval : 10;
2131
Dmitry Shmidtd11f0192014-03-24 12:09:47 -07002132 if (params.freqs == NULL && wpa_s->manual_sched_scan_freqs) {
2133 wpa_dbg(wpa_s, MSG_DEBUG, "Limit sched scan to specified channels");
2134 params.freqs = wpa_s->manual_sched_scan_freqs;
2135 }
2136
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002137 if (wpa_s->mac_addr_rand_enable & MAC_ADDR_RAND_PNO) {
2138 params.mac_addr_rand = 1;
2139 if (wpa_s->mac_addr_pno) {
2140 params.mac_addr = wpa_s->mac_addr_pno;
2141 params.mac_addr_mask = wpa_s->mac_addr_pno + ETH_ALEN;
2142 }
2143 }
2144
Dmitry Shmidt98660862014-03-11 17:26:21 -07002145 ret = wpa_supplicant_start_sched_scan(wpa_s, &params, interval);
2146 os_free(params.filter_ssids);
2147 if (ret == 0)
2148 wpa_s->pno = 1;
2149 else
2150 wpa_msg(wpa_s, MSG_ERROR, "Failed to schedule PNO");
2151 return ret;
2152}
2153
2154
2155int wpas_stop_pno(struct wpa_supplicant *wpa_s)
2156{
2157 int ret = 0;
2158
2159 if (!wpa_s->pno)
2160 return 0;
2161
2162 ret = wpa_supplicant_stop_sched_scan(wpa_s);
2163
2164 wpa_s->pno = 0;
2165 wpa_s->pno_sched_pending = 0;
2166
2167 if (wpa_s->wpa_state == WPA_SCANNING)
2168 wpa_supplicant_req_scan(wpa_s, 0, 0);
2169
2170 return ret;
2171}
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002172
2173
2174void wpas_mac_addr_rand_scan_clear(struct wpa_supplicant *wpa_s,
2175 unsigned int type)
2176{
2177 type &= MAC_ADDR_RAND_ALL;
2178 wpa_s->mac_addr_rand_enable &= ~type;
2179
2180 if (type & MAC_ADDR_RAND_SCAN) {
2181 os_free(wpa_s->mac_addr_scan);
2182 wpa_s->mac_addr_scan = NULL;
2183 }
2184
2185 if (type & MAC_ADDR_RAND_SCHED_SCAN) {
2186 os_free(wpa_s->mac_addr_sched_scan);
2187 wpa_s->mac_addr_sched_scan = NULL;
2188 }
2189
2190 if (type & MAC_ADDR_RAND_PNO) {
2191 os_free(wpa_s->mac_addr_pno);
2192 wpa_s->mac_addr_pno = NULL;
2193 }
2194}
2195
2196
2197int wpas_mac_addr_rand_scan_set(struct wpa_supplicant *wpa_s,
2198 unsigned int type, const u8 *addr,
2199 const u8 *mask)
2200{
2201 u8 *tmp = NULL;
2202
2203 wpas_mac_addr_rand_scan_clear(wpa_s, type);
2204
2205 if (addr) {
2206 tmp = os_malloc(2 * ETH_ALEN);
2207 if (!tmp)
2208 return -1;
2209 os_memcpy(tmp, addr, ETH_ALEN);
2210 os_memcpy(tmp + ETH_ALEN, mask, ETH_ALEN);
2211 }
2212
2213 if (type == MAC_ADDR_RAND_SCAN) {
2214 wpa_s->mac_addr_scan = tmp;
2215 } else if (type == MAC_ADDR_RAND_SCHED_SCAN) {
2216 wpa_s->mac_addr_sched_scan = tmp;
2217 } else if (type == MAC_ADDR_RAND_PNO) {
2218 wpa_s->mac_addr_pno = tmp;
2219 } else {
2220 wpa_printf(MSG_INFO,
2221 "scan: Invalid MAC randomization type=0x%x",
2222 type);
2223 os_free(tmp);
2224 return -1;
2225 }
2226
2227 wpa_s->mac_addr_rand_enable |= type;
2228 return 0;
2229}