sme.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980
  1. /*
  2. * wpa_supplicant - SME
  3. * Copyright (c) 2009-2014, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "utils/eloop.h"
  11. #include "common/ieee802_11_defs.h"
  12. #include "common/ieee802_11_common.h"
  13. #include "eapol_supp/eapol_supp_sm.h"
  14. #include "common/wpa_common.h"
  15. #include "common/sae.h"
  16. #include "rsn_supp/wpa.h"
  17. #include "rsn_supp/pmksa_cache.h"
  18. #include "config.h"
  19. #include "wpa_supplicant_i.h"
  20. #include "driver_i.h"
  21. #include "wpas_glue.h"
  22. #include "wps_supplicant.h"
  23. #include "p2p_supplicant.h"
  24. #include "notify.h"
  25. #include "bss.h"
  26. #include "scan.h"
  27. #include "sme.h"
  28. #include "hs20_supplicant.h"
  29. #define SME_AUTH_TIMEOUT 5
  30. #define SME_ASSOC_TIMEOUT 5
  31. static void sme_auth_timer(void *eloop_ctx, void *timeout_ctx);
  32. static void sme_assoc_timer(void *eloop_ctx, void *timeout_ctx);
  33. static void sme_obss_scan_timeout(void *eloop_ctx, void *timeout_ctx);
  34. #ifdef CONFIG_IEEE80211W
  35. static void sme_stop_sa_query(struct wpa_supplicant *wpa_s);
  36. #endif /* CONFIG_IEEE80211W */
  37. #ifdef CONFIG_SAE
  38. static int index_within_array(const int *array, int idx)
  39. {
  40. int i;
  41. for (i = 0; i < idx; i++) {
  42. if (array[i] <= 0)
  43. return 0;
  44. }
  45. return 1;
  46. }
  47. static int sme_set_sae_group(struct wpa_supplicant *wpa_s)
  48. {
  49. int *groups = wpa_s->conf->sae_groups;
  50. int default_groups[] = { 19, 20, 21, 25, 26, 0 };
  51. if (!groups || groups[0] <= 0)
  52. groups = default_groups;
  53. /* Configuration may have changed, so validate current index */
  54. if (!index_within_array(groups, wpa_s->sme.sae_group_index))
  55. return -1;
  56. for (;;) {
  57. int group = groups[wpa_s->sme.sae_group_index];
  58. if (group <= 0)
  59. break;
  60. if (sae_set_group(&wpa_s->sme.sae, group) == 0) {
  61. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected SAE group %d",
  62. wpa_s->sme.sae.group);
  63. return 0;
  64. }
  65. wpa_s->sme.sae_group_index++;
  66. }
  67. return -1;
  68. }
  69. static struct wpabuf * sme_auth_build_sae_commit(struct wpa_supplicant *wpa_s,
  70. struct wpa_ssid *ssid,
  71. const u8 *bssid)
  72. {
  73. struct wpabuf *buf;
  74. size_t len;
  75. const char *password;
  76. #ifdef CONFIG_TESTING_OPTIONS
  77. if (wpa_s->sae_commit_override) {
  78. wpa_printf(MSG_DEBUG, "SAE: TESTING - commit override");
  79. buf = wpabuf_alloc(4 + wpabuf_len(wpa_s->sae_commit_override));
  80. if (!buf)
  81. return NULL;
  82. wpabuf_put_le16(buf, 1); /* Transaction seq# */
  83. wpabuf_put_le16(buf, WLAN_STATUS_SUCCESS);
  84. wpabuf_put_buf(buf, wpa_s->sae_commit_override);
  85. return buf;
  86. }
  87. #endif /* CONFIG_TESTING_OPTIONS */
  88. password = ssid->sae_password;
  89. if (!password)
  90. password = ssid->passphrase;
  91. if (!password) {
  92. wpa_printf(MSG_DEBUG, "SAE: No password available");
  93. return NULL;
  94. }
  95. if (sme_set_sae_group(wpa_s) < 0) {
  96. wpa_printf(MSG_DEBUG, "SAE: Failed to select group");
  97. return NULL;
  98. }
  99. if (sae_prepare_commit(wpa_s->own_addr, bssid,
  100. (u8 *) password, os_strlen(password),
  101. &wpa_s->sme.sae) < 0) {
  102. wpa_printf(MSG_DEBUG, "SAE: Could not pick PWE");
  103. return NULL;
  104. }
  105. len = wpa_s->sme.sae_token ? wpabuf_len(wpa_s->sme.sae_token) : 0;
  106. buf = wpabuf_alloc(4 + SAE_COMMIT_MAX_LEN + len);
  107. if (buf == NULL)
  108. return NULL;
  109. wpabuf_put_le16(buf, 1); /* Transaction seq# */
  110. wpabuf_put_le16(buf, WLAN_STATUS_SUCCESS);
  111. sae_write_commit(&wpa_s->sme.sae, buf, wpa_s->sme.sae_token);
  112. return buf;
  113. }
  114. static struct wpabuf * sme_auth_build_sae_confirm(struct wpa_supplicant *wpa_s)
  115. {
  116. struct wpabuf *buf;
  117. buf = wpabuf_alloc(4 + SAE_CONFIRM_MAX_LEN);
  118. if (buf == NULL)
  119. return NULL;
  120. wpabuf_put_le16(buf, 2); /* Transaction seq# */
  121. wpabuf_put_le16(buf, WLAN_STATUS_SUCCESS);
  122. sae_write_confirm(&wpa_s->sme.sae, buf);
  123. return buf;
  124. }
  125. #endif /* CONFIG_SAE */
  126. /**
  127. * sme_auth_handle_rrm - Handle RRM aspects of current authentication attempt
  128. * @wpa_s: Pointer to wpa_supplicant data
  129. * @bss: Pointer to the bss which is the target of authentication attempt
  130. */
  131. static void sme_auth_handle_rrm(struct wpa_supplicant *wpa_s,
  132. struct wpa_bss *bss)
  133. {
  134. const u8 rrm_ie_len = 5;
  135. u8 *pos;
  136. const u8 *rrm_ie;
  137. wpa_s->rrm.rrm_used = 0;
  138. wpa_printf(MSG_DEBUG,
  139. "RRM: Determining whether RRM can be used - device support: 0x%x",
  140. wpa_s->drv_rrm_flags);
  141. rrm_ie = wpa_bss_get_ie(bss, WLAN_EID_RRM_ENABLED_CAPABILITIES);
  142. if (!rrm_ie || !(bss->caps & IEEE80211_CAP_RRM)) {
  143. wpa_printf(MSG_DEBUG, "RRM: No RRM in network");
  144. return;
  145. }
  146. if (!((wpa_s->drv_rrm_flags &
  147. WPA_DRIVER_FLAGS_DS_PARAM_SET_IE_IN_PROBES) &&
  148. (wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_QUIET)) &&
  149. !(wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_SUPPORT_RRM)) {
  150. wpa_printf(MSG_DEBUG,
  151. "RRM: Insufficient RRM support in driver - do not use RRM");
  152. return;
  153. }
  154. if (sizeof(wpa_s->sme.assoc_req_ie) <
  155. wpa_s->sme.assoc_req_ie_len + rrm_ie_len + 2) {
  156. wpa_printf(MSG_INFO,
  157. "RRM: Unable to use RRM, no room for RRM IE");
  158. return;
  159. }
  160. wpa_printf(MSG_DEBUG, "RRM: Adding RRM IE to Association Request");
  161. pos = wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len;
  162. os_memset(pos, 0, 2 + rrm_ie_len);
  163. *pos++ = WLAN_EID_RRM_ENABLED_CAPABILITIES;
  164. *pos++ = rrm_ie_len;
  165. /* Set supported capabilites flags */
  166. if (wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_TX_POWER_INSERTION)
  167. *pos |= WLAN_RRM_CAPS_LINK_MEASUREMENT;
  168. *pos |= WLAN_RRM_CAPS_BEACON_REPORT_PASSIVE |
  169. WLAN_RRM_CAPS_BEACON_REPORT_ACTIVE |
  170. WLAN_RRM_CAPS_BEACON_REPORT_TABLE;
  171. if (wpa_s->lci)
  172. pos[1] |= WLAN_RRM_CAPS_LCI_MEASUREMENT;
  173. wpa_s->sme.assoc_req_ie_len += rrm_ie_len + 2;
  174. wpa_s->rrm.rrm_used = 1;
  175. }
  176. static void sme_send_authentication(struct wpa_supplicant *wpa_s,
  177. struct wpa_bss *bss, struct wpa_ssid *ssid,
  178. int start)
  179. {
  180. struct wpa_driver_auth_params params;
  181. struct wpa_ssid *old_ssid;
  182. #ifdef CONFIG_IEEE80211R
  183. const u8 *ie;
  184. #endif /* CONFIG_IEEE80211R */
  185. #if defined(CONFIG_IEEE80211R) || defined(CONFIG_FILS)
  186. const u8 *md = NULL;
  187. #endif /* CONFIG_IEEE80211R || CONFIG_FILS */
  188. int i, bssid_changed;
  189. struct wpabuf *resp = NULL;
  190. u8 ext_capab[18];
  191. int ext_capab_len;
  192. int skip_auth;
  193. if (bss == NULL) {
  194. wpa_msg(wpa_s, MSG_ERROR, "SME: No scan result available for "
  195. "the network");
  196. wpas_connect_work_done(wpa_s);
  197. return;
  198. }
  199. skip_auth = wpa_s->conf->reassoc_same_bss_optim &&
  200. wpa_s->reassoc_same_bss;
  201. wpa_s->current_bss = bss;
  202. os_memset(&params, 0, sizeof(params));
  203. wpa_s->reassociate = 0;
  204. params.freq = bss->freq;
  205. params.bssid = bss->bssid;
  206. params.ssid = bss->ssid;
  207. params.ssid_len = bss->ssid_len;
  208. params.p2p = ssid->p2p_group;
  209. if (wpa_s->sme.ssid_len != params.ssid_len ||
  210. os_memcmp(wpa_s->sme.ssid, params.ssid, params.ssid_len) != 0)
  211. wpa_s->sme.prev_bssid_set = 0;
  212. wpa_s->sme.freq = params.freq;
  213. os_memcpy(wpa_s->sme.ssid, params.ssid, params.ssid_len);
  214. wpa_s->sme.ssid_len = params.ssid_len;
  215. params.auth_alg = WPA_AUTH_ALG_OPEN;
  216. #ifdef IEEE8021X_EAPOL
  217. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  218. if (ssid->leap) {
  219. if (ssid->non_leap == 0)
  220. params.auth_alg = WPA_AUTH_ALG_LEAP;
  221. else
  222. params.auth_alg |= WPA_AUTH_ALG_LEAP;
  223. }
  224. }
  225. #endif /* IEEE8021X_EAPOL */
  226. wpa_dbg(wpa_s, MSG_DEBUG, "Automatic auth_alg selection: 0x%x",
  227. params.auth_alg);
  228. if (ssid->auth_alg) {
  229. params.auth_alg = ssid->auth_alg;
  230. wpa_dbg(wpa_s, MSG_DEBUG, "Overriding auth_alg selection: "
  231. "0x%x", params.auth_alg);
  232. }
  233. #ifdef CONFIG_SAE
  234. wpa_s->sme.sae_pmksa_caching = 0;
  235. if (wpa_key_mgmt_sae(ssid->key_mgmt)) {
  236. const u8 *rsn;
  237. struct wpa_ie_data ied;
  238. rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  239. if (!rsn) {
  240. wpa_dbg(wpa_s, MSG_DEBUG,
  241. "SAE enabled, but target BSS does not advertise RSN");
  242. } else if (wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ied) == 0 &&
  243. wpa_key_mgmt_sae(ied.key_mgmt)) {
  244. wpa_dbg(wpa_s, MSG_DEBUG, "Using SAE auth_alg");
  245. params.auth_alg = WPA_AUTH_ALG_SAE;
  246. } else {
  247. wpa_dbg(wpa_s, MSG_DEBUG,
  248. "SAE enabled, but target BSS does not advertise SAE AKM for RSN");
  249. }
  250. }
  251. #endif /* CONFIG_SAE */
  252. for (i = 0; i < NUM_WEP_KEYS; i++) {
  253. if (ssid->wep_key_len[i])
  254. params.wep_key[i] = ssid->wep_key[i];
  255. params.wep_key_len[i] = ssid->wep_key_len[i];
  256. }
  257. params.wep_tx_keyidx = ssid->wep_tx_keyidx;
  258. bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
  259. os_memset(wpa_s->bssid, 0, ETH_ALEN);
  260. os_memcpy(wpa_s->pending_bssid, bss->bssid, ETH_ALEN);
  261. if (bssid_changed)
  262. wpas_notify_bssid_changed(wpa_s);
  263. if ((wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE) ||
  264. wpa_bss_get_ie(bss, WLAN_EID_RSN)) &&
  265. wpa_key_mgmt_wpa(ssid->key_mgmt)) {
  266. int try_opportunistic;
  267. const u8 *cache_id = NULL;
  268. try_opportunistic = (ssid->proactive_key_caching < 0 ?
  269. wpa_s->conf->okc :
  270. ssid->proactive_key_caching) &&
  271. (ssid->proto & WPA_PROTO_RSN);
  272. #ifdef CONFIG_FILS
  273. if (wpa_key_mgmt_fils(ssid->key_mgmt))
  274. cache_id = wpa_bss_get_fils_cache_id(bss);
  275. #endif /* CONFIG_FILS */
  276. if (pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid,
  277. wpa_s->current_ssid,
  278. try_opportunistic, cache_id) == 0)
  279. eapol_sm_notify_pmkid_attempt(wpa_s->eapol);
  280. wpa_s->sme.assoc_req_ie_len = sizeof(wpa_s->sme.assoc_req_ie);
  281. if (wpa_supplicant_set_suites(wpa_s, bss, ssid,
  282. wpa_s->sme.assoc_req_ie,
  283. &wpa_s->sme.assoc_req_ie_len)) {
  284. wpa_msg(wpa_s, MSG_WARNING, "SME: Failed to set WPA "
  285. "key management and encryption suites");
  286. wpas_connect_work_done(wpa_s);
  287. return;
  288. }
  289. } else if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
  290. wpa_key_mgmt_wpa_ieee8021x(ssid->key_mgmt)) {
  291. /*
  292. * Both WPA and non-WPA IEEE 802.1X enabled in configuration -
  293. * use non-WPA since the scan results did not indicate that the
  294. * AP is using WPA or WPA2.
  295. */
  296. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  297. wpa_s->sme.assoc_req_ie_len = 0;
  298. } else if (wpa_key_mgmt_wpa_any(ssid->key_mgmt)) {
  299. wpa_s->sme.assoc_req_ie_len = sizeof(wpa_s->sme.assoc_req_ie);
  300. if (wpa_supplicant_set_suites(wpa_s, NULL, ssid,
  301. wpa_s->sme.assoc_req_ie,
  302. &wpa_s->sme.assoc_req_ie_len)) {
  303. wpa_msg(wpa_s, MSG_WARNING, "SME: Failed to set WPA "
  304. "key management and encryption suites (no "
  305. "scan results)");
  306. wpas_connect_work_done(wpa_s);
  307. return;
  308. }
  309. #ifdef CONFIG_WPS
  310. } else if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
  311. struct wpabuf *wps_ie;
  312. wps_ie = wps_build_assoc_req_ie(wpas_wps_get_req_type(ssid));
  313. if (wps_ie && wpabuf_len(wps_ie) <=
  314. sizeof(wpa_s->sme.assoc_req_ie)) {
  315. wpa_s->sme.assoc_req_ie_len = wpabuf_len(wps_ie);
  316. os_memcpy(wpa_s->sme.assoc_req_ie, wpabuf_head(wps_ie),
  317. wpa_s->sme.assoc_req_ie_len);
  318. } else
  319. wpa_s->sme.assoc_req_ie_len = 0;
  320. wpabuf_free(wps_ie);
  321. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  322. #endif /* CONFIG_WPS */
  323. } else {
  324. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  325. wpa_s->sme.assoc_req_ie_len = 0;
  326. }
  327. #ifdef CONFIG_IEEE80211R
  328. ie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
  329. if (ie && ie[1] >= MOBILITY_DOMAIN_ID_LEN)
  330. md = ie + 2;
  331. wpa_sm_set_ft_params(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0);
  332. if (md) {
  333. /* Prepare for the next transition */
  334. wpa_ft_prepare_auth_request(wpa_s->wpa, ie);
  335. }
  336. if (md && !wpa_key_mgmt_ft(ssid->key_mgmt))
  337. md = NULL;
  338. if (md) {
  339. wpa_dbg(wpa_s, MSG_DEBUG, "SME: FT mobility domain %02x%02x",
  340. md[0], md[1]);
  341. if (wpa_s->sme.assoc_req_ie_len + 5 <
  342. sizeof(wpa_s->sme.assoc_req_ie)) {
  343. struct rsn_mdie *mdie;
  344. u8 *pos = wpa_s->sme.assoc_req_ie +
  345. wpa_s->sme.assoc_req_ie_len;
  346. *pos++ = WLAN_EID_MOBILITY_DOMAIN;
  347. *pos++ = sizeof(*mdie);
  348. mdie = (struct rsn_mdie *) pos;
  349. os_memcpy(mdie->mobility_domain, md,
  350. MOBILITY_DOMAIN_ID_LEN);
  351. mdie->ft_capab = md[MOBILITY_DOMAIN_ID_LEN];
  352. wpa_s->sme.assoc_req_ie_len += 5;
  353. }
  354. if (wpa_s->sme.ft_used &&
  355. os_memcmp(md, wpa_s->sme.mobility_domain, 2) == 0 &&
  356. wpa_sm_has_ptk(wpa_s->wpa)) {
  357. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying to use FT "
  358. "over-the-air");
  359. params.auth_alg = WPA_AUTH_ALG_FT;
  360. params.ie = wpa_s->sme.ft_ies;
  361. params.ie_len = wpa_s->sme.ft_ies_len;
  362. }
  363. }
  364. #endif /* CONFIG_IEEE80211R */
  365. #ifdef CONFIG_IEEE80211W
  366. wpa_s->sme.mfp = wpas_get_ssid_pmf(wpa_s, ssid);
  367. if (wpa_s->sme.mfp != NO_MGMT_FRAME_PROTECTION) {
  368. const u8 *rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  369. struct wpa_ie_data _ie;
  370. if (rsn && wpa_parse_wpa_ie(rsn, 2 + rsn[1], &_ie) == 0 &&
  371. _ie.capabilities &
  372. (WPA_CAPABILITY_MFPC | WPA_CAPABILITY_MFPR)) {
  373. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected AP supports "
  374. "MFP: require MFP");
  375. wpa_s->sme.mfp = MGMT_FRAME_PROTECTION_REQUIRED;
  376. }
  377. }
  378. #endif /* CONFIG_IEEE80211W */
  379. #ifdef CONFIG_P2P
  380. if (wpa_s->global->p2p) {
  381. u8 *pos;
  382. size_t len;
  383. int res;
  384. pos = wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len;
  385. len = sizeof(wpa_s->sme.assoc_req_ie) -
  386. wpa_s->sme.assoc_req_ie_len;
  387. res = wpas_p2p_assoc_req_ie(wpa_s, bss, pos, len,
  388. ssid->p2p_group);
  389. if (res >= 0)
  390. wpa_s->sme.assoc_req_ie_len += res;
  391. }
  392. #endif /* CONFIG_P2P */
  393. #ifdef CONFIG_FST
  394. if (wpa_s->fst_ies) {
  395. int fst_ies_len = wpabuf_len(wpa_s->fst_ies);
  396. if (wpa_s->sme.assoc_req_ie_len + fst_ies_len <=
  397. sizeof(wpa_s->sme.assoc_req_ie)) {
  398. os_memcpy(wpa_s->sme.assoc_req_ie +
  399. wpa_s->sme.assoc_req_ie_len,
  400. wpabuf_head(wpa_s->fst_ies),
  401. fst_ies_len);
  402. wpa_s->sme.assoc_req_ie_len += fst_ies_len;
  403. }
  404. }
  405. #endif /* CONFIG_FST */
  406. sme_auth_handle_rrm(wpa_s, bss);
  407. wpa_s->sme.assoc_req_ie_len += wpas_supp_op_class_ie(
  408. wpa_s, bss->freq,
  409. wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len,
  410. sizeof(wpa_s->sme.assoc_req_ie) - wpa_s->sme.assoc_req_ie_len);
  411. if (params.p2p)
  412. wpa_drv_get_ext_capa(wpa_s, WPA_IF_P2P_CLIENT);
  413. else
  414. wpa_drv_get_ext_capa(wpa_s, WPA_IF_STATION);
  415. ext_capab_len = wpas_build_ext_capab(wpa_s, ext_capab,
  416. sizeof(ext_capab));
  417. if (ext_capab_len > 0) {
  418. u8 *pos = wpa_s->sme.assoc_req_ie;
  419. if (wpa_s->sme.assoc_req_ie_len > 0 && pos[0] == WLAN_EID_RSN)
  420. pos += 2 + pos[1];
  421. os_memmove(pos + ext_capab_len, pos,
  422. wpa_s->sme.assoc_req_ie_len -
  423. (pos - wpa_s->sme.assoc_req_ie));
  424. wpa_s->sme.assoc_req_ie_len += ext_capab_len;
  425. os_memcpy(pos, ext_capab, ext_capab_len);
  426. }
  427. #ifdef CONFIG_HS20
  428. if (is_hs20_network(wpa_s, ssid, bss)) {
  429. struct wpabuf *hs20;
  430. hs20 = wpabuf_alloc(20);
  431. if (hs20) {
  432. int pps_mo_id = hs20_get_pps_mo_id(wpa_s, ssid);
  433. size_t len;
  434. wpas_hs20_add_indication(hs20, pps_mo_id);
  435. len = sizeof(wpa_s->sme.assoc_req_ie) -
  436. wpa_s->sme.assoc_req_ie_len;
  437. if (wpabuf_len(hs20) <= len) {
  438. os_memcpy(wpa_s->sme.assoc_req_ie +
  439. wpa_s->sme.assoc_req_ie_len,
  440. wpabuf_head(hs20), wpabuf_len(hs20));
  441. wpa_s->sme.assoc_req_ie_len += wpabuf_len(hs20);
  442. }
  443. wpabuf_free(hs20);
  444. }
  445. }
  446. #endif /* CONFIG_HS20 */
  447. if (wpa_s->vendor_elem[VENDOR_ELEM_ASSOC_REQ]) {
  448. struct wpabuf *buf = wpa_s->vendor_elem[VENDOR_ELEM_ASSOC_REQ];
  449. size_t len;
  450. len = sizeof(wpa_s->sme.assoc_req_ie) -
  451. wpa_s->sme.assoc_req_ie_len;
  452. if (wpabuf_len(buf) <= len) {
  453. os_memcpy(wpa_s->sme.assoc_req_ie +
  454. wpa_s->sme.assoc_req_ie_len,
  455. wpabuf_head(buf), wpabuf_len(buf));
  456. wpa_s->sme.assoc_req_ie_len += wpabuf_len(buf);
  457. }
  458. }
  459. #ifdef CONFIG_MBO
  460. if (wpa_bss_get_vendor_ie(bss, MBO_IE_VENDOR_TYPE)) {
  461. int len;
  462. len = wpas_mbo_ie(wpa_s, wpa_s->sme.assoc_req_ie +
  463. wpa_s->sme.assoc_req_ie_len,
  464. sizeof(wpa_s->sme.assoc_req_ie) -
  465. wpa_s->sme.assoc_req_ie_len);
  466. if (len >= 0)
  467. wpa_s->sme.assoc_req_ie_len += len;
  468. }
  469. #endif /* CONFIG_MBO */
  470. #ifdef CONFIG_SAE
  471. if (!skip_auth && params.auth_alg == WPA_AUTH_ALG_SAE &&
  472. pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid, ssid, 0,
  473. NULL) == 0) {
  474. wpa_dbg(wpa_s, MSG_DEBUG,
  475. "PMKSA cache entry found - try to use PMKSA caching instead of new SAE authentication");
  476. params.auth_alg = WPA_AUTH_ALG_OPEN;
  477. wpa_s->sme.sae_pmksa_caching = 1;
  478. }
  479. if (!skip_auth && params.auth_alg == WPA_AUTH_ALG_SAE) {
  480. if (start)
  481. resp = sme_auth_build_sae_commit(wpa_s, ssid,
  482. bss->bssid);
  483. else
  484. resp = sme_auth_build_sae_confirm(wpa_s);
  485. if (resp == NULL) {
  486. wpas_connection_failed(wpa_s, bss->bssid);
  487. return;
  488. }
  489. params.auth_data = wpabuf_head(resp);
  490. params.auth_data_len = wpabuf_len(resp);
  491. wpa_s->sme.sae.state = start ? SAE_COMMITTED : SAE_CONFIRMED;
  492. }
  493. #endif /* CONFIG_SAE */
  494. old_ssid = wpa_s->current_ssid;
  495. wpa_s->current_ssid = ssid;
  496. wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
  497. wpa_supplicant_initiate_eapol(wpa_s);
  498. #ifdef CONFIG_FILS
  499. /* TODO: FILS operations can in some cases be done between different
  500. * network_ctx (i.e., same credentials can be used with multiple
  501. * networks). */
  502. if (params.auth_alg == WPA_AUTH_ALG_OPEN &&
  503. wpa_key_mgmt_fils(ssid->key_mgmt)) {
  504. const u8 *indic;
  505. u16 fils_info;
  506. /*
  507. * Check FILS Indication element (FILS Information field) bits
  508. * indicating supported authentication algorithms against local
  509. * configuration (ssid->fils_dh_group). Try to use FILS
  510. * authentication only if the AP supports the combination in the
  511. * network profile. */
  512. indic = wpa_bss_get_ie(bss, WLAN_EID_FILS_INDICATION);
  513. if (!indic || indic[1] < 2) {
  514. wpa_printf(MSG_DEBUG, "SME: " MACSTR
  515. " does not include FILS Indication element - cannot use FILS authentication with it",
  516. MAC2STR(bss->bssid));
  517. goto no_fils;
  518. }
  519. fils_info = WPA_GET_LE16(indic + 2);
  520. if (ssid->fils_dh_group == 0 && !(fils_info & BIT(9))) {
  521. wpa_printf(MSG_DEBUG, "SME: " MACSTR
  522. " does not support FILS SK without PFS - cannot use FILS authentication with it",
  523. MAC2STR(bss->bssid));
  524. goto no_fils;
  525. }
  526. if (ssid->fils_dh_group != 0 && !(fils_info & BIT(10))) {
  527. wpa_printf(MSG_DEBUG, "SME: " MACSTR
  528. " does not support FILS SK with PFS - cannot use FILS authentication with it",
  529. MAC2STR(bss->bssid));
  530. goto no_fils;
  531. }
  532. if (pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid,
  533. ssid, 0,
  534. wpa_bss_get_fils_cache_id(bss)) ==
  535. 0)
  536. wpa_printf(MSG_DEBUG,
  537. "SME: Try to use FILS with PMKSA caching");
  538. resp = fils_build_auth(wpa_s->wpa, ssid->fils_dh_group, md);
  539. if (resp) {
  540. int auth_alg;
  541. if (ssid->fils_dh_group)
  542. wpa_printf(MSG_DEBUG,
  543. "SME: Try to use FILS SK authentication with PFS (DH Group %u)",
  544. ssid->fils_dh_group);
  545. else
  546. wpa_printf(MSG_DEBUG,
  547. "SME: Try to use FILS SK authentication without PFS");
  548. auth_alg = ssid->fils_dh_group ?
  549. WPA_AUTH_ALG_FILS_SK_PFS : WPA_AUTH_ALG_FILS;
  550. params.auth_alg = auth_alg;
  551. params.auth_data = wpabuf_head(resp);
  552. params.auth_data_len = wpabuf_len(resp);
  553. wpa_s->sme.auth_alg = auth_alg;
  554. }
  555. }
  556. no_fils:
  557. #endif /* CONFIG_FILS */
  558. wpa_supplicant_cancel_sched_scan(wpa_s);
  559. wpa_supplicant_cancel_scan(wpa_s);
  560. wpa_msg(wpa_s, MSG_INFO, "SME: Trying to authenticate with " MACSTR
  561. " (SSID='%s' freq=%d MHz)", MAC2STR(params.bssid),
  562. wpa_ssid_txt(params.ssid, params.ssid_len), params.freq);
  563. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  564. wpa_clear_keys(wpa_s, bss->bssid);
  565. wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
  566. if (old_ssid != wpa_s->current_ssid)
  567. wpas_notify_network_changed(wpa_s);
  568. #ifdef CONFIG_HS20
  569. hs20_configure_frame_filters(wpa_s);
  570. #endif /* CONFIG_HS20 */
  571. #ifdef CONFIG_P2P
  572. /*
  573. * If multi-channel concurrency is not supported, check for any
  574. * frequency conflict. In case of any frequency conflict, remove the
  575. * least prioritized connection.
  576. */
  577. if (wpa_s->num_multichan_concurrent < 2) {
  578. int freq, num;
  579. num = get_shared_radio_freqs(wpa_s, &freq, 1);
  580. if (num > 0 && freq > 0 && freq != params.freq) {
  581. wpa_printf(MSG_DEBUG,
  582. "Conflicting frequency found (%d != %d)",
  583. freq, params.freq);
  584. if (wpas_p2p_handle_frequency_conflicts(wpa_s,
  585. params.freq,
  586. ssid) < 0) {
  587. wpas_connection_failed(wpa_s, bss->bssid);
  588. wpa_supplicant_mark_disassoc(wpa_s);
  589. wpabuf_free(resp);
  590. wpas_connect_work_done(wpa_s);
  591. return;
  592. }
  593. }
  594. }
  595. #endif /* CONFIG_P2P */
  596. if (skip_auth) {
  597. wpa_msg(wpa_s, MSG_DEBUG,
  598. "SME: Skip authentication step on reassoc-to-same-BSS");
  599. wpabuf_free(resp);
  600. sme_associate(wpa_s, ssid->mode, bss->bssid, WLAN_AUTH_OPEN);
  601. return;
  602. }
  603. wpa_s->sme.auth_alg = params.auth_alg;
  604. if (wpa_drv_authenticate(wpa_s, &params) < 0) {
  605. wpa_msg(wpa_s, MSG_INFO, "SME: Authentication request to the "
  606. "driver failed");
  607. wpas_connection_failed(wpa_s, bss->bssid);
  608. wpa_supplicant_mark_disassoc(wpa_s);
  609. wpabuf_free(resp);
  610. wpas_connect_work_done(wpa_s);
  611. return;
  612. }
  613. eloop_register_timeout(SME_AUTH_TIMEOUT, 0, sme_auth_timer, wpa_s,
  614. NULL);
  615. /*
  616. * Association will be started based on the authentication event from
  617. * the driver.
  618. */
  619. wpabuf_free(resp);
  620. }
  621. static void sme_auth_start_cb(struct wpa_radio_work *work, int deinit)
  622. {
  623. struct wpa_connect_work *cwork = work->ctx;
  624. struct wpa_supplicant *wpa_s = work->wpa_s;
  625. if (deinit) {
  626. if (work->started)
  627. wpa_s->connect_work = NULL;
  628. wpas_connect_work_free(cwork);
  629. return;
  630. }
  631. wpa_s->connect_work = work;
  632. if (cwork->bss_removed ||
  633. !wpas_valid_bss_ssid(wpa_s, cwork->bss, cwork->ssid) ||
  634. wpas_network_disabled(wpa_s, cwork->ssid)) {
  635. wpa_dbg(wpa_s, MSG_DEBUG, "SME: BSS/SSID entry for authentication not valid anymore - drop connection attempt");
  636. wpas_connect_work_done(wpa_s);
  637. return;
  638. }
  639. /* Starting new connection, so clear the possibly used WPA IE from the
  640. * previous association. */
  641. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  642. sme_send_authentication(wpa_s, cwork->bss, cwork->ssid, 1);
  643. }
  644. void sme_authenticate(struct wpa_supplicant *wpa_s,
  645. struct wpa_bss *bss, struct wpa_ssid *ssid)
  646. {
  647. struct wpa_connect_work *cwork;
  648. if (bss == NULL || ssid == NULL)
  649. return;
  650. if (wpa_s->connect_work) {
  651. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Reject sme_authenticate() call since connect_work exist");
  652. return;
  653. }
  654. if (radio_work_pending(wpa_s, "sme-connect")) {
  655. /*
  656. * The previous sme-connect work might no longer be valid due to
  657. * the fact that the BSS list was updated. In addition, it makes
  658. * sense to adhere to the 'newer' decision.
  659. */
  660. wpa_dbg(wpa_s, MSG_DEBUG,
  661. "SME: Remove previous pending sme-connect");
  662. radio_remove_works(wpa_s, "sme-connect", 0);
  663. }
  664. wpas_abort_ongoing_scan(wpa_s);
  665. cwork = os_zalloc(sizeof(*cwork));
  666. if (cwork == NULL)
  667. return;
  668. cwork->bss = bss;
  669. cwork->ssid = ssid;
  670. cwork->sme = 1;
  671. #ifdef CONFIG_SAE
  672. wpa_s->sme.sae.state = SAE_NOTHING;
  673. wpa_s->sme.sae.send_confirm = 0;
  674. wpa_s->sme.sae_group_index = 0;
  675. #endif /* CONFIG_SAE */
  676. if (radio_add_work(wpa_s, bss->freq, "sme-connect", 1,
  677. sme_auth_start_cb, cwork) < 0)
  678. wpas_connect_work_free(cwork);
  679. }
  680. #ifdef CONFIG_SAE
  681. static int sme_sae_auth(struct wpa_supplicant *wpa_s, u16 auth_transaction,
  682. u16 status_code, const u8 *data, size_t len)
  683. {
  684. int *groups;
  685. wpa_dbg(wpa_s, MSG_DEBUG, "SME: SAE authentication transaction %u "
  686. "status code %u", auth_transaction, status_code);
  687. if (auth_transaction == 1 &&
  688. status_code == WLAN_STATUS_ANTI_CLOGGING_TOKEN_REQ &&
  689. wpa_s->sme.sae.state == SAE_COMMITTED &&
  690. wpa_s->current_bss && wpa_s->current_ssid) {
  691. int default_groups[] = { 19, 20, 21, 25, 26, 0 };
  692. u16 group;
  693. groups = wpa_s->conf->sae_groups;
  694. if (!groups || groups[0] <= 0)
  695. groups = default_groups;
  696. if (len < sizeof(le16)) {
  697. wpa_dbg(wpa_s, MSG_DEBUG,
  698. "SME: Too short SAE anti-clogging token request");
  699. return -1;
  700. }
  701. group = WPA_GET_LE16(data);
  702. wpa_dbg(wpa_s, MSG_DEBUG,
  703. "SME: SAE anti-clogging token requested (group %u)",
  704. group);
  705. if (sae_group_allowed(&wpa_s->sme.sae, groups, group) !=
  706. WLAN_STATUS_SUCCESS) {
  707. wpa_dbg(wpa_s, MSG_ERROR,
  708. "SME: SAE group %u of anti-clogging request is invalid",
  709. group);
  710. return -1;
  711. }
  712. wpabuf_free(wpa_s->sme.sae_token);
  713. wpa_s->sme.sae_token = wpabuf_alloc_copy(data + sizeof(le16),
  714. len - sizeof(le16));
  715. sme_send_authentication(wpa_s, wpa_s->current_bss,
  716. wpa_s->current_ssid, 1);
  717. return 0;
  718. }
  719. if (auth_transaction == 1 &&
  720. status_code == WLAN_STATUS_FINITE_CYCLIC_GROUP_NOT_SUPPORTED &&
  721. wpa_s->sme.sae.state == SAE_COMMITTED &&
  722. wpa_s->current_bss && wpa_s->current_ssid) {
  723. wpa_dbg(wpa_s, MSG_DEBUG, "SME: SAE group not supported");
  724. wpa_s->sme.sae_group_index++;
  725. if (sme_set_sae_group(wpa_s) < 0)
  726. return -1; /* no other groups enabled */
  727. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Try next enabled SAE group");
  728. sme_send_authentication(wpa_s, wpa_s->current_bss,
  729. wpa_s->current_ssid, 1);
  730. return 0;
  731. }
  732. if (status_code != WLAN_STATUS_SUCCESS)
  733. return -1;
  734. if (auth_transaction == 1) {
  735. u16 res;
  736. groups = wpa_s->conf->sae_groups;
  737. wpa_dbg(wpa_s, MSG_DEBUG, "SME SAE commit");
  738. if (wpa_s->current_bss == NULL ||
  739. wpa_s->current_ssid == NULL)
  740. return -1;
  741. if (wpa_s->sme.sae.state != SAE_COMMITTED)
  742. return -1;
  743. if (groups && groups[0] <= 0)
  744. groups = NULL;
  745. res = sae_parse_commit(&wpa_s->sme.sae, data, len, NULL, NULL,
  746. groups);
  747. if (res == SAE_SILENTLY_DISCARD) {
  748. wpa_printf(MSG_DEBUG,
  749. "SAE: Drop commit message due to reflection attack");
  750. return 0;
  751. }
  752. if (res != WLAN_STATUS_SUCCESS)
  753. return -1;
  754. if (sae_process_commit(&wpa_s->sme.sae) < 0) {
  755. wpa_printf(MSG_DEBUG, "SAE: Failed to process peer "
  756. "commit");
  757. return -1;
  758. }
  759. wpabuf_free(wpa_s->sme.sae_token);
  760. wpa_s->sme.sae_token = NULL;
  761. sme_send_authentication(wpa_s, wpa_s->current_bss,
  762. wpa_s->current_ssid, 0);
  763. return 0;
  764. } else if (auth_transaction == 2) {
  765. wpa_dbg(wpa_s, MSG_DEBUG, "SME SAE confirm");
  766. if (wpa_s->sme.sae.state != SAE_CONFIRMED)
  767. return -1;
  768. if (sae_check_confirm(&wpa_s->sme.sae, data, len) < 0)
  769. return -1;
  770. wpa_s->sme.sae.state = SAE_ACCEPTED;
  771. sae_clear_temp_data(&wpa_s->sme.sae);
  772. return 1;
  773. }
  774. return -1;
  775. }
  776. #endif /* CONFIG_SAE */
  777. void sme_event_auth(struct wpa_supplicant *wpa_s, union wpa_event_data *data)
  778. {
  779. struct wpa_ssid *ssid = wpa_s->current_ssid;
  780. if (ssid == NULL) {
  781. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication event "
  782. "when network is not selected");
  783. return;
  784. }
  785. if (wpa_s->wpa_state != WPA_AUTHENTICATING) {
  786. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication event "
  787. "when not in authenticating state");
  788. return;
  789. }
  790. if (os_memcmp(wpa_s->pending_bssid, data->auth.peer, ETH_ALEN) != 0) {
  791. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication with "
  792. "unexpected peer " MACSTR,
  793. MAC2STR(data->auth.peer));
  794. return;
  795. }
  796. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Authentication response: peer=" MACSTR
  797. " auth_type=%d auth_transaction=%d status_code=%d",
  798. MAC2STR(data->auth.peer), data->auth.auth_type,
  799. data->auth.auth_transaction, data->auth.status_code);
  800. wpa_hexdump(MSG_MSGDUMP, "SME: Authentication response IEs",
  801. data->auth.ies, data->auth.ies_len);
  802. eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
  803. #ifdef CONFIG_SAE
  804. if (data->auth.auth_type == WLAN_AUTH_SAE) {
  805. int res;
  806. res = sme_sae_auth(wpa_s, data->auth.auth_transaction,
  807. data->auth.status_code, data->auth.ies,
  808. data->auth.ies_len);
  809. if (res < 0) {
  810. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  811. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  812. }
  813. if (res != 1)
  814. return;
  815. wpa_printf(MSG_DEBUG, "SME: SAE completed - setting PMK for "
  816. "4-way handshake");
  817. wpa_sm_set_pmk(wpa_s->wpa, wpa_s->sme.sae.pmk, PMK_LEN,
  818. wpa_s->sme.sae.pmkid, wpa_s->pending_bssid);
  819. }
  820. #endif /* CONFIG_SAE */
  821. if (data->auth.status_code != WLAN_STATUS_SUCCESS) {
  822. char *ie_txt = NULL;
  823. if (data->auth.ies && data->auth.ies_len) {
  824. size_t buflen = 2 * data->auth.ies_len + 1;
  825. ie_txt = os_malloc(buflen);
  826. if (ie_txt) {
  827. wpa_snprintf_hex(ie_txt, buflen, data->auth.ies,
  828. data->auth.ies_len);
  829. }
  830. }
  831. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_AUTH_REJECT MACSTR
  832. " auth_type=%u auth_transaction=%u status_code=%u%s%s",
  833. MAC2STR(data->auth.peer), data->auth.auth_type,
  834. data->auth.auth_transaction, data->auth.status_code,
  835. ie_txt ? " ie=" : "",
  836. ie_txt ? ie_txt : "");
  837. os_free(ie_txt);
  838. if (data->auth.status_code !=
  839. WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG ||
  840. wpa_s->sme.auth_alg == data->auth.auth_type ||
  841. wpa_s->current_ssid->auth_alg == WPA_AUTH_ALG_LEAP) {
  842. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  843. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  844. return;
  845. }
  846. wpas_connect_work_done(wpa_s);
  847. switch (data->auth.auth_type) {
  848. case WLAN_AUTH_OPEN:
  849. wpa_s->current_ssid->auth_alg = WPA_AUTH_ALG_SHARED;
  850. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying SHARED auth");
  851. wpa_supplicant_associate(wpa_s, wpa_s->current_bss,
  852. wpa_s->current_ssid);
  853. return;
  854. case WLAN_AUTH_SHARED_KEY:
  855. wpa_s->current_ssid->auth_alg = WPA_AUTH_ALG_LEAP;
  856. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying LEAP auth");
  857. wpa_supplicant_associate(wpa_s, wpa_s->current_bss,
  858. wpa_s->current_ssid);
  859. return;
  860. default:
  861. return;
  862. }
  863. }
  864. #ifdef CONFIG_IEEE80211R
  865. if (data->auth.auth_type == WLAN_AUTH_FT) {
  866. const u8 *ric_ies = NULL;
  867. size_t ric_ies_len = 0;
  868. if (wpa_s->ric_ies) {
  869. ric_ies = wpabuf_head(wpa_s->ric_ies);
  870. ric_ies_len = wpabuf_len(wpa_s->ric_ies);
  871. }
  872. if (wpa_ft_process_response(wpa_s->wpa, data->auth.ies,
  873. data->auth.ies_len, 0,
  874. data->auth.peer,
  875. ric_ies, ric_ies_len) < 0) {
  876. wpa_dbg(wpa_s, MSG_DEBUG,
  877. "SME: FT Authentication response processing failed");
  878. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid="
  879. MACSTR
  880. " reason=%d locally_generated=1",
  881. MAC2STR(wpa_s->pending_bssid),
  882. WLAN_REASON_DEAUTH_LEAVING);
  883. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  884. wpa_supplicant_mark_disassoc(wpa_s);
  885. return;
  886. }
  887. }
  888. #endif /* CONFIG_IEEE80211R */
  889. #ifdef CONFIG_FILS
  890. if (data->auth.auth_type == WLAN_AUTH_FILS_SK ||
  891. data->auth.auth_type == WLAN_AUTH_FILS_SK_PFS) {
  892. u16 expect_auth_type;
  893. expect_auth_type = wpa_s->sme.auth_alg ==
  894. WPA_AUTH_ALG_FILS_SK_PFS ? WLAN_AUTH_FILS_SK_PFS :
  895. WLAN_AUTH_FILS_SK;
  896. if (data->auth.auth_type != expect_auth_type) {
  897. wpa_dbg(wpa_s, MSG_DEBUG,
  898. "SME: FILS Authentication response used different auth alg (%u; expected %u)",
  899. data->auth.auth_type, expect_auth_type);
  900. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid="
  901. MACSTR
  902. " reason=%d locally_generated=1",
  903. MAC2STR(wpa_s->pending_bssid),
  904. WLAN_REASON_DEAUTH_LEAVING);
  905. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  906. wpa_supplicant_mark_disassoc(wpa_s);
  907. return;
  908. }
  909. if (fils_process_auth(wpa_s->wpa, wpa_s->pending_bssid,
  910. data->auth.ies, data->auth.ies_len) < 0) {
  911. wpa_dbg(wpa_s, MSG_DEBUG,
  912. "SME: FILS Authentication response processing failed");
  913. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid="
  914. MACSTR
  915. " reason=%d locally_generated=1",
  916. MAC2STR(wpa_s->pending_bssid),
  917. WLAN_REASON_DEAUTH_LEAVING);
  918. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  919. wpa_supplicant_mark_disassoc(wpa_s);
  920. return;
  921. }
  922. }
  923. #endif /* CONFIG_FILS */
  924. sme_associate(wpa_s, ssid->mode, data->auth.peer,
  925. data->auth.auth_type);
  926. }
  927. #ifdef CONFIG_FILS
  928. #ifdef CONFIG_IEEE80211R
  929. static void remove_ie(u8 *buf, size_t *len, u8 eid)
  930. {
  931. u8 *pos, *next, *end;
  932. pos = (u8 *) get_ie(buf, *len, eid);
  933. if (pos) {
  934. next = pos + 2 + pos[1];
  935. end = buf + *len;
  936. *len -= 2 + pos[1];
  937. os_memmove(pos, next, end - next);
  938. }
  939. }
  940. #endif /* CONFIG_IEEE80211R */
  941. #endif /* CONFIG_FILS */
  942. void sme_associate(struct wpa_supplicant *wpa_s, enum wpas_mode mode,
  943. const u8 *bssid, u16 auth_type)
  944. {
  945. struct wpa_driver_associate_params params;
  946. struct ieee802_11_elems elems;
  947. #ifdef CONFIG_FILS
  948. u8 nonces[2 * FILS_NONCE_LEN];
  949. #endif /* CONFIG_FILS */
  950. #ifdef CONFIG_HT_OVERRIDES
  951. struct ieee80211_ht_capabilities htcaps;
  952. struct ieee80211_ht_capabilities htcaps_mask;
  953. #endif /* CONFIG_HT_OVERRIDES */
  954. #ifdef CONFIG_VHT_OVERRIDES
  955. struct ieee80211_vht_capabilities vhtcaps;
  956. struct ieee80211_vht_capabilities vhtcaps_mask;
  957. #endif /* CONFIG_VHT_OVERRIDES */
  958. os_memset(&params, 0, sizeof(params));
  959. #ifdef CONFIG_FILS
  960. if (auth_type == WLAN_AUTH_FILS_SK ||
  961. auth_type == WLAN_AUTH_FILS_SK_PFS) {
  962. struct wpabuf *buf;
  963. const u8 *snonce, *anonce;
  964. const unsigned int max_hlp = 20;
  965. struct wpabuf *hlp[max_hlp];
  966. unsigned int i, num_hlp = 0;
  967. struct fils_hlp_req *req;
  968. dl_list_for_each(req, &wpa_s->fils_hlp_req, struct fils_hlp_req,
  969. list) {
  970. hlp[num_hlp] = wpabuf_alloc(2 * ETH_ALEN + 6 +
  971. wpabuf_len(req->pkt));
  972. if (!hlp[num_hlp])
  973. break;
  974. wpabuf_put_data(hlp[num_hlp], req->dst, ETH_ALEN);
  975. wpabuf_put_data(hlp[num_hlp], wpa_s->own_addr,
  976. ETH_ALEN);
  977. wpabuf_put_data(hlp[num_hlp],
  978. "\xaa\xaa\x03\x00\x00\x00", 6);
  979. wpabuf_put_buf(hlp[num_hlp], req->pkt);
  980. num_hlp++;
  981. if (num_hlp >= max_hlp)
  982. break;
  983. }
  984. buf = fils_build_assoc_req(wpa_s->wpa, &params.fils_kek,
  985. &params.fils_kek_len, &snonce,
  986. &anonce,
  987. (const struct wpabuf **) hlp,
  988. num_hlp);
  989. for (i = 0; i < num_hlp; i++)
  990. wpabuf_free(hlp[i]);
  991. if (!buf)
  992. return;
  993. wpa_hexdump(MSG_DEBUG, "FILS: assoc_req before FILS elements",
  994. wpa_s->sme.assoc_req_ie,
  995. wpa_s->sme.assoc_req_ie_len);
  996. #ifdef CONFIG_IEEE80211R
  997. if (wpa_key_mgmt_ft(wpa_s->key_mgmt)) {
  998. /* Remove RSNE and MDE to allow them to be overridden
  999. * with FILS+FT specific values from
  1000. * fils_build_assoc_req(). */
  1001. remove_ie(wpa_s->sme.assoc_req_ie,
  1002. &wpa_s->sme.assoc_req_ie_len,
  1003. WLAN_EID_RSN);
  1004. wpa_hexdump(MSG_DEBUG,
  1005. "FILS: assoc_req after RSNE removal",
  1006. wpa_s->sme.assoc_req_ie,
  1007. wpa_s->sme.assoc_req_ie_len);
  1008. remove_ie(wpa_s->sme.assoc_req_ie,
  1009. &wpa_s->sme.assoc_req_ie_len,
  1010. WLAN_EID_MOBILITY_DOMAIN);
  1011. wpa_hexdump(MSG_DEBUG,
  1012. "FILS: assoc_req after MDE removal",
  1013. wpa_s->sme.assoc_req_ie,
  1014. wpa_s->sme.assoc_req_ie_len);
  1015. }
  1016. #endif /* CONFIG_IEEE80211R */
  1017. /* TODO: Make wpa_s->sme.assoc_req_ie use dynamic allocation */
  1018. if (wpa_s->sme.assoc_req_ie_len + wpabuf_len(buf) >
  1019. sizeof(wpa_s->sme.assoc_req_ie)) {
  1020. wpa_printf(MSG_ERROR,
  1021. "FILS: Not enough buffer room for own AssocReq elements");
  1022. wpabuf_free(buf);
  1023. return;
  1024. }
  1025. os_memcpy(wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len,
  1026. wpabuf_head(buf), wpabuf_len(buf));
  1027. wpa_s->sme.assoc_req_ie_len += wpabuf_len(buf);
  1028. wpabuf_free(buf);
  1029. wpa_hexdump(MSG_DEBUG, "FILS: assoc_req after FILS elements",
  1030. wpa_s->sme.assoc_req_ie,
  1031. wpa_s->sme.assoc_req_ie_len);
  1032. os_memcpy(nonces, snonce, FILS_NONCE_LEN);
  1033. os_memcpy(nonces + FILS_NONCE_LEN, anonce, FILS_NONCE_LEN);
  1034. params.fils_nonces = nonces;
  1035. params.fils_nonces_len = sizeof(nonces);
  1036. }
  1037. #endif /* CONFIG_FILS */
  1038. #ifdef CONFIG_OWE
  1039. #ifdef CONFIG_TESTING_OPTIONS
  1040. if (get_ie_ext(wpa_s->sme.assoc_req_ie, wpa_s->sme.assoc_req_ie_len,
  1041. WLAN_EID_EXT_OWE_DH_PARAM)) {
  1042. wpa_printf(MSG_INFO, "TESTING: Override OWE DH element");
  1043. } else
  1044. #endif /* CONFIG_TESTING_OPTIONS */
  1045. if (auth_type == WLAN_AUTH_OPEN &&
  1046. wpa_s->key_mgmt == WPA_KEY_MGMT_OWE) {
  1047. struct wpabuf *owe_ie;
  1048. u16 group = OWE_DH_GROUP;
  1049. if (wpa_s->current_ssid && wpa_s->current_ssid->owe_group)
  1050. group = wpa_s->current_ssid->owe_group;
  1051. owe_ie = owe_build_assoc_req(wpa_s->wpa, group);
  1052. if (!owe_ie) {
  1053. wpa_printf(MSG_ERROR,
  1054. "OWE: Failed to build IE for Association Request frame");
  1055. return;
  1056. }
  1057. if (wpa_s->sme.assoc_req_ie_len + wpabuf_len(owe_ie) >
  1058. sizeof(wpa_s->sme.assoc_req_ie)) {
  1059. wpa_printf(MSG_ERROR,
  1060. "OWE: Not enough buffer room for own Association Request frame elements");
  1061. wpabuf_free(owe_ie);
  1062. return;
  1063. }
  1064. os_memcpy(wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len,
  1065. wpabuf_head(owe_ie), wpabuf_len(owe_ie));
  1066. wpa_s->sme.assoc_req_ie_len += wpabuf_len(owe_ie);
  1067. wpabuf_free(owe_ie);
  1068. }
  1069. #endif /* CONFIG_OWE */
  1070. params.bssid = bssid;
  1071. params.ssid = wpa_s->sme.ssid;
  1072. params.ssid_len = wpa_s->sme.ssid_len;
  1073. params.freq.freq = wpa_s->sme.freq;
  1074. params.bg_scan_period = wpa_s->current_ssid ?
  1075. wpa_s->current_ssid->bg_scan_period : -1;
  1076. params.wpa_ie = wpa_s->sme.assoc_req_ie_len ?
  1077. wpa_s->sme.assoc_req_ie : NULL;
  1078. params.wpa_ie_len = wpa_s->sme.assoc_req_ie_len;
  1079. params.pairwise_suite = wpa_s->pairwise_cipher;
  1080. params.group_suite = wpa_s->group_cipher;
  1081. params.mgmt_group_suite = wpa_s->mgmt_group_cipher;
  1082. params.key_mgmt_suite = wpa_s->key_mgmt;
  1083. params.wpa_proto = wpa_s->wpa_proto;
  1084. #ifdef CONFIG_HT_OVERRIDES
  1085. os_memset(&htcaps, 0, sizeof(htcaps));
  1086. os_memset(&htcaps_mask, 0, sizeof(htcaps_mask));
  1087. params.htcaps = (u8 *) &htcaps;
  1088. params.htcaps_mask = (u8 *) &htcaps_mask;
  1089. wpa_supplicant_apply_ht_overrides(wpa_s, wpa_s->current_ssid, &params);
  1090. #endif /* CONFIG_HT_OVERRIDES */
  1091. #ifdef CONFIG_VHT_OVERRIDES
  1092. os_memset(&vhtcaps, 0, sizeof(vhtcaps));
  1093. os_memset(&vhtcaps_mask, 0, sizeof(vhtcaps_mask));
  1094. params.vhtcaps = &vhtcaps;
  1095. params.vhtcaps_mask = &vhtcaps_mask;
  1096. wpa_supplicant_apply_vht_overrides(wpa_s, wpa_s->current_ssid, &params);
  1097. #endif /* CONFIG_VHT_OVERRIDES */
  1098. #ifdef CONFIG_IEEE80211R
  1099. if (auth_type == WLAN_AUTH_FT && wpa_s->sme.ft_ies) {
  1100. params.wpa_ie = wpa_s->sme.ft_ies;
  1101. params.wpa_ie_len = wpa_s->sme.ft_ies_len;
  1102. }
  1103. #endif /* CONFIG_IEEE80211R */
  1104. params.mode = mode;
  1105. params.mgmt_frame_protection = wpa_s->sme.mfp;
  1106. params.rrm_used = wpa_s->rrm.rrm_used;
  1107. if (wpa_s->sme.prev_bssid_set)
  1108. params.prev_bssid = wpa_s->sme.prev_bssid;
  1109. wpa_msg(wpa_s, MSG_INFO, "Trying to associate with " MACSTR
  1110. " (SSID='%s' freq=%d MHz)", MAC2STR(params.bssid),
  1111. params.ssid ? wpa_ssid_txt(params.ssid, params.ssid_len) : "",
  1112. params.freq.freq);
  1113. wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATING);
  1114. if (params.wpa_ie == NULL ||
  1115. ieee802_11_parse_elems(params.wpa_ie, params.wpa_ie_len, &elems, 0)
  1116. < 0) {
  1117. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Could not parse own IEs?!");
  1118. os_memset(&elems, 0, sizeof(elems));
  1119. }
  1120. if (elems.rsn_ie) {
  1121. params.wpa_proto = WPA_PROTO_RSN;
  1122. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.rsn_ie - 2,
  1123. elems.rsn_ie_len + 2);
  1124. } else if (elems.wpa_ie) {
  1125. params.wpa_proto = WPA_PROTO_WPA;
  1126. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.wpa_ie - 2,
  1127. elems.wpa_ie_len + 2);
  1128. } else if (elems.osen) {
  1129. params.wpa_proto = WPA_PROTO_OSEN;
  1130. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.osen - 2,
  1131. elems.osen_len + 2);
  1132. } else
  1133. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  1134. if (wpa_s->current_ssid && wpa_s->current_ssid->p2p_group)
  1135. params.p2p = 1;
  1136. if (wpa_s->p2pdev->set_sta_uapsd)
  1137. params.uapsd = wpa_s->p2pdev->sta_uapsd;
  1138. else
  1139. params.uapsd = -1;
  1140. if (wpa_drv_associate(wpa_s, &params) < 0) {
  1141. wpa_msg(wpa_s, MSG_INFO, "SME: Association request to the "
  1142. "driver failed");
  1143. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  1144. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  1145. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  1146. return;
  1147. }
  1148. eloop_register_timeout(SME_ASSOC_TIMEOUT, 0, sme_assoc_timer, wpa_s,
  1149. NULL);
  1150. #ifdef CONFIG_TESTING_OPTIONS
  1151. wpabuf_free(wpa_s->last_assoc_req_wpa_ie);
  1152. wpa_s->last_assoc_req_wpa_ie = NULL;
  1153. if (params.wpa_ie)
  1154. wpa_s->last_assoc_req_wpa_ie =
  1155. wpabuf_alloc_copy(params.wpa_ie, params.wpa_ie_len);
  1156. #endif /* CONFIG_TESTING_OPTIONS */
  1157. }
  1158. int sme_update_ft_ies(struct wpa_supplicant *wpa_s, const u8 *md,
  1159. const u8 *ies, size_t ies_len)
  1160. {
  1161. if (md == NULL || ies == NULL) {
  1162. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Remove mobility domain");
  1163. os_free(wpa_s->sme.ft_ies);
  1164. wpa_s->sme.ft_ies = NULL;
  1165. wpa_s->sme.ft_ies_len = 0;
  1166. wpa_s->sme.ft_used = 0;
  1167. return 0;
  1168. }
  1169. os_memcpy(wpa_s->sme.mobility_domain, md, MOBILITY_DOMAIN_ID_LEN);
  1170. wpa_hexdump(MSG_DEBUG, "SME: FT IEs", ies, ies_len);
  1171. os_free(wpa_s->sme.ft_ies);
  1172. wpa_s->sme.ft_ies = os_memdup(ies, ies_len);
  1173. if (wpa_s->sme.ft_ies == NULL)
  1174. return -1;
  1175. wpa_s->sme.ft_ies_len = ies_len;
  1176. return 0;
  1177. }
  1178. static void sme_deauth(struct wpa_supplicant *wpa_s)
  1179. {
  1180. int bssid_changed;
  1181. bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
  1182. if (wpa_drv_deauthenticate(wpa_s, wpa_s->pending_bssid,
  1183. WLAN_REASON_DEAUTH_LEAVING) < 0) {
  1184. wpa_msg(wpa_s, MSG_INFO, "SME: Deauth request to the driver "
  1185. "failed");
  1186. }
  1187. wpa_s->sme.prev_bssid_set = 0;
  1188. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  1189. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  1190. os_memset(wpa_s->bssid, 0, ETH_ALEN);
  1191. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  1192. if (bssid_changed)
  1193. wpas_notify_bssid_changed(wpa_s);
  1194. }
  1195. void sme_event_assoc_reject(struct wpa_supplicant *wpa_s,
  1196. union wpa_event_data *data)
  1197. {
  1198. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association with " MACSTR " failed: "
  1199. "status code %d", MAC2STR(wpa_s->pending_bssid),
  1200. data->assoc_reject.status_code);
  1201. eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
  1202. #ifdef CONFIG_SAE
  1203. if (wpa_s->sme.sae_pmksa_caching && wpa_s->current_ssid &&
  1204. wpa_key_mgmt_sae(wpa_s->current_ssid->key_mgmt)) {
  1205. wpa_dbg(wpa_s, MSG_DEBUG,
  1206. "PMKSA caching attempt rejected - drop PMKSA cache entry and fall back to SAE authentication");
  1207. wpa_sm_aborted_cached(wpa_s->wpa);
  1208. wpa_sm_pmksa_cache_flush(wpa_s->wpa, wpa_s->current_ssid);
  1209. if (wpa_s->current_bss) {
  1210. struct wpa_bss *bss = wpa_s->current_bss;
  1211. struct wpa_ssid *ssid = wpa_s->current_ssid;
  1212. wpa_drv_deauthenticate(wpa_s, wpa_s->pending_bssid,
  1213. WLAN_REASON_DEAUTH_LEAVING);
  1214. wpas_connect_work_done(wpa_s);
  1215. wpa_supplicant_mark_disassoc(wpa_s);
  1216. wpa_supplicant_connect(wpa_s, bss, ssid);
  1217. return;
  1218. }
  1219. }
  1220. #endif /* CONFIG_SAE */
  1221. /*
  1222. * For now, unconditionally terminate the previous authentication. In
  1223. * theory, this should not be needed, but mac80211 gets quite confused
  1224. * if the authentication is left pending.. Some roaming cases might
  1225. * benefit from using the previous authentication, so this could be
  1226. * optimized in the future.
  1227. */
  1228. sme_deauth(wpa_s);
  1229. }
  1230. void sme_event_auth_timed_out(struct wpa_supplicant *wpa_s,
  1231. union wpa_event_data *data)
  1232. {
  1233. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Authentication timed out");
  1234. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  1235. wpa_supplicant_mark_disassoc(wpa_s);
  1236. }
  1237. void sme_event_assoc_timed_out(struct wpa_supplicant *wpa_s,
  1238. union wpa_event_data *data)
  1239. {
  1240. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association timed out");
  1241. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  1242. wpa_supplicant_mark_disassoc(wpa_s);
  1243. }
  1244. void sme_event_disassoc(struct wpa_supplicant *wpa_s,
  1245. struct disassoc_info *info)
  1246. {
  1247. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Disassociation event received");
  1248. if (wpa_s->sme.prev_bssid_set) {
  1249. /*
  1250. * cfg80211/mac80211 can get into somewhat confused state if
  1251. * the AP only disassociates us and leaves us in authenticated
  1252. * state. For now, force the state to be cleared to avoid
  1253. * confusing errors if we try to associate with the AP again.
  1254. */
  1255. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Deauthenticate to clear "
  1256. "driver state");
  1257. wpa_drv_deauthenticate(wpa_s, wpa_s->sme.prev_bssid,
  1258. WLAN_REASON_DEAUTH_LEAVING);
  1259. }
  1260. }
  1261. static void sme_auth_timer(void *eloop_ctx, void *timeout_ctx)
  1262. {
  1263. struct wpa_supplicant *wpa_s = eloop_ctx;
  1264. if (wpa_s->wpa_state == WPA_AUTHENTICATING) {
  1265. wpa_msg(wpa_s, MSG_DEBUG, "SME: Authentication timeout");
  1266. sme_deauth(wpa_s);
  1267. }
  1268. }
  1269. static void sme_assoc_timer(void *eloop_ctx, void *timeout_ctx)
  1270. {
  1271. struct wpa_supplicant *wpa_s = eloop_ctx;
  1272. if (wpa_s->wpa_state == WPA_ASSOCIATING) {
  1273. wpa_msg(wpa_s, MSG_DEBUG, "SME: Association timeout");
  1274. sme_deauth(wpa_s);
  1275. }
  1276. }
  1277. void sme_state_changed(struct wpa_supplicant *wpa_s)
  1278. {
  1279. /* Make sure timers are cleaned up appropriately. */
  1280. if (wpa_s->wpa_state != WPA_ASSOCIATING)
  1281. eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
  1282. if (wpa_s->wpa_state != WPA_AUTHENTICATING)
  1283. eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
  1284. }
  1285. void sme_disassoc_while_authenticating(struct wpa_supplicant *wpa_s,
  1286. const u8 *prev_pending_bssid)
  1287. {
  1288. /*
  1289. * mac80211-workaround to force deauth on failed auth cmd,
  1290. * requires us to remain in authenticating state to allow the
  1291. * second authentication attempt to be continued properly.
  1292. */
  1293. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Allow pending authentication "
  1294. "to proceed after disconnection event");
  1295. wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
  1296. os_memcpy(wpa_s->pending_bssid, prev_pending_bssid, ETH_ALEN);
  1297. /*
  1298. * Re-arm authentication timer in case auth fails for whatever reason.
  1299. */
  1300. eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
  1301. eloop_register_timeout(SME_AUTH_TIMEOUT, 0, sme_auth_timer, wpa_s,
  1302. NULL);
  1303. }
  1304. void sme_clear_on_disassoc(struct wpa_supplicant *wpa_s)
  1305. {
  1306. wpa_s->sme.prev_bssid_set = 0;
  1307. #ifdef CONFIG_SAE
  1308. wpabuf_free(wpa_s->sme.sae_token);
  1309. wpa_s->sme.sae_token = NULL;
  1310. sae_clear_data(&wpa_s->sme.sae);
  1311. #endif /* CONFIG_SAE */
  1312. #ifdef CONFIG_IEEE80211R
  1313. if (wpa_s->sme.ft_ies)
  1314. sme_update_ft_ies(wpa_s, NULL, NULL, 0);
  1315. #endif /* CONFIG_IEEE80211R */
  1316. }
  1317. void sme_deinit(struct wpa_supplicant *wpa_s)
  1318. {
  1319. os_free(wpa_s->sme.ft_ies);
  1320. wpa_s->sme.ft_ies = NULL;
  1321. wpa_s->sme.ft_ies_len = 0;
  1322. #ifdef CONFIG_IEEE80211W
  1323. sme_stop_sa_query(wpa_s);
  1324. #endif /* CONFIG_IEEE80211W */
  1325. sme_clear_on_disassoc(wpa_s);
  1326. eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
  1327. eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
  1328. eloop_cancel_timeout(sme_obss_scan_timeout, wpa_s, NULL);
  1329. }
  1330. static void sme_send_2040_bss_coex(struct wpa_supplicant *wpa_s,
  1331. const u8 *chan_list, u8 num_channels,
  1332. u8 num_intol)
  1333. {
  1334. struct ieee80211_2040_bss_coex_ie *bc_ie;
  1335. struct ieee80211_2040_intol_chan_report *ic_report;
  1336. struct wpabuf *buf;
  1337. wpa_printf(MSG_DEBUG, "SME: Send 20/40 BSS Coexistence to " MACSTR
  1338. " (num_channels=%u num_intol=%u)",
  1339. MAC2STR(wpa_s->bssid), num_channels, num_intol);
  1340. wpa_hexdump(MSG_DEBUG, "SME: 20/40 BSS Intolerant Channels",
  1341. chan_list, num_channels);
  1342. buf = wpabuf_alloc(2 + /* action.category + action_code */
  1343. sizeof(struct ieee80211_2040_bss_coex_ie) +
  1344. sizeof(struct ieee80211_2040_intol_chan_report) +
  1345. num_channels);
  1346. if (buf == NULL)
  1347. return;
  1348. wpabuf_put_u8(buf, WLAN_ACTION_PUBLIC);
  1349. wpabuf_put_u8(buf, WLAN_PA_20_40_BSS_COEX);
  1350. bc_ie = wpabuf_put(buf, sizeof(*bc_ie));
  1351. bc_ie->element_id = WLAN_EID_20_40_BSS_COEXISTENCE;
  1352. bc_ie->length = 1;
  1353. if (num_intol)
  1354. bc_ie->coex_param |= WLAN_20_40_BSS_COEX_20MHZ_WIDTH_REQ;
  1355. if (num_channels > 0) {
  1356. ic_report = wpabuf_put(buf, sizeof(*ic_report));
  1357. ic_report->element_id = WLAN_EID_20_40_BSS_INTOLERANT;
  1358. ic_report->length = num_channels + 1;
  1359. ic_report->op_class = 0;
  1360. os_memcpy(wpabuf_put(buf, num_channels), chan_list,
  1361. num_channels);
  1362. }
  1363. if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  1364. wpa_s->own_addr, wpa_s->bssid,
  1365. wpabuf_head(buf), wpabuf_len(buf), 0) < 0) {
  1366. wpa_msg(wpa_s, MSG_INFO,
  1367. "SME: Failed to send 20/40 BSS Coexistence frame");
  1368. }
  1369. wpabuf_free(buf);
  1370. }
  1371. int sme_proc_obss_scan(struct wpa_supplicant *wpa_s)
  1372. {
  1373. struct wpa_bss *bss;
  1374. const u8 *ie;
  1375. u16 ht_cap;
  1376. u8 chan_list[P2P_MAX_CHANNELS], channel;
  1377. u8 num_channels = 0, num_intol = 0, i;
  1378. if (!wpa_s->sme.sched_obss_scan)
  1379. return 0;
  1380. wpa_s->sme.sched_obss_scan = 0;
  1381. if (!wpa_s->current_bss || wpa_s->wpa_state != WPA_COMPLETED)
  1382. return 1;
  1383. /*
  1384. * Check whether AP uses regulatory triplet or channel triplet in
  1385. * country info. Right now the operating class of the BSS channel
  1386. * width trigger event is "unknown" (IEEE Std 802.11-2012 10.15.12),
  1387. * based on the assumption that operating class triplet is not used in
  1388. * beacon frame. If the First Channel Number/Operating Extension
  1389. * Identifier octet has a positive integer value of 201 or greater,
  1390. * then its operating class triplet.
  1391. *
  1392. * TODO: If Supported Operating Classes element is present in beacon
  1393. * frame, have to lookup operating class in Annex E and fill them in
  1394. * 2040 coex frame.
  1395. */
  1396. ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_COUNTRY);
  1397. if (ie && (ie[1] >= 6) && (ie[5] >= 201))
  1398. return 1;
  1399. os_memset(chan_list, 0, sizeof(chan_list));
  1400. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  1401. /* Skip other band bss */
  1402. enum hostapd_hw_mode mode;
  1403. mode = ieee80211_freq_to_chan(bss->freq, &channel);
  1404. if (mode != HOSTAPD_MODE_IEEE80211G &&
  1405. mode != HOSTAPD_MODE_IEEE80211B)
  1406. continue;
  1407. ie = wpa_bss_get_ie(bss, WLAN_EID_HT_CAP);
  1408. ht_cap = (ie && (ie[1] == 26)) ? WPA_GET_LE16(ie + 2) : 0;
  1409. wpa_printf(MSG_DEBUG, "SME OBSS scan BSS " MACSTR
  1410. " freq=%u chan=%u ht_cap=0x%x",
  1411. MAC2STR(bss->bssid), bss->freq, channel, ht_cap);
  1412. if (!ht_cap || (ht_cap & HT_CAP_INFO_40MHZ_INTOLERANT)) {
  1413. if (ht_cap & HT_CAP_INFO_40MHZ_INTOLERANT)
  1414. num_intol++;
  1415. /* Check whether the channel is already considered */
  1416. for (i = 0; i < num_channels; i++) {
  1417. if (channel == chan_list[i])
  1418. break;
  1419. }
  1420. if (i != num_channels)
  1421. continue;
  1422. chan_list[num_channels++] = channel;
  1423. }
  1424. }
  1425. sme_send_2040_bss_coex(wpa_s, chan_list, num_channels, num_intol);
  1426. return 1;
  1427. }
  1428. static void wpa_obss_scan_freqs_list(struct wpa_supplicant *wpa_s,
  1429. struct wpa_driver_scan_params *params)
  1430. {
  1431. /* Include only affected channels */
  1432. struct hostapd_hw_modes *mode;
  1433. int count, i;
  1434. int start, end;
  1435. mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes,
  1436. HOSTAPD_MODE_IEEE80211G);
  1437. if (mode == NULL) {
  1438. /* No channels supported in this band - use empty list */
  1439. params->freqs = os_zalloc(sizeof(int));
  1440. return;
  1441. }
  1442. if (wpa_s->sme.ht_sec_chan == HT_SEC_CHAN_UNKNOWN &&
  1443. wpa_s->current_bss) {
  1444. const u8 *ie;
  1445. ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_HT_OPERATION);
  1446. if (ie && ie[1] >= 2) {
  1447. u8 o;
  1448. o = ie[3] & HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK;
  1449. if (o == HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE)
  1450. wpa_s->sme.ht_sec_chan = HT_SEC_CHAN_ABOVE;
  1451. else if (o == HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW)
  1452. wpa_s->sme.ht_sec_chan = HT_SEC_CHAN_BELOW;
  1453. }
  1454. }
  1455. start = wpa_s->assoc_freq - 10;
  1456. end = wpa_s->assoc_freq + 10;
  1457. switch (wpa_s->sme.ht_sec_chan) {
  1458. case HT_SEC_CHAN_UNKNOWN:
  1459. /* HT40+ possible on channels 1..9 */
  1460. if (wpa_s->assoc_freq <= 2452)
  1461. start -= 20;
  1462. /* HT40- possible on channels 5-13 */
  1463. if (wpa_s->assoc_freq >= 2432)
  1464. end += 20;
  1465. break;
  1466. case HT_SEC_CHAN_ABOVE:
  1467. end += 20;
  1468. break;
  1469. case HT_SEC_CHAN_BELOW:
  1470. start -= 20;
  1471. break;
  1472. }
  1473. wpa_printf(MSG_DEBUG,
  1474. "OBSS: assoc_freq %d possible affected range %d-%d",
  1475. wpa_s->assoc_freq, start, end);
  1476. params->freqs = os_calloc(mode->num_channels + 1, sizeof(int));
  1477. if (params->freqs == NULL)
  1478. return;
  1479. for (count = 0, i = 0; i < mode->num_channels; i++) {
  1480. int freq;
  1481. if (mode->channels[i].flag & HOSTAPD_CHAN_DISABLED)
  1482. continue;
  1483. freq = mode->channels[i].freq;
  1484. if (freq - 10 >= end || freq + 10 <= start)
  1485. continue; /* not affected */
  1486. params->freqs[count++] = freq;
  1487. }
  1488. }
  1489. static void sme_obss_scan_timeout(void *eloop_ctx, void *timeout_ctx)
  1490. {
  1491. struct wpa_supplicant *wpa_s = eloop_ctx;
  1492. struct wpa_driver_scan_params params;
  1493. if (!wpa_s->current_bss) {
  1494. wpa_printf(MSG_DEBUG, "SME OBSS: Ignore scan request");
  1495. return;
  1496. }
  1497. os_memset(&params, 0, sizeof(params));
  1498. wpa_obss_scan_freqs_list(wpa_s, &params);
  1499. params.low_priority = 1;
  1500. wpa_printf(MSG_DEBUG, "SME OBSS: Request an OBSS scan");
  1501. if (wpa_supplicant_trigger_scan(wpa_s, &params))
  1502. wpa_printf(MSG_DEBUG, "SME OBSS: Failed to trigger scan");
  1503. else
  1504. wpa_s->sme.sched_obss_scan = 1;
  1505. os_free(params.freqs);
  1506. eloop_register_timeout(wpa_s->sme.obss_scan_int, 0,
  1507. sme_obss_scan_timeout, wpa_s, NULL);
  1508. }
  1509. void sme_sched_obss_scan(struct wpa_supplicant *wpa_s, int enable)
  1510. {
  1511. const u8 *ie;
  1512. struct wpa_bss *bss = wpa_s->current_bss;
  1513. struct wpa_ssid *ssid = wpa_s->current_ssid;
  1514. struct hostapd_hw_modes *hw_mode = NULL;
  1515. int i;
  1516. eloop_cancel_timeout(sme_obss_scan_timeout, wpa_s, NULL);
  1517. wpa_s->sme.sched_obss_scan = 0;
  1518. wpa_s->sme.ht_sec_chan = HT_SEC_CHAN_UNKNOWN;
  1519. if (!enable)
  1520. return;
  1521. /*
  1522. * Schedule OBSS scan if driver is using station SME in wpa_supplicant
  1523. * or it expects OBSS scan to be performed by wpa_supplicant.
  1524. */
  1525. if (!((wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) ||
  1526. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_OBSS_SCAN)) ||
  1527. ssid == NULL || ssid->mode != IEEE80211_MODE_INFRA)
  1528. return;
  1529. if (!wpa_s->hw.modes)
  1530. return;
  1531. /* only HT caps in 11g mode are relevant */
  1532. for (i = 0; i < wpa_s->hw.num_modes; i++) {
  1533. hw_mode = &wpa_s->hw.modes[i];
  1534. if (hw_mode->mode == HOSTAPD_MODE_IEEE80211G)
  1535. break;
  1536. }
  1537. /* Driver does not support HT40 for 11g or doesn't have 11g. */
  1538. if (i == wpa_s->hw.num_modes || !hw_mode ||
  1539. !(hw_mode->ht_capab & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
  1540. return;
  1541. if (bss == NULL || bss->freq < 2400 || bss->freq > 2500)
  1542. return; /* Not associated on 2.4 GHz band */
  1543. /* Check whether AP supports HT40 */
  1544. ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_HT_CAP);
  1545. if (!ie || ie[1] < 2 ||
  1546. !(WPA_GET_LE16(ie + 2) & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
  1547. return; /* AP does not support HT40 */
  1548. ie = wpa_bss_get_ie(wpa_s->current_bss,
  1549. WLAN_EID_OVERLAPPING_BSS_SCAN_PARAMS);
  1550. if (!ie || ie[1] < 14)
  1551. return; /* AP does not request OBSS scans */
  1552. wpa_s->sme.obss_scan_int = WPA_GET_LE16(ie + 6);
  1553. if (wpa_s->sme.obss_scan_int < 10) {
  1554. wpa_printf(MSG_DEBUG, "SME: Invalid OBSS Scan Interval %u "
  1555. "replaced with the minimum 10 sec",
  1556. wpa_s->sme.obss_scan_int);
  1557. wpa_s->sme.obss_scan_int = 10;
  1558. }
  1559. wpa_printf(MSG_DEBUG, "SME: OBSS Scan Interval %u sec",
  1560. wpa_s->sme.obss_scan_int);
  1561. eloop_register_timeout(wpa_s->sme.obss_scan_int, 0,
  1562. sme_obss_scan_timeout, wpa_s, NULL);
  1563. }
  1564. #ifdef CONFIG_IEEE80211W
  1565. static const unsigned int sa_query_max_timeout = 1000;
  1566. static const unsigned int sa_query_retry_timeout = 201;
  1567. static int sme_check_sa_query_timeout(struct wpa_supplicant *wpa_s)
  1568. {
  1569. u32 tu;
  1570. struct os_reltime now, passed;
  1571. os_get_reltime(&now);
  1572. os_reltime_sub(&now, &wpa_s->sme.sa_query_start, &passed);
  1573. tu = (passed.sec * 1000000 + passed.usec) / 1024;
  1574. if (sa_query_max_timeout < tu) {
  1575. wpa_dbg(wpa_s, MSG_DEBUG, "SME: SA Query timed out");
  1576. sme_stop_sa_query(wpa_s);
  1577. wpa_supplicant_deauthenticate(
  1578. wpa_s, WLAN_REASON_PREV_AUTH_NOT_VALID);
  1579. return 1;
  1580. }
  1581. return 0;
  1582. }
  1583. static void sme_send_sa_query_req(struct wpa_supplicant *wpa_s,
  1584. const u8 *trans_id)
  1585. {
  1586. u8 req[2 + WLAN_SA_QUERY_TR_ID_LEN];
  1587. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Sending SA Query Request to "
  1588. MACSTR, MAC2STR(wpa_s->bssid));
  1589. wpa_hexdump(MSG_DEBUG, "SME: SA Query Transaction ID",
  1590. trans_id, WLAN_SA_QUERY_TR_ID_LEN);
  1591. req[0] = WLAN_ACTION_SA_QUERY;
  1592. req[1] = WLAN_SA_QUERY_REQUEST;
  1593. os_memcpy(req + 2, trans_id, WLAN_SA_QUERY_TR_ID_LEN);
  1594. if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  1595. wpa_s->own_addr, wpa_s->bssid,
  1596. req, sizeof(req), 0) < 0)
  1597. wpa_msg(wpa_s, MSG_INFO, "SME: Failed to send SA Query "
  1598. "Request");
  1599. }
  1600. static void sme_sa_query_timer(void *eloop_ctx, void *timeout_ctx)
  1601. {
  1602. struct wpa_supplicant *wpa_s = eloop_ctx;
  1603. unsigned int timeout, sec, usec;
  1604. u8 *trans_id, *nbuf;
  1605. if (wpa_s->sme.sa_query_count > 0 &&
  1606. sme_check_sa_query_timeout(wpa_s))
  1607. return;
  1608. nbuf = os_realloc_array(wpa_s->sme.sa_query_trans_id,
  1609. wpa_s->sme.sa_query_count + 1,
  1610. WLAN_SA_QUERY_TR_ID_LEN);
  1611. if (nbuf == NULL) {
  1612. sme_stop_sa_query(wpa_s);
  1613. return;
  1614. }
  1615. if (wpa_s->sme.sa_query_count == 0) {
  1616. /* Starting a new SA Query procedure */
  1617. os_get_reltime(&wpa_s->sme.sa_query_start);
  1618. }
  1619. trans_id = nbuf + wpa_s->sme.sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
  1620. wpa_s->sme.sa_query_trans_id = nbuf;
  1621. wpa_s->sme.sa_query_count++;
  1622. if (os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0) {
  1623. wpa_printf(MSG_DEBUG, "Could not generate SA Query ID");
  1624. sme_stop_sa_query(wpa_s);
  1625. return;
  1626. }
  1627. timeout = sa_query_retry_timeout;
  1628. sec = ((timeout / 1000) * 1024) / 1000;
  1629. usec = (timeout % 1000) * 1024;
  1630. eloop_register_timeout(sec, usec, sme_sa_query_timer, wpa_s, NULL);
  1631. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association SA Query attempt %d",
  1632. wpa_s->sme.sa_query_count);
  1633. sme_send_sa_query_req(wpa_s, trans_id);
  1634. }
  1635. static void sme_start_sa_query(struct wpa_supplicant *wpa_s)
  1636. {
  1637. sme_sa_query_timer(wpa_s, NULL);
  1638. }
  1639. static void sme_stop_sa_query(struct wpa_supplicant *wpa_s)
  1640. {
  1641. eloop_cancel_timeout(sme_sa_query_timer, wpa_s, NULL);
  1642. os_free(wpa_s->sme.sa_query_trans_id);
  1643. wpa_s->sme.sa_query_trans_id = NULL;
  1644. wpa_s->sme.sa_query_count = 0;
  1645. }
  1646. void sme_event_unprot_disconnect(struct wpa_supplicant *wpa_s, const u8 *sa,
  1647. const u8 *da, u16 reason_code)
  1648. {
  1649. struct wpa_ssid *ssid;
  1650. struct os_reltime now;
  1651. if (wpa_s->wpa_state != WPA_COMPLETED)
  1652. return;
  1653. ssid = wpa_s->current_ssid;
  1654. if (wpas_get_ssid_pmf(wpa_s, ssid) == NO_MGMT_FRAME_PROTECTION)
  1655. return;
  1656. if (os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0)
  1657. return;
  1658. if (reason_code != WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA &&
  1659. reason_code != WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA)
  1660. return;
  1661. if (wpa_s->sme.sa_query_count > 0)
  1662. return;
  1663. os_get_reltime(&now);
  1664. if (wpa_s->sme.last_unprot_disconnect.sec &&
  1665. !os_reltime_expired(&now, &wpa_s->sme.last_unprot_disconnect, 10))
  1666. return; /* limit SA Query procedure frequency */
  1667. wpa_s->sme.last_unprot_disconnect = now;
  1668. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Unprotected disconnect dropped - "
  1669. "possible AP/STA state mismatch - trigger SA Query");
  1670. sme_start_sa_query(wpa_s);
  1671. }
  1672. void sme_sa_query_rx(struct wpa_supplicant *wpa_s, const u8 *sa,
  1673. const u8 *data, size_t len)
  1674. {
  1675. int i;
  1676. if (wpa_s->sme.sa_query_trans_id == NULL ||
  1677. len < 1 + WLAN_SA_QUERY_TR_ID_LEN ||
  1678. data[0] != WLAN_SA_QUERY_RESPONSE)
  1679. return;
  1680. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Received SA Query response from "
  1681. MACSTR " (trans_id %02x%02x)", MAC2STR(sa), data[1], data[2]);
  1682. if (os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0)
  1683. return;
  1684. for (i = 0; i < wpa_s->sme.sa_query_count; i++) {
  1685. if (os_memcmp(wpa_s->sme.sa_query_trans_id +
  1686. i * WLAN_SA_QUERY_TR_ID_LEN,
  1687. data + 1, WLAN_SA_QUERY_TR_ID_LEN) == 0)
  1688. break;
  1689. }
  1690. if (i >= wpa_s->sme.sa_query_count) {
  1691. wpa_dbg(wpa_s, MSG_DEBUG, "SME: No matching SA Query "
  1692. "transaction identifier found");
  1693. return;
  1694. }
  1695. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Reply to pending SA Query received "
  1696. "from " MACSTR, MAC2STR(sa));
  1697. sme_stop_sa_query(wpa_s);
  1698. }
  1699. #endif /* CONFIG_IEEE80211W */