wpa_supplicant.c 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664
  1. /*
  2. * WPA Supplicant
  3. * Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. *
  14. * This file implements functions for registering and unregistering
  15. * %wpa_supplicant interfaces. In addition, this file contains number of
  16. * functions for managing network connections.
  17. */
  18. #include "includes.h"
  19. #include "common.h"
  20. #include "eapol_supp/eapol_supp_sm.h"
  21. #include "eap_peer/eap.h"
  22. #include "eap_server/eap_methods.h"
  23. #include "rsn_supp/wpa.h"
  24. #include "eloop.h"
  25. #include "config.h"
  26. #include "l2_packet/l2_packet.h"
  27. #include "wpa_supplicant_i.h"
  28. #include "driver_i.h"
  29. #include "ctrl_iface.h"
  30. #include "pcsc_funcs.h"
  31. #include "common/version.h"
  32. #include "rsn_supp/preauth.h"
  33. #include "rsn_supp/pmksa_cache.h"
  34. #include "common/wpa_ctrl.h"
  35. #include "mlme.h"
  36. #include "common/ieee802_11_defs.h"
  37. #include "p2p/p2p.h"
  38. #include "blacklist.h"
  39. #include "wpas_glue.h"
  40. #include "wps_supplicant.h"
  41. #include "ibss_rsn.h"
  42. #include "sme.h"
  43. #include "ap.h"
  44. #include "p2p_supplicant.h"
  45. #include "notify.h"
  46. #include "bgscan.h"
  47. #include "bss.h"
  48. #include "scan.h"
  49. const char *wpa_supplicant_version =
  50. "wpa_supplicant v" VERSION_STR "\n"
  51. "Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi> and contributors";
  52. const char *wpa_supplicant_license =
  53. "This program is free software. You can distribute it and/or modify it\n"
  54. "under the terms of the GNU General Public License version 2.\n"
  55. "\n"
  56. "Alternatively, this software may be distributed under the terms of the\n"
  57. "BSD license. See README and COPYING for more details.\n"
  58. #ifdef EAP_TLS_OPENSSL
  59. "\nThis product includes software developed by the OpenSSL Project\n"
  60. "for use in the OpenSSL Toolkit (http://www.openssl.org/)\n"
  61. #endif /* EAP_TLS_OPENSSL */
  62. ;
  63. #ifndef CONFIG_NO_STDOUT_DEBUG
  64. /* Long text divided into parts in order to fit in C89 strings size limits. */
  65. const char *wpa_supplicant_full_license1 =
  66. "This program is free software; you can redistribute it and/or modify\n"
  67. "it under the terms of the GNU General Public License version 2 as\n"
  68. "published by the Free Software Foundation.\n"
  69. "\n"
  70. "This program is distributed in the hope that it will be useful,\n"
  71. "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  72. "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  73. "GNU General Public License for more details.\n"
  74. "\n";
  75. const char *wpa_supplicant_full_license2 =
  76. "You should have received a copy of the GNU General Public License\n"
  77. "along with this program; if not, write to the Free Software\n"
  78. "Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n"
  79. "\n"
  80. "Alternatively, this software may be distributed under the terms of the\n"
  81. "BSD license.\n"
  82. "\n"
  83. "Redistribution and use in source and binary forms, with or without\n"
  84. "modification, are permitted provided that the following conditions are\n"
  85. "met:\n"
  86. "\n";
  87. const char *wpa_supplicant_full_license3 =
  88. "1. Redistributions of source code must retain the above copyright\n"
  89. " notice, this list of conditions and the following disclaimer.\n"
  90. "\n"
  91. "2. Redistributions in binary form must reproduce the above copyright\n"
  92. " notice, this list of conditions and the following disclaimer in the\n"
  93. " documentation and/or other materials provided with the distribution.\n"
  94. "\n";
  95. const char *wpa_supplicant_full_license4 =
  96. "3. Neither the name(s) of the above-listed copyright holder(s) nor the\n"
  97. " names of its contributors may be used to endorse or promote products\n"
  98. " derived from this software without specific prior written permission.\n"
  99. "\n"
  100. "THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n"
  101. "\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n"
  102. "LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n"
  103. "A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n";
  104. const char *wpa_supplicant_full_license5 =
  105. "OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n"
  106. "SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n"
  107. "LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n"
  108. "DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n"
  109. "THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n"
  110. "(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n"
  111. "OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  112. "\n";
  113. #endif /* CONFIG_NO_STDOUT_DEBUG */
  114. extern int wpa_debug_level;
  115. extern int wpa_debug_show_keys;
  116. extern int wpa_debug_timestamp;
  117. extern struct wpa_driver_ops *wpa_drivers[];
  118. /* Configure default/group WEP keys for static WEP */
  119. int wpa_set_wep_keys(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid)
  120. {
  121. int i, set = 0;
  122. for (i = 0; i < NUM_WEP_KEYS; i++) {
  123. if (ssid->wep_key_len[i] == 0)
  124. continue;
  125. set = 1;
  126. wpa_drv_set_key(wpa_s, WPA_ALG_WEP,
  127. (u8 *) "\xff\xff\xff\xff\xff\xff",
  128. i, i == ssid->wep_tx_keyidx, (u8 *) "", 0,
  129. ssid->wep_key[i], ssid->wep_key_len[i]);
  130. }
  131. return set;
  132. }
  133. static int wpa_supplicant_set_wpa_none_key(struct wpa_supplicant *wpa_s,
  134. struct wpa_ssid *ssid)
  135. {
  136. u8 key[32];
  137. size_t keylen;
  138. enum wpa_alg alg;
  139. u8 seq[6] = { 0 };
  140. /* IBSS/WPA-None uses only one key (Group) for both receiving and
  141. * sending unicast and multicast packets. */
  142. if (ssid->mode != WPAS_MODE_IBSS) {
  143. wpa_printf(MSG_INFO, "WPA: Invalid mode %d (not IBSS/ad-hoc) "
  144. "for WPA-None", ssid->mode);
  145. return -1;
  146. }
  147. if (!ssid->psk_set) {
  148. wpa_printf(MSG_INFO, "WPA: No PSK configured for WPA-None");
  149. return -1;
  150. }
  151. switch (wpa_s->group_cipher) {
  152. case WPA_CIPHER_CCMP:
  153. os_memcpy(key, ssid->psk, 16);
  154. keylen = 16;
  155. alg = WPA_ALG_CCMP;
  156. break;
  157. case WPA_CIPHER_TKIP:
  158. /* WPA-None uses the same Michael MIC key for both TX and RX */
  159. os_memcpy(key, ssid->psk, 16 + 8);
  160. os_memcpy(key + 16 + 8, ssid->psk + 16, 8);
  161. keylen = 32;
  162. alg = WPA_ALG_TKIP;
  163. break;
  164. default:
  165. wpa_printf(MSG_INFO, "WPA: Invalid group cipher %d for "
  166. "WPA-None", wpa_s->group_cipher);
  167. return -1;
  168. }
  169. /* TODO: should actually remember the previously used seq#, both for TX
  170. * and RX from each STA.. */
  171. return wpa_drv_set_key(wpa_s, alg, (u8 *) "\xff\xff\xff\xff\xff\xff",
  172. 0, 1, seq, 6, key, keylen);
  173. }
  174. static void wpa_supplicant_timeout(void *eloop_ctx, void *timeout_ctx)
  175. {
  176. struct wpa_supplicant *wpa_s = eloop_ctx;
  177. const u8 *bssid = wpa_s->bssid;
  178. if (is_zero_ether_addr(bssid))
  179. bssid = wpa_s->pending_bssid;
  180. wpa_msg(wpa_s, MSG_INFO, "Authentication with " MACSTR " timed out.",
  181. MAC2STR(bssid));
  182. wpa_blacklist_add(wpa_s, bssid);
  183. wpa_sm_notify_disassoc(wpa_s->wpa);
  184. wpa_supplicant_disassociate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  185. wpa_s->reassociate = 1;
  186. wpa_supplicant_req_scan(wpa_s, 0, 0);
  187. }
  188. /**
  189. * wpa_supplicant_req_auth_timeout - Schedule a timeout for authentication
  190. * @wpa_s: Pointer to wpa_supplicant data
  191. * @sec: Number of seconds after which to time out authentication
  192. * @usec: Number of microseconds after which to time out authentication
  193. *
  194. * This function is used to schedule a timeout for the current authentication
  195. * attempt.
  196. */
  197. void wpa_supplicant_req_auth_timeout(struct wpa_supplicant *wpa_s,
  198. int sec, int usec)
  199. {
  200. if (wpa_s->conf && wpa_s->conf->ap_scan == 0 &&
  201. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED))
  202. return;
  203. wpa_msg(wpa_s, MSG_DEBUG, "Setting authentication timeout: %d sec "
  204. "%d usec", sec, usec);
  205. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
  206. eloop_register_timeout(sec, usec, wpa_supplicant_timeout, wpa_s, NULL);
  207. }
  208. /**
  209. * wpa_supplicant_cancel_auth_timeout - Cancel authentication timeout
  210. * @wpa_s: Pointer to wpa_supplicant data
  211. *
  212. * This function is used to cancel authentication timeout scheduled with
  213. * wpa_supplicant_req_auth_timeout() and it is called when authentication has
  214. * been completed.
  215. */
  216. void wpa_supplicant_cancel_auth_timeout(struct wpa_supplicant *wpa_s)
  217. {
  218. wpa_msg(wpa_s, MSG_DEBUG, "Cancelling authentication timeout");
  219. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
  220. wpa_blacklist_del(wpa_s, wpa_s->bssid);
  221. }
  222. /**
  223. * wpa_supplicant_initiate_eapol - Configure EAPOL state machine
  224. * @wpa_s: Pointer to wpa_supplicant data
  225. *
  226. * This function is used to configure EAPOL state machine based on the selected
  227. * authentication mode.
  228. */
  229. void wpa_supplicant_initiate_eapol(struct wpa_supplicant *wpa_s)
  230. {
  231. #ifdef IEEE8021X_EAPOL
  232. struct eapol_config eapol_conf;
  233. struct wpa_ssid *ssid = wpa_s->current_ssid;
  234. #ifdef CONFIG_IBSS_RSN
  235. if (ssid->mode == WPAS_MODE_IBSS &&
  236. wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
  237. wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE) {
  238. /*
  239. * RSN IBSS authentication is per-STA and we can disable the
  240. * per-BSSID EAPOL authentication.
  241. */
  242. eapol_sm_notify_portControl(wpa_s->eapol, ForceAuthorized);
  243. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  244. eapol_sm_notify_eap_fail(wpa_s->eapol, FALSE);
  245. return;
  246. }
  247. #endif /* CONFIG_IBSS_RSN */
  248. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  249. eapol_sm_notify_eap_fail(wpa_s->eapol, FALSE);
  250. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  251. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE)
  252. eapol_sm_notify_portControl(wpa_s->eapol, ForceAuthorized);
  253. else
  254. eapol_sm_notify_portControl(wpa_s->eapol, Auto);
  255. os_memset(&eapol_conf, 0, sizeof(eapol_conf));
  256. if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  257. eapol_conf.accept_802_1x_keys = 1;
  258. eapol_conf.required_keys = 0;
  259. if (ssid->eapol_flags & EAPOL_FLAG_REQUIRE_KEY_UNICAST) {
  260. eapol_conf.required_keys |= EAPOL_REQUIRE_KEY_UNICAST;
  261. }
  262. if (ssid->eapol_flags & EAPOL_FLAG_REQUIRE_KEY_BROADCAST) {
  263. eapol_conf.required_keys |=
  264. EAPOL_REQUIRE_KEY_BROADCAST;
  265. }
  266. if (wpa_s->conf && (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED))
  267. eapol_conf.required_keys = 0;
  268. }
  269. if (wpa_s->conf)
  270. eapol_conf.fast_reauth = wpa_s->conf->fast_reauth;
  271. eapol_conf.workaround = ssid->eap_workaround;
  272. eapol_conf.eap_disabled =
  273. !wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) &&
  274. wpa_s->key_mgmt != WPA_KEY_MGMT_IEEE8021X_NO_WPA &&
  275. wpa_s->key_mgmt != WPA_KEY_MGMT_WPS;
  276. eapol_sm_notify_config(wpa_s->eapol, &ssid->eap, &eapol_conf);
  277. #endif /* IEEE8021X_EAPOL */
  278. }
  279. /**
  280. * wpa_supplicant_set_non_wpa_policy - Set WPA parameters to non-WPA mode
  281. * @wpa_s: Pointer to wpa_supplicant data
  282. * @ssid: Configuration data for the network
  283. *
  284. * This function is used to configure WPA state machine and related parameters
  285. * to a mode where WPA is not enabled. This is called as part of the
  286. * authentication configuration when the selected network does not use WPA.
  287. */
  288. void wpa_supplicant_set_non_wpa_policy(struct wpa_supplicant *wpa_s,
  289. struct wpa_ssid *ssid)
  290. {
  291. int i;
  292. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS)
  293. wpa_s->key_mgmt = WPA_KEY_MGMT_WPS;
  294. else if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)
  295. wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X_NO_WPA;
  296. else
  297. wpa_s->key_mgmt = WPA_KEY_MGMT_NONE;
  298. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, NULL, 0);
  299. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, NULL, 0);
  300. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  301. wpa_s->pairwise_cipher = WPA_CIPHER_NONE;
  302. wpa_s->group_cipher = WPA_CIPHER_NONE;
  303. wpa_s->mgmt_group_cipher = 0;
  304. for (i = 0; i < NUM_WEP_KEYS; i++) {
  305. if (ssid->wep_key_len[i] > 5) {
  306. wpa_s->pairwise_cipher = WPA_CIPHER_WEP104;
  307. wpa_s->group_cipher = WPA_CIPHER_WEP104;
  308. break;
  309. } else if (ssid->wep_key_len[i] > 0) {
  310. wpa_s->pairwise_cipher = WPA_CIPHER_WEP40;
  311. wpa_s->group_cipher = WPA_CIPHER_WEP40;
  312. break;
  313. }
  314. }
  315. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_RSN_ENABLED, 0);
  316. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_KEY_MGMT, wpa_s->key_mgmt);
  317. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_PAIRWISE,
  318. wpa_s->pairwise_cipher);
  319. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_GROUP, wpa_s->group_cipher);
  320. #ifdef CONFIG_IEEE80211W
  321. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_MGMT_GROUP,
  322. wpa_s->mgmt_group_cipher);
  323. #endif /* CONFIG_IEEE80211W */
  324. pmksa_cache_clear_current(wpa_s->wpa);
  325. }
  326. static void wpa_supplicant_cleanup(struct wpa_supplicant *wpa_s)
  327. {
  328. bgscan_deinit(wpa_s);
  329. scard_deinit(wpa_s->scard);
  330. wpa_s->scard = NULL;
  331. wpa_sm_set_scard_ctx(wpa_s->wpa, NULL);
  332. eapol_sm_register_scard_ctx(wpa_s->eapol, NULL);
  333. l2_packet_deinit(wpa_s->l2);
  334. wpa_s->l2 = NULL;
  335. if (wpa_s->l2_br) {
  336. l2_packet_deinit(wpa_s->l2_br);
  337. wpa_s->l2_br = NULL;
  338. }
  339. if (wpa_s->ctrl_iface) {
  340. wpa_supplicant_ctrl_iface_deinit(wpa_s->ctrl_iface);
  341. wpa_s->ctrl_iface = NULL;
  342. }
  343. if (wpa_s->conf != NULL) {
  344. struct wpa_ssid *ssid;
  345. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
  346. wpas_notify_network_removed(wpa_s, ssid);
  347. wpa_config_free(wpa_s->conf);
  348. wpa_s->conf = NULL;
  349. }
  350. os_free(wpa_s->confname);
  351. wpa_s->confname = NULL;
  352. wpa_sm_set_eapol(wpa_s->wpa, NULL);
  353. eapol_sm_deinit(wpa_s->eapol);
  354. wpa_s->eapol = NULL;
  355. rsn_preauth_deinit(wpa_s->wpa);
  356. pmksa_candidate_free(wpa_s->wpa);
  357. wpa_sm_deinit(wpa_s->wpa);
  358. wpa_s->wpa = NULL;
  359. wpa_blacklist_clear(wpa_s);
  360. wpa_bss_deinit(wpa_s);
  361. wpa_supplicant_cancel_scan(wpa_s);
  362. wpa_supplicant_cancel_auth_timeout(wpa_s);
  363. ieee80211_sta_deinit(wpa_s);
  364. wpas_wps_deinit(wpa_s);
  365. wpabuf_free(wpa_s->pending_eapol_rx);
  366. wpa_s->pending_eapol_rx = NULL;
  367. #ifdef CONFIG_IBSS_RSN
  368. ibss_rsn_deinit(wpa_s->ibss_rsn);
  369. wpa_s->ibss_rsn = NULL;
  370. #endif /* CONFIG_IBSS_RSN */
  371. #ifdef CONFIG_SME
  372. os_free(wpa_s->sme.ft_ies);
  373. wpa_s->sme.ft_ies = NULL;
  374. wpa_s->sme.ft_ies_len = 0;
  375. sme_stop_sa_query(wpa_s);
  376. #endif /* CONFIG_SME */
  377. #ifdef CONFIG_AP
  378. wpa_supplicant_ap_deinit(wpa_s);
  379. #endif /* CONFIG_AP */
  380. #ifdef CONFIG_P2P
  381. wpas_p2p_deinit(wpa_s);
  382. #endif /* CONFIG_P2P */
  383. os_free(wpa_s->next_scan_freqs);
  384. wpa_s->next_scan_freqs = NULL;
  385. }
  386. /**
  387. * wpa_clear_keys - Clear keys configured for the driver
  388. * @wpa_s: Pointer to wpa_supplicant data
  389. * @addr: Previously used BSSID or %NULL if not available
  390. *
  391. * This function clears the encryption keys that has been previously configured
  392. * for the driver.
  393. */
  394. void wpa_clear_keys(struct wpa_supplicant *wpa_s, const u8 *addr)
  395. {
  396. u8 *bcast = (u8 *) "\xff\xff\xff\xff\xff\xff";
  397. if (wpa_s->keys_cleared) {
  398. /* Some drivers (e.g., ndiswrapper & NDIS drivers) seem to have
  399. * timing issues with keys being cleared just before new keys
  400. * are set or just after association or something similar. This
  401. * shows up in group key handshake failing often because of the
  402. * client not receiving the first encrypted packets correctly.
  403. * Skipping some of the extra key clearing steps seems to help
  404. * in completing group key handshake more reliably. */
  405. wpa_printf(MSG_DEBUG, "No keys have been configured - "
  406. "skip key clearing");
  407. return;
  408. }
  409. /* MLME-DELETEKEYS.request */
  410. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, bcast, 0, 0, NULL, 0, NULL, 0);
  411. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, bcast, 1, 0, NULL, 0, NULL, 0);
  412. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, bcast, 2, 0, NULL, 0, NULL, 0);
  413. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, bcast, 3, 0, NULL, 0, NULL, 0);
  414. #ifdef CONFIG_IEEE80211W
  415. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, bcast, 4, 0, NULL, 0, NULL, 0);
  416. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, bcast, 5, 0, NULL, 0, NULL, 0);
  417. #endif /* CONFIG_IEEE80211W */
  418. if (addr) {
  419. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, addr, 0, 0, NULL, 0, NULL,
  420. 0);
  421. /* MLME-SETPROTECTION.request(None) */
  422. wpa_drv_mlme_setprotection(
  423. wpa_s, addr,
  424. MLME_SETPROTECTION_PROTECT_TYPE_NONE,
  425. MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
  426. }
  427. wpa_s->keys_cleared = 1;
  428. }
  429. /**
  430. * wpa_supplicant_state_txt - Get the connection state name as a text string
  431. * @state: State (wpa_state; WPA_*)
  432. * Returns: The state name as a printable text string
  433. */
  434. const char * wpa_supplicant_state_txt(enum wpa_states state)
  435. {
  436. switch (state) {
  437. case WPA_DISCONNECTED:
  438. return "DISCONNECTED";
  439. case WPA_INACTIVE:
  440. return "INACTIVE";
  441. case WPA_INTERFACE_DISABLED:
  442. return "INTERFACE_DISABLED";
  443. case WPA_SCANNING:
  444. return "SCANNING";
  445. case WPA_AUTHENTICATING:
  446. return "AUTHENTICATING";
  447. case WPA_ASSOCIATING:
  448. return "ASSOCIATING";
  449. case WPA_ASSOCIATED:
  450. return "ASSOCIATED";
  451. case WPA_4WAY_HANDSHAKE:
  452. return "4WAY_HANDSHAKE";
  453. case WPA_GROUP_HANDSHAKE:
  454. return "GROUP_HANDSHAKE";
  455. case WPA_COMPLETED:
  456. return "COMPLETED";
  457. default:
  458. return "UNKNOWN";
  459. }
  460. }
  461. /**
  462. * wpa_supplicant_set_state - Set current connection state
  463. * @wpa_s: Pointer to wpa_supplicant data
  464. * @state: The new connection state
  465. *
  466. * This function is called whenever the connection state changes, e.g.,
  467. * association is completed for WPA/WPA2 4-Way Handshake is started.
  468. */
  469. void wpa_supplicant_set_state(struct wpa_supplicant *wpa_s,
  470. enum wpa_states state)
  471. {
  472. enum wpa_states old_state = wpa_s->wpa_state;
  473. wpa_printf(MSG_DEBUG, "%s: State: %s -> %s",
  474. wpa_s->ifname, wpa_supplicant_state_txt(wpa_s->wpa_state),
  475. wpa_supplicant_state_txt(state));
  476. if (state != WPA_SCANNING)
  477. wpa_supplicant_notify_scanning(wpa_s, 0);
  478. if (state == WPA_COMPLETED && wpa_s->new_connection) {
  479. #if defined(CONFIG_CTRL_IFACE) || !defined(CONFIG_NO_STDOUT_DEBUG)
  480. struct wpa_ssid *ssid = wpa_s->current_ssid;
  481. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_CONNECTED "- Connection to "
  482. MACSTR " completed %s [id=%d id_str=%s]",
  483. MAC2STR(wpa_s->bssid), wpa_s->reassociated_connection ?
  484. "(reauth)" : "(auth)",
  485. ssid ? ssid->id : -1,
  486. ssid && ssid->id_str ? ssid->id_str : "");
  487. #endif /* CONFIG_CTRL_IFACE || !CONFIG_NO_STDOUT_DEBUG */
  488. wpa_s->new_connection = 0;
  489. wpa_s->reassociated_connection = 1;
  490. wpa_drv_set_operstate(wpa_s, 1);
  491. #ifndef IEEE8021X_EAPOL
  492. wpa_drv_set_supp_port(wpa_s, 1);
  493. #endif /* IEEE8021X_EAPOL */
  494. wpa_s->after_wps = 0;
  495. #ifdef CONFIG_P2P
  496. wpas_p2p_completed(wpa_s);
  497. #endif /* CONFIG_P2P */
  498. } else if (state == WPA_DISCONNECTED || state == WPA_ASSOCIATING ||
  499. state == WPA_ASSOCIATED) {
  500. wpa_s->new_connection = 1;
  501. wpa_drv_set_operstate(wpa_s, 0);
  502. #ifndef IEEE8021X_EAPOL
  503. wpa_drv_set_supp_port(wpa_s, 0);
  504. #endif /* IEEE8021X_EAPOL */
  505. }
  506. wpa_s->wpa_state = state;
  507. if (wpa_s->wpa_state != old_state)
  508. wpas_notify_state_changed(wpa_s, wpa_s->wpa_state, old_state);
  509. }
  510. void wpa_supplicant_terminate_proc(struct wpa_global *global)
  511. {
  512. int pending = 0;
  513. #ifdef CONFIG_WPS
  514. struct wpa_supplicant *wpa_s = global->ifaces;
  515. while (wpa_s) {
  516. if (wpas_wps_terminate_pending(wpa_s) == 1)
  517. pending = 1;
  518. wpa_s = wpa_s->next;
  519. }
  520. #endif /* CONFIG_WPS */
  521. if (pending)
  522. return;
  523. eloop_terminate();
  524. }
  525. static void wpa_supplicant_terminate(int sig, void *signal_ctx)
  526. {
  527. struct wpa_global *global = signal_ctx;
  528. struct wpa_supplicant *wpa_s;
  529. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  530. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_TERMINATING "- signal %d "
  531. "received", sig);
  532. }
  533. wpa_supplicant_terminate_proc(global);
  534. }
  535. void wpa_supplicant_clear_status(struct wpa_supplicant *wpa_s)
  536. {
  537. enum wpa_states old_state = wpa_s->wpa_state;
  538. wpa_s->pairwise_cipher = 0;
  539. wpa_s->group_cipher = 0;
  540. wpa_s->mgmt_group_cipher = 0;
  541. wpa_s->key_mgmt = 0;
  542. if (wpa_s->wpa_state != WPA_INTERFACE_DISABLED)
  543. wpa_s->wpa_state = WPA_DISCONNECTED;
  544. if (wpa_s->wpa_state != old_state)
  545. wpas_notify_state_changed(wpa_s, wpa_s->wpa_state, old_state);
  546. }
  547. /**
  548. * wpa_supplicant_reload_configuration - Reload configuration data
  549. * @wpa_s: Pointer to wpa_supplicant data
  550. * Returns: 0 on success or -1 if configuration parsing failed
  551. *
  552. * This function can be used to request that the configuration data is reloaded
  553. * (e.g., after configuration file change). This function is reloading
  554. * configuration only for one interface, so this may need to be called multiple
  555. * times if %wpa_supplicant is controlling multiple interfaces and all
  556. * interfaces need reconfiguration.
  557. */
  558. int wpa_supplicant_reload_configuration(struct wpa_supplicant *wpa_s)
  559. {
  560. struct wpa_config *conf;
  561. struct wpa_ssid *old_ssid;
  562. int reconf_ctrl;
  563. int old_ap_scan;
  564. if (wpa_s->confname == NULL)
  565. return -1;
  566. conf = wpa_config_read(wpa_s->confname);
  567. if (conf == NULL) {
  568. wpa_msg(wpa_s, MSG_ERROR, "Failed to parse the configuration "
  569. "file '%s' - exiting", wpa_s->confname);
  570. return -1;
  571. }
  572. conf->changed_parameters = (unsigned int) -1;
  573. reconf_ctrl = !!conf->ctrl_interface != !!wpa_s->conf->ctrl_interface
  574. || (conf->ctrl_interface && wpa_s->conf->ctrl_interface &&
  575. os_strcmp(conf->ctrl_interface,
  576. wpa_s->conf->ctrl_interface) != 0);
  577. if (reconf_ctrl && wpa_s->ctrl_iface) {
  578. wpa_supplicant_ctrl_iface_deinit(wpa_s->ctrl_iface);
  579. wpa_s->ctrl_iface = NULL;
  580. }
  581. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  582. old_ssid = wpa_s->current_ssid;
  583. wpa_s->current_ssid = NULL;
  584. if (old_ssid != wpa_s->current_ssid)
  585. wpas_notify_network_changed(wpa_s);
  586. /*
  587. * TODO: should notify EAPOL SM about changes in opensc_engine_path,
  588. * pkcs11_engine_path, pkcs11_module_path.
  589. */
  590. if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt)) {
  591. /*
  592. * Clear forced success to clear EAP state for next
  593. * authentication.
  594. */
  595. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  596. }
  597. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  598. wpa_sm_set_config(wpa_s->wpa, NULL);
  599. wpa_sm_set_fast_reauth(wpa_s->wpa, wpa_s->conf->fast_reauth);
  600. rsn_preauth_deinit(wpa_s->wpa);
  601. old_ap_scan = wpa_s->conf->ap_scan;
  602. wpa_config_free(wpa_s->conf);
  603. wpa_s->conf = conf;
  604. if (old_ap_scan != wpa_s->conf->ap_scan)
  605. wpas_notify_ap_scan_changed(wpa_s);
  606. if (reconf_ctrl)
  607. wpa_s->ctrl_iface = wpa_supplicant_ctrl_iface_init(wpa_s);
  608. wpa_supplicant_update_config(wpa_s);
  609. wpa_supplicant_clear_status(wpa_s);
  610. if (wpa_supplicant_enabled_networks(wpa_s->conf)) {
  611. wpa_s->reassociate = 1;
  612. wpa_supplicant_req_scan(wpa_s, 0, 0);
  613. }
  614. wpa_msg(wpa_s, MSG_DEBUG, "Reconfiguration completed");
  615. return 0;
  616. }
  617. static void wpa_supplicant_reconfig(int sig, void *signal_ctx)
  618. {
  619. struct wpa_global *global = signal_ctx;
  620. struct wpa_supplicant *wpa_s;
  621. wpa_printf(MSG_DEBUG, "Signal %d received - reconfiguring", sig);
  622. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  623. if (wpa_supplicant_reload_configuration(wpa_s) < 0) {
  624. wpa_supplicant_terminate_proc(global);
  625. }
  626. }
  627. }
  628. enum wpa_cipher cipher_suite2driver(int cipher)
  629. {
  630. switch (cipher) {
  631. case WPA_CIPHER_NONE:
  632. return CIPHER_NONE;
  633. case WPA_CIPHER_WEP40:
  634. return CIPHER_WEP40;
  635. case WPA_CIPHER_WEP104:
  636. return CIPHER_WEP104;
  637. case WPA_CIPHER_CCMP:
  638. return CIPHER_CCMP;
  639. case WPA_CIPHER_TKIP:
  640. default:
  641. return CIPHER_TKIP;
  642. }
  643. }
  644. enum wpa_key_mgmt key_mgmt2driver(int key_mgmt)
  645. {
  646. switch (key_mgmt) {
  647. case WPA_KEY_MGMT_NONE:
  648. return KEY_MGMT_NONE;
  649. case WPA_KEY_MGMT_IEEE8021X_NO_WPA:
  650. return KEY_MGMT_802_1X_NO_WPA;
  651. case WPA_KEY_MGMT_IEEE8021X:
  652. return KEY_MGMT_802_1X;
  653. case WPA_KEY_MGMT_WPA_NONE:
  654. return KEY_MGMT_WPA_NONE;
  655. case WPA_KEY_MGMT_FT_IEEE8021X:
  656. return KEY_MGMT_FT_802_1X;
  657. case WPA_KEY_MGMT_FT_PSK:
  658. return KEY_MGMT_FT_PSK;
  659. case WPA_KEY_MGMT_IEEE8021X_SHA256:
  660. return KEY_MGMT_802_1X_SHA256;
  661. case WPA_KEY_MGMT_PSK_SHA256:
  662. return KEY_MGMT_PSK_SHA256;
  663. case WPA_KEY_MGMT_WPS:
  664. return KEY_MGMT_WPS;
  665. case WPA_KEY_MGMT_PSK:
  666. default:
  667. return KEY_MGMT_PSK;
  668. }
  669. }
  670. static int wpa_supplicant_suites_from_ai(struct wpa_supplicant *wpa_s,
  671. struct wpa_ssid *ssid,
  672. struct wpa_ie_data *ie)
  673. {
  674. int ret = wpa_sm_parse_own_wpa_ie(wpa_s->wpa, ie);
  675. if (ret) {
  676. if (ret == -2) {
  677. wpa_msg(wpa_s, MSG_INFO, "WPA: Failed to parse WPA IE "
  678. "from association info");
  679. }
  680. return -1;
  681. }
  682. wpa_printf(MSG_DEBUG, "WPA: Using WPA IE from AssocReq to set cipher "
  683. "suites");
  684. if (!(ie->group_cipher & ssid->group_cipher)) {
  685. wpa_msg(wpa_s, MSG_INFO, "WPA: Driver used disabled group "
  686. "cipher 0x%x (mask 0x%x) - reject",
  687. ie->group_cipher, ssid->group_cipher);
  688. return -1;
  689. }
  690. if (!(ie->pairwise_cipher & ssid->pairwise_cipher)) {
  691. wpa_msg(wpa_s, MSG_INFO, "WPA: Driver used disabled pairwise "
  692. "cipher 0x%x (mask 0x%x) - reject",
  693. ie->pairwise_cipher, ssid->pairwise_cipher);
  694. return -1;
  695. }
  696. if (!(ie->key_mgmt & ssid->key_mgmt)) {
  697. wpa_msg(wpa_s, MSG_INFO, "WPA: Driver used disabled key "
  698. "management 0x%x (mask 0x%x) - reject",
  699. ie->key_mgmt, ssid->key_mgmt);
  700. return -1;
  701. }
  702. #ifdef CONFIG_IEEE80211W
  703. if (!(ie->capabilities & WPA_CAPABILITY_MFPC) &&
  704. ssid->ieee80211w == MGMT_FRAME_PROTECTION_REQUIRED) {
  705. wpa_msg(wpa_s, MSG_INFO, "WPA: Driver associated with an AP "
  706. "that does not support management frame protection - "
  707. "reject");
  708. return -1;
  709. }
  710. #endif /* CONFIG_IEEE80211W */
  711. return 0;
  712. }
  713. /**
  714. * wpa_supplicant_set_suites - Set authentication and encryption parameters
  715. * @wpa_s: Pointer to wpa_supplicant data
  716. * @bss: Scan results for the selected BSS, or %NULL if not available
  717. * @ssid: Configuration data for the selected network
  718. * @wpa_ie: Buffer for the WPA/RSN IE
  719. * @wpa_ie_len: Maximum wpa_ie buffer size on input. This is changed to be the
  720. * used buffer length in case the functions returns success.
  721. * Returns: 0 on success or -1 on failure
  722. *
  723. * This function is used to configure authentication and encryption parameters
  724. * based on the network configuration and scan result for the selected BSS (if
  725. * available).
  726. */
  727. int wpa_supplicant_set_suites(struct wpa_supplicant *wpa_s,
  728. struct wpa_bss *bss, struct wpa_ssid *ssid,
  729. u8 *wpa_ie, size_t *wpa_ie_len)
  730. {
  731. struct wpa_ie_data ie;
  732. int sel, proto;
  733. const u8 *bss_wpa, *bss_rsn;
  734. if (bss) {
  735. bss_wpa = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  736. bss_rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  737. } else
  738. bss_wpa = bss_rsn = NULL;
  739. if (bss_rsn && (ssid->proto & WPA_PROTO_RSN) &&
  740. wpa_parse_wpa_ie(bss_rsn, 2 + bss_rsn[1], &ie) == 0 &&
  741. (ie.group_cipher & ssid->group_cipher) &&
  742. (ie.pairwise_cipher & ssid->pairwise_cipher) &&
  743. (ie.key_mgmt & ssid->key_mgmt)) {
  744. wpa_msg(wpa_s, MSG_DEBUG, "RSN: using IEEE 802.11i/D9.0");
  745. proto = WPA_PROTO_RSN;
  746. } else if (bss_wpa && (ssid->proto & WPA_PROTO_WPA) &&
  747. wpa_parse_wpa_ie(bss_wpa, 2 +bss_wpa[1], &ie) == 0 &&
  748. (ie.group_cipher & ssid->group_cipher) &&
  749. (ie.pairwise_cipher & ssid->pairwise_cipher) &&
  750. (ie.key_mgmt & ssid->key_mgmt)) {
  751. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using IEEE 802.11i/D3.0");
  752. proto = WPA_PROTO_WPA;
  753. } else if (bss) {
  754. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select WPA/RSN");
  755. return -1;
  756. } else {
  757. if (ssid->proto & WPA_PROTO_RSN)
  758. proto = WPA_PROTO_RSN;
  759. else
  760. proto = WPA_PROTO_WPA;
  761. if (wpa_supplicant_suites_from_ai(wpa_s, ssid, &ie) < 0) {
  762. os_memset(&ie, 0, sizeof(ie));
  763. ie.group_cipher = ssid->group_cipher;
  764. ie.pairwise_cipher = ssid->pairwise_cipher;
  765. ie.key_mgmt = ssid->key_mgmt;
  766. #ifdef CONFIG_IEEE80211W
  767. ie.mgmt_group_cipher =
  768. ssid->ieee80211w != NO_MGMT_FRAME_PROTECTION ?
  769. WPA_CIPHER_AES_128_CMAC : 0;
  770. #endif /* CONFIG_IEEE80211W */
  771. wpa_printf(MSG_DEBUG, "WPA: Set cipher suites based "
  772. "on configuration");
  773. } else
  774. proto = ie.proto;
  775. }
  776. wpa_printf(MSG_DEBUG, "WPA: Selected cipher suites: group %d "
  777. "pairwise %d key_mgmt %d proto %d",
  778. ie.group_cipher, ie.pairwise_cipher, ie.key_mgmt, proto);
  779. #ifdef CONFIG_IEEE80211W
  780. if (ssid->ieee80211w) {
  781. wpa_printf(MSG_DEBUG, "WPA: Selected mgmt group cipher %d",
  782. ie.mgmt_group_cipher);
  783. }
  784. #endif /* CONFIG_IEEE80211W */
  785. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_PROTO, proto);
  786. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_RSN_ENABLED,
  787. !!(ssid->proto & WPA_PROTO_RSN));
  788. if (bss || !wpa_s->ap_ies_from_associnfo) {
  789. if (wpa_sm_set_ap_wpa_ie(wpa_s->wpa, bss_wpa,
  790. bss_wpa ? 2 + bss_wpa[1] : 0) ||
  791. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, bss_rsn,
  792. bss_rsn ? 2 + bss_rsn[1] : 0))
  793. return -1;
  794. }
  795. sel = ie.group_cipher & ssid->group_cipher;
  796. if (sel & WPA_CIPHER_CCMP) {
  797. wpa_s->group_cipher = WPA_CIPHER_CCMP;
  798. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using GTK CCMP");
  799. } else if (sel & WPA_CIPHER_TKIP) {
  800. wpa_s->group_cipher = WPA_CIPHER_TKIP;
  801. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using GTK TKIP");
  802. } else if (sel & WPA_CIPHER_WEP104) {
  803. wpa_s->group_cipher = WPA_CIPHER_WEP104;
  804. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using GTK WEP104");
  805. } else if (sel & WPA_CIPHER_WEP40) {
  806. wpa_s->group_cipher = WPA_CIPHER_WEP40;
  807. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using GTK WEP40");
  808. } else {
  809. wpa_printf(MSG_WARNING, "WPA: Failed to select group cipher.");
  810. return -1;
  811. }
  812. sel = ie.pairwise_cipher & ssid->pairwise_cipher;
  813. if (sel & WPA_CIPHER_CCMP) {
  814. wpa_s->pairwise_cipher = WPA_CIPHER_CCMP;
  815. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using PTK CCMP");
  816. } else if (sel & WPA_CIPHER_TKIP) {
  817. wpa_s->pairwise_cipher = WPA_CIPHER_TKIP;
  818. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using PTK TKIP");
  819. } else if (sel & WPA_CIPHER_NONE) {
  820. wpa_s->pairwise_cipher = WPA_CIPHER_NONE;
  821. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using PTK NONE");
  822. } else {
  823. wpa_printf(MSG_WARNING, "WPA: Failed to select pairwise "
  824. "cipher.");
  825. return -1;
  826. }
  827. sel = ie.key_mgmt & ssid->key_mgmt;
  828. if (0) {
  829. #ifdef CONFIG_IEEE80211R
  830. } else if (sel & WPA_KEY_MGMT_FT_IEEE8021X) {
  831. wpa_s->key_mgmt = WPA_KEY_MGMT_FT_IEEE8021X;
  832. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FT/802.1X");
  833. } else if (sel & WPA_KEY_MGMT_FT_PSK) {
  834. wpa_s->key_mgmt = WPA_KEY_MGMT_FT_PSK;
  835. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FT/PSK");
  836. #endif /* CONFIG_IEEE80211R */
  837. #ifdef CONFIG_IEEE80211W
  838. } else if (sel & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  839. wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X_SHA256;
  840. wpa_msg(wpa_s, MSG_DEBUG,
  841. "WPA: using KEY_MGMT 802.1X with SHA256");
  842. } else if (sel & WPA_KEY_MGMT_PSK_SHA256) {
  843. wpa_s->key_mgmt = WPA_KEY_MGMT_PSK_SHA256;
  844. wpa_msg(wpa_s, MSG_DEBUG,
  845. "WPA: using KEY_MGMT PSK with SHA256");
  846. #endif /* CONFIG_IEEE80211W */
  847. } else if (sel & WPA_KEY_MGMT_IEEE8021X) {
  848. wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X;
  849. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT 802.1X");
  850. } else if (sel & WPA_KEY_MGMT_PSK) {
  851. wpa_s->key_mgmt = WPA_KEY_MGMT_PSK;
  852. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT WPA-PSK");
  853. } else if (sel & WPA_KEY_MGMT_WPA_NONE) {
  854. wpa_s->key_mgmt = WPA_KEY_MGMT_WPA_NONE;
  855. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT WPA-NONE");
  856. } else {
  857. wpa_printf(MSG_WARNING, "WPA: Failed to select authenticated "
  858. "key management type.");
  859. return -1;
  860. }
  861. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_KEY_MGMT, wpa_s->key_mgmt);
  862. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_PAIRWISE,
  863. wpa_s->pairwise_cipher);
  864. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_GROUP, wpa_s->group_cipher);
  865. #ifdef CONFIG_IEEE80211W
  866. sel = ie.mgmt_group_cipher;
  867. if (ssid->ieee80211w == NO_MGMT_FRAME_PROTECTION ||
  868. !(ie.capabilities & WPA_CAPABILITY_MFPC))
  869. sel = 0;
  870. if (sel & WPA_CIPHER_AES_128_CMAC) {
  871. wpa_s->mgmt_group_cipher = WPA_CIPHER_AES_128_CMAC;
  872. wpa_msg(wpa_s, MSG_DEBUG, "WPA: using MGMT group cipher "
  873. "AES-128-CMAC");
  874. } else {
  875. wpa_s->mgmt_group_cipher = 0;
  876. wpa_msg(wpa_s, MSG_DEBUG, "WPA: not using MGMT group cipher");
  877. }
  878. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_MGMT_GROUP,
  879. wpa_s->mgmt_group_cipher);
  880. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_MFP, ssid->ieee80211w);
  881. #endif /* CONFIG_IEEE80211W */
  882. if (wpa_sm_set_assoc_wpa_ie_default(wpa_s->wpa, wpa_ie, wpa_ie_len)) {
  883. wpa_printf(MSG_WARNING, "WPA: Failed to generate WPA IE.");
  884. return -1;
  885. }
  886. if (ssid->key_mgmt &
  887. (WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_FT_PSK | WPA_KEY_MGMT_PSK_SHA256))
  888. wpa_sm_set_pmk(wpa_s->wpa, ssid->psk, PMK_LEN);
  889. else
  890. wpa_sm_set_pmk_from_pmksa(wpa_s->wpa);
  891. return 0;
  892. }
  893. /**
  894. * wpa_supplicant_associate - Request association
  895. * @wpa_s: Pointer to wpa_supplicant data
  896. * @bss: Scan results for the selected BSS, or %NULL if not available
  897. * @ssid: Configuration data for the selected network
  898. *
  899. * This function is used to request %wpa_supplicant to associate with a BSS.
  900. */
  901. void wpa_supplicant_associate(struct wpa_supplicant *wpa_s,
  902. struct wpa_bss *bss, struct wpa_ssid *ssid)
  903. {
  904. u8 wpa_ie[200];
  905. size_t wpa_ie_len;
  906. int use_crypt, ret, i, bssid_changed;
  907. int algs = WPA_AUTH_ALG_OPEN;
  908. enum wpa_cipher cipher_pairwise, cipher_group;
  909. struct wpa_driver_associate_params params;
  910. int wep_keys_set = 0;
  911. struct wpa_driver_capa capa;
  912. int assoc_failed = 0;
  913. struct wpa_ssid *old_ssid;
  914. if (ssid->mode == WPAS_MODE_AP || ssid->mode == WPAS_MODE_P2P_GO ||
  915. ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  916. #ifdef CONFIG_AP
  917. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_AP)) {
  918. wpa_printf(MSG_INFO, "Driver does not support AP "
  919. "mode");
  920. return;
  921. }
  922. wpa_supplicant_create_ap(wpa_s, ssid);
  923. wpa_s->current_bss = bss;
  924. #else /* CONFIG_AP */
  925. wpa_printf(MSG_ERROR, "AP mode support not included in the "
  926. "build");
  927. #endif /* CONFIG_AP */
  928. return;
  929. }
  930. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) &&
  931. ssid->mode == IEEE80211_MODE_INFRA) {
  932. sme_authenticate(wpa_s, bss, ssid);
  933. return;
  934. }
  935. os_memset(&params, 0, sizeof(params));
  936. wpa_s->reassociate = 0;
  937. if (bss) {
  938. #ifdef CONFIG_IEEE80211R
  939. const u8 *ie, *md = NULL;
  940. #endif /* CONFIG_IEEE80211R */
  941. wpa_msg(wpa_s, MSG_INFO, "Trying to associate with " MACSTR
  942. " (SSID='%s' freq=%d MHz)", MAC2STR(bss->bssid),
  943. wpa_ssid_txt(bss->ssid, bss->ssid_len), bss->freq);
  944. bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
  945. os_memset(wpa_s->bssid, 0, ETH_ALEN);
  946. os_memcpy(wpa_s->pending_bssid, bss->bssid, ETH_ALEN);
  947. if (bssid_changed)
  948. wpas_notify_bssid_changed(wpa_s);
  949. #ifdef CONFIG_IEEE80211R
  950. ie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
  951. if (ie && ie[1] >= MOBILITY_DOMAIN_ID_LEN)
  952. md = ie + 2;
  953. wpa_sm_set_ft_params(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0);
  954. if (md) {
  955. /* Prepare for the next transition */
  956. wpa_ft_prepare_auth_request(wpa_s->wpa, ie);
  957. }
  958. #endif /* CONFIG_IEEE80211R */
  959. #ifdef CONFIG_WPS
  960. } else if ((ssid->ssid == NULL || ssid->ssid_len == 0) &&
  961. wpa_s->conf->ap_scan == 2 &&
  962. (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
  963. /* Use ap_scan==1 style network selection to find the network
  964. */
  965. wpa_s->scan_req = 2;
  966. wpa_s->reassociate = 1;
  967. wpa_supplicant_req_scan(wpa_s, 0, 0);
  968. return;
  969. #endif /* CONFIG_WPS */
  970. } else {
  971. wpa_msg(wpa_s, MSG_INFO, "Trying to associate with SSID '%s'",
  972. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  973. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  974. }
  975. wpa_supplicant_cancel_scan(wpa_s);
  976. /* Starting new association, so clear the possibly used WPA IE from the
  977. * previous association. */
  978. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  979. #ifdef IEEE8021X_EAPOL
  980. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  981. if (ssid->leap) {
  982. if (ssid->non_leap == 0)
  983. algs = WPA_AUTH_ALG_LEAP;
  984. else
  985. algs |= WPA_AUTH_ALG_LEAP;
  986. }
  987. }
  988. #endif /* IEEE8021X_EAPOL */
  989. wpa_printf(MSG_DEBUG, "Automatic auth_alg selection: 0x%x", algs);
  990. if (ssid->auth_alg) {
  991. algs = ssid->auth_alg;
  992. wpa_printf(MSG_DEBUG, "Overriding auth_alg selection: 0x%x",
  993. algs);
  994. }
  995. if (bss && (wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE) ||
  996. wpa_bss_get_ie(bss, WLAN_EID_RSN)) &&
  997. (ssid->key_mgmt & (WPA_KEY_MGMT_IEEE8021X | WPA_KEY_MGMT_PSK |
  998. WPA_KEY_MGMT_FT_IEEE8021X |
  999. WPA_KEY_MGMT_FT_PSK |
  1000. WPA_KEY_MGMT_IEEE8021X_SHA256 |
  1001. WPA_KEY_MGMT_PSK_SHA256))) {
  1002. int try_opportunistic;
  1003. try_opportunistic = ssid->proactive_key_caching &&
  1004. (ssid->proto & WPA_PROTO_RSN);
  1005. if (pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid,
  1006. wpa_s->current_ssid,
  1007. try_opportunistic) == 0)
  1008. eapol_sm_notify_pmkid_attempt(wpa_s->eapol, 1);
  1009. wpa_ie_len = sizeof(wpa_ie);
  1010. if (wpa_supplicant_set_suites(wpa_s, bss, ssid,
  1011. wpa_ie, &wpa_ie_len)) {
  1012. wpa_printf(MSG_WARNING, "WPA: Failed to set WPA key "
  1013. "management and encryption suites");
  1014. return;
  1015. }
  1016. } else if (ssid->key_mgmt &
  1017. (WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_IEEE8021X |
  1018. WPA_KEY_MGMT_WPA_NONE | WPA_KEY_MGMT_FT_PSK |
  1019. WPA_KEY_MGMT_FT_IEEE8021X | WPA_KEY_MGMT_PSK_SHA256 |
  1020. WPA_KEY_MGMT_IEEE8021X_SHA256)) {
  1021. wpa_ie_len = sizeof(wpa_ie);
  1022. if (wpa_supplicant_set_suites(wpa_s, NULL, ssid,
  1023. wpa_ie, &wpa_ie_len)) {
  1024. wpa_printf(MSG_WARNING, "WPA: Failed to set WPA key "
  1025. "management and encryption suites (no scan "
  1026. "results)");
  1027. return;
  1028. }
  1029. #ifdef CONFIG_WPS
  1030. } else if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
  1031. struct wpabuf *wps_ie;
  1032. wps_ie = wps_build_assoc_req_ie(wpas_wps_get_req_type(ssid));
  1033. if (wps_ie && wpabuf_len(wps_ie) <= sizeof(wpa_ie)) {
  1034. wpa_ie_len = wpabuf_len(wps_ie);
  1035. os_memcpy(wpa_ie, wpabuf_head(wps_ie), wpa_ie_len);
  1036. } else
  1037. wpa_ie_len = 0;
  1038. wpabuf_free(wps_ie);
  1039. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  1040. if (!bss || (bss->caps & IEEE80211_CAP_PRIVACY))
  1041. params.wps = WPS_MODE_PRIVACY;
  1042. else
  1043. params.wps = WPS_MODE_OPEN;
  1044. #endif /* CONFIG_WPS */
  1045. } else {
  1046. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  1047. wpa_ie_len = 0;
  1048. }
  1049. #ifdef CONFIG_P2P
  1050. if (wpa_s->global->p2p) {
  1051. u8 *pos;
  1052. size_t len;
  1053. int res;
  1054. int p2p_group;
  1055. p2p_group = wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE;
  1056. pos = wpa_ie + wpa_ie_len;
  1057. len = sizeof(wpa_ie) - wpa_ie_len;
  1058. res = wpas_p2p_assoc_req_ie(wpa_s, bss, pos, len, p2p_group);
  1059. if (res >= 0)
  1060. wpa_ie_len += res;
  1061. }
  1062. wpa_s->cross_connect_disallowed = 0;
  1063. if (bss) {
  1064. struct wpabuf *p2p;
  1065. p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  1066. if (p2p) {
  1067. wpa_s->cross_connect_disallowed =
  1068. p2p_get_cross_connect_disallowed(p2p);
  1069. wpabuf_free(p2p);
  1070. wpa_printf(MSG_DEBUG, "P2P: WLAN AP %s cross "
  1071. "connection",
  1072. wpa_s->cross_connect_disallowed ?
  1073. "disallows" : "allows");
  1074. }
  1075. }
  1076. #endif /* CONFIG_P2P */
  1077. wpa_clear_keys(wpa_s, bss ? bss->bssid : NULL);
  1078. use_crypt = 1;
  1079. cipher_pairwise = cipher_suite2driver(wpa_s->pairwise_cipher);
  1080. cipher_group = cipher_suite2driver(wpa_s->group_cipher);
  1081. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  1082. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  1083. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE)
  1084. use_crypt = 0;
  1085. if (wpa_set_wep_keys(wpa_s, ssid)) {
  1086. use_crypt = 1;
  1087. wep_keys_set = 1;
  1088. }
  1089. }
  1090. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS)
  1091. use_crypt = 0;
  1092. #ifdef IEEE8021X_EAPOL
  1093. if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  1094. if ((ssid->eapol_flags &
  1095. (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
  1096. EAPOL_FLAG_REQUIRE_KEY_BROADCAST)) == 0 &&
  1097. !wep_keys_set) {
  1098. use_crypt = 0;
  1099. } else {
  1100. /* Assume that dynamic WEP-104 keys will be used and
  1101. * set cipher suites in order for drivers to expect
  1102. * encryption. */
  1103. cipher_pairwise = cipher_group = CIPHER_WEP104;
  1104. }
  1105. }
  1106. #endif /* IEEE8021X_EAPOL */
  1107. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  1108. /* Set the key before (and later after) association */
  1109. wpa_supplicant_set_wpa_none_key(wpa_s, ssid);
  1110. }
  1111. wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATING);
  1112. if (bss) {
  1113. params.bssid = bss->bssid;
  1114. params.ssid = bss->ssid;
  1115. params.ssid_len = bss->ssid_len;
  1116. params.freq = bss->freq;
  1117. } else {
  1118. params.ssid = ssid->ssid;
  1119. params.ssid_len = ssid->ssid_len;
  1120. }
  1121. if (ssid->mode == WPAS_MODE_IBSS && ssid->frequency > 0 &&
  1122. params.freq == 0)
  1123. params.freq = ssid->frequency; /* Initial channel for IBSS */
  1124. params.wpa_ie = wpa_ie;
  1125. params.wpa_ie_len = wpa_ie_len;
  1126. params.pairwise_suite = cipher_pairwise;
  1127. params.group_suite = cipher_group;
  1128. params.key_mgmt_suite = key_mgmt2driver(wpa_s->key_mgmt);
  1129. params.auth_alg = algs;
  1130. params.mode = ssid->mode;
  1131. for (i = 0; i < NUM_WEP_KEYS; i++) {
  1132. if (ssid->wep_key_len[i])
  1133. params.wep_key[i] = ssid->wep_key[i];
  1134. params.wep_key_len[i] = ssid->wep_key_len[i];
  1135. }
  1136. params.wep_tx_keyidx = ssid->wep_tx_keyidx;
  1137. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
  1138. (params.key_mgmt_suite == KEY_MGMT_PSK ||
  1139. params.key_mgmt_suite == KEY_MGMT_FT_PSK)) {
  1140. params.passphrase = ssid->passphrase;
  1141. if (ssid->psk_set)
  1142. params.psk = ssid->psk;
  1143. }
  1144. params.drop_unencrypted = use_crypt;
  1145. #ifdef CONFIG_IEEE80211W
  1146. params.mgmt_frame_protection = ssid->ieee80211w;
  1147. if (ssid->ieee80211w != NO_MGMT_FRAME_PROTECTION && bss) {
  1148. const u8 *rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  1149. struct wpa_ie_data ie;
  1150. if (rsn && wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ie) == 0 &&
  1151. ie.capabilities &
  1152. (WPA_CAPABILITY_MFPC | WPA_CAPABILITY_MFPR)) {
  1153. wpa_printf(MSG_DEBUG, "WPA: Selected AP supports MFP: "
  1154. "require MFP");
  1155. params.mgmt_frame_protection =
  1156. MGMT_FRAME_PROTECTION_REQUIRED;
  1157. }
  1158. }
  1159. #endif /* CONFIG_IEEE80211W */
  1160. #ifdef CONFIG_P2P
  1161. if (wpa_s->global->p2p &&
  1162. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
  1163. params.p2p = 1;
  1164. #endif /* CONFIG_P2P */
  1165. if (wpa_s->parent->set_sta_uapsd)
  1166. params.uapsd = wpa_s->parent->sta_uapsd;
  1167. else
  1168. params.uapsd = -1;
  1169. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
  1170. ret = ieee80211_sta_associate(wpa_s, &params);
  1171. else
  1172. ret = wpa_drv_associate(wpa_s, &params);
  1173. if (ret < 0) {
  1174. wpa_msg(wpa_s, MSG_INFO, "Association request to the driver "
  1175. "failed");
  1176. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SANE_ERROR_CODES) {
  1177. /*
  1178. * The driver is known to mean what is saying, so we
  1179. * can stop right here; the association will not
  1180. * succeed.
  1181. */
  1182. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  1183. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  1184. return;
  1185. }
  1186. /* try to continue anyway; new association will be tried again
  1187. * after timeout */
  1188. assoc_failed = 1;
  1189. }
  1190. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  1191. /* Set the key after the association just in case association
  1192. * cleared the previously configured key. */
  1193. wpa_supplicant_set_wpa_none_key(wpa_s, ssid);
  1194. /* No need to timeout authentication since there is no key
  1195. * management. */
  1196. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1197. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  1198. #ifdef CONFIG_IBSS_RSN
  1199. } else if (ssid->mode == WPAS_MODE_IBSS &&
  1200. wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
  1201. wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE) {
  1202. ibss_rsn_set_psk(wpa_s->ibss_rsn, ssid->psk);
  1203. /*
  1204. * RSN IBSS authentication is per-STA and we can disable the
  1205. * per-BSSID authentication.
  1206. */
  1207. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1208. #endif /* CONFIG_IBSS_RSN */
  1209. } else {
  1210. /* Timeout for IEEE 802.11 authentication and association */
  1211. int timeout = 60;
  1212. if (assoc_failed) {
  1213. /* give IBSS a bit more time */
  1214. timeout = ssid->mode == WPAS_MODE_IBSS ? 10 : 5;
  1215. } else if (wpa_s->conf->ap_scan == 1) {
  1216. /* give IBSS a bit more time */
  1217. timeout = ssid->mode == WPAS_MODE_IBSS ? 20 : 10;
  1218. }
  1219. wpa_supplicant_req_auth_timeout(wpa_s, timeout, 0);
  1220. }
  1221. if (wep_keys_set && wpa_drv_get_capa(wpa_s, &capa) == 0 &&
  1222. capa.flags & WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC) {
  1223. /* Set static WEP keys again */
  1224. wpa_set_wep_keys(wpa_s, ssid);
  1225. }
  1226. if (wpa_s->current_ssid && wpa_s->current_ssid != ssid) {
  1227. /*
  1228. * Do not allow EAP session resumption between different
  1229. * network configurations.
  1230. */
  1231. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  1232. }
  1233. old_ssid = wpa_s->current_ssid;
  1234. wpa_s->current_ssid = ssid;
  1235. wpa_s->current_bss = bss;
  1236. wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
  1237. wpa_supplicant_initiate_eapol(wpa_s);
  1238. if (old_ssid != wpa_s->current_ssid)
  1239. wpas_notify_network_changed(wpa_s);
  1240. }
  1241. static void wpa_supplicant_clear_connection(struct wpa_supplicant *wpa_s,
  1242. const u8 *addr)
  1243. {
  1244. struct wpa_ssid *old_ssid;
  1245. wpa_clear_keys(wpa_s, addr);
  1246. wpa_supplicant_mark_disassoc(wpa_s);
  1247. old_ssid = wpa_s->current_ssid;
  1248. wpa_s->current_ssid = NULL;
  1249. wpa_s->current_bss = NULL;
  1250. wpa_sm_set_config(wpa_s->wpa, NULL);
  1251. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  1252. if (old_ssid != wpa_s->current_ssid)
  1253. wpas_notify_network_changed(wpa_s);
  1254. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
  1255. }
  1256. /**
  1257. * wpa_supplicant_disassociate - Disassociate the current connection
  1258. * @wpa_s: Pointer to wpa_supplicant data
  1259. * @reason_code: IEEE 802.11 reason code for the disassociate frame
  1260. *
  1261. * This function is used to request %wpa_supplicant to disassociate with the
  1262. * current AP.
  1263. */
  1264. void wpa_supplicant_disassociate(struct wpa_supplicant *wpa_s,
  1265. int reason_code)
  1266. {
  1267. u8 *addr = NULL;
  1268. if (!is_zero_ether_addr(wpa_s->bssid)) {
  1269. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
  1270. ieee80211_sta_disassociate(wpa_s, reason_code);
  1271. else
  1272. wpa_drv_disassociate(wpa_s, wpa_s->bssid, reason_code);
  1273. addr = wpa_s->bssid;
  1274. }
  1275. wpa_supplicant_clear_connection(wpa_s, addr);
  1276. }
  1277. /**
  1278. * wpa_supplicant_deauthenticate - Deauthenticate the current connection
  1279. * @wpa_s: Pointer to wpa_supplicant data
  1280. * @reason_code: IEEE 802.11 reason code for the deauthenticate frame
  1281. *
  1282. * This function is used to request %wpa_supplicant to deauthenticate from the
  1283. * current AP.
  1284. */
  1285. void wpa_supplicant_deauthenticate(struct wpa_supplicant *wpa_s,
  1286. int reason_code)
  1287. {
  1288. u8 *addr = NULL;
  1289. if (!is_zero_ether_addr(wpa_s->bssid)) {
  1290. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
  1291. ieee80211_sta_deauthenticate(wpa_s, reason_code);
  1292. else
  1293. wpa_drv_deauthenticate(wpa_s, wpa_s->bssid,
  1294. reason_code);
  1295. addr = wpa_s->bssid;
  1296. }
  1297. wpa_supplicant_clear_connection(wpa_s, addr);
  1298. }
  1299. /**
  1300. * wpa_supplicant_enable_network - Mark a configured network as enabled
  1301. * @wpa_s: wpa_supplicant structure for a network interface
  1302. * @ssid: wpa_ssid structure for a configured network or %NULL
  1303. *
  1304. * Enables the specified network or all networks if no network specified.
  1305. */
  1306. void wpa_supplicant_enable_network(struct wpa_supplicant *wpa_s,
  1307. struct wpa_ssid *ssid)
  1308. {
  1309. struct wpa_ssid *other_ssid;
  1310. int was_disabled;
  1311. if (ssid == NULL) {
  1312. for (other_ssid = wpa_s->conf->ssid; other_ssid;
  1313. other_ssid = other_ssid->next) {
  1314. if (other_ssid->disabled == 2)
  1315. continue; /* do not change persistent P2P group
  1316. * data */
  1317. if (other_ssid == wpa_s->current_ssid &&
  1318. other_ssid->disabled)
  1319. wpa_s->reassociate = 1;
  1320. was_disabled = other_ssid->disabled;
  1321. other_ssid->disabled = 0;
  1322. if (was_disabled != other_ssid->disabled)
  1323. wpas_notify_network_enabled_changed(
  1324. wpa_s, other_ssid);
  1325. }
  1326. if (wpa_s->reassociate)
  1327. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1328. } else if (ssid->disabled && ssid->disabled != 2) {
  1329. if (wpa_s->current_ssid == NULL) {
  1330. /*
  1331. * Try to reassociate since there is no current
  1332. * configuration and a new network was made available.
  1333. */
  1334. wpa_s->reassociate = 1;
  1335. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1336. }
  1337. was_disabled = ssid->disabled;
  1338. ssid->disabled = 0;
  1339. if (was_disabled != ssid->disabled)
  1340. wpas_notify_network_enabled_changed(wpa_s, ssid);
  1341. }
  1342. }
  1343. /**
  1344. * wpa_supplicant_disable_network - Mark a configured network as disabled
  1345. * @wpa_s: wpa_supplicant structure for a network interface
  1346. * @ssid: wpa_ssid structure for a configured network or %NULL
  1347. *
  1348. * Disables the specified network or all networks if no network specified.
  1349. */
  1350. void wpa_supplicant_disable_network(struct wpa_supplicant *wpa_s,
  1351. struct wpa_ssid *ssid)
  1352. {
  1353. struct wpa_ssid *other_ssid;
  1354. int was_disabled;
  1355. if (ssid == NULL) {
  1356. for (other_ssid = wpa_s->conf->ssid; other_ssid;
  1357. other_ssid = other_ssid->next) {
  1358. was_disabled = other_ssid->disabled;
  1359. if (was_disabled == 2)
  1360. continue; /* do not change persistent P2P group
  1361. * data */
  1362. other_ssid->disabled = 1;
  1363. if (was_disabled != other_ssid->disabled)
  1364. wpas_notify_network_enabled_changed(
  1365. wpa_s, other_ssid);
  1366. }
  1367. if (wpa_s->current_ssid)
  1368. wpa_supplicant_disassociate(
  1369. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1370. } else if (ssid->disabled != 2) {
  1371. if (ssid == wpa_s->current_ssid)
  1372. wpa_supplicant_disassociate(
  1373. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1374. was_disabled = ssid->disabled;
  1375. ssid->disabled = 1;
  1376. if (was_disabled != ssid->disabled)
  1377. wpas_notify_network_enabled_changed(wpa_s, ssid);
  1378. }
  1379. }
  1380. /**
  1381. * wpa_supplicant_select_network - Attempt association with a network
  1382. * @wpa_s: wpa_supplicant structure for a network interface
  1383. * @ssid: wpa_ssid structure for a configured network or %NULL for any network
  1384. */
  1385. void wpa_supplicant_select_network(struct wpa_supplicant *wpa_s,
  1386. struct wpa_ssid *ssid)
  1387. {
  1388. struct wpa_ssid *other_ssid;
  1389. if (ssid && ssid != wpa_s->current_ssid && wpa_s->current_ssid)
  1390. wpa_supplicant_disassociate(
  1391. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1392. /*
  1393. * Mark all other networks disabled or mark all networks enabled if no
  1394. * network specified.
  1395. */
  1396. for (other_ssid = wpa_s->conf->ssid; other_ssid;
  1397. other_ssid = other_ssid->next) {
  1398. int was_disabled = other_ssid->disabled;
  1399. if (was_disabled == 2)
  1400. continue; /* do not change persistent P2P group data */
  1401. other_ssid->disabled = ssid ? (ssid->id != other_ssid->id) : 0;
  1402. if (was_disabled != other_ssid->disabled)
  1403. wpas_notify_network_enabled_changed(wpa_s, other_ssid);
  1404. }
  1405. wpa_s->disconnected = 0;
  1406. wpa_s->reassociate = 1;
  1407. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1408. if (ssid)
  1409. wpas_notify_network_selected(wpa_s, ssid);
  1410. }
  1411. /**
  1412. * wpa_supplicant_set_ap_scan - Set AP scan mode for interface
  1413. * @wpa_s: wpa_supplicant structure for a network interface
  1414. * @ap_scan: AP scan mode
  1415. * Returns: 0 if succeed or -1 if ap_scan has an invalid value
  1416. *
  1417. */
  1418. int wpa_supplicant_set_ap_scan(struct wpa_supplicant *wpa_s, int ap_scan)
  1419. {
  1420. int old_ap_scan;
  1421. if (ap_scan < 0 || ap_scan > 2)
  1422. return -1;
  1423. old_ap_scan = wpa_s->conf->ap_scan;
  1424. wpa_s->conf->ap_scan = ap_scan;
  1425. if (old_ap_scan != wpa_s->conf->ap_scan)
  1426. wpas_notify_ap_scan_changed(wpa_s);
  1427. return 0;
  1428. }
  1429. /**
  1430. * wpa_supplicant_set_debug_params - Set global debug params
  1431. * @global: wpa_global structure
  1432. * @debug_level: debug level
  1433. * @debug_timestamp: determines if show timestamp in debug data
  1434. * @debug_show_keys: determines if show keys in debug data
  1435. * Returns: 0 if succeed or -1 if debug_level has wrong value
  1436. */
  1437. int wpa_supplicant_set_debug_params(struct wpa_global *global, int debug_level,
  1438. int debug_timestamp, int debug_show_keys)
  1439. {
  1440. int old_level, old_timestamp, old_show_keys;
  1441. /* check for allowed debuglevels */
  1442. if (debug_level != MSG_MSGDUMP &&
  1443. debug_level != MSG_DEBUG &&
  1444. debug_level != MSG_INFO &&
  1445. debug_level != MSG_WARNING &&
  1446. debug_level != MSG_ERROR)
  1447. return -1;
  1448. old_level = wpa_debug_level;
  1449. old_timestamp = wpa_debug_timestamp;
  1450. old_show_keys = wpa_debug_show_keys;
  1451. wpa_debug_level = debug_level;
  1452. wpa_debug_timestamp = debug_timestamp ? 1 : 0;
  1453. wpa_debug_show_keys = debug_show_keys ? 1 : 0;
  1454. if (wpa_debug_level != old_level)
  1455. wpas_notify_debug_level_changed(global);
  1456. if (wpa_debug_timestamp != old_timestamp)
  1457. wpas_notify_debug_timestamp_changed(global);
  1458. if (wpa_debug_show_keys != old_show_keys)
  1459. wpas_notify_debug_show_keys_changed(global);
  1460. return 0;
  1461. }
  1462. /**
  1463. * wpa_supplicant_get_ssid - Get a pointer to the current network structure
  1464. * @wpa_s: Pointer to wpa_supplicant data
  1465. * Returns: A pointer to the current network structure or %NULL on failure
  1466. */
  1467. struct wpa_ssid * wpa_supplicant_get_ssid(struct wpa_supplicant *wpa_s)
  1468. {
  1469. struct wpa_ssid *entry;
  1470. u8 ssid[MAX_SSID_LEN];
  1471. int res;
  1472. size_t ssid_len;
  1473. u8 bssid[ETH_ALEN];
  1474. int wired;
  1475. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME) {
  1476. if (ieee80211_sta_get_ssid(wpa_s, ssid, &ssid_len)) {
  1477. wpa_printf(MSG_WARNING, "Could not read SSID from "
  1478. "MLME.");
  1479. return NULL;
  1480. }
  1481. } else {
  1482. res = wpa_drv_get_ssid(wpa_s, ssid);
  1483. if (res < 0) {
  1484. wpa_printf(MSG_WARNING, "Could not read SSID from "
  1485. "driver.");
  1486. return NULL;
  1487. }
  1488. ssid_len = res;
  1489. }
  1490. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
  1491. os_memcpy(bssid, wpa_s->bssid, ETH_ALEN);
  1492. else if (wpa_drv_get_bssid(wpa_s, bssid) < 0) {
  1493. wpa_printf(MSG_WARNING, "Could not read BSSID from driver.");
  1494. return NULL;
  1495. }
  1496. wired = wpa_s->conf->ap_scan == 0 &&
  1497. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED);
  1498. entry = wpa_s->conf->ssid;
  1499. while (entry) {
  1500. if (!entry->disabled &&
  1501. ((ssid_len == entry->ssid_len &&
  1502. os_memcmp(ssid, entry->ssid, ssid_len) == 0) || wired) &&
  1503. (!entry->bssid_set ||
  1504. os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0))
  1505. return entry;
  1506. #ifdef CONFIG_WPS
  1507. if (!entry->disabled &&
  1508. (entry->key_mgmt & WPA_KEY_MGMT_WPS) &&
  1509. (entry->ssid == NULL || entry->ssid_len == 0) &&
  1510. (!entry->bssid_set ||
  1511. os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0))
  1512. return entry;
  1513. #endif /* CONFIG_WPS */
  1514. entry = entry->next;
  1515. }
  1516. return NULL;
  1517. }
  1518. static int wpa_supplicant_set_driver(struct wpa_supplicant *wpa_s,
  1519. const char *name)
  1520. {
  1521. int i;
  1522. size_t len;
  1523. const char *pos, *driver = name;
  1524. if (wpa_s == NULL)
  1525. return -1;
  1526. if (wpa_drivers[0] == NULL) {
  1527. wpa_printf(MSG_ERROR, "No driver interfaces build into "
  1528. "wpa_supplicant.");
  1529. return -1;
  1530. }
  1531. if (name == NULL) {
  1532. /* default to first driver in the list */
  1533. wpa_s->driver = wpa_drivers[0];
  1534. wpa_s->global_drv_priv = wpa_s->global->drv_priv[0];
  1535. return 0;
  1536. }
  1537. do {
  1538. pos = os_strchr(driver, ',');
  1539. if (pos)
  1540. len = pos - driver;
  1541. else
  1542. len = os_strlen(driver);
  1543. for (i = 0; wpa_drivers[i]; i++) {
  1544. if (os_strlen(wpa_drivers[i]->name) == len &&
  1545. os_strncmp(driver, wpa_drivers[i]->name, len) ==
  1546. 0) {
  1547. wpa_s->driver = wpa_drivers[i];
  1548. wpa_s->global_drv_priv =
  1549. wpa_s->global->drv_priv[i];
  1550. return 0;
  1551. }
  1552. }
  1553. driver = pos + 1;
  1554. } while (pos);
  1555. wpa_printf(MSG_ERROR, "Unsupported driver '%s'.", name);
  1556. return -1;
  1557. }
  1558. /**
  1559. * wpa_supplicant_rx_eapol - Deliver a received EAPOL frame to wpa_supplicant
  1560. * @ctx: Context pointer (wpa_s); this is the ctx variable registered
  1561. * with struct wpa_driver_ops::init()
  1562. * @src_addr: Source address of the EAPOL frame
  1563. * @buf: EAPOL data starting from the EAPOL header (i.e., no Ethernet header)
  1564. * @len: Length of the EAPOL data
  1565. *
  1566. * This function is called for each received EAPOL frame. Most driver
  1567. * interfaces rely on more generic OS mechanism for receiving frames through
  1568. * l2_packet, but if such a mechanism is not available, the driver wrapper may
  1569. * take care of received EAPOL frames and deliver them to the core supplicant
  1570. * code by calling this function.
  1571. */
  1572. void wpa_supplicant_rx_eapol(void *ctx, const u8 *src_addr,
  1573. const u8 *buf, size_t len)
  1574. {
  1575. struct wpa_supplicant *wpa_s = ctx;
  1576. wpa_printf(MSG_DEBUG, "RX EAPOL from " MACSTR, MAC2STR(src_addr));
  1577. wpa_hexdump(MSG_MSGDUMP, "RX EAPOL", buf, len);
  1578. if (wpa_s->wpa_state < WPA_ASSOCIATED) {
  1579. /*
  1580. * There is possible race condition between receiving the
  1581. * association event and the EAPOL frame since they are coming
  1582. * through different paths from the driver. In order to avoid
  1583. * issues in trying to process the EAPOL frame before receiving
  1584. * association information, lets queue it for processing until
  1585. * the association event is received.
  1586. */
  1587. wpa_printf(MSG_DEBUG, "Not associated - Delay processing of "
  1588. "received EAPOL frame");
  1589. wpabuf_free(wpa_s->pending_eapol_rx);
  1590. wpa_s->pending_eapol_rx = wpabuf_alloc_copy(buf, len);
  1591. if (wpa_s->pending_eapol_rx) {
  1592. os_get_time(&wpa_s->pending_eapol_rx_time);
  1593. os_memcpy(wpa_s->pending_eapol_rx_src, src_addr,
  1594. ETH_ALEN);
  1595. }
  1596. return;
  1597. }
  1598. #ifdef CONFIG_AP
  1599. if (wpa_s->ap_iface) {
  1600. wpa_supplicant_ap_rx_eapol(wpa_s, src_addr, buf, len);
  1601. return;
  1602. }
  1603. #endif /* CONFIG_AP */
  1604. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE) {
  1605. wpa_printf(MSG_DEBUG, "Ignored received EAPOL frame since "
  1606. "no key management is configured");
  1607. return;
  1608. }
  1609. if (wpa_s->eapol_received == 0 &&
  1610. (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) ||
  1611. !wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) ||
  1612. wpa_s->wpa_state != WPA_COMPLETED) &&
  1613. (wpa_s->current_ssid == NULL ||
  1614. wpa_s->current_ssid->mode != IEEE80211_MODE_IBSS)) {
  1615. /* Timeout for completing IEEE 802.1X and WPA authentication */
  1616. wpa_supplicant_req_auth_timeout(
  1617. wpa_s,
  1618. (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
  1619. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA ||
  1620. wpa_s->key_mgmt == WPA_KEY_MGMT_WPS) ?
  1621. 70 : 10, 0);
  1622. }
  1623. wpa_s->eapol_received++;
  1624. if (wpa_s->countermeasures) {
  1625. wpa_printf(MSG_INFO, "WPA: Countermeasures - dropped EAPOL "
  1626. "packet");
  1627. return;
  1628. }
  1629. #ifdef CONFIG_IBSS_RSN
  1630. if (wpa_s->current_ssid &&
  1631. wpa_s->current_ssid->mode == WPAS_MODE_IBSS) {
  1632. ibss_rsn_rx_eapol(wpa_s->ibss_rsn, src_addr, buf, len);
  1633. return;
  1634. }
  1635. #endif /* CONFIG_IBSS_RSN */
  1636. /* Source address of the incoming EAPOL frame could be compared to the
  1637. * current BSSID. However, it is possible that a centralized
  1638. * Authenticator could be using another MAC address than the BSSID of
  1639. * an AP, so just allow any address to be used for now. The replies are
  1640. * still sent to the current BSSID (if available), though. */
  1641. os_memcpy(wpa_s->last_eapol_src, src_addr, ETH_ALEN);
  1642. if (!wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) &&
  1643. eapol_sm_rx_eapol(wpa_s->eapol, src_addr, buf, len) > 0)
  1644. return;
  1645. wpa_drv_poll(wpa_s);
  1646. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE))
  1647. wpa_sm_rx_eapol(wpa_s->wpa, src_addr, buf, len);
  1648. else if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
  1649. /*
  1650. * Set portValid = TRUE here since we are going to skip 4-way
  1651. * handshake processing which would normally set portValid. We
  1652. * need this to allow the EAPOL state machines to be completed
  1653. * without going through EAPOL-Key handshake.
  1654. */
  1655. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  1656. }
  1657. }
  1658. /**
  1659. * wpa_supplicant_driver_init - Initialize driver interface parameters
  1660. * @wpa_s: Pointer to wpa_supplicant data
  1661. * Returns: 0 on success, -1 on failure
  1662. *
  1663. * This function is called to initialize driver interface parameters.
  1664. * wpa_drv_init() must have been called before this function to initialize the
  1665. * driver interface.
  1666. */
  1667. int wpa_supplicant_driver_init(struct wpa_supplicant *wpa_s)
  1668. {
  1669. static int interface_count = 0;
  1670. if (wpa_s->driver->send_eapol) {
  1671. const u8 *addr = wpa_drv_get_mac_addr(wpa_s);
  1672. if (addr)
  1673. os_memcpy(wpa_s->own_addr, addr, ETH_ALEN);
  1674. } else if (!(wpa_s->drv_flags &
  1675. WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)) {
  1676. wpa_s->l2 = l2_packet_init(wpa_s->ifname,
  1677. wpa_drv_get_mac_addr(wpa_s),
  1678. ETH_P_EAPOL,
  1679. wpa_supplicant_rx_eapol, wpa_s, 0);
  1680. if (wpa_s->l2 == NULL)
  1681. return -1;
  1682. } else {
  1683. const u8 *addr = wpa_drv_get_mac_addr(wpa_s);
  1684. if (addr)
  1685. os_memcpy(wpa_s->own_addr, addr, ETH_ALEN);
  1686. }
  1687. if (wpa_s->l2 && l2_packet_get_own_addr(wpa_s->l2, wpa_s->own_addr)) {
  1688. wpa_printf(MSG_ERROR, "Failed to get own L2 address");
  1689. return -1;
  1690. }
  1691. wpa_printf(MSG_DEBUG, "Own MAC address: " MACSTR,
  1692. MAC2STR(wpa_s->own_addr));
  1693. if (wpa_s->bridge_ifname[0]) {
  1694. wpa_printf(MSG_DEBUG, "Receiving packets from bridge interface"
  1695. " '%s'", wpa_s->bridge_ifname);
  1696. wpa_s->l2_br = l2_packet_init(wpa_s->bridge_ifname,
  1697. wpa_s->own_addr,
  1698. ETH_P_EAPOL,
  1699. wpa_supplicant_rx_eapol, wpa_s,
  1700. 0);
  1701. if (wpa_s->l2_br == NULL) {
  1702. wpa_printf(MSG_ERROR, "Failed to open l2_packet "
  1703. "connection for the bridge interface '%s'",
  1704. wpa_s->bridge_ifname);
  1705. return -1;
  1706. }
  1707. }
  1708. wpa_clear_keys(wpa_s, NULL);
  1709. /* Make sure that TKIP countermeasures are not left enabled (could
  1710. * happen if wpa_supplicant is killed during countermeasures. */
  1711. wpa_drv_set_countermeasures(wpa_s, 0);
  1712. wpa_printf(MSG_DEBUG, "RSN: flushing PMKID list in the driver");
  1713. wpa_drv_flush_pmkid(wpa_s);
  1714. wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
  1715. if (wpa_supplicant_enabled_networks(wpa_s->conf)) {
  1716. wpa_supplicant_req_scan(wpa_s, interface_count, 100000);
  1717. interface_count++;
  1718. } else
  1719. wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
  1720. return 0;
  1721. }
  1722. static int wpa_supplicant_daemon(const char *pid_file)
  1723. {
  1724. wpa_printf(MSG_DEBUG, "Daemonize..");
  1725. return os_daemonize(pid_file);
  1726. }
  1727. static struct wpa_supplicant * wpa_supplicant_alloc(void)
  1728. {
  1729. struct wpa_supplicant *wpa_s;
  1730. wpa_s = os_zalloc(sizeof(*wpa_s));
  1731. if (wpa_s == NULL)
  1732. return NULL;
  1733. wpa_s->scan_req = 1;
  1734. wpa_s->new_connection = 1;
  1735. wpa_s->parent = wpa_s;
  1736. return wpa_s;
  1737. }
  1738. static int wpa_supplicant_init_iface(struct wpa_supplicant *wpa_s,
  1739. struct wpa_interface *iface)
  1740. {
  1741. const char *ifname, *driver;
  1742. struct wpa_driver_capa capa;
  1743. wpa_printf(MSG_DEBUG, "Initializing interface '%s' conf '%s' driver "
  1744. "'%s' ctrl_interface '%s' bridge '%s'", iface->ifname,
  1745. iface->confname ? iface->confname : "N/A",
  1746. iface->driver ? iface->driver : "default",
  1747. iface->ctrl_interface ? iface->ctrl_interface : "N/A",
  1748. iface->bridge_ifname ? iface->bridge_ifname : "N/A");
  1749. if (iface->confname) {
  1750. #ifdef CONFIG_BACKEND_FILE
  1751. wpa_s->confname = os_rel2abs_path(iface->confname);
  1752. if (wpa_s->confname == NULL) {
  1753. wpa_printf(MSG_ERROR, "Failed to get absolute path "
  1754. "for configuration file '%s'.",
  1755. iface->confname);
  1756. return -1;
  1757. }
  1758. wpa_printf(MSG_DEBUG, "Configuration file '%s' -> '%s'",
  1759. iface->confname, wpa_s->confname);
  1760. #else /* CONFIG_BACKEND_FILE */
  1761. wpa_s->confname = os_strdup(iface->confname);
  1762. #endif /* CONFIG_BACKEND_FILE */
  1763. wpa_s->conf = wpa_config_read(wpa_s->confname);
  1764. if (wpa_s->conf == NULL) {
  1765. wpa_printf(MSG_ERROR, "Failed to read or parse "
  1766. "configuration '%s'.", wpa_s->confname);
  1767. return -1;
  1768. }
  1769. /*
  1770. * Override ctrl_interface and driver_param if set on command
  1771. * line.
  1772. */
  1773. if (iface->ctrl_interface) {
  1774. os_free(wpa_s->conf->ctrl_interface);
  1775. wpa_s->conf->ctrl_interface =
  1776. os_strdup(iface->ctrl_interface);
  1777. }
  1778. if (iface->driver_param) {
  1779. os_free(wpa_s->conf->driver_param);
  1780. wpa_s->conf->driver_param =
  1781. os_strdup(iface->driver_param);
  1782. }
  1783. } else
  1784. wpa_s->conf = wpa_config_alloc_empty(iface->ctrl_interface,
  1785. iface->driver_param);
  1786. if (wpa_s->conf == NULL) {
  1787. wpa_printf(MSG_ERROR, "\nNo configuration found.");
  1788. return -1;
  1789. }
  1790. if (iface->ifname == NULL) {
  1791. wpa_printf(MSG_ERROR, "\nInterface name is required.");
  1792. return -1;
  1793. }
  1794. if (os_strlen(iface->ifname) >= sizeof(wpa_s->ifname)) {
  1795. wpa_printf(MSG_ERROR, "\nToo long interface name '%s'.",
  1796. iface->ifname);
  1797. return -1;
  1798. }
  1799. os_strlcpy(wpa_s->ifname, iface->ifname, sizeof(wpa_s->ifname));
  1800. if (iface->bridge_ifname) {
  1801. if (os_strlen(iface->bridge_ifname) >=
  1802. sizeof(wpa_s->bridge_ifname)) {
  1803. wpa_printf(MSG_ERROR, "\nToo long bridge interface "
  1804. "name '%s'.", iface->bridge_ifname);
  1805. return -1;
  1806. }
  1807. os_strlcpy(wpa_s->bridge_ifname, iface->bridge_ifname,
  1808. sizeof(wpa_s->bridge_ifname));
  1809. }
  1810. /* RSNA Supplicant Key Management - INITIALIZE */
  1811. eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
  1812. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  1813. /* Initialize driver interface and register driver event handler before
  1814. * L2 receive handler so that association events are processed before
  1815. * EAPOL-Key packets if both become available for the same select()
  1816. * call. */
  1817. driver = iface->driver;
  1818. next_driver:
  1819. if (wpa_supplicant_set_driver(wpa_s, driver) < 0)
  1820. return -1;
  1821. wpa_s->drv_priv = wpa_drv_init(wpa_s, wpa_s->ifname);
  1822. if (wpa_s->drv_priv == NULL) {
  1823. const char *pos;
  1824. pos = driver ? os_strchr(driver, ',') : NULL;
  1825. if (pos) {
  1826. wpa_printf(MSG_DEBUG, "Failed to initialize driver "
  1827. "interface - try next driver wrapper");
  1828. driver = pos + 1;
  1829. goto next_driver;
  1830. }
  1831. wpa_printf(MSG_ERROR, "Failed to initialize driver interface");
  1832. return -1;
  1833. }
  1834. if (wpa_drv_set_param(wpa_s, wpa_s->conf->driver_param) < 0) {
  1835. wpa_printf(MSG_ERROR, "Driver interface rejected "
  1836. "driver_param '%s'", wpa_s->conf->driver_param);
  1837. return -1;
  1838. }
  1839. ifname = wpa_drv_get_ifname(wpa_s);
  1840. if (ifname && os_strcmp(ifname, wpa_s->ifname) != 0) {
  1841. wpa_printf(MSG_DEBUG, "Driver interface replaced interface "
  1842. "name with '%s'", ifname);
  1843. os_strlcpy(wpa_s->ifname, ifname, sizeof(wpa_s->ifname));
  1844. }
  1845. if (wpa_supplicant_init_wpa(wpa_s) < 0)
  1846. return -1;
  1847. wpa_sm_set_ifname(wpa_s->wpa, wpa_s->ifname,
  1848. wpa_s->bridge_ifname[0] ? wpa_s->bridge_ifname :
  1849. NULL);
  1850. wpa_sm_set_fast_reauth(wpa_s->wpa, wpa_s->conf->fast_reauth);
  1851. if (wpa_s->conf->dot11RSNAConfigPMKLifetime &&
  1852. wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
  1853. wpa_s->conf->dot11RSNAConfigPMKLifetime)) {
  1854. wpa_printf(MSG_ERROR, "Invalid WPA parameter value for "
  1855. "dot11RSNAConfigPMKLifetime");
  1856. return -1;
  1857. }
  1858. if (wpa_s->conf->dot11RSNAConfigPMKReauthThreshold &&
  1859. wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
  1860. wpa_s->conf->dot11RSNAConfigPMKReauthThreshold)) {
  1861. wpa_printf(MSG_ERROR, "Invalid WPA parameter value for "
  1862. "dot11RSNAConfigPMKReauthThreshold");
  1863. return -1;
  1864. }
  1865. if (wpa_s->conf->dot11RSNAConfigSATimeout &&
  1866. wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT,
  1867. wpa_s->conf->dot11RSNAConfigSATimeout)) {
  1868. wpa_printf(MSG_ERROR, "Invalid WPA parameter value for "
  1869. "dot11RSNAConfigSATimeout");
  1870. return -1;
  1871. }
  1872. if (wpa_drv_get_capa(wpa_s, &capa) == 0) {
  1873. wpa_s->drv_flags = capa.flags;
  1874. if (capa.flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME) {
  1875. if (ieee80211_sta_init(wpa_s))
  1876. return -1;
  1877. }
  1878. wpa_s->max_scan_ssids = capa.max_scan_ssids;
  1879. wpa_s->max_remain_on_chan = capa.max_remain_on_chan;
  1880. wpa_s->max_stations = capa.max_stations;
  1881. }
  1882. if (wpa_s->max_remain_on_chan == 0)
  1883. wpa_s->max_remain_on_chan = 1000;
  1884. if (wpa_supplicant_driver_init(wpa_s) < 0)
  1885. return -1;
  1886. if (wpa_s->conf->country[0] && wpa_s->conf->country[1] &&
  1887. wpa_drv_set_country(wpa_s, wpa_s->conf->country)) {
  1888. wpa_printf(MSG_DEBUG, "Failed to set country");
  1889. return -1;
  1890. }
  1891. wpa_sm_set_own_addr(wpa_s->wpa, wpa_s->own_addr);
  1892. if (wpas_wps_init(wpa_s))
  1893. return -1;
  1894. if (wpa_supplicant_init_eapol(wpa_s) < 0)
  1895. return -1;
  1896. wpa_sm_set_eapol(wpa_s->wpa, wpa_s->eapol);
  1897. wpa_s->ctrl_iface = wpa_supplicant_ctrl_iface_init(wpa_s);
  1898. if (wpa_s->ctrl_iface == NULL) {
  1899. wpa_printf(MSG_ERROR,
  1900. "Failed to initialize control interface '%s'.\n"
  1901. "You may have another wpa_supplicant process "
  1902. "already running or the file was\n"
  1903. "left by an unclean termination of wpa_supplicant "
  1904. "in which case you will need\n"
  1905. "to manually remove this file before starting "
  1906. "wpa_supplicant again.\n",
  1907. wpa_s->conf->ctrl_interface);
  1908. return -1;
  1909. }
  1910. #ifdef CONFIG_IBSS_RSN
  1911. wpa_s->ibss_rsn = ibss_rsn_init(wpa_s);
  1912. if (!wpa_s->ibss_rsn) {
  1913. wpa_printf(MSG_DEBUG, "Failed to init IBSS RSN");
  1914. return -1;
  1915. }
  1916. #endif /* CONFIG_IBSS_RSN */
  1917. #ifdef CONFIG_P2P
  1918. if (wpas_p2p_init(wpa_s->global, wpa_s) < 0) {
  1919. wpa_printf(MSG_ERROR, "Failed to init P2P");
  1920. return -1;
  1921. }
  1922. #endif /* CONFIG_P2P */
  1923. if (wpa_bss_init(wpa_s) < 0)
  1924. return -1;
  1925. return 0;
  1926. }
  1927. static void wpa_supplicant_deinit_iface(struct wpa_supplicant *wpa_s,
  1928. int notify)
  1929. {
  1930. if (wpa_s->drv_priv) {
  1931. wpa_supplicant_deauthenticate(wpa_s,
  1932. WLAN_REASON_DEAUTH_LEAVING);
  1933. wpa_drv_set_countermeasures(wpa_s, 0);
  1934. wpa_clear_keys(wpa_s, NULL);
  1935. }
  1936. wpa_supplicant_cleanup(wpa_s);
  1937. if (notify)
  1938. wpas_notify_iface_removed(wpa_s);
  1939. if (wpa_s->drv_priv)
  1940. wpa_drv_deinit(wpa_s);
  1941. }
  1942. /**
  1943. * wpa_supplicant_add_iface - Add a new network interface
  1944. * @global: Pointer to global data from wpa_supplicant_init()
  1945. * @iface: Interface configuration options
  1946. * Returns: Pointer to the created interface or %NULL on failure
  1947. *
  1948. * This function is used to add new network interfaces for %wpa_supplicant.
  1949. * This can be called before wpa_supplicant_run() to add interfaces before the
  1950. * main event loop has been started. In addition, new interfaces can be added
  1951. * dynamically while %wpa_supplicant is already running. This could happen,
  1952. * e.g., when a hotplug network adapter is inserted.
  1953. */
  1954. struct wpa_supplicant * wpa_supplicant_add_iface(struct wpa_global *global,
  1955. struct wpa_interface *iface)
  1956. {
  1957. struct wpa_supplicant *wpa_s;
  1958. struct wpa_interface t_iface;
  1959. struct wpa_ssid *ssid;
  1960. if (global == NULL || iface == NULL)
  1961. return NULL;
  1962. wpa_s = wpa_supplicant_alloc();
  1963. if (wpa_s == NULL)
  1964. return NULL;
  1965. wpa_s->global = global;
  1966. t_iface = *iface;
  1967. if (global->params.override_driver) {
  1968. wpa_printf(MSG_DEBUG, "Override interface parameter: driver "
  1969. "('%s' -> '%s')",
  1970. iface->driver, global->params.override_driver);
  1971. t_iface.driver = global->params.override_driver;
  1972. }
  1973. if (global->params.override_ctrl_interface) {
  1974. wpa_printf(MSG_DEBUG, "Override interface parameter: "
  1975. "ctrl_interface ('%s' -> '%s')",
  1976. iface->ctrl_interface,
  1977. global->params.override_ctrl_interface);
  1978. t_iface.ctrl_interface =
  1979. global->params.override_ctrl_interface;
  1980. }
  1981. if (wpa_supplicant_init_iface(wpa_s, &t_iface)) {
  1982. wpa_printf(MSG_DEBUG, "Failed to add interface %s",
  1983. iface->ifname);
  1984. wpa_supplicant_deinit_iface(wpa_s, 0);
  1985. os_free(wpa_s);
  1986. return NULL;
  1987. }
  1988. /* Notify the control interfaces about new iface */
  1989. if (wpas_notify_iface_added(wpa_s)) {
  1990. wpa_supplicant_deinit_iface(wpa_s, 1);
  1991. os_free(wpa_s);
  1992. return NULL;
  1993. }
  1994. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
  1995. wpas_notify_network_added(wpa_s, ssid);
  1996. wpa_s->next = global->ifaces;
  1997. global->ifaces = wpa_s;
  1998. wpa_printf(MSG_DEBUG, "Added interface %s", wpa_s->ifname);
  1999. return wpa_s;
  2000. }
  2001. /**
  2002. * wpa_supplicant_remove_iface - Remove a network interface
  2003. * @global: Pointer to global data from wpa_supplicant_init()
  2004. * @wpa_s: Pointer to the network interface to be removed
  2005. * Returns: 0 if interface was removed, -1 if interface was not found
  2006. *
  2007. * This function can be used to dynamically remove network interfaces from
  2008. * %wpa_supplicant, e.g., when a hotplug network adapter is ejected. In
  2009. * addition, this function is used to remove all remaining interfaces when
  2010. * %wpa_supplicant is terminated.
  2011. */
  2012. int wpa_supplicant_remove_iface(struct wpa_global *global,
  2013. struct wpa_supplicant *wpa_s)
  2014. {
  2015. struct wpa_supplicant *prev;
  2016. /* Remove interface from the global list of interfaces */
  2017. prev = global->ifaces;
  2018. if (prev == wpa_s) {
  2019. global->ifaces = wpa_s->next;
  2020. } else {
  2021. while (prev && prev->next != wpa_s)
  2022. prev = prev->next;
  2023. if (prev == NULL)
  2024. return -1;
  2025. prev->next = wpa_s->next;
  2026. }
  2027. wpa_printf(MSG_DEBUG, "Removing interface %s", wpa_s->ifname);
  2028. if (global->p2p_group_formation == wpa_s)
  2029. global->p2p_group_formation = NULL;
  2030. wpa_supplicant_deinit_iface(wpa_s, 1);
  2031. os_free(wpa_s);
  2032. return 0;
  2033. }
  2034. /**
  2035. * wpa_supplicant_get_iface - Get a new network interface
  2036. * @global: Pointer to global data from wpa_supplicant_init()
  2037. * @ifname: Interface name
  2038. * Returns: Pointer to the interface or %NULL if not found
  2039. */
  2040. struct wpa_supplicant * wpa_supplicant_get_iface(struct wpa_global *global,
  2041. const char *ifname)
  2042. {
  2043. struct wpa_supplicant *wpa_s;
  2044. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  2045. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  2046. return wpa_s;
  2047. }
  2048. return NULL;
  2049. }
  2050. /**
  2051. * wpa_supplicant_init - Initialize %wpa_supplicant
  2052. * @params: Parameters for %wpa_supplicant
  2053. * Returns: Pointer to global %wpa_supplicant data, or %NULL on failure
  2054. *
  2055. * This function is used to initialize %wpa_supplicant. After successful
  2056. * initialization, the returned data pointer can be used to add and remove
  2057. * network interfaces, and eventually, to deinitialize %wpa_supplicant.
  2058. */
  2059. struct wpa_global * wpa_supplicant_init(struct wpa_params *params)
  2060. {
  2061. struct wpa_global *global;
  2062. int ret, i;
  2063. if (params == NULL)
  2064. return NULL;
  2065. wpa_debug_open_file(params->wpa_debug_file_path);
  2066. if (params->wpa_debug_syslog)
  2067. wpa_debug_open_syslog();
  2068. ret = eap_register_methods();
  2069. if (ret) {
  2070. wpa_printf(MSG_ERROR, "Failed to register EAP methods");
  2071. if (ret == -2)
  2072. wpa_printf(MSG_ERROR, "Two or more EAP methods used "
  2073. "the same EAP type.");
  2074. return NULL;
  2075. }
  2076. global = os_zalloc(sizeof(*global));
  2077. if (global == NULL)
  2078. return NULL;
  2079. dl_list_init(&global->p2p_srv_bonjour);
  2080. dl_list_init(&global->p2p_srv_upnp);
  2081. global->params.daemonize = params->daemonize;
  2082. global->params.wait_for_monitor = params->wait_for_monitor;
  2083. global->params.dbus_ctrl_interface = params->dbus_ctrl_interface;
  2084. if (params->pid_file)
  2085. global->params.pid_file = os_strdup(params->pid_file);
  2086. if (params->ctrl_interface)
  2087. global->params.ctrl_interface =
  2088. os_strdup(params->ctrl_interface);
  2089. if (params->override_driver)
  2090. global->params.override_driver =
  2091. os_strdup(params->override_driver);
  2092. if (params->override_ctrl_interface)
  2093. global->params.override_ctrl_interface =
  2094. os_strdup(params->override_ctrl_interface);
  2095. wpa_debug_level = global->params.wpa_debug_level =
  2096. params->wpa_debug_level;
  2097. wpa_debug_show_keys = global->params.wpa_debug_show_keys =
  2098. params->wpa_debug_show_keys;
  2099. wpa_debug_timestamp = global->params.wpa_debug_timestamp =
  2100. params->wpa_debug_timestamp;
  2101. wpa_printf(MSG_DEBUG, "wpa_supplicant v" VERSION_STR);
  2102. if (eloop_init()) {
  2103. wpa_printf(MSG_ERROR, "Failed to initialize event loop");
  2104. wpa_supplicant_deinit(global);
  2105. return NULL;
  2106. }
  2107. global->ctrl_iface = wpa_supplicant_global_ctrl_iface_init(global);
  2108. if (global->ctrl_iface == NULL) {
  2109. wpa_supplicant_deinit(global);
  2110. return NULL;
  2111. }
  2112. if (wpas_notify_supplicant_initialized(global)) {
  2113. wpa_supplicant_deinit(global);
  2114. return NULL;
  2115. }
  2116. for (i = 0; wpa_drivers[i]; i++)
  2117. global->drv_count++;
  2118. if (global->drv_count == 0) {
  2119. wpa_printf(MSG_ERROR, "No drivers enabled");
  2120. wpa_supplicant_deinit(global);
  2121. return NULL;
  2122. }
  2123. global->drv_priv = os_zalloc(global->drv_count * sizeof(void *));
  2124. if (global->drv_priv == NULL) {
  2125. wpa_supplicant_deinit(global);
  2126. return NULL;
  2127. }
  2128. for (i = 0; wpa_drivers[i]; i++) {
  2129. if (!wpa_drivers[i]->global_init)
  2130. continue;
  2131. global->drv_priv[i] = wpa_drivers[i]->global_init();
  2132. if (global->drv_priv[i] == NULL) {
  2133. wpa_printf(MSG_ERROR, "Failed to initialize driver "
  2134. "'%s'", wpa_drivers[i]->name);
  2135. wpa_supplicant_deinit(global);
  2136. return NULL;
  2137. }
  2138. }
  2139. return global;
  2140. }
  2141. /**
  2142. * wpa_supplicant_run - Run the %wpa_supplicant main event loop
  2143. * @global: Pointer to global data from wpa_supplicant_init()
  2144. * Returns: 0 after successful event loop run, -1 on failure
  2145. *
  2146. * This function starts the main event loop and continues running as long as
  2147. * there are any remaining events. In most cases, this function is running as
  2148. * long as the %wpa_supplicant process in still in use.
  2149. */
  2150. int wpa_supplicant_run(struct wpa_global *global)
  2151. {
  2152. struct wpa_supplicant *wpa_s;
  2153. if (global->params.daemonize &&
  2154. wpa_supplicant_daemon(global->params.pid_file))
  2155. return -1;
  2156. if (global->params.wait_for_monitor) {
  2157. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next)
  2158. if (wpa_s->ctrl_iface)
  2159. wpa_supplicant_ctrl_iface_wait(
  2160. wpa_s->ctrl_iface);
  2161. }
  2162. eloop_register_signal_terminate(wpa_supplicant_terminate, global);
  2163. eloop_register_signal_reconfig(wpa_supplicant_reconfig, global);
  2164. eloop_run();
  2165. return 0;
  2166. }
  2167. /**
  2168. * wpa_supplicant_deinit - Deinitialize %wpa_supplicant
  2169. * @global: Pointer to global data from wpa_supplicant_init()
  2170. *
  2171. * This function is called to deinitialize %wpa_supplicant and to free all
  2172. * allocated resources. Remaining network interfaces will also be removed.
  2173. */
  2174. void wpa_supplicant_deinit(struct wpa_global *global)
  2175. {
  2176. int i;
  2177. if (global == NULL)
  2178. return;
  2179. #ifdef CONFIG_P2P
  2180. wpas_p2p_deinit_global(global);
  2181. #endif /* CONFIG_P2P */
  2182. while (global->ifaces)
  2183. wpa_supplicant_remove_iface(global, global->ifaces);
  2184. if (global->ctrl_iface)
  2185. wpa_supplicant_global_ctrl_iface_deinit(global->ctrl_iface);
  2186. wpas_notify_supplicant_deinitialized(global);
  2187. eap_peer_unregister_methods();
  2188. #ifdef CONFIG_AP
  2189. eap_server_unregister_methods();
  2190. #endif /* CONFIG_AP */
  2191. for (i = 0; wpa_drivers[i] && global->drv_priv; i++) {
  2192. if (!global->drv_priv[i])
  2193. continue;
  2194. wpa_drivers[i]->global_deinit(global->drv_priv[i]);
  2195. }
  2196. os_free(global->drv_priv);
  2197. eloop_destroy();
  2198. if (global->params.pid_file) {
  2199. os_daemonize_terminate(global->params.pid_file);
  2200. os_free(global->params.pid_file);
  2201. }
  2202. os_free(global->params.ctrl_interface);
  2203. os_free(global->params.override_driver);
  2204. os_free(global->params.override_ctrl_interface);
  2205. os_free(global);
  2206. wpa_debug_close_syslog();
  2207. wpa_debug_close_file();
  2208. }
  2209. void wpa_supplicant_update_config(struct wpa_supplicant *wpa_s)
  2210. {
  2211. #ifdef CONFIG_WPS
  2212. wpas_wps_update_config(wpa_s);
  2213. #endif /* CONFIG_WPS */
  2214. #ifdef CONFIG_P2P
  2215. wpas_p2p_update_config(wpa_s);
  2216. #endif /* CONFIG_P2P */
  2217. wpa_s->conf->changed_parameters = 0;
  2218. }
  2219. void ieee80211_sta_free_hw_features(struct hostapd_hw_modes *hw_features,
  2220. size_t num_hw_features)
  2221. {
  2222. size_t i;
  2223. if (hw_features == NULL)
  2224. return;
  2225. for (i = 0; i < num_hw_features; i++) {
  2226. os_free(hw_features[i].channels);
  2227. os_free(hw_features[i].rates);
  2228. }
  2229. os_free(hw_features);
  2230. }
  2231. static void add_freq(int *freqs, int *num_freqs, int freq)
  2232. {
  2233. int i;
  2234. for (i = 0; i < *num_freqs; i++) {
  2235. if (freqs[i] == freq)
  2236. return;
  2237. }
  2238. freqs[*num_freqs] = freq;
  2239. (*num_freqs)++;
  2240. }
  2241. static int * get_bss_freqs_in_ess(struct wpa_supplicant *wpa_s)
  2242. {
  2243. struct wpa_bss *bss, *cbss;
  2244. const int max_freqs = 10;
  2245. int *freqs;
  2246. int num_freqs = 0;
  2247. freqs = os_zalloc(sizeof(int) * (max_freqs + 1));
  2248. if (freqs == NULL)
  2249. return NULL;
  2250. cbss = wpa_s->current_bss;
  2251. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  2252. if (bss == cbss)
  2253. continue;
  2254. if (bss->ssid_len == cbss->ssid_len &&
  2255. os_memcmp(bss->ssid, cbss->ssid, bss->ssid_len) == 0 &&
  2256. wpa_blacklist_get(wpa_s, bss->bssid) == NULL) {
  2257. add_freq(freqs, &num_freqs, bss->freq);
  2258. if (num_freqs == max_freqs)
  2259. break;
  2260. }
  2261. }
  2262. if (num_freqs == 0) {
  2263. os_free(freqs);
  2264. freqs = NULL;
  2265. }
  2266. return freqs;
  2267. }
  2268. void wpas_connection_failed(struct wpa_supplicant *wpa_s, const u8 *bssid)
  2269. {
  2270. int timeout;
  2271. int count;
  2272. int *freqs = NULL;
  2273. /*
  2274. * Add the failed BSSID into the blacklist and speed up next scan
  2275. * attempt if there could be other APs that could accept association.
  2276. * The current blacklist count indicates how many times we have tried
  2277. * connecting to this AP and multiple attempts mean that other APs are
  2278. * either not available or has already been tried, so that we can start
  2279. * increasing the delay here to avoid constant scanning.
  2280. */
  2281. count = wpa_blacklist_add(wpa_s, bssid);
  2282. if (count == 1 && wpa_s->current_bss) {
  2283. /*
  2284. * This BSS was not in the blacklist before. If there is
  2285. * another BSS available for the same ESS, we should try that
  2286. * next. Otherwise, we may as well try this one once more
  2287. * before allowing other, likely worse, ESSes to be considered.
  2288. */
  2289. freqs = get_bss_freqs_in_ess(wpa_s);
  2290. if (freqs) {
  2291. wpa_printf(MSG_DEBUG, "Another BSS in this ESS has "
  2292. "been seen; try it next");
  2293. wpa_blacklist_add(wpa_s, bssid);
  2294. /*
  2295. * On the next scan, go through only the known channels
  2296. * used in this ESS based on previous scans to speed up
  2297. * common load balancing use case.
  2298. */
  2299. os_free(wpa_s->next_scan_freqs);
  2300. wpa_s->next_scan_freqs = freqs;
  2301. }
  2302. }
  2303. switch (count) {
  2304. case 1:
  2305. timeout = 100;
  2306. break;
  2307. case 2:
  2308. timeout = 500;
  2309. break;
  2310. case 3:
  2311. timeout = 1000;
  2312. break;
  2313. default:
  2314. timeout = 5000;
  2315. }
  2316. /*
  2317. * TODO: if more than one possible AP is available in scan results,
  2318. * could try the other ones before requesting a new scan.
  2319. */
  2320. wpa_supplicant_req_scan(wpa_s, timeout / 1000,
  2321. 1000 * (timeout % 1000));
  2322. }