wpa_supplicant.c 81 KB

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