scan.c 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682
  1. /*
  2. * WPA Supplicant - Scanning
  3. * Copyright (c) 2003-2014, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "utils/eloop.h"
  11. #include "common/ieee802_11_defs.h"
  12. #include "common/wpa_ctrl.h"
  13. #include "config.h"
  14. #include "wpa_supplicant_i.h"
  15. #include "driver_i.h"
  16. #include "wps_supplicant.h"
  17. #include "p2p_supplicant.h"
  18. #include "p2p/p2p.h"
  19. #include "hs20_supplicant.h"
  20. #include "notify.h"
  21. #include "bss.h"
  22. #include "scan.h"
  23. #include "mesh.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. 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 && os_strstr(ssid->eap.phase1, "pbc=1"))
  53. return 2;
  54. }
  55. #ifdef CONFIG_P2P
  56. if (!wpa_s->global->p2p_disabled && wpa_s->global->p2p &&
  57. !wpa_s->conf->p2p_disabled) {
  58. wpa_s->wps->dev.p2p = 1;
  59. if (!wps) {
  60. wps = 1;
  61. *req_type = WPS_REQ_ENROLLEE_INFO;
  62. }
  63. }
  64. #endif /* CONFIG_P2P */
  65. return wps;
  66. }
  67. #endif /* CONFIG_WPS */
  68. /**
  69. * wpa_supplicant_enabled_networks - Check whether there are enabled networks
  70. * @wpa_s: Pointer to wpa_supplicant data
  71. * Returns: 0 if no networks are enabled, >0 if networks are enabled
  72. *
  73. * This function is used to figure out whether any networks (or Interworking
  74. * with enabled credentials and auto_interworking) are present in the current
  75. * configuration.
  76. */
  77. int wpa_supplicant_enabled_networks(struct wpa_supplicant *wpa_s)
  78. {
  79. struct wpa_ssid *ssid = wpa_s->conf->ssid;
  80. int count = 0, disabled = 0;
  81. if (wpa_s->p2p_mgmt)
  82. return 0; /* no normal network profiles on p2p_mgmt interface */
  83. while (ssid) {
  84. if (!wpas_network_disabled(wpa_s, ssid))
  85. count++;
  86. else
  87. disabled++;
  88. ssid = ssid->next;
  89. }
  90. if (wpa_s->conf->cred && wpa_s->conf->interworking &&
  91. wpa_s->conf->auto_interworking)
  92. count++;
  93. if (count == 0 && disabled > 0) {
  94. wpa_dbg(wpa_s, MSG_DEBUG, "No enabled networks (%d disabled "
  95. "networks)", disabled);
  96. }
  97. return count;
  98. }
  99. static void wpa_supplicant_assoc_try(struct wpa_supplicant *wpa_s,
  100. struct wpa_ssid *ssid)
  101. {
  102. while (ssid) {
  103. if (!wpas_network_disabled(wpa_s, ssid))
  104. break;
  105. ssid = ssid->next;
  106. }
  107. /* ap_scan=2 mode - try to associate with each SSID. */
  108. if (ssid == NULL) {
  109. wpa_dbg(wpa_s, MSG_DEBUG, "wpa_supplicant_assoc_try: Reached "
  110. "end of scan list - go back to beginning");
  111. wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
  112. wpa_supplicant_req_scan(wpa_s, 0, 0);
  113. return;
  114. }
  115. if (ssid->next) {
  116. /* Continue from the next SSID on the next attempt. */
  117. wpa_s->prev_scan_ssid = ssid;
  118. } else {
  119. /* Start from the beginning of the SSID list. */
  120. wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
  121. }
  122. wpa_supplicant_associate(wpa_s, NULL, ssid);
  123. }
  124. static void wpas_trigger_scan_cb(struct wpa_radio_work *work, int deinit)
  125. {
  126. struct wpa_supplicant *wpa_s = work->wpa_s;
  127. struct wpa_driver_scan_params *params = work->ctx;
  128. int ret;
  129. if (deinit) {
  130. if (!work->started) {
  131. wpa_scan_free_params(params);
  132. return;
  133. }
  134. wpa_supplicant_notify_scanning(wpa_s, 0);
  135. wpas_notify_scan_done(wpa_s, 0);
  136. wpa_s->scan_work = NULL;
  137. return;
  138. }
  139. if (wpas_update_random_addr_disassoc(wpa_s) < 0) {
  140. wpa_msg(wpa_s, MSG_INFO,
  141. "Failed to assign random MAC address for a scan");
  142. wpa_scan_free_params(params);
  143. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_SCAN_FAILED "ret=-1");
  144. radio_work_done(work);
  145. return;
  146. }
  147. wpa_supplicant_notify_scanning(wpa_s, 1);
  148. if (wpa_s->clear_driver_scan_cache) {
  149. wpa_printf(MSG_DEBUG,
  150. "Request driver to clear scan cache due to local BSS flush");
  151. params->only_new_results = 1;
  152. }
  153. ret = wpa_drv_scan(wpa_s, params);
  154. wpa_scan_free_params(params);
  155. work->ctx = NULL;
  156. if (ret) {
  157. int retry = wpa_s->last_scan_req != MANUAL_SCAN_REQ;
  158. if (wpa_s->disconnected)
  159. retry = 0;
  160. wpa_supplicant_notify_scanning(wpa_s, 0);
  161. wpas_notify_scan_done(wpa_s, 0);
  162. if (wpa_s->wpa_state == WPA_SCANNING)
  163. wpa_supplicant_set_state(wpa_s,
  164. wpa_s->scan_prev_wpa_state);
  165. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_SCAN_FAILED "ret=%d%s",
  166. ret, retry ? " retry=1" : "");
  167. radio_work_done(work);
  168. if (retry) {
  169. /* Restore scan_req since we will try to scan again */
  170. wpa_s->scan_req = wpa_s->last_scan_req;
  171. wpa_supplicant_req_scan(wpa_s, 1, 0);
  172. }
  173. return;
  174. }
  175. os_get_reltime(&wpa_s->scan_trigger_time);
  176. wpa_s->scan_runs++;
  177. wpa_s->normal_scans++;
  178. wpa_s->own_scan_requested = 1;
  179. wpa_s->clear_driver_scan_cache = 0;
  180. wpa_s->scan_work = work;
  181. }
  182. /**
  183. * wpa_supplicant_trigger_scan - Request driver to start a scan
  184. * @wpa_s: Pointer to wpa_supplicant data
  185. * @params: Scan parameters
  186. * Returns: 0 on success, -1 on failure
  187. */
  188. int wpa_supplicant_trigger_scan(struct wpa_supplicant *wpa_s,
  189. struct wpa_driver_scan_params *params)
  190. {
  191. struct wpa_driver_scan_params *ctx;
  192. if (wpa_s->scan_work) {
  193. wpa_dbg(wpa_s, MSG_INFO, "Reject scan trigger since one is already pending");
  194. return -1;
  195. }
  196. ctx = wpa_scan_clone_params(params);
  197. if (!ctx ||
  198. radio_add_work(wpa_s, 0, "scan", 0, wpas_trigger_scan_cb, ctx) < 0)
  199. {
  200. wpa_scan_free_params(ctx);
  201. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_SCAN_FAILED "ret=-1");
  202. return -1;
  203. }
  204. return 0;
  205. }
  206. static void
  207. wpa_supplicant_delayed_sched_scan_timeout(void *eloop_ctx, void *timeout_ctx)
  208. {
  209. struct wpa_supplicant *wpa_s = eloop_ctx;
  210. wpa_dbg(wpa_s, MSG_DEBUG, "Starting delayed sched scan");
  211. if (wpa_supplicant_req_sched_scan(wpa_s))
  212. wpa_supplicant_req_scan(wpa_s, 0, 0);
  213. }
  214. static void
  215. wpa_supplicant_sched_scan_timeout(void *eloop_ctx, void *timeout_ctx)
  216. {
  217. struct wpa_supplicant *wpa_s = eloop_ctx;
  218. wpa_dbg(wpa_s, MSG_DEBUG, "Sched scan timeout - stopping it");
  219. wpa_s->sched_scan_timed_out = 1;
  220. wpa_supplicant_cancel_sched_scan(wpa_s);
  221. }
  222. static int
  223. wpa_supplicant_start_sched_scan(struct wpa_supplicant *wpa_s,
  224. struct wpa_driver_scan_params *params)
  225. {
  226. int ret;
  227. wpa_supplicant_notify_scanning(wpa_s, 1);
  228. ret = wpa_drv_sched_scan(wpa_s, params);
  229. if (ret)
  230. wpa_supplicant_notify_scanning(wpa_s, 0);
  231. else
  232. wpa_s->sched_scanning = 1;
  233. return ret;
  234. }
  235. static int wpa_supplicant_stop_sched_scan(struct wpa_supplicant *wpa_s)
  236. {
  237. int ret;
  238. ret = wpa_drv_stop_sched_scan(wpa_s);
  239. if (ret) {
  240. wpa_dbg(wpa_s, MSG_DEBUG, "stopping sched_scan failed!");
  241. /* TODO: what to do if stopping fails? */
  242. return -1;
  243. }
  244. return ret;
  245. }
  246. static struct wpa_driver_scan_filter *
  247. wpa_supplicant_build_filter_ssids(struct wpa_config *conf, size_t *num_ssids)
  248. {
  249. struct wpa_driver_scan_filter *ssids;
  250. struct wpa_ssid *ssid;
  251. size_t count;
  252. *num_ssids = 0;
  253. if (!conf->filter_ssids)
  254. return NULL;
  255. for (count = 0, ssid = conf->ssid; ssid; ssid = ssid->next) {
  256. if (ssid->ssid && ssid->ssid_len)
  257. count++;
  258. }
  259. if (count == 0)
  260. return NULL;
  261. ssids = os_calloc(count, sizeof(struct wpa_driver_scan_filter));
  262. if (ssids == NULL)
  263. return NULL;
  264. for (ssid = conf->ssid; ssid; ssid = ssid->next) {
  265. if (!ssid->ssid || !ssid->ssid_len)
  266. continue;
  267. os_memcpy(ssids[*num_ssids].ssid, ssid->ssid, ssid->ssid_len);
  268. ssids[*num_ssids].ssid_len = ssid->ssid_len;
  269. (*num_ssids)++;
  270. }
  271. return ssids;
  272. }
  273. static void wpa_supplicant_optimize_freqs(
  274. struct wpa_supplicant *wpa_s, struct wpa_driver_scan_params *params)
  275. {
  276. #ifdef CONFIG_P2P
  277. if (params->freqs == NULL && wpa_s->p2p_in_provisioning &&
  278. wpa_s->go_params) {
  279. /* Optimize provisioning state scan based on GO information */
  280. if (wpa_s->p2p_in_provisioning < 5 &&
  281. wpa_s->go_params->freq > 0) {
  282. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Scan only GO "
  283. "preferred frequency %d MHz",
  284. wpa_s->go_params->freq);
  285. params->freqs = os_calloc(2, sizeof(int));
  286. if (params->freqs)
  287. params->freqs[0] = wpa_s->go_params->freq;
  288. } else if (wpa_s->p2p_in_provisioning < 8 &&
  289. wpa_s->go_params->freq_list[0]) {
  290. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Scan only common "
  291. "channels");
  292. int_array_concat(&params->freqs,
  293. wpa_s->go_params->freq_list);
  294. if (params->freqs)
  295. int_array_sort_unique(params->freqs);
  296. }
  297. wpa_s->p2p_in_provisioning++;
  298. }
  299. if (params->freqs == NULL && wpa_s->p2p_in_invitation) {
  300. /*
  301. * Optimize scan based on GO information during persistent
  302. * group reinvocation
  303. */
  304. if (wpa_s->p2p_in_invitation < 5 &&
  305. wpa_s->p2p_invite_go_freq > 0) {
  306. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Scan only GO preferred frequency %d MHz during invitation",
  307. wpa_s->p2p_invite_go_freq);
  308. params->freqs = os_calloc(2, sizeof(int));
  309. if (params->freqs)
  310. params->freqs[0] = wpa_s->p2p_invite_go_freq;
  311. }
  312. wpa_s->p2p_in_invitation++;
  313. if (wpa_s->p2p_in_invitation > 20) {
  314. /*
  315. * This should not really happen since the variable is
  316. * cleared on group removal, but if it does happen, make
  317. * sure we do not get stuck in special invitation scan
  318. * mode.
  319. */
  320. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Clear p2p_in_invitation");
  321. wpa_s->p2p_in_invitation = 0;
  322. }
  323. }
  324. #endif /* CONFIG_P2P */
  325. #ifdef CONFIG_WPS
  326. if (params->freqs == NULL && wpa_s->after_wps && wpa_s->wps_freq) {
  327. /*
  328. * Optimize post-provisioning scan based on channel used
  329. * during provisioning.
  330. */
  331. wpa_dbg(wpa_s, MSG_DEBUG, "WPS: Scan only frequency %u MHz "
  332. "that was used during provisioning", wpa_s->wps_freq);
  333. params->freqs = os_calloc(2, sizeof(int));
  334. if (params->freqs)
  335. params->freqs[0] = wpa_s->wps_freq;
  336. wpa_s->after_wps--;
  337. } else if (wpa_s->after_wps)
  338. wpa_s->after_wps--;
  339. if (params->freqs == NULL && wpa_s->known_wps_freq && wpa_s->wps_freq)
  340. {
  341. /* Optimize provisioning scan based on already known channel */
  342. wpa_dbg(wpa_s, MSG_DEBUG, "WPS: Scan only frequency %u MHz",
  343. wpa_s->wps_freq);
  344. params->freqs = os_calloc(2, sizeof(int));
  345. if (params->freqs)
  346. params->freqs[0] = wpa_s->wps_freq;
  347. wpa_s->known_wps_freq = 0; /* only do this once */
  348. }
  349. #endif /* CONFIG_WPS */
  350. }
  351. #ifdef CONFIG_INTERWORKING
  352. static void wpas_add_interworking_elements(struct wpa_supplicant *wpa_s,
  353. struct wpabuf *buf)
  354. {
  355. wpabuf_put_u8(buf, WLAN_EID_INTERWORKING);
  356. wpabuf_put_u8(buf, is_zero_ether_addr(wpa_s->conf->hessid) ? 1 :
  357. 1 + ETH_ALEN);
  358. wpabuf_put_u8(buf, wpa_s->conf->access_network_type);
  359. /* No Venue Info */
  360. if (!is_zero_ether_addr(wpa_s->conf->hessid))
  361. wpabuf_put_data(buf, wpa_s->conf->hessid, ETH_ALEN);
  362. }
  363. #endif /* CONFIG_INTERWORKING */
  364. static struct wpabuf * wpa_supplicant_extra_ies(struct wpa_supplicant *wpa_s)
  365. {
  366. struct wpabuf *extra_ie = NULL;
  367. u8 ext_capab[18];
  368. int ext_capab_len;
  369. #ifdef CONFIG_WPS
  370. int wps = 0;
  371. enum wps_request_type req_type = WPS_REQ_ENROLLEE_INFO;
  372. #endif /* CONFIG_WPS */
  373. ext_capab_len = wpas_build_ext_capab(wpa_s, ext_capab,
  374. sizeof(ext_capab));
  375. if (ext_capab_len > 0 &&
  376. wpabuf_resize(&extra_ie, ext_capab_len) == 0)
  377. wpabuf_put_data(extra_ie, ext_capab, ext_capab_len);
  378. #ifdef CONFIG_INTERWORKING
  379. if (wpa_s->conf->interworking &&
  380. wpabuf_resize(&extra_ie, 100) == 0)
  381. wpas_add_interworking_elements(wpa_s, extra_ie);
  382. #endif /* CONFIG_INTERWORKING */
  383. #ifdef CONFIG_WPS
  384. wps = wpas_wps_in_use(wpa_s, &req_type);
  385. if (wps) {
  386. struct wpabuf *wps_ie;
  387. wps_ie = wps_build_probe_req_ie(wps == 2 ? DEV_PW_PUSHBUTTON :
  388. DEV_PW_DEFAULT,
  389. &wpa_s->wps->dev,
  390. wpa_s->wps->uuid, req_type,
  391. 0, NULL);
  392. if (wps_ie) {
  393. if (wpabuf_resize(&extra_ie, wpabuf_len(wps_ie)) == 0)
  394. wpabuf_put_buf(extra_ie, wps_ie);
  395. wpabuf_free(wps_ie);
  396. }
  397. }
  398. #ifdef CONFIG_P2P
  399. if (wps) {
  400. size_t ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
  401. if (wpabuf_resize(&extra_ie, ielen) == 0)
  402. wpas_p2p_scan_ie(wpa_s, extra_ie);
  403. }
  404. #endif /* CONFIG_P2P */
  405. wpa_supplicant_mesh_add_scan_ie(wpa_s, &extra_ie);
  406. #endif /* CONFIG_WPS */
  407. #ifdef CONFIG_HS20
  408. if (wpa_s->conf->hs20 && wpabuf_resize(&extra_ie, 7) == 0)
  409. wpas_hs20_add_indication(extra_ie, -1);
  410. #endif /* CONFIG_HS20 */
  411. #ifdef CONFIG_FST
  412. if (wpa_s->fst_ies &&
  413. wpabuf_resize(&extra_ie, wpabuf_len(wpa_s->fst_ies)) == 0)
  414. wpabuf_put_buf(extra_ie, wpa_s->fst_ies);
  415. #endif /* CONFIG_FST */
  416. #ifdef CONFIG_MBO
  417. /* Send cellular capabilities for potential MBO STAs */
  418. if (wpabuf_resize(&extra_ie, 9) == 0)
  419. wpas_mbo_scan_ie(wpa_s, extra_ie);
  420. #endif /* CONFIG_MBO */
  421. if (wpa_s->vendor_elem[VENDOR_ELEM_PROBE_REQ]) {
  422. struct wpabuf *buf = wpa_s->vendor_elem[VENDOR_ELEM_PROBE_REQ];
  423. if (wpabuf_resize(&extra_ie, wpabuf_len(buf)) == 0)
  424. wpabuf_put_buf(extra_ie, buf);
  425. }
  426. return extra_ie;
  427. }
  428. #ifdef CONFIG_P2P
  429. /*
  430. * Check whether there are any enabled networks or credentials that could be
  431. * used for a non-P2P connection.
  432. */
  433. static int non_p2p_network_enabled(struct wpa_supplicant *wpa_s)
  434. {
  435. struct wpa_ssid *ssid;
  436. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  437. if (wpas_network_disabled(wpa_s, ssid))
  438. continue;
  439. if (!ssid->p2p_group)
  440. return 1;
  441. }
  442. if (wpa_s->conf->cred && wpa_s->conf->interworking &&
  443. wpa_s->conf->auto_interworking)
  444. return 1;
  445. return 0;
  446. }
  447. #endif /* CONFIG_P2P */
  448. static void wpa_setband_scan_freqs_list(struct wpa_supplicant *wpa_s,
  449. enum hostapd_hw_mode band,
  450. struct wpa_driver_scan_params *params)
  451. {
  452. /* Include only supported channels for the specified band */
  453. struct hostapd_hw_modes *mode;
  454. int count, i;
  455. mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, band);
  456. if (mode == NULL) {
  457. /* No channels supported in this band - use empty list */
  458. params->freqs = os_zalloc(sizeof(int));
  459. return;
  460. }
  461. params->freqs = os_calloc(mode->num_channels + 1, sizeof(int));
  462. if (params->freqs == NULL)
  463. return;
  464. for (count = 0, i = 0; i < mode->num_channels; i++) {
  465. if (mode->channels[i].flag & HOSTAPD_CHAN_DISABLED)
  466. continue;
  467. params->freqs[count++] = mode->channels[i].freq;
  468. }
  469. }
  470. static void wpa_setband_scan_freqs(struct wpa_supplicant *wpa_s,
  471. struct wpa_driver_scan_params *params)
  472. {
  473. if (wpa_s->hw.modes == NULL)
  474. return; /* unknown what channels the driver supports */
  475. if (params->freqs)
  476. return; /* already using a limited channel set */
  477. if (wpa_s->setband == WPA_SETBAND_5G)
  478. wpa_setband_scan_freqs_list(wpa_s, HOSTAPD_MODE_IEEE80211A,
  479. params);
  480. else if (wpa_s->setband == WPA_SETBAND_2G)
  481. wpa_setband_scan_freqs_list(wpa_s, HOSTAPD_MODE_IEEE80211G,
  482. params);
  483. }
  484. static void wpa_set_scan_ssids(struct wpa_supplicant *wpa_s,
  485. struct wpa_driver_scan_params *params,
  486. size_t max_ssids)
  487. {
  488. unsigned int i;
  489. struct wpa_ssid *ssid;
  490. for (i = 0; i < wpa_s->scan_id_count; i++) {
  491. unsigned int j;
  492. ssid = wpa_config_get_network(wpa_s->conf, wpa_s->scan_id[i]);
  493. if (!ssid || !ssid->scan_ssid)
  494. continue;
  495. for (j = 0; j < params->num_ssids; j++) {
  496. if (params->ssids[j].ssid_len == ssid->ssid_len &&
  497. params->ssids[j].ssid &&
  498. os_memcmp(params->ssids[j].ssid, ssid->ssid,
  499. ssid->ssid_len) == 0)
  500. break;
  501. }
  502. if (j < params->num_ssids)
  503. continue; /* already in the list */
  504. if (params->num_ssids + 1 > max_ssids) {
  505. wpa_printf(MSG_DEBUG,
  506. "Over max scan SSIDs for manual request");
  507. break;
  508. }
  509. wpa_printf(MSG_DEBUG, "Scan SSID (manual request): %s",
  510. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  511. params->ssids[params->num_ssids].ssid = ssid->ssid;
  512. params->ssids[params->num_ssids].ssid_len = ssid->ssid_len;
  513. params->num_ssids++;
  514. }
  515. wpa_s->scan_id_count = 0;
  516. }
  517. static int wpa_set_ssids_from_scan_req(struct wpa_supplicant *wpa_s,
  518. struct wpa_driver_scan_params *params,
  519. size_t max_ssids)
  520. {
  521. unsigned int i;
  522. if (wpa_s->ssids_from_scan_req == NULL ||
  523. wpa_s->num_ssids_from_scan_req == 0)
  524. return 0;
  525. if (wpa_s->num_ssids_from_scan_req > max_ssids) {
  526. wpa_s->num_ssids_from_scan_req = max_ssids;
  527. wpa_printf(MSG_DEBUG, "Over max scan SSIDs from scan req: %u",
  528. (unsigned int) max_ssids);
  529. }
  530. for (i = 0; i < wpa_s->num_ssids_from_scan_req; i++) {
  531. params->ssids[i].ssid = wpa_s->ssids_from_scan_req[i].ssid;
  532. params->ssids[i].ssid_len =
  533. wpa_s->ssids_from_scan_req[i].ssid_len;
  534. wpa_hexdump_ascii(MSG_DEBUG, "specific SSID",
  535. params->ssids[i].ssid,
  536. params->ssids[i].ssid_len);
  537. }
  538. params->num_ssids = wpa_s->num_ssids_from_scan_req;
  539. wpa_s->num_ssids_from_scan_req = 0;
  540. return 1;
  541. }
  542. static void wpa_supplicant_scan(void *eloop_ctx, void *timeout_ctx)
  543. {
  544. struct wpa_supplicant *wpa_s = eloop_ctx;
  545. struct wpa_ssid *ssid;
  546. int ret, p2p_in_prog;
  547. struct wpabuf *extra_ie = NULL;
  548. struct wpa_driver_scan_params params;
  549. struct wpa_driver_scan_params *scan_params;
  550. size_t max_ssids;
  551. int connect_without_scan = 0;
  552. if (wpa_s->pno || wpa_s->pno_sched_pending) {
  553. wpa_dbg(wpa_s, MSG_DEBUG, "Skip scan - PNO is in progress");
  554. return;
  555. }
  556. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
  557. wpa_dbg(wpa_s, MSG_DEBUG, "Skip scan - interface disabled");
  558. return;
  559. }
  560. if (wpa_s->disconnected && wpa_s->scan_req == NORMAL_SCAN_REQ) {
  561. wpa_dbg(wpa_s, MSG_DEBUG, "Disconnected - do not scan");
  562. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  563. return;
  564. }
  565. if (wpa_s->scanning) {
  566. /*
  567. * If we are already in scanning state, we shall reschedule the
  568. * the incoming scan request.
  569. */
  570. wpa_dbg(wpa_s, MSG_DEBUG, "Already scanning - Reschedule the incoming scan req");
  571. wpa_supplicant_req_scan(wpa_s, 1, 0);
  572. return;
  573. }
  574. if (!wpa_supplicant_enabled_networks(wpa_s) &&
  575. wpa_s->scan_req == NORMAL_SCAN_REQ) {
  576. wpa_dbg(wpa_s, MSG_DEBUG, "No enabled networks - do not scan");
  577. wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
  578. return;
  579. }
  580. if (wpa_s->conf->ap_scan != 0 &&
  581. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED)) {
  582. wpa_dbg(wpa_s, MSG_DEBUG, "Using wired authentication - "
  583. "overriding ap_scan configuration");
  584. wpa_s->conf->ap_scan = 0;
  585. wpas_notify_ap_scan_changed(wpa_s);
  586. }
  587. if (wpa_s->conf->ap_scan == 0) {
  588. wpa_supplicant_gen_assoc_event(wpa_s);
  589. return;
  590. }
  591. ssid = NULL;
  592. if (wpa_s->scan_req != MANUAL_SCAN_REQ &&
  593. wpa_s->connect_without_scan) {
  594. connect_without_scan = 1;
  595. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  596. if (ssid == wpa_s->connect_without_scan)
  597. break;
  598. }
  599. }
  600. p2p_in_prog = wpas_p2p_in_progress(wpa_s);
  601. if (p2p_in_prog && p2p_in_prog != 2 &&
  602. (!ssid ||
  603. (ssid->mode != WPAS_MODE_AP && ssid->mode != WPAS_MODE_P2P_GO))) {
  604. wpa_dbg(wpa_s, MSG_DEBUG, "Delay station mode scan while P2P operation is in progress");
  605. wpa_supplicant_req_scan(wpa_s, 5, 0);
  606. return;
  607. }
  608. if (wpa_s->conf->ap_scan == 2)
  609. max_ssids = 1;
  610. else {
  611. max_ssids = wpa_s->max_scan_ssids;
  612. if (max_ssids > WPAS_MAX_SCAN_SSIDS)
  613. max_ssids = WPAS_MAX_SCAN_SSIDS;
  614. }
  615. wpa_s->last_scan_req = wpa_s->scan_req;
  616. wpa_s->scan_req = NORMAL_SCAN_REQ;
  617. if (connect_without_scan) {
  618. wpa_s->connect_without_scan = NULL;
  619. if (ssid) {
  620. wpa_printf(MSG_DEBUG, "Start a pre-selected network "
  621. "without scan step");
  622. wpa_supplicant_associate(wpa_s, NULL, ssid);
  623. return;
  624. }
  625. }
  626. os_memset(&params, 0, sizeof(params));
  627. wpa_s->scan_prev_wpa_state = wpa_s->wpa_state;
  628. if (wpa_s->wpa_state == WPA_DISCONNECTED ||
  629. wpa_s->wpa_state == WPA_INACTIVE)
  630. wpa_supplicant_set_state(wpa_s, WPA_SCANNING);
  631. /*
  632. * If autoscan has set its own scanning parameters
  633. */
  634. if (wpa_s->autoscan_params != NULL) {
  635. scan_params = wpa_s->autoscan_params;
  636. goto scan;
  637. }
  638. if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
  639. wpa_set_ssids_from_scan_req(wpa_s, &params, max_ssids)) {
  640. wpa_printf(MSG_DEBUG, "Use specific SSIDs from SCAN command");
  641. goto ssid_list_set;
  642. }
  643. #ifdef CONFIG_P2P
  644. if ((wpa_s->p2p_in_provisioning || wpa_s->show_group_started) &&
  645. wpa_s->go_params && !wpa_s->conf->passive_scan) {
  646. wpa_printf(MSG_DEBUG, "P2P: Use specific SSID for scan during P2P group formation (p2p_in_provisioning=%d show_group_started=%d)",
  647. wpa_s->p2p_in_provisioning,
  648. wpa_s->show_group_started);
  649. params.ssids[0].ssid = wpa_s->go_params->ssid;
  650. params.ssids[0].ssid_len = wpa_s->go_params->ssid_len;
  651. params.num_ssids = 1;
  652. goto ssid_list_set;
  653. }
  654. if (wpa_s->p2p_in_invitation) {
  655. if (wpa_s->current_ssid) {
  656. wpa_printf(MSG_DEBUG, "P2P: Use specific SSID for scan during invitation");
  657. params.ssids[0].ssid = wpa_s->current_ssid->ssid;
  658. params.ssids[0].ssid_len =
  659. wpa_s->current_ssid->ssid_len;
  660. params.num_ssids = 1;
  661. } else {
  662. wpa_printf(MSG_DEBUG, "P2P: No specific SSID known for scan during invitation");
  663. }
  664. goto ssid_list_set;
  665. }
  666. #endif /* CONFIG_P2P */
  667. /* Find the starting point from which to continue scanning */
  668. ssid = wpa_s->conf->ssid;
  669. if (wpa_s->prev_scan_ssid != WILDCARD_SSID_SCAN) {
  670. while (ssid) {
  671. if (ssid == wpa_s->prev_scan_ssid) {
  672. ssid = ssid->next;
  673. break;
  674. }
  675. ssid = ssid->next;
  676. }
  677. }
  678. if (wpa_s->last_scan_req != MANUAL_SCAN_REQ &&
  679. #ifdef CONFIG_AP
  680. !wpa_s->ap_iface &&
  681. #endif /* CONFIG_AP */
  682. wpa_s->conf->ap_scan == 2) {
  683. wpa_s->connect_without_scan = NULL;
  684. wpa_s->prev_scan_wildcard = 0;
  685. wpa_supplicant_assoc_try(wpa_s, ssid);
  686. return;
  687. } else if (wpa_s->conf->ap_scan == 2) {
  688. /*
  689. * User-initiated scan request in ap_scan == 2; scan with
  690. * wildcard SSID.
  691. */
  692. ssid = NULL;
  693. } else if (wpa_s->reattach && wpa_s->current_ssid != NULL) {
  694. /*
  695. * Perform single-channel single-SSID scan for
  696. * reassociate-to-same-BSS operation.
  697. */
  698. /* Setup SSID */
  699. ssid = wpa_s->current_ssid;
  700. wpa_hexdump_ascii(MSG_DEBUG, "Scan SSID",
  701. ssid->ssid, ssid->ssid_len);
  702. params.ssids[0].ssid = ssid->ssid;
  703. params.ssids[0].ssid_len = ssid->ssid_len;
  704. params.num_ssids = 1;
  705. /*
  706. * Allocate memory for frequency array, allocate one extra
  707. * slot for the zero-terminator.
  708. */
  709. params.freqs = os_malloc(sizeof(int) * 2);
  710. if (params.freqs) {
  711. params.freqs[0] = wpa_s->assoc_freq;
  712. params.freqs[1] = 0;
  713. }
  714. /*
  715. * Reset the reattach flag so that we fall back to full scan if
  716. * this scan fails.
  717. */
  718. wpa_s->reattach = 0;
  719. } else {
  720. struct wpa_ssid *start = ssid, *tssid;
  721. int freqs_set = 0;
  722. if (ssid == NULL && max_ssids > 1)
  723. ssid = wpa_s->conf->ssid;
  724. while (ssid) {
  725. if (!wpas_network_disabled(wpa_s, ssid) &&
  726. ssid->scan_ssid) {
  727. wpa_hexdump_ascii(MSG_DEBUG, "Scan SSID",
  728. ssid->ssid, ssid->ssid_len);
  729. params.ssids[params.num_ssids].ssid =
  730. ssid->ssid;
  731. params.ssids[params.num_ssids].ssid_len =
  732. ssid->ssid_len;
  733. params.num_ssids++;
  734. if (params.num_ssids + 1 >= max_ssids)
  735. break;
  736. }
  737. ssid = ssid->next;
  738. if (ssid == start)
  739. break;
  740. if (ssid == NULL && max_ssids > 1 &&
  741. start != wpa_s->conf->ssid)
  742. ssid = wpa_s->conf->ssid;
  743. }
  744. if (wpa_s->scan_id_count &&
  745. wpa_s->last_scan_req == MANUAL_SCAN_REQ)
  746. wpa_set_scan_ssids(wpa_s, &params, max_ssids);
  747. for (tssid = wpa_s->conf->ssid;
  748. wpa_s->last_scan_req != MANUAL_SCAN_REQ && tssid;
  749. tssid = tssid->next) {
  750. if (wpas_network_disabled(wpa_s, tssid))
  751. continue;
  752. if ((params.freqs || !freqs_set) && tssid->scan_freq) {
  753. int_array_concat(&params.freqs,
  754. tssid->scan_freq);
  755. } else {
  756. os_free(params.freqs);
  757. params.freqs = NULL;
  758. }
  759. freqs_set = 1;
  760. }
  761. int_array_sort_unique(params.freqs);
  762. }
  763. if (ssid && max_ssids == 1) {
  764. /*
  765. * If the driver is limited to 1 SSID at a time interleave
  766. * wildcard SSID scans with specific SSID scans to avoid
  767. * waiting a long time for a wildcard scan.
  768. */
  769. if (!wpa_s->prev_scan_wildcard) {
  770. params.ssids[0].ssid = NULL;
  771. params.ssids[0].ssid_len = 0;
  772. wpa_s->prev_scan_wildcard = 1;
  773. wpa_dbg(wpa_s, MSG_DEBUG, "Starting AP scan for "
  774. "wildcard SSID (Interleave with specific)");
  775. } else {
  776. wpa_s->prev_scan_ssid = ssid;
  777. wpa_s->prev_scan_wildcard = 0;
  778. wpa_dbg(wpa_s, MSG_DEBUG,
  779. "Starting AP scan for specific SSID: %s",
  780. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  781. }
  782. } else if (ssid) {
  783. /* max_ssids > 1 */
  784. wpa_s->prev_scan_ssid = ssid;
  785. wpa_dbg(wpa_s, MSG_DEBUG, "Include wildcard SSID in "
  786. "the scan request");
  787. params.num_ssids++;
  788. } else if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
  789. wpa_s->manual_scan_passive && params.num_ssids == 0) {
  790. wpa_dbg(wpa_s, MSG_DEBUG, "Use passive scan based on manual request");
  791. } else if (wpa_s->conf->passive_scan) {
  792. wpa_dbg(wpa_s, MSG_DEBUG,
  793. "Use passive scan based on configuration");
  794. } else {
  795. wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
  796. params.num_ssids++;
  797. wpa_dbg(wpa_s, MSG_DEBUG, "Starting AP scan for wildcard "
  798. "SSID");
  799. }
  800. ssid_list_set:
  801. wpa_supplicant_optimize_freqs(wpa_s, &params);
  802. extra_ie = wpa_supplicant_extra_ies(wpa_s);
  803. if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
  804. wpa_s->manual_scan_only_new) {
  805. wpa_printf(MSG_DEBUG,
  806. "Request driver to clear scan cache due to manual only_new=1 scan");
  807. params.only_new_results = 1;
  808. }
  809. if (wpa_s->last_scan_req == MANUAL_SCAN_REQ && params.freqs == NULL &&
  810. wpa_s->manual_scan_freqs) {
  811. wpa_dbg(wpa_s, MSG_DEBUG, "Limit manual scan to specified channels");
  812. params.freqs = wpa_s->manual_scan_freqs;
  813. wpa_s->manual_scan_freqs = NULL;
  814. }
  815. if (params.freqs == NULL && wpa_s->next_scan_freqs) {
  816. wpa_dbg(wpa_s, MSG_DEBUG, "Optimize scan based on previously "
  817. "generated frequency list");
  818. params.freqs = wpa_s->next_scan_freqs;
  819. } else
  820. os_free(wpa_s->next_scan_freqs);
  821. wpa_s->next_scan_freqs = NULL;
  822. wpa_setband_scan_freqs(wpa_s, &params);
  823. /* See if user specified frequencies. If so, scan only those. */
  824. if (wpa_s->conf->freq_list && !params.freqs) {
  825. wpa_dbg(wpa_s, MSG_DEBUG,
  826. "Optimize scan based on conf->freq_list");
  827. int_array_concat(&params.freqs, wpa_s->conf->freq_list);
  828. }
  829. /* Use current associated channel? */
  830. if (wpa_s->conf->scan_cur_freq && !params.freqs) {
  831. unsigned int num = wpa_s->num_multichan_concurrent;
  832. params.freqs = os_calloc(num + 1, sizeof(int));
  833. if (params.freqs) {
  834. num = get_shared_radio_freqs(wpa_s, params.freqs, num);
  835. if (num > 0) {
  836. wpa_dbg(wpa_s, MSG_DEBUG, "Scan only the "
  837. "current operating channels since "
  838. "scan_cur_freq is enabled");
  839. } else {
  840. os_free(params.freqs);
  841. params.freqs = NULL;
  842. }
  843. }
  844. }
  845. params.filter_ssids = wpa_supplicant_build_filter_ssids(
  846. wpa_s->conf, &params.num_filter_ssids);
  847. if (extra_ie) {
  848. params.extra_ies = wpabuf_head(extra_ie);
  849. params.extra_ies_len = wpabuf_len(extra_ie);
  850. }
  851. #ifdef CONFIG_P2P
  852. if (wpa_s->p2p_in_provisioning || wpa_s->p2p_in_invitation ||
  853. (wpa_s->show_group_started && wpa_s->go_params)) {
  854. /*
  855. * The interface may not yet be in P2P mode, so we have to
  856. * explicitly request P2P probe to disable CCK rates.
  857. */
  858. params.p2p_probe = 1;
  859. }
  860. #endif /* CONFIG_P2P */
  861. if (wpa_s->mac_addr_rand_enable & MAC_ADDR_RAND_SCAN) {
  862. params.mac_addr_rand = 1;
  863. if (wpa_s->mac_addr_scan) {
  864. params.mac_addr = wpa_s->mac_addr_scan;
  865. params.mac_addr_mask = wpa_s->mac_addr_scan + ETH_ALEN;
  866. }
  867. }
  868. if (!is_zero_ether_addr(wpa_s->next_scan_bssid)) {
  869. struct wpa_bss *bss;
  870. params.bssid = wpa_s->next_scan_bssid;
  871. bss = wpa_bss_get_bssid_latest(wpa_s, params.bssid);
  872. if (bss && bss->ssid_len && params.num_ssids == 1 &&
  873. params.ssids[0].ssid_len == 0) {
  874. params.ssids[0].ssid = bss->ssid;
  875. params.ssids[0].ssid_len = bss->ssid_len;
  876. wpa_dbg(wpa_s, MSG_DEBUG,
  877. "Scan a previously specified BSSID " MACSTR
  878. " and SSID %s",
  879. MAC2STR(params.bssid),
  880. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  881. } else {
  882. wpa_dbg(wpa_s, MSG_DEBUG,
  883. "Scan a previously specified BSSID " MACSTR,
  884. MAC2STR(params.bssid));
  885. }
  886. }
  887. scan_params = &params;
  888. scan:
  889. #ifdef CONFIG_P2P
  890. /*
  891. * If the driver does not support multi-channel concurrency and a
  892. * virtual interface that shares the same radio with the wpa_s interface
  893. * is operating there may not be need to scan other channels apart from
  894. * the current operating channel on the other virtual interface. Filter
  895. * out other channels in case we are trying to find a connection for a
  896. * station interface when we are not configured to prefer station
  897. * connection and a concurrent operation is already in process.
  898. */
  899. if (wpa_s->scan_for_connection &&
  900. wpa_s->last_scan_req == NORMAL_SCAN_REQ &&
  901. !scan_params->freqs && !params.freqs &&
  902. wpas_is_p2p_prioritized(wpa_s) &&
  903. wpa_s->p2p_group_interface == NOT_P2P_GROUP_INTERFACE &&
  904. non_p2p_network_enabled(wpa_s)) {
  905. unsigned int num = wpa_s->num_multichan_concurrent;
  906. params.freqs = os_calloc(num + 1, sizeof(int));
  907. if (params.freqs) {
  908. num = get_shared_radio_freqs(wpa_s, params.freqs, num);
  909. if (num > 0 && num == wpa_s->num_multichan_concurrent) {
  910. wpa_dbg(wpa_s, MSG_DEBUG, "Scan only the current operating channels since all channels are already used");
  911. } else {
  912. os_free(params.freqs);
  913. params.freqs = NULL;
  914. }
  915. }
  916. }
  917. #endif /* CONFIG_P2P */
  918. ret = wpa_supplicant_trigger_scan(wpa_s, scan_params);
  919. if (ret && wpa_s->last_scan_req == MANUAL_SCAN_REQ && params.freqs &&
  920. !wpa_s->manual_scan_freqs) {
  921. /* Restore manual_scan_freqs for the next attempt */
  922. wpa_s->manual_scan_freqs = params.freqs;
  923. params.freqs = NULL;
  924. }
  925. wpabuf_free(extra_ie);
  926. os_free(params.freqs);
  927. os_free(params.filter_ssids);
  928. if (ret) {
  929. wpa_msg(wpa_s, MSG_WARNING, "Failed to initiate AP scan");
  930. if (wpa_s->scan_prev_wpa_state != wpa_s->wpa_state)
  931. wpa_supplicant_set_state(wpa_s,
  932. wpa_s->scan_prev_wpa_state);
  933. /* Restore scan_req since we will try to scan again */
  934. wpa_s->scan_req = wpa_s->last_scan_req;
  935. wpa_supplicant_req_scan(wpa_s, 1, 0);
  936. } else {
  937. wpa_s->scan_for_connection = 0;
  938. #ifdef CONFIG_INTERWORKING
  939. wpa_s->interworking_fast_assoc_tried = 0;
  940. #endif /* CONFIG_INTERWORKING */
  941. if (params.bssid)
  942. os_memset(wpa_s->next_scan_bssid, 0, ETH_ALEN);
  943. }
  944. }
  945. void wpa_supplicant_update_scan_int(struct wpa_supplicant *wpa_s, int sec)
  946. {
  947. struct os_reltime remaining, new_int;
  948. int cancelled;
  949. cancelled = eloop_cancel_timeout_one(wpa_supplicant_scan, wpa_s, NULL,
  950. &remaining);
  951. new_int.sec = sec;
  952. new_int.usec = 0;
  953. if (cancelled && os_reltime_before(&remaining, &new_int)) {
  954. new_int.sec = remaining.sec;
  955. new_int.usec = remaining.usec;
  956. }
  957. if (cancelled) {
  958. eloop_register_timeout(new_int.sec, new_int.usec,
  959. wpa_supplicant_scan, wpa_s, NULL);
  960. }
  961. wpa_s->scan_interval = sec;
  962. }
  963. /**
  964. * wpa_supplicant_req_scan - Schedule a scan for neighboring access points
  965. * @wpa_s: Pointer to wpa_supplicant data
  966. * @sec: Number of seconds after which to scan
  967. * @usec: Number of microseconds after which to scan
  968. *
  969. * This function is used to schedule a scan for neighboring access points after
  970. * the specified time.
  971. */
  972. void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec)
  973. {
  974. int res;
  975. if (wpa_s->p2p_mgmt) {
  976. wpa_dbg(wpa_s, MSG_DEBUG,
  977. "Ignore scan request (%d.%06d sec) on p2p_mgmt interface",
  978. sec, usec);
  979. return;
  980. }
  981. res = eloop_deplete_timeout(sec, usec, wpa_supplicant_scan, wpa_s,
  982. NULL);
  983. if (res == 1) {
  984. wpa_dbg(wpa_s, MSG_DEBUG, "Rescheduling scan request: %d.%06d sec",
  985. sec, usec);
  986. } else if (res == 0) {
  987. wpa_dbg(wpa_s, MSG_DEBUG, "Ignore new scan request for %d.%06d sec since an earlier request is scheduled to trigger sooner",
  988. sec, usec);
  989. } else {
  990. wpa_dbg(wpa_s, MSG_DEBUG, "Setting scan request: %d.%06d sec",
  991. sec, usec);
  992. eloop_register_timeout(sec, usec, wpa_supplicant_scan, wpa_s, NULL);
  993. }
  994. }
  995. /**
  996. * wpa_supplicant_delayed_sched_scan - Request a delayed scheduled scan
  997. * @wpa_s: Pointer to wpa_supplicant data
  998. * @sec: Number of seconds after which to scan
  999. * @usec: Number of microseconds after which to scan
  1000. * Returns: 0 on success or -1 otherwise
  1001. *
  1002. * This function is used to schedule periodic scans for neighboring
  1003. * access points after the specified time.
  1004. */
  1005. int wpa_supplicant_delayed_sched_scan(struct wpa_supplicant *wpa_s,
  1006. int sec, int usec)
  1007. {
  1008. if (!wpa_s->sched_scan_supported)
  1009. return -1;
  1010. eloop_register_timeout(sec, usec,
  1011. wpa_supplicant_delayed_sched_scan_timeout,
  1012. wpa_s, NULL);
  1013. return 0;
  1014. }
  1015. /**
  1016. * wpa_supplicant_req_sched_scan - Start a periodic scheduled scan
  1017. * @wpa_s: Pointer to wpa_supplicant data
  1018. * Returns: 0 is sched_scan was started or -1 otherwise
  1019. *
  1020. * This function is used to schedule periodic scans for neighboring
  1021. * access points repeating the scan continuously.
  1022. */
  1023. int wpa_supplicant_req_sched_scan(struct wpa_supplicant *wpa_s)
  1024. {
  1025. struct wpa_driver_scan_params params;
  1026. struct wpa_driver_scan_params *scan_params;
  1027. enum wpa_states prev_state;
  1028. struct wpa_ssid *ssid = NULL;
  1029. struct wpabuf *extra_ie = NULL;
  1030. int ret;
  1031. unsigned int max_sched_scan_ssids;
  1032. int wildcard = 0;
  1033. int need_ssids;
  1034. struct sched_scan_plan scan_plan;
  1035. if (!wpa_s->sched_scan_supported)
  1036. return -1;
  1037. if (wpa_s->max_sched_scan_ssids > WPAS_MAX_SCAN_SSIDS)
  1038. max_sched_scan_ssids = WPAS_MAX_SCAN_SSIDS;
  1039. else
  1040. max_sched_scan_ssids = wpa_s->max_sched_scan_ssids;
  1041. if (max_sched_scan_ssids < 1 || wpa_s->conf->disable_scan_offload)
  1042. return -1;
  1043. if (wpa_s->sched_scanning) {
  1044. wpa_dbg(wpa_s, MSG_DEBUG, "Already sched scanning");
  1045. return 0;
  1046. }
  1047. need_ssids = 0;
  1048. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  1049. if (!wpas_network_disabled(wpa_s, ssid) && !ssid->scan_ssid) {
  1050. /* Use wildcard SSID to find this network */
  1051. wildcard = 1;
  1052. } else if (!wpas_network_disabled(wpa_s, ssid) &&
  1053. ssid->ssid_len)
  1054. need_ssids++;
  1055. #ifdef CONFIG_WPS
  1056. if (!wpas_network_disabled(wpa_s, ssid) &&
  1057. ssid->key_mgmt == WPA_KEY_MGMT_WPS) {
  1058. /*
  1059. * Normal scan is more reliable and faster for WPS
  1060. * operations and since these are for short periods of
  1061. * time, the benefit of trying to use sched_scan would
  1062. * be limited.
  1063. */
  1064. wpa_dbg(wpa_s, MSG_DEBUG, "Use normal scan instead of "
  1065. "sched_scan for WPS");
  1066. return -1;
  1067. }
  1068. #endif /* CONFIG_WPS */
  1069. }
  1070. if (wildcard)
  1071. need_ssids++;
  1072. if (wpa_s->normal_scans < 3 &&
  1073. (need_ssids <= wpa_s->max_scan_ssids ||
  1074. wpa_s->max_scan_ssids >= (int) max_sched_scan_ssids)) {
  1075. /*
  1076. * When normal scan can speed up operations, use that for the
  1077. * first operations before starting the sched_scan to allow
  1078. * user space sleep more. We do this only if the normal scan
  1079. * has functionality that is suitable for this or if the
  1080. * sched_scan does not have better support for multiple SSIDs.
  1081. */
  1082. wpa_dbg(wpa_s, MSG_DEBUG, "Use normal scan instead of "
  1083. "sched_scan for initial scans (normal_scans=%d)",
  1084. wpa_s->normal_scans);
  1085. return -1;
  1086. }
  1087. os_memset(&params, 0, sizeof(params));
  1088. /* If we can't allocate space for the filters, we just don't filter */
  1089. params.filter_ssids = os_calloc(wpa_s->max_match_sets,
  1090. sizeof(struct wpa_driver_scan_filter));
  1091. prev_state = wpa_s->wpa_state;
  1092. if (wpa_s->wpa_state == WPA_DISCONNECTED ||
  1093. wpa_s->wpa_state == WPA_INACTIVE)
  1094. wpa_supplicant_set_state(wpa_s, WPA_SCANNING);
  1095. if (wpa_s->autoscan_params != NULL) {
  1096. scan_params = wpa_s->autoscan_params;
  1097. goto scan;
  1098. }
  1099. /* Find the starting point from which to continue scanning */
  1100. ssid = wpa_s->conf->ssid;
  1101. if (wpa_s->prev_sched_ssid) {
  1102. while (ssid) {
  1103. if (ssid == wpa_s->prev_sched_ssid) {
  1104. ssid = ssid->next;
  1105. break;
  1106. }
  1107. ssid = ssid->next;
  1108. }
  1109. }
  1110. if (!ssid || !wpa_s->prev_sched_ssid) {
  1111. wpa_dbg(wpa_s, MSG_DEBUG, "Beginning of SSID list");
  1112. wpa_s->sched_scan_timeout = max_sched_scan_ssids * 2;
  1113. wpa_s->first_sched_scan = 1;
  1114. ssid = wpa_s->conf->ssid;
  1115. wpa_s->prev_sched_ssid = ssid;
  1116. }
  1117. if (wildcard) {
  1118. wpa_dbg(wpa_s, MSG_DEBUG, "Add wildcard SSID to sched_scan");
  1119. params.num_ssids++;
  1120. }
  1121. while (ssid) {
  1122. if (wpas_network_disabled(wpa_s, ssid))
  1123. goto next;
  1124. if (params.num_filter_ssids < wpa_s->max_match_sets &&
  1125. params.filter_ssids && ssid->ssid && ssid->ssid_len) {
  1126. wpa_dbg(wpa_s, MSG_DEBUG, "add to filter ssid: %s",
  1127. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  1128. os_memcpy(params.filter_ssids[params.num_filter_ssids].ssid,
  1129. ssid->ssid, ssid->ssid_len);
  1130. params.filter_ssids[params.num_filter_ssids].ssid_len =
  1131. ssid->ssid_len;
  1132. params.num_filter_ssids++;
  1133. } else if (params.filter_ssids && ssid->ssid && ssid->ssid_len)
  1134. {
  1135. wpa_dbg(wpa_s, MSG_DEBUG, "Not enough room for SSID "
  1136. "filter for sched_scan - drop filter");
  1137. os_free(params.filter_ssids);
  1138. params.filter_ssids = NULL;
  1139. params.num_filter_ssids = 0;
  1140. }
  1141. if (ssid->scan_ssid && ssid->ssid && ssid->ssid_len) {
  1142. if (params.num_ssids == max_sched_scan_ssids)
  1143. break; /* only room for broadcast SSID */
  1144. wpa_dbg(wpa_s, MSG_DEBUG,
  1145. "add to active scan ssid: %s",
  1146. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  1147. params.ssids[params.num_ssids].ssid =
  1148. ssid->ssid;
  1149. params.ssids[params.num_ssids].ssid_len =
  1150. ssid->ssid_len;
  1151. params.num_ssids++;
  1152. if (params.num_ssids >= max_sched_scan_ssids) {
  1153. wpa_s->prev_sched_ssid = ssid;
  1154. do {
  1155. ssid = ssid->next;
  1156. } while (ssid &&
  1157. (wpas_network_disabled(wpa_s, ssid) ||
  1158. !ssid->scan_ssid));
  1159. break;
  1160. }
  1161. }
  1162. next:
  1163. wpa_s->prev_sched_ssid = ssid;
  1164. ssid = ssid->next;
  1165. }
  1166. if (params.num_filter_ssids == 0) {
  1167. os_free(params.filter_ssids);
  1168. params.filter_ssids = NULL;
  1169. }
  1170. extra_ie = wpa_supplicant_extra_ies(wpa_s);
  1171. if (extra_ie) {
  1172. params.extra_ies = wpabuf_head(extra_ie);
  1173. params.extra_ies_len = wpabuf_len(extra_ie);
  1174. }
  1175. if (wpa_s->conf->filter_rssi)
  1176. params.filter_rssi = wpa_s->conf->filter_rssi;
  1177. /* See if user specified frequencies. If so, scan only those. */
  1178. if (wpa_s->conf->freq_list && !params.freqs) {
  1179. wpa_dbg(wpa_s, MSG_DEBUG,
  1180. "Optimize scan based on conf->freq_list");
  1181. int_array_concat(&params.freqs, wpa_s->conf->freq_list);
  1182. }
  1183. scan_params = &params;
  1184. scan:
  1185. wpa_s->sched_scan_timed_out = 0;
  1186. /*
  1187. * We cannot support multiple scan plans if the scan request includes
  1188. * too many SSID's, so in this case use only the last scan plan and make
  1189. * it run infinitely. It will be stopped by the timeout.
  1190. */
  1191. if (wpa_s->sched_scan_plans_num == 1 ||
  1192. (wpa_s->sched_scan_plans_num && !ssid && wpa_s->first_sched_scan)) {
  1193. params.sched_scan_plans = wpa_s->sched_scan_plans;
  1194. params.sched_scan_plans_num = wpa_s->sched_scan_plans_num;
  1195. } else if (wpa_s->sched_scan_plans_num > 1) {
  1196. wpa_dbg(wpa_s, MSG_DEBUG,
  1197. "Too many SSIDs. Default to using single scheduled_scan plan");
  1198. params.sched_scan_plans =
  1199. &wpa_s->sched_scan_plans[wpa_s->sched_scan_plans_num -
  1200. 1];
  1201. params.sched_scan_plans_num = 1;
  1202. } else {
  1203. if (wpa_s->conf->sched_scan_interval)
  1204. scan_plan.interval = wpa_s->conf->sched_scan_interval;
  1205. else
  1206. scan_plan.interval = 10;
  1207. if (scan_plan.interval > wpa_s->max_sched_scan_plan_interval) {
  1208. wpa_printf(MSG_WARNING,
  1209. "Scan interval too long(%u), use the maximum allowed(%u)",
  1210. scan_plan.interval,
  1211. wpa_s->max_sched_scan_plan_interval);
  1212. scan_plan.interval =
  1213. wpa_s->max_sched_scan_plan_interval;
  1214. }
  1215. scan_plan.iterations = 0;
  1216. params.sched_scan_plans = &scan_plan;
  1217. params.sched_scan_plans_num = 1;
  1218. }
  1219. if (ssid || !wpa_s->first_sched_scan) {
  1220. wpa_dbg(wpa_s, MSG_DEBUG,
  1221. "Starting sched scan: interval %u timeout %d",
  1222. params.sched_scan_plans[0].interval,
  1223. wpa_s->sched_scan_timeout);
  1224. } else {
  1225. wpa_dbg(wpa_s, MSG_DEBUG, "Starting sched scan (no timeout)");
  1226. }
  1227. wpa_setband_scan_freqs(wpa_s, scan_params);
  1228. if (wpa_s->mac_addr_rand_enable & MAC_ADDR_RAND_SCHED_SCAN) {
  1229. params.mac_addr_rand = 1;
  1230. if (wpa_s->mac_addr_sched_scan) {
  1231. params.mac_addr = wpa_s->mac_addr_sched_scan;
  1232. params.mac_addr_mask = wpa_s->mac_addr_sched_scan +
  1233. ETH_ALEN;
  1234. }
  1235. }
  1236. ret = wpa_supplicant_start_sched_scan(wpa_s, scan_params);
  1237. wpabuf_free(extra_ie);
  1238. os_free(params.filter_ssids);
  1239. if (ret) {
  1240. wpa_msg(wpa_s, MSG_WARNING, "Failed to initiate sched scan");
  1241. if (prev_state != wpa_s->wpa_state)
  1242. wpa_supplicant_set_state(wpa_s, prev_state);
  1243. return ret;
  1244. }
  1245. /* If we have more SSIDs to scan, add a timeout so we scan them too */
  1246. if (ssid || !wpa_s->first_sched_scan) {
  1247. wpa_s->sched_scan_timed_out = 0;
  1248. eloop_register_timeout(wpa_s->sched_scan_timeout, 0,
  1249. wpa_supplicant_sched_scan_timeout,
  1250. wpa_s, NULL);
  1251. wpa_s->first_sched_scan = 0;
  1252. wpa_s->sched_scan_timeout /= 2;
  1253. params.sched_scan_plans[0].interval *= 2;
  1254. if ((unsigned int) wpa_s->sched_scan_timeout <
  1255. params.sched_scan_plans[0].interval ||
  1256. params.sched_scan_plans[0].interval >
  1257. wpa_s->max_sched_scan_plan_interval) {
  1258. params.sched_scan_plans[0].interval = 10;
  1259. wpa_s->sched_scan_timeout = max_sched_scan_ssids * 2;
  1260. }
  1261. }
  1262. /* If there is no more ssids, start next time from the beginning */
  1263. if (!ssid)
  1264. wpa_s->prev_sched_ssid = NULL;
  1265. return 0;
  1266. }
  1267. /**
  1268. * wpa_supplicant_cancel_scan - Cancel a scheduled scan request
  1269. * @wpa_s: Pointer to wpa_supplicant data
  1270. *
  1271. * This function is used to cancel a scan request scheduled with
  1272. * wpa_supplicant_req_scan().
  1273. */
  1274. void wpa_supplicant_cancel_scan(struct wpa_supplicant *wpa_s)
  1275. {
  1276. wpa_dbg(wpa_s, MSG_DEBUG, "Cancelling scan request");
  1277. eloop_cancel_timeout(wpa_supplicant_scan, wpa_s, NULL);
  1278. }
  1279. /**
  1280. * wpa_supplicant_cancel_delayed_sched_scan - Stop a delayed scheduled scan
  1281. * @wpa_s: Pointer to wpa_supplicant data
  1282. *
  1283. * This function is used to stop a delayed scheduled scan.
  1284. */
  1285. void wpa_supplicant_cancel_delayed_sched_scan(struct wpa_supplicant *wpa_s)
  1286. {
  1287. if (!wpa_s->sched_scan_supported)
  1288. return;
  1289. wpa_dbg(wpa_s, MSG_DEBUG, "Cancelling delayed sched scan");
  1290. eloop_cancel_timeout(wpa_supplicant_delayed_sched_scan_timeout,
  1291. wpa_s, NULL);
  1292. }
  1293. /**
  1294. * wpa_supplicant_cancel_sched_scan - Stop running scheduled scans
  1295. * @wpa_s: Pointer to wpa_supplicant data
  1296. *
  1297. * This function is used to stop a periodic scheduled scan.
  1298. */
  1299. void wpa_supplicant_cancel_sched_scan(struct wpa_supplicant *wpa_s)
  1300. {
  1301. if (!wpa_s->sched_scanning)
  1302. return;
  1303. wpa_dbg(wpa_s, MSG_DEBUG, "Cancelling sched scan");
  1304. eloop_cancel_timeout(wpa_supplicant_sched_scan_timeout, wpa_s, NULL);
  1305. wpa_supplicant_stop_sched_scan(wpa_s);
  1306. }
  1307. /**
  1308. * wpa_supplicant_notify_scanning - Indicate possible scan state change
  1309. * @wpa_s: Pointer to wpa_supplicant data
  1310. * @scanning: Whether scanning is currently in progress
  1311. *
  1312. * This function is to generate scanning notifycations. It is called whenever
  1313. * there may have been a change in scanning (scan started, completed, stopped).
  1314. * wpas_notify_scanning() is called whenever the scanning state changed from the
  1315. * previously notified state.
  1316. */
  1317. void wpa_supplicant_notify_scanning(struct wpa_supplicant *wpa_s,
  1318. int scanning)
  1319. {
  1320. if (wpa_s->scanning != scanning) {
  1321. wpa_s->scanning = scanning;
  1322. wpas_notify_scanning(wpa_s);
  1323. }
  1324. }
  1325. static int wpa_scan_get_max_rate(const struct wpa_scan_res *res)
  1326. {
  1327. int rate = 0;
  1328. const u8 *ie;
  1329. int i;
  1330. ie = wpa_scan_get_ie(res, WLAN_EID_SUPP_RATES);
  1331. for (i = 0; ie && i < ie[1]; i++) {
  1332. if ((ie[i + 2] & 0x7f) > rate)
  1333. rate = ie[i + 2] & 0x7f;
  1334. }
  1335. ie = wpa_scan_get_ie(res, WLAN_EID_EXT_SUPP_RATES);
  1336. for (i = 0; ie && i < ie[1]; i++) {
  1337. if ((ie[i + 2] & 0x7f) > rate)
  1338. rate = ie[i + 2] & 0x7f;
  1339. }
  1340. return rate;
  1341. }
  1342. /**
  1343. * wpa_scan_get_ie - Fetch a specified information element from a scan result
  1344. * @res: Scan result entry
  1345. * @ie: Information element identitifier (WLAN_EID_*)
  1346. * Returns: Pointer to the information element (id field) or %NULL if not found
  1347. *
  1348. * This function returns the first matching information element in the scan
  1349. * result.
  1350. */
  1351. const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie)
  1352. {
  1353. return get_ie((const u8 *) (res + 1), res->ie_len, ie);
  1354. }
  1355. /**
  1356. * wpa_scan_get_vendor_ie - Fetch vendor information element from a scan result
  1357. * @res: Scan result entry
  1358. * @vendor_type: Vendor type (four octets starting the IE payload)
  1359. * Returns: Pointer to the information element (id field) or %NULL if not found
  1360. *
  1361. * This function returns the first matching information element in the scan
  1362. * result.
  1363. */
  1364. const u8 * wpa_scan_get_vendor_ie(const struct wpa_scan_res *res,
  1365. u32 vendor_type)
  1366. {
  1367. const u8 *end, *pos;
  1368. pos = (const u8 *) (res + 1);
  1369. end = pos + res->ie_len;
  1370. while (end - pos > 1) {
  1371. if (2 + pos[1] > end - pos)
  1372. break;
  1373. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  1374. vendor_type == WPA_GET_BE32(&pos[2]))
  1375. return pos;
  1376. pos += 2 + pos[1];
  1377. }
  1378. return NULL;
  1379. }
  1380. /**
  1381. * wpa_scan_get_vendor_ie_beacon - Fetch vendor information from a scan result
  1382. * @res: Scan result entry
  1383. * @vendor_type: Vendor type (four octets starting the IE payload)
  1384. * Returns: Pointer to the information element (id field) or %NULL if not found
  1385. *
  1386. * This function returns the first matching information element in the scan
  1387. * result.
  1388. *
  1389. * This function is like wpa_scan_get_vendor_ie(), but uses IE buffer only
  1390. * from Beacon frames instead of either Beacon or Probe Response frames.
  1391. */
  1392. const u8 * wpa_scan_get_vendor_ie_beacon(const struct wpa_scan_res *res,
  1393. u32 vendor_type)
  1394. {
  1395. const u8 *end, *pos;
  1396. if (res->beacon_ie_len == 0)
  1397. return NULL;
  1398. pos = (const u8 *) (res + 1);
  1399. pos += res->ie_len;
  1400. end = pos + res->beacon_ie_len;
  1401. while (end - pos > 1) {
  1402. if (2 + pos[1] > end - pos)
  1403. break;
  1404. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  1405. vendor_type == WPA_GET_BE32(&pos[2]))
  1406. return pos;
  1407. pos += 2 + pos[1];
  1408. }
  1409. return NULL;
  1410. }
  1411. /**
  1412. * wpa_scan_get_vendor_ie_multi - Fetch vendor IE data from a scan result
  1413. * @res: Scan result entry
  1414. * @vendor_type: Vendor type (four octets starting the IE payload)
  1415. * Returns: Pointer to the information element payload or %NULL if not found
  1416. *
  1417. * This function returns concatenated payload of possibly fragmented vendor
  1418. * specific information elements in the scan result. The caller is responsible
  1419. * for freeing the returned buffer.
  1420. */
  1421. struct wpabuf * wpa_scan_get_vendor_ie_multi(const struct wpa_scan_res *res,
  1422. u32 vendor_type)
  1423. {
  1424. struct wpabuf *buf;
  1425. const u8 *end, *pos;
  1426. buf = wpabuf_alloc(res->ie_len);
  1427. if (buf == NULL)
  1428. return NULL;
  1429. pos = (const u8 *) (res + 1);
  1430. end = pos + res->ie_len;
  1431. while (end - pos > 1) {
  1432. if (2 + pos[1] > end - pos)
  1433. break;
  1434. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  1435. vendor_type == WPA_GET_BE32(&pos[2]))
  1436. wpabuf_put_data(buf, pos + 2 + 4, pos[1] - 4);
  1437. pos += 2 + pos[1];
  1438. }
  1439. if (wpabuf_len(buf) == 0) {
  1440. wpabuf_free(buf);
  1441. buf = NULL;
  1442. }
  1443. return buf;
  1444. }
  1445. /*
  1446. * Channels with a great SNR can operate at full rate. What is a great SNR?
  1447. * This doc https://supportforums.cisco.com/docs/DOC-12954 says, "the general
  1448. * rule of thumb is that any SNR above 20 is good." This one
  1449. * http://www.cisco.com/en/US/tech/tk722/tk809/technologies_q_and_a_item09186a00805e9a96.shtml#qa23
  1450. * recommends 25 as a minimum SNR for 54 Mbps data rate. 30 is chosen here as a
  1451. * conservative value.
  1452. */
  1453. #define GREAT_SNR 30
  1454. #define IS_5GHZ(n) (n > 4000)
  1455. /* Compare function for sorting scan results. Return >0 if @b is considered
  1456. * better. */
  1457. static int wpa_scan_result_compar(const void *a, const void *b)
  1458. {
  1459. #define MIN(a,b) a < b ? a : b
  1460. struct wpa_scan_res **_wa = (void *) a;
  1461. struct wpa_scan_res **_wb = (void *) b;
  1462. struct wpa_scan_res *wa = *_wa;
  1463. struct wpa_scan_res *wb = *_wb;
  1464. int wpa_a, wpa_b;
  1465. int snr_a, snr_b, snr_a_full, snr_b_full;
  1466. /* WPA/WPA2 support preferred */
  1467. wpa_a = wpa_scan_get_vendor_ie(wa, WPA_IE_VENDOR_TYPE) != NULL ||
  1468. wpa_scan_get_ie(wa, WLAN_EID_RSN) != NULL;
  1469. wpa_b = wpa_scan_get_vendor_ie(wb, WPA_IE_VENDOR_TYPE) != NULL ||
  1470. wpa_scan_get_ie(wb, WLAN_EID_RSN) != NULL;
  1471. if (wpa_b && !wpa_a)
  1472. return 1;
  1473. if (!wpa_b && wpa_a)
  1474. return -1;
  1475. /* privacy support preferred */
  1476. if ((wa->caps & IEEE80211_CAP_PRIVACY) == 0 &&
  1477. (wb->caps & IEEE80211_CAP_PRIVACY))
  1478. return 1;
  1479. if ((wa->caps & IEEE80211_CAP_PRIVACY) &&
  1480. (wb->caps & IEEE80211_CAP_PRIVACY) == 0)
  1481. return -1;
  1482. if (wa->flags & wb->flags & WPA_SCAN_LEVEL_DBM) {
  1483. snr_a_full = wa->snr;
  1484. snr_a = MIN(wa->snr, GREAT_SNR);
  1485. snr_b_full = wb->snr;
  1486. snr_b = MIN(wb->snr, GREAT_SNR);
  1487. } else {
  1488. /* Level is not in dBm, so we can't calculate
  1489. * SNR. Just use raw level (units unknown). */
  1490. snr_a = snr_a_full = wa->level;
  1491. snr_b = snr_b_full = wb->level;
  1492. }
  1493. /* if SNR is close, decide by max rate or frequency band */
  1494. if ((snr_a && snr_b && abs(snr_b - snr_a) < 5) ||
  1495. (wa->qual && wb->qual && abs(wb->qual - wa->qual) < 10)) {
  1496. if (wa->est_throughput != wb->est_throughput)
  1497. return wb->est_throughput - wa->est_throughput;
  1498. if (IS_5GHZ(wa->freq) ^ IS_5GHZ(wb->freq))
  1499. return IS_5GHZ(wa->freq) ? -1 : 1;
  1500. }
  1501. /* all things being equal, use SNR; if SNRs are
  1502. * identical, use quality values since some drivers may only report
  1503. * that value and leave the signal level zero */
  1504. if (snr_b_full == snr_a_full)
  1505. return wb->qual - wa->qual;
  1506. return snr_b_full - snr_a_full;
  1507. #undef MIN
  1508. }
  1509. #ifdef CONFIG_WPS
  1510. /* Compare function for sorting scan results when searching a WPS AP for
  1511. * provisioning. Return >0 if @b is considered better. */
  1512. static int wpa_scan_result_wps_compar(const void *a, const void *b)
  1513. {
  1514. struct wpa_scan_res **_wa = (void *) a;
  1515. struct wpa_scan_res **_wb = (void *) b;
  1516. struct wpa_scan_res *wa = *_wa;
  1517. struct wpa_scan_res *wb = *_wb;
  1518. int uses_wps_a, uses_wps_b;
  1519. struct wpabuf *wps_a, *wps_b;
  1520. int res;
  1521. /* Optimization - check WPS IE existence before allocated memory and
  1522. * doing full reassembly. */
  1523. uses_wps_a = wpa_scan_get_vendor_ie(wa, WPS_IE_VENDOR_TYPE) != NULL;
  1524. uses_wps_b = wpa_scan_get_vendor_ie(wb, WPS_IE_VENDOR_TYPE) != NULL;
  1525. if (uses_wps_a && !uses_wps_b)
  1526. return -1;
  1527. if (!uses_wps_a && uses_wps_b)
  1528. return 1;
  1529. if (uses_wps_a && uses_wps_b) {
  1530. wps_a = wpa_scan_get_vendor_ie_multi(wa, WPS_IE_VENDOR_TYPE);
  1531. wps_b = wpa_scan_get_vendor_ie_multi(wb, WPS_IE_VENDOR_TYPE);
  1532. res = wps_ap_priority_compar(wps_a, wps_b);
  1533. wpabuf_free(wps_a);
  1534. wpabuf_free(wps_b);
  1535. if (res)
  1536. return res;
  1537. }
  1538. /*
  1539. * Do not use current AP security policy as a sorting criteria during
  1540. * WPS provisioning step since the AP may get reconfigured at the
  1541. * completion of provisioning.
  1542. */
  1543. /* all things being equal, use signal level; if signal levels are
  1544. * identical, use quality values since some drivers may only report
  1545. * that value and leave the signal level zero */
  1546. if (wb->level == wa->level)
  1547. return wb->qual - wa->qual;
  1548. return wb->level - wa->level;
  1549. }
  1550. #endif /* CONFIG_WPS */
  1551. static void dump_scan_res(struct wpa_scan_results *scan_res)
  1552. {
  1553. #ifndef CONFIG_NO_STDOUT_DEBUG
  1554. size_t i;
  1555. if (scan_res->res == NULL || scan_res->num == 0)
  1556. return;
  1557. wpa_printf(MSG_EXCESSIVE, "Sorted scan results");
  1558. for (i = 0; i < scan_res->num; i++) {
  1559. struct wpa_scan_res *r = scan_res->res[i];
  1560. u8 *pos;
  1561. if (r->flags & WPA_SCAN_LEVEL_DBM) {
  1562. int noise_valid = !(r->flags & WPA_SCAN_NOISE_INVALID);
  1563. wpa_printf(MSG_EXCESSIVE, MACSTR " freq=%d qual=%d "
  1564. "noise=%d%s level=%d snr=%d%s flags=0x%x age=%u est=%u",
  1565. MAC2STR(r->bssid), r->freq, r->qual,
  1566. r->noise, noise_valid ? "" : "~", r->level,
  1567. r->snr, r->snr >= GREAT_SNR ? "*" : "",
  1568. r->flags,
  1569. r->age, r->est_throughput);
  1570. } else {
  1571. wpa_printf(MSG_EXCESSIVE, MACSTR " freq=%d qual=%d "
  1572. "noise=%d level=%d flags=0x%x age=%u est=%u",
  1573. MAC2STR(r->bssid), r->freq, r->qual,
  1574. r->noise, r->level, r->flags, r->age,
  1575. r->est_throughput);
  1576. }
  1577. pos = (u8 *) (r + 1);
  1578. if (r->ie_len)
  1579. wpa_hexdump(MSG_EXCESSIVE, "IEs", pos, r->ie_len);
  1580. pos += r->ie_len;
  1581. if (r->beacon_ie_len)
  1582. wpa_hexdump(MSG_EXCESSIVE, "Beacon IEs",
  1583. pos, r->beacon_ie_len);
  1584. }
  1585. #endif /* CONFIG_NO_STDOUT_DEBUG */
  1586. }
  1587. /**
  1588. * wpa_supplicant_filter_bssid_match - Is the specified BSSID allowed
  1589. * @wpa_s: Pointer to wpa_supplicant data
  1590. * @bssid: BSSID to check
  1591. * Returns: 0 if the BSSID is filtered or 1 if not
  1592. *
  1593. * This function is used to filter out specific BSSIDs from scan reslts mainly
  1594. * for testing purposes (SET bssid_filter ctrl_iface command).
  1595. */
  1596. int wpa_supplicant_filter_bssid_match(struct wpa_supplicant *wpa_s,
  1597. const u8 *bssid)
  1598. {
  1599. size_t i;
  1600. if (wpa_s->bssid_filter == NULL)
  1601. return 1;
  1602. for (i = 0; i < wpa_s->bssid_filter_count; i++) {
  1603. if (os_memcmp(wpa_s->bssid_filter + i * ETH_ALEN, bssid,
  1604. ETH_ALEN) == 0)
  1605. return 1;
  1606. }
  1607. return 0;
  1608. }
  1609. void filter_scan_res(struct wpa_supplicant *wpa_s,
  1610. struct wpa_scan_results *res)
  1611. {
  1612. size_t i, j;
  1613. if (wpa_s->bssid_filter == NULL)
  1614. return;
  1615. for (i = 0, j = 0; i < res->num; i++) {
  1616. if (wpa_supplicant_filter_bssid_match(wpa_s,
  1617. res->res[i]->bssid)) {
  1618. res->res[j++] = res->res[i];
  1619. } else {
  1620. os_free(res->res[i]);
  1621. res->res[i] = NULL;
  1622. }
  1623. }
  1624. if (res->num != j) {
  1625. wpa_printf(MSG_DEBUG, "Filtered out %d scan results",
  1626. (int) (res->num - j));
  1627. res->num = j;
  1628. }
  1629. }
  1630. /*
  1631. * Noise floor values to use when we have signal strength
  1632. * measurements, but no noise floor measurements. These values were
  1633. * measured in an office environment with many APs.
  1634. */
  1635. #define DEFAULT_NOISE_FLOOR_2GHZ (-89)
  1636. #define DEFAULT_NOISE_FLOOR_5GHZ (-92)
  1637. void scan_snr(struct wpa_scan_res *res)
  1638. {
  1639. if (res->flags & WPA_SCAN_NOISE_INVALID) {
  1640. res->noise = IS_5GHZ(res->freq) ?
  1641. DEFAULT_NOISE_FLOOR_5GHZ :
  1642. DEFAULT_NOISE_FLOOR_2GHZ;
  1643. }
  1644. if (res->flags & WPA_SCAN_LEVEL_DBM) {
  1645. res->snr = res->level - res->noise;
  1646. } else {
  1647. /* Level is not in dBm, so we can't calculate
  1648. * SNR. Just use raw level (units unknown). */
  1649. res->snr = res->level;
  1650. }
  1651. }
  1652. static unsigned int max_ht20_rate(int snr)
  1653. {
  1654. if (snr < 6)
  1655. return 6500; /* HT20 MCS0 */
  1656. if (snr < 8)
  1657. return 13000; /* HT20 MCS1 */
  1658. if (snr < 13)
  1659. return 19500; /* HT20 MCS2 */
  1660. if (snr < 17)
  1661. return 26000; /* HT20 MCS3 */
  1662. if (snr < 20)
  1663. return 39000; /* HT20 MCS4 */
  1664. if (snr < 23)
  1665. return 52000; /* HT20 MCS5 */
  1666. if (snr < 24)
  1667. return 58500; /* HT20 MCS6 */
  1668. return 65000; /* HT20 MCS7 */
  1669. }
  1670. static unsigned int max_ht40_rate(int snr)
  1671. {
  1672. if (snr < 3)
  1673. return 13500; /* HT40 MCS0 */
  1674. if (snr < 6)
  1675. return 27000; /* HT40 MCS1 */
  1676. if (snr < 10)
  1677. return 40500; /* HT40 MCS2 */
  1678. if (snr < 15)
  1679. return 54000; /* HT40 MCS3 */
  1680. if (snr < 17)
  1681. return 81000; /* HT40 MCS4 */
  1682. if (snr < 22)
  1683. return 108000; /* HT40 MCS5 */
  1684. if (snr < 24)
  1685. return 121500; /* HT40 MCS6 */
  1686. return 135000; /* HT40 MCS7 */
  1687. }
  1688. static unsigned int max_vht80_rate(int snr)
  1689. {
  1690. if (snr < 1)
  1691. return 0;
  1692. if (snr < 2)
  1693. return 29300; /* VHT80 MCS0 */
  1694. if (snr < 5)
  1695. return 58500; /* VHT80 MCS1 */
  1696. if (snr < 9)
  1697. return 87800; /* VHT80 MCS2 */
  1698. if (snr < 11)
  1699. return 117000; /* VHT80 MCS3 */
  1700. if (snr < 15)
  1701. return 175500; /* VHT80 MCS4 */
  1702. if (snr < 16)
  1703. return 234000; /* VHT80 MCS5 */
  1704. if (snr < 18)
  1705. return 263300; /* VHT80 MCS6 */
  1706. if (snr < 20)
  1707. return 292500; /* VHT80 MCS7 */
  1708. if (snr < 22)
  1709. return 351000; /* VHT80 MCS8 */
  1710. return 390000; /* VHT80 MCS9 */
  1711. }
  1712. void scan_est_throughput(struct wpa_supplicant *wpa_s,
  1713. struct wpa_scan_res *res)
  1714. {
  1715. enum local_hw_capab capab = wpa_s->hw_capab;
  1716. int rate; /* max legacy rate in 500 kb/s units */
  1717. const u8 *ie;
  1718. unsigned int est, tmp;
  1719. int snr = res->snr;
  1720. if (res->est_throughput)
  1721. return;
  1722. /* Get maximum legacy rate */
  1723. rate = wpa_scan_get_max_rate(res);
  1724. /* Limit based on estimated SNR */
  1725. if (rate > 1 * 2 && snr < 1)
  1726. rate = 1 * 2;
  1727. else if (rate > 2 * 2 && snr < 4)
  1728. rate = 2 * 2;
  1729. else if (rate > 6 * 2 && snr < 5)
  1730. rate = 6 * 2;
  1731. else if (rate > 9 * 2 && snr < 6)
  1732. rate = 9 * 2;
  1733. else if (rate > 12 * 2 && snr < 7)
  1734. rate = 12 * 2;
  1735. else if (rate > 18 * 2 && snr < 10)
  1736. rate = 18 * 2;
  1737. else if (rate > 24 * 2 && snr < 11)
  1738. rate = 24 * 2;
  1739. else if (rate > 36 * 2 && snr < 15)
  1740. rate = 36 * 2;
  1741. else if (rate > 48 * 2 && snr < 19)
  1742. rate = 48 * 2;
  1743. else if (rate > 54 * 2 && snr < 21)
  1744. rate = 54 * 2;
  1745. est = rate * 500;
  1746. if (capab == CAPAB_HT || capab == CAPAB_HT40 || capab == CAPAB_VHT) {
  1747. ie = wpa_scan_get_ie(res, WLAN_EID_HT_CAP);
  1748. if (ie) {
  1749. tmp = max_ht20_rate(snr);
  1750. if (tmp > est)
  1751. est = tmp;
  1752. }
  1753. }
  1754. if (capab == CAPAB_HT40 || capab == CAPAB_VHT) {
  1755. ie = wpa_scan_get_ie(res, WLAN_EID_HT_OPERATION);
  1756. if (ie && ie[1] >= 2 &&
  1757. (ie[3] & HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK)) {
  1758. tmp = max_ht40_rate(snr);
  1759. if (tmp > est)
  1760. est = tmp;
  1761. }
  1762. }
  1763. if (capab == CAPAB_VHT) {
  1764. /* Use +1 to assume VHT is always faster than HT */
  1765. ie = wpa_scan_get_ie(res, WLAN_EID_VHT_CAP);
  1766. if (ie) {
  1767. tmp = max_ht20_rate(snr) + 1;
  1768. if (tmp > est)
  1769. est = tmp;
  1770. ie = wpa_scan_get_ie(res, WLAN_EID_HT_OPERATION);
  1771. if (ie && ie[1] >= 2 &&
  1772. (ie[3] &
  1773. HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK)) {
  1774. tmp = max_ht40_rate(snr) + 1;
  1775. if (tmp > est)
  1776. est = tmp;
  1777. }
  1778. ie = wpa_scan_get_ie(res, WLAN_EID_VHT_OPERATION);
  1779. if (ie && ie[1] >= 1 &&
  1780. (ie[2] & VHT_OPMODE_CHANNEL_WIDTH_MASK)) {
  1781. tmp = max_vht80_rate(snr) + 1;
  1782. if (tmp > est)
  1783. est = tmp;
  1784. }
  1785. }
  1786. }
  1787. /* TODO: channel utilization and AP load (e.g., from AP Beacon) */
  1788. res->est_throughput = est;
  1789. }
  1790. /**
  1791. * wpa_supplicant_get_scan_results - Get scan results
  1792. * @wpa_s: Pointer to wpa_supplicant data
  1793. * @info: Information about what was scanned or %NULL if not available
  1794. * @new_scan: Whether a new scan was performed
  1795. * Returns: Scan results, %NULL on failure
  1796. *
  1797. * This function request the current scan results from the driver and updates
  1798. * the local BSS list wpa_s->bss. The caller is responsible for freeing the
  1799. * results with wpa_scan_results_free().
  1800. */
  1801. struct wpa_scan_results *
  1802. wpa_supplicant_get_scan_results(struct wpa_supplicant *wpa_s,
  1803. struct scan_info *info, int new_scan)
  1804. {
  1805. struct wpa_scan_results *scan_res;
  1806. size_t i;
  1807. int (*compar)(const void *, const void *) = wpa_scan_result_compar;
  1808. scan_res = wpa_drv_get_scan_results2(wpa_s);
  1809. if (scan_res == NULL) {
  1810. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to get scan results");
  1811. return NULL;
  1812. }
  1813. if (scan_res->fetch_time.sec == 0) {
  1814. /*
  1815. * Make sure we have a valid timestamp if the driver wrapper
  1816. * does not set this.
  1817. */
  1818. os_get_reltime(&scan_res->fetch_time);
  1819. }
  1820. filter_scan_res(wpa_s, scan_res);
  1821. for (i = 0; i < scan_res->num; i++) {
  1822. struct wpa_scan_res *scan_res_item = scan_res->res[i];
  1823. scan_snr(scan_res_item);
  1824. scan_est_throughput(wpa_s, scan_res_item);
  1825. }
  1826. #ifdef CONFIG_WPS
  1827. if (wpas_wps_searching(wpa_s)) {
  1828. wpa_dbg(wpa_s, MSG_DEBUG, "WPS: Order scan results with WPS "
  1829. "provisioning rules");
  1830. compar = wpa_scan_result_wps_compar;
  1831. }
  1832. #endif /* CONFIG_WPS */
  1833. qsort(scan_res->res, scan_res->num, sizeof(struct wpa_scan_res *),
  1834. compar);
  1835. dump_scan_res(scan_res);
  1836. wpa_bss_update_start(wpa_s);
  1837. for (i = 0; i < scan_res->num; i++)
  1838. wpa_bss_update_scan_res(wpa_s, scan_res->res[i],
  1839. &scan_res->fetch_time);
  1840. wpa_bss_update_end(wpa_s, info, new_scan);
  1841. return scan_res;
  1842. }
  1843. /**
  1844. * wpa_supplicant_update_scan_results - Update scan results from the driver
  1845. * @wpa_s: Pointer to wpa_supplicant data
  1846. * Returns: 0 on success, -1 on failure
  1847. *
  1848. * This function updates the BSS table within wpa_supplicant based on the
  1849. * currently available scan results from the driver without requesting a new
  1850. * scan. This is used in cases where the driver indicates an association
  1851. * (including roaming within ESS) and wpa_supplicant does not yet have the
  1852. * needed information to complete the connection (e.g., to perform validation
  1853. * steps in 4-way handshake).
  1854. */
  1855. int wpa_supplicant_update_scan_results(struct wpa_supplicant *wpa_s)
  1856. {
  1857. struct wpa_scan_results *scan_res;
  1858. scan_res = wpa_supplicant_get_scan_results(wpa_s, NULL, 0);
  1859. if (scan_res == NULL)
  1860. return -1;
  1861. wpa_scan_results_free(scan_res);
  1862. return 0;
  1863. }
  1864. /**
  1865. * scan_only_handler - Reports scan results
  1866. */
  1867. void scan_only_handler(struct wpa_supplicant *wpa_s,
  1868. struct wpa_scan_results *scan_res)
  1869. {
  1870. wpa_dbg(wpa_s, MSG_DEBUG, "Scan-only results received");
  1871. if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
  1872. wpa_s->manual_scan_use_id && wpa_s->own_scan_running) {
  1873. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS "id=%u",
  1874. wpa_s->manual_scan_id);
  1875. wpa_s->manual_scan_use_id = 0;
  1876. } else {
  1877. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS);
  1878. }
  1879. wpas_notify_scan_results(wpa_s);
  1880. wpas_notify_scan_done(wpa_s, 1);
  1881. if (wpa_s->scan_work) {
  1882. struct wpa_radio_work *work = wpa_s->scan_work;
  1883. wpa_s->scan_work = NULL;
  1884. radio_work_done(work);
  1885. }
  1886. if (wpa_s->wpa_state == WPA_SCANNING)
  1887. wpa_supplicant_set_state(wpa_s, wpa_s->scan_prev_wpa_state);
  1888. }
  1889. int wpas_scan_scheduled(struct wpa_supplicant *wpa_s)
  1890. {
  1891. return eloop_is_timeout_registered(wpa_supplicant_scan, wpa_s, NULL);
  1892. }
  1893. struct wpa_driver_scan_params *
  1894. wpa_scan_clone_params(const struct wpa_driver_scan_params *src)
  1895. {
  1896. struct wpa_driver_scan_params *params;
  1897. size_t i;
  1898. u8 *n;
  1899. params = os_zalloc(sizeof(*params));
  1900. if (params == NULL)
  1901. return NULL;
  1902. for (i = 0; i < src->num_ssids; i++) {
  1903. if (src->ssids[i].ssid) {
  1904. n = os_malloc(src->ssids[i].ssid_len);
  1905. if (n == NULL)
  1906. goto failed;
  1907. os_memcpy(n, src->ssids[i].ssid,
  1908. src->ssids[i].ssid_len);
  1909. params->ssids[i].ssid = n;
  1910. params->ssids[i].ssid_len = src->ssids[i].ssid_len;
  1911. }
  1912. }
  1913. params->num_ssids = src->num_ssids;
  1914. if (src->extra_ies) {
  1915. n = os_malloc(src->extra_ies_len);
  1916. if (n == NULL)
  1917. goto failed;
  1918. os_memcpy(n, src->extra_ies, src->extra_ies_len);
  1919. params->extra_ies = n;
  1920. params->extra_ies_len = src->extra_ies_len;
  1921. }
  1922. if (src->freqs) {
  1923. int len = int_array_len(src->freqs);
  1924. params->freqs = os_malloc((len + 1) * sizeof(int));
  1925. if (params->freqs == NULL)
  1926. goto failed;
  1927. os_memcpy(params->freqs, src->freqs, (len + 1) * sizeof(int));
  1928. }
  1929. if (src->filter_ssids) {
  1930. params->filter_ssids = os_malloc(sizeof(*params->filter_ssids) *
  1931. src->num_filter_ssids);
  1932. if (params->filter_ssids == NULL)
  1933. goto failed;
  1934. os_memcpy(params->filter_ssids, src->filter_ssids,
  1935. sizeof(*params->filter_ssids) *
  1936. src->num_filter_ssids);
  1937. params->num_filter_ssids = src->num_filter_ssids;
  1938. }
  1939. params->filter_rssi = src->filter_rssi;
  1940. params->p2p_probe = src->p2p_probe;
  1941. params->only_new_results = src->only_new_results;
  1942. params->low_priority = src->low_priority;
  1943. if (src->sched_scan_plans_num > 0) {
  1944. params->sched_scan_plans =
  1945. os_malloc(sizeof(*src->sched_scan_plans) *
  1946. src->sched_scan_plans_num);
  1947. if (!params->sched_scan_plans)
  1948. goto failed;
  1949. os_memcpy(params->sched_scan_plans, src->sched_scan_plans,
  1950. sizeof(*src->sched_scan_plans) *
  1951. src->sched_scan_plans_num);
  1952. params->sched_scan_plans_num = src->sched_scan_plans_num;
  1953. }
  1954. if (src->mac_addr_rand) {
  1955. params->mac_addr_rand = src->mac_addr_rand;
  1956. if (src->mac_addr && src->mac_addr_mask) {
  1957. u8 *mac_addr;
  1958. mac_addr = os_malloc(2 * ETH_ALEN);
  1959. if (!mac_addr)
  1960. goto failed;
  1961. os_memcpy(mac_addr, src->mac_addr, ETH_ALEN);
  1962. os_memcpy(mac_addr + ETH_ALEN, src->mac_addr_mask,
  1963. ETH_ALEN);
  1964. params->mac_addr = mac_addr;
  1965. params->mac_addr_mask = mac_addr + ETH_ALEN;
  1966. }
  1967. }
  1968. if (src->bssid) {
  1969. u8 *bssid;
  1970. bssid = os_malloc(ETH_ALEN);
  1971. if (!bssid)
  1972. goto failed;
  1973. os_memcpy(bssid, src->bssid, ETH_ALEN);
  1974. params->bssid = bssid;
  1975. }
  1976. return params;
  1977. failed:
  1978. wpa_scan_free_params(params);
  1979. return NULL;
  1980. }
  1981. void wpa_scan_free_params(struct wpa_driver_scan_params *params)
  1982. {
  1983. size_t i;
  1984. if (params == NULL)
  1985. return;
  1986. for (i = 0; i < params->num_ssids; i++)
  1987. os_free((u8 *) params->ssids[i].ssid);
  1988. os_free((u8 *) params->extra_ies);
  1989. os_free(params->freqs);
  1990. os_free(params->filter_ssids);
  1991. os_free(params->sched_scan_plans);
  1992. /*
  1993. * Note: params->mac_addr_mask points to same memory allocation and
  1994. * must not be freed separately.
  1995. */
  1996. os_free((u8 *) params->mac_addr);
  1997. os_free((u8 *) params->bssid);
  1998. os_free(params);
  1999. }
  2000. int wpas_start_pno(struct wpa_supplicant *wpa_s)
  2001. {
  2002. int ret, prio;
  2003. size_t i, num_ssid, num_match_ssid;
  2004. struct wpa_ssid *ssid;
  2005. struct wpa_driver_scan_params params;
  2006. struct sched_scan_plan scan_plan;
  2007. unsigned int max_sched_scan_ssids;
  2008. if (!wpa_s->sched_scan_supported)
  2009. return -1;
  2010. if (wpa_s->max_sched_scan_ssids > WPAS_MAX_SCAN_SSIDS)
  2011. max_sched_scan_ssids = WPAS_MAX_SCAN_SSIDS;
  2012. else
  2013. max_sched_scan_ssids = wpa_s->max_sched_scan_ssids;
  2014. if (max_sched_scan_ssids < 1)
  2015. return -1;
  2016. if (wpa_s->pno || wpa_s->pno_sched_pending)
  2017. return 0;
  2018. if ((wpa_s->wpa_state > WPA_SCANNING) &&
  2019. (wpa_s->wpa_state <= WPA_COMPLETED)) {
  2020. wpa_printf(MSG_ERROR, "PNO: In assoc process");
  2021. return -EAGAIN;
  2022. }
  2023. if (wpa_s->wpa_state == WPA_SCANNING) {
  2024. wpa_supplicant_cancel_scan(wpa_s);
  2025. if (wpa_s->sched_scanning) {
  2026. wpa_printf(MSG_DEBUG, "Schedule PNO on completion of "
  2027. "ongoing sched scan");
  2028. wpa_supplicant_cancel_sched_scan(wpa_s);
  2029. wpa_s->pno_sched_pending = 1;
  2030. return 0;
  2031. }
  2032. }
  2033. os_memset(&params, 0, sizeof(params));
  2034. num_ssid = num_match_ssid = 0;
  2035. ssid = wpa_s->conf->ssid;
  2036. while (ssid) {
  2037. if (!wpas_network_disabled(wpa_s, ssid)) {
  2038. num_match_ssid++;
  2039. if (ssid->scan_ssid)
  2040. num_ssid++;
  2041. }
  2042. ssid = ssid->next;
  2043. }
  2044. if (num_match_ssid == 0) {
  2045. wpa_printf(MSG_DEBUG, "PNO: No configured SSIDs");
  2046. return -1;
  2047. }
  2048. if (num_match_ssid > num_ssid) {
  2049. params.num_ssids++; /* wildcard */
  2050. num_ssid++;
  2051. }
  2052. if (num_ssid > max_sched_scan_ssids) {
  2053. wpa_printf(MSG_DEBUG, "PNO: Use only the first %u SSIDs from "
  2054. "%u", max_sched_scan_ssids, (unsigned int) num_ssid);
  2055. num_ssid = max_sched_scan_ssids;
  2056. }
  2057. if (num_match_ssid > wpa_s->max_match_sets) {
  2058. num_match_ssid = wpa_s->max_match_sets;
  2059. wpa_dbg(wpa_s, MSG_DEBUG, "PNO: Too many SSIDs to match");
  2060. }
  2061. params.filter_ssids = os_calloc(num_match_ssid,
  2062. sizeof(struct wpa_driver_scan_filter));
  2063. if (params.filter_ssids == NULL)
  2064. return -1;
  2065. i = 0;
  2066. prio = 0;
  2067. ssid = wpa_s->conf->pssid[prio];
  2068. while (ssid) {
  2069. if (!wpas_network_disabled(wpa_s, ssid)) {
  2070. if (ssid->scan_ssid && params.num_ssids < num_ssid) {
  2071. params.ssids[params.num_ssids].ssid =
  2072. ssid->ssid;
  2073. params.ssids[params.num_ssids].ssid_len =
  2074. ssid->ssid_len;
  2075. params.num_ssids++;
  2076. }
  2077. os_memcpy(params.filter_ssids[i].ssid, ssid->ssid,
  2078. ssid->ssid_len);
  2079. params.filter_ssids[i].ssid_len = ssid->ssid_len;
  2080. params.num_filter_ssids++;
  2081. i++;
  2082. if (i == num_match_ssid)
  2083. break;
  2084. }
  2085. if (ssid->pnext)
  2086. ssid = ssid->pnext;
  2087. else if (prio + 1 == wpa_s->conf->num_prio)
  2088. break;
  2089. else
  2090. ssid = wpa_s->conf->pssid[++prio];
  2091. }
  2092. if (wpa_s->conf->filter_rssi)
  2093. params.filter_rssi = wpa_s->conf->filter_rssi;
  2094. if (wpa_s->sched_scan_plans_num) {
  2095. params.sched_scan_plans = wpa_s->sched_scan_plans;
  2096. params.sched_scan_plans_num = wpa_s->sched_scan_plans_num;
  2097. } else {
  2098. /* Set one scan plan that will run infinitely */
  2099. if (wpa_s->conf->sched_scan_interval)
  2100. scan_plan.interval = wpa_s->conf->sched_scan_interval;
  2101. else
  2102. scan_plan.interval = 10;
  2103. scan_plan.iterations = 0;
  2104. params.sched_scan_plans = &scan_plan;
  2105. params.sched_scan_plans_num = 1;
  2106. }
  2107. if (params.freqs == NULL && wpa_s->manual_sched_scan_freqs) {
  2108. wpa_dbg(wpa_s, MSG_DEBUG, "Limit sched scan to specified channels");
  2109. params.freqs = wpa_s->manual_sched_scan_freqs;
  2110. }
  2111. if (wpa_s->mac_addr_rand_enable & MAC_ADDR_RAND_PNO) {
  2112. params.mac_addr_rand = 1;
  2113. if (wpa_s->mac_addr_pno) {
  2114. params.mac_addr = wpa_s->mac_addr_pno;
  2115. params.mac_addr_mask = wpa_s->mac_addr_pno + ETH_ALEN;
  2116. }
  2117. }
  2118. ret = wpa_supplicant_start_sched_scan(wpa_s, &params);
  2119. os_free(params.filter_ssids);
  2120. if (ret == 0)
  2121. wpa_s->pno = 1;
  2122. else
  2123. wpa_msg(wpa_s, MSG_ERROR, "Failed to schedule PNO");
  2124. return ret;
  2125. }
  2126. int wpas_stop_pno(struct wpa_supplicant *wpa_s)
  2127. {
  2128. int ret = 0;
  2129. if (!wpa_s->pno)
  2130. return 0;
  2131. ret = wpa_supplicant_stop_sched_scan(wpa_s);
  2132. wpa_s->pno = 0;
  2133. wpa_s->pno_sched_pending = 0;
  2134. if (wpa_s->wpa_state == WPA_SCANNING)
  2135. wpa_supplicant_req_scan(wpa_s, 0, 0);
  2136. return ret;
  2137. }
  2138. void wpas_mac_addr_rand_scan_clear(struct wpa_supplicant *wpa_s,
  2139. unsigned int type)
  2140. {
  2141. type &= MAC_ADDR_RAND_ALL;
  2142. wpa_s->mac_addr_rand_enable &= ~type;
  2143. if (type & MAC_ADDR_RAND_SCAN) {
  2144. os_free(wpa_s->mac_addr_scan);
  2145. wpa_s->mac_addr_scan = NULL;
  2146. }
  2147. if (type & MAC_ADDR_RAND_SCHED_SCAN) {
  2148. os_free(wpa_s->mac_addr_sched_scan);
  2149. wpa_s->mac_addr_sched_scan = NULL;
  2150. }
  2151. if (type & MAC_ADDR_RAND_PNO) {
  2152. os_free(wpa_s->mac_addr_pno);
  2153. wpa_s->mac_addr_pno = NULL;
  2154. }
  2155. }
  2156. int wpas_mac_addr_rand_scan_set(struct wpa_supplicant *wpa_s,
  2157. unsigned int type, const u8 *addr,
  2158. const u8 *mask)
  2159. {
  2160. u8 *tmp = NULL;
  2161. wpas_mac_addr_rand_scan_clear(wpa_s, type);
  2162. if (addr) {
  2163. tmp = os_malloc(2 * ETH_ALEN);
  2164. if (!tmp)
  2165. return -1;
  2166. os_memcpy(tmp, addr, ETH_ALEN);
  2167. os_memcpy(tmp + ETH_ALEN, mask, ETH_ALEN);
  2168. }
  2169. if (type == MAC_ADDR_RAND_SCAN) {
  2170. wpa_s->mac_addr_scan = tmp;
  2171. } else if (type == MAC_ADDR_RAND_SCHED_SCAN) {
  2172. wpa_s->mac_addr_sched_scan = tmp;
  2173. } else if (type == MAC_ADDR_RAND_PNO) {
  2174. wpa_s->mac_addr_pno = tmp;
  2175. } else {
  2176. wpa_printf(MSG_INFO,
  2177. "scan: Invalid MAC randomization type=0x%x",
  2178. type);
  2179. os_free(tmp);
  2180. return -1;
  2181. }
  2182. wpa_s->mac_addr_rand_enable |= type;
  2183. return 0;
  2184. }
  2185. int wpas_abort_ongoing_scan(struct wpa_supplicant *wpa_s)
  2186. {
  2187. int scan_work = !!wpa_s->scan_work;
  2188. #ifdef CONFIG_P2P
  2189. scan_work |= !!wpa_s->p2p_scan_work;
  2190. #endif /* CONFIG_P2P */
  2191. if (scan_work && wpa_s->own_scan_running) {
  2192. wpa_dbg(wpa_s, MSG_DEBUG, "Abort an ongoing scan");
  2193. return wpa_drv_abort_scan(wpa_s);
  2194. }
  2195. return 0;
  2196. }
  2197. int wpas_sched_scan_plans_set(struct wpa_supplicant *wpa_s, const char *cmd)
  2198. {
  2199. struct sched_scan_plan *scan_plans = NULL;
  2200. const char *token, *context = NULL;
  2201. unsigned int num = 0;
  2202. if (!cmd)
  2203. return -1;
  2204. if (!cmd[0]) {
  2205. wpa_printf(MSG_DEBUG, "Clear sched scan plans");
  2206. os_free(wpa_s->sched_scan_plans);
  2207. wpa_s->sched_scan_plans = NULL;
  2208. wpa_s->sched_scan_plans_num = 0;
  2209. return 0;
  2210. }
  2211. while ((token = cstr_token(cmd, " ", &context))) {
  2212. int ret;
  2213. struct sched_scan_plan *scan_plan, *n;
  2214. n = os_realloc_array(scan_plans, num + 1, sizeof(*scan_plans));
  2215. if (!n)
  2216. goto fail;
  2217. scan_plans = n;
  2218. scan_plan = &scan_plans[num];
  2219. num++;
  2220. ret = sscanf(token, "%u:%u", &scan_plan->interval,
  2221. &scan_plan->iterations);
  2222. if (ret <= 0 || ret > 2 || !scan_plan->interval) {
  2223. wpa_printf(MSG_ERROR,
  2224. "Invalid sched scan plan input: %s", token);
  2225. goto fail;
  2226. }
  2227. if (scan_plan->interval > wpa_s->max_sched_scan_plan_interval) {
  2228. wpa_printf(MSG_WARNING,
  2229. "scan plan %u: Scan interval too long(%u), use the maximum allowed(%u)",
  2230. num, scan_plan->interval,
  2231. wpa_s->max_sched_scan_plan_interval);
  2232. scan_plan->interval =
  2233. wpa_s->max_sched_scan_plan_interval;
  2234. }
  2235. if (ret == 1) {
  2236. scan_plan->iterations = 0;
  2237. break;
  2238. }
  2239. if (!scan_plan->iterations) {
  2240. wpa_printf(MSG_ERROR,
  2241. "scan plan %u: Number of iterations cannot be zero",
  2242. num);
  2243. goto fail;
  2244. }
  2245. if (scan_plan->iterations >
  2246. wpa_s->max_sched_scan_plan_iterations) {
  2247. wpa_printf(MSG_WARNING,
  2248. "scan plan %u: Too many iterations(%u), use the maximum allowed(%u)",
  2249. num, scan_plan->iterations,
  2250. wpa_s->max_sched_scan_plan_iterations);
  2251. scan_plan->iterations =
  2252. wpa_s->max_sched_scan_plan_iterations;
  2253. }
  2254. wpa_printf(MSG_DEBUG,
  2255. "scan plan %u: interval=%u iterations=%u",
  2256. num, scan_plan->interval, scan_plan->iterations);
  2257. }
  2258. if (!scan_plans) {
  2259. wpa_printf(MSG_ERROR, "Invalid scan plans entry");
  2260. goto fail;
  2261. }
  2262. if (cstr_token(cmd, " ", &context) || scan_plans[num - 1].iterations) {
  2263. wpa_printf(MSG_ERROR,
  2264. "All scan plans but the last must specify a number of iterations");
  2265. goto fail;
  2266. }
  2267. wpa_printf(MSG_DEBUG, "scan plan %u (last plan): interval=%u",
  2268. num, scan_plans[num - 1].interval);
  2269. if (num > wpa_s->max_sched_scan_plans) {
  2270. wpa_printf(MSG_WARNING,
  2271. "Too many scheduled scan plans (only %u supported)",
  2272. wpa_s->max_sched_scan_plans);
  2273. wpa_printf(MSG_WARNING,
  2274. "Use only the first %u scan plans, and the last one (in infinite loop)",
  2275. wpa_s->max_sched_scan_plans - 1);
  2276. os_memcpy(&scan_plans[wpa_s->max_sched_scan_plans - 1],
  2277. &scan_plans[num - 1], sizeof(*scan_plans));
  2278. num = wpa_s->max_sched_scan_plans;
  2279. }
  2280. os_free(wpa_s->sched_scan_plans);
  2281. wpa_s->sched_scan_plans = scan_plans;
  2282. wpa_s->sched_scan_plans_num = num;
  2283. return 0;
  2284. fail:
  2285. os_free(scan_plans);
  2286. wpa_printf(MSG_ERROR, "invalid scan plans list");
  2287. return -1;
  2288. }