wpa_supplicant.c 71 KB

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