scan.c 46 KB

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