scan.c 55 KB

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