scan.c 45 KB

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