scan.c 42 KB

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