scan.c 48 KB

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