scan.c 43 KB

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