sme.c 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040
  1. /*
  2. * wpa_supplicant - SME
  3. * Copyright (c) 2009-2010, 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 "rsn_supp/wpa.h"
  16. #include "rsn_supp/pmksa_cache.h"
  17. #include "config.h"
  18. #include "wpa_supplicant_i.h"
  19. #include "driver_i.h"
  20. #include "wpas_glue.h"
  21. #include "wps_supplicant.h"
  22. #include "p2p_supplicant.h"
  23. #include "notify.h"
  24. #include "bss.h"
  25. #include "scan.h"
  26. #include "sme.h"
  27. #include "hs20_supplicant.h"
  28. #define SME_AUTH_TIMEOUT 5
  29. #define SME_ASSOC_TIMEOUT 5
  30. static void sme_auth_timer(void *eloop_ctx, void *timeout_ctx);
  31. static void sme_assoc_timer(void *eloop_ctx, void *timeout_ctx);
  32. static void sme_obss_scan_timeout(void *eloop_ctx, void *timeout_ctx);
  33. #ifdef CONFIG_IEEE80211W
  34. static void sme_stop_sa_query(struct wpa_supplicant *wpa_s);
  35. #endif /* CONFIG_IEEE80211W */
  36. void sme_authenticate(struct wpa_supplicant *wpa_s,
  37. struct wpa_bss *bss, struct wpa_ssid *ssid)
  38. {
  39. struct wpa_driver_auth_params params;
  40. struct wpa_ssid *old_ssid;
  41. #ifdef CONFIG_IEEE80211R
  42. const u8 *ie;
  43. #endif /* CONFIG_IEEE80211R */
  44. #ifdef CONFIG_IEEE80211R
  45. const u8 *md = NULL;
  46. #endif /* CONFIG_IEEE80211R */
  47. int i, bssid_changed;
  48. if (bss == NULL) {
  49. wpa_msg(wpa_s, MSG_ERROR, "SME: No scan result available for "
  50. "the network");
  51. return;
  52. }
  53. wpa_s->current_bss = bss;
  54. os_memset(&params, 0, sizeof(params));
  55. wpa_s->reassociate = 0;
  56. params.freq = bss->freq;
  57. params.bssid = bss->bssid;
  58. params.ssid = bss->ssid;
  59. params.ssid_len = bss->ssid_len;
  60. params.p2p = ssid->p2p_group;
  61. if (wpa_s->sme.ssid_len != params.ssid_len ||
  62. os_memcmp(wpa_s->sme.ssid, params.ssid, params.ssid_len) != 0)
  63. wpa_s->sme.prev_bssid_set = 0;
  64. wpa_s->sme.freq = params.freq;
  65. os_memcpy(wpa_s->sme.ssid, params.ssid, params.ssid_len);
  66. wpa_s->sme.ssid_len = params.ssid_len;
  67. params.auth_alg = WPA_AUTH_ALG_OPEN;
  68. #ifdef IEEE8021X_EAPOL
  69. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  70. if (ssid->leap) {
  71. if (ssid->non_leap == 0)
  72. params.auth_alg = WPA_AUTH_ALG_LEAP;
  73. else
  74. params.auth_alg |= WPA_AUTH_ALG_LEAP;
  75. }
  76. }
  77. #endif /* IEEE8021X_EAPOL */
  78. wpa_dbg(wpa_s, MSG_DEBUG, "Automatic auth_alg selection: 0x%x",
  79. params.auth_alg);
  80. if (ssid->auth_alg) {
  81. params.auth_alg = ssid->auth_alg;
  82. wpa_dbg(wpa_s, MSG_DEBUG, "Overriding auth_alg selection: "
  83. "0x%x", params.auth_alg);
  84. }
  85. for (i = 0; i < NUM_WEP_KEYS; i++) {
  86. if (ssid->wep_key_len[i])
  87. params.wep_key[i] = ssid->wep_key[i];
  88. params.wep_key_len[i] = ssid->wep_key_len[i];
  89. }
  90. params.wep_tx_keyidx = ssid->wep_tx_keyidx;
  91. bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
  92. os_memset(wpa_s->bssid, 0, ETH_ALEN);
  93. os_memcpy(wpa_s->pending_bssid, bss->bssid, ETH_ALEN);
  94. if (bssid_changed)
  95. wpas_notify_bssid_changed(wpa_s);
  96. if ((wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE) ||
  97. wpa_bss_get_ie(bss, WLAN_EID_RSN)) &&
  98. wpa_key_mgmt_wpa(ssid->key_mgmt)) {
  99. int try_opportunistic;
  100. try_opportunistic = ssid->proactive_key_caching &&
  101. (ssid->proto & WPA_PROTO_RSN);
  102. if (pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid,
  103. wpa_s->current_ssid,
  104. try_opportunistic) == 0)
  105. eapol_sm_notify_pmkid_attempt(wpa_s->eapol, 1);
  106. wpa_s->sme.assoc_req_ie_len = sizeof(wpa_s->sme.assoc_req_ie);
  107. if (wpa_supplicant_set_suites(wpa_s, bss, ssid,
  108. wpa_s->sme.assoc_req_ie,
  109. &wpa_s->sme.assoc_req_ie_len)) {
  110. wpa_msg(wpa_s, MSG_WARNING, "SME: Failed to set WPA "
  111. "key management and encryption suites");
  112. return;
  113. }
  114. } else if (wpa_key_mgmt_wpa_any(ssid->key_mgmt)) {
  115. wpa_s->sme.assoc_req_ie_len = sizeof(wpa_s->sme.assoc_req_ie);
  116. if (wpa_supplicant_set_suites(wpa_s, NULL, ssid,
  117. wpa_s->sme.assoc_req_ie,
  118. &wpa_s->sme.assoc_req_ie_len)) {
  119. wpa_msg(wpa_s, MSG_WARNING, "SME: Failed to set WPA "
  120. "key management and encryption suites (no "
  121. "scan results)");
  122. return;
  123. }
  124. #ifdef CONFIG_WPS
  125. } else if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
  126. struct wpabuf *wps_ie;
  127. wps_ie = wps_build_assoc_req_ie(wpas_wps_get_req_type(ssid));
  128. if (wps_ie && wpabuf_len(wps_ie) <=
  129. sizeof(wpa_s->sme.assoc_req_ie)) {
  130. wpa_s->sme.assoc_req_ie_len = wpabuf_len(wps_ie);
  131. os_memcpy(wpa_s->sme.assoc_req_ie, wpabuf_head(wps_ie),
  132. wpa_s->sme.assoc_req_ie_len);
  133. } else
  134. wpa_s->sme.assoc_req_ie_len = 0;
  135. wpabuf_free(wps_ie);
  136. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  137. #endif /* CONFIG_WPS */
  138. } else {
  139. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  140. wpa_s->sme.assoc_req_ie_len = 0;
  141. }
  142. #ifdef CONFIG_IEEE80211R
  143. ie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
  144. if (ie && ie[1] >= MOBILITY_DOMAIN_ID_LEN)
  145. md = ie + 2;
  146. wpa_sm_set_ft_params(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0);
  147. if (md) {
  148. /* Prepare for the next transition */
  149. wpa_ft_prepare_auth_request(wpa_s->wpa, ie);
  150. }
  151. if (md && wpa_key_mgmt_ft(ssid->key_mgmt)) {
  152. if (wpa_s->sme.assoc_req_ie_len + 5 <
  153. sizeof(wpa_s->sme.assoc_req_ie)) {
  154. struct rsn_mdie *mdie;
  155. u8 *pos = wpa_s->sme.assoc_req_ie +
  156. wpa_s->sme.assoc_req_ie_len;
  157. *pos++ = WLAN_EID_MOBILITY_DOMAIN;
  158. *pos++ = sizeof(*mdie);
  159. mdie = (struct rsn_mdie *) pos;
  160. os_memcpy(mdie->mobility_domain, md,
  161. MOBILITY_DOMAIN_ID_LEN);
  162. mdie->ft_capab = md[MOBILITY_DOMAIN_ID_LEN];
  163. wpa_s->sme.assoc_req_ie_len += 5;
  164. }
  165. if (wpa_s->sme.ft_used &&
  166. os_memcmp(md, wpa_s->sme.mobility_domain, 2) == 0 &&
  167. wpa_sm_has_ptk(wpa_s->wpa)) {
  168. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying to use FT "
  169. "over-the-air");
  170. params.auth_alg = WPA_AUTH_ALG_FT;
  171. params.ie = wpa_s->sme.ft_ies;
  172. params.ie_len = wpa_s->sme.ft_ies_len;
  173. }
  174. }
  175. #endif /* CONFIG_IEEE80211R */
  176. #ifdef CONFIG_IEEE80211W
  177. wpa_s->sme.mfp = ssid->ieee80211w;
  178. if (ssid->ieee80211w != NO_MGMT_FRAME_PROTECTION) {
  179. const u8 *rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  180. struct wpa_ie_data _ie;
  181. if (rsn && wpa_parse_wpa_ie(rsn, 2 + rsn[1], &_ie) == 0 &&
  182. _ie.capabilities &
  183. (WPA_CAPABILITY_MFPC | WPA_CAPABILITY_MFPR)) {
  184. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected AP supports "
  185. "MFP: require MFP");
  186. wpa_s->sme.mfp = MGMT_FRAME_PROTECTION_REQUIRED;
  187. }
  188. }
  189. #endif /* CONFIG_IEEE80211W */
  190. #ifdef CONFIG_P2P
  191. if (wpa_s->global->p2p) {
  192. u8 *pos;
  193. size_t len;
  194. int res;
  195. pos = wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len;
  196. len = sizeof(wpa_s->sme.assoc_req_ie) -
  197. wpa_s->sme.assoc_req_ie_len;
  198. res = wpas_p2p_assoc_req_ie(wpa_s, bss, pos, len,
  199. ssid->p2p_group);
  200. if (res >= 0)
  201. wpa_s->sme.assoc_req_ie_len += res;
  202. }
  203. #endif /* CONFIG_P2P */
  204. #ifdef CONFIG_HS20
  205. if (wpa_s->conf->hs20) {
  206. struct wpabuf *hs20;
  207. hs20 = wpabuf_alloc(20);
  208. if (hs20) {
  209. wpas_hs20_add_indication(hs20);
  210. os_memcpy(wpa_s->sme.assoc_req_ie +
  211. wpa_s->sme.assoc_req_ie_len,
  212. wpabuf_head(hs20), wpabuf_len(hs20));
  213. wpa_s->sme.assoc_req_ie_len += wpabuf_len(hs20);
  214. wpabuf_free(hs20);
  215. }
  216. }
  217. #endif /* CONFIG_HS20 */
  218. #ifdef CONFIG_INTERWORKING
  219. if (wpa_s->conf->interworking) {
  220. u8 *pos = wpa_s->sme.assoc_req_ie;
  221. if (wpa_s->sme.assoc_req_ie_len > 0 && pos[0] == WLAN_EID_RSN)
  222. pos += 2 + pos[1];
  223. os_memmove(pos + 6, pos,
  224. wpa_s->sme.assoc_req_ie_len -
  225. (pos - wpa_s->sme.assoc_req_ie));
  226. wpa_s->sme.assoc_req_ie_len += 6;
  227. *pos++ = WLAN_EID_EXT_CAPAB;
  228. *pos++ = 4;
  229. *pos++ = 0x00;
  230. *pos++ = 0x00;
  231. *pos++ = 0x00;
  232. *pos++ = 0x80; /* Bit 31 - Interworking */
  233. }
  234. #endif /* CONFIG_INTERWORKING */
  235. wpa_supplicant_cancel_sched_scan(wpa_s);
  236. wpa_supplicant_cancel_scan(wpa_s);
  237. wpa_msg(wpa_s, MSG_INFO, "SME: Trying to authenticate with " MACSTR
  238. " (SSID='%s' freq=%d MHz)", MAC2STR(params.bssid),
  239. wpa_ssid_txt(params.ssid, params.ssid_len), params.freq);
  240. wpa_clear_keys(wpa_s, bss->bssid);
  241. wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
  242. old_ssid = wpa_s->current_ssid;
  243. wpa_s->current_ssid = ssid;
  244. wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
  245. wpa_supplicant_initiate_eapol(wpa_s);
  246. if (old_ssid != wpa_s->current_ssid)
  247. wpas_notify_network_changed(wpa_s);
  248. wpa_s->sme.auth_alg = params.auth_alg;
  249. if (wpa_drv_authenticate(wpa_s, &params) < 0) {
  250. wpa_msg(wpa_s, MSG_INFO, "SME: Authentication request to the "
  251. "driver failed");
  252. wpas_connection_failed(wpa_s, bss->bssid);
  253. wpa_supplicant_mark_disassoc(wpa_s);
  254. return;
  255. }
  256. eloop_register_timeout(SME_AUTH_TIMEOUT, 0, sme_auth_timer, wpa_s,
  257. NULL);
  258. /*
  259. * Association will be started based on the authentication event from
  260. * the driver.
  261. */
  262. }
  263. void sme_event_auth(struct wpa_supplicant *wpa_s, union wpa_event_data *data)
  264. {
  265. struct wpa_ssid *ssid = wpa_s->current_ssid;
  266. if (ssid == NULL) {
  267. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication event "
  268. "when network is not selected");
  269. return;
  270. }
  271. if (wpa_s->wpa_state != WPA_AUTHENTICATING) {
  272. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication event "
  273. "when not in authenticating state");
  274. return;
  275. }
  276. if (os_memcmp(wpa_s->pending_bssid, data->auth.peer, ETH_ALEN) != 0) {
  277. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication with "
  278. "unexpected peer " MACSTR,
  279. MAC2STR(data->auth.peer));
  280. return;
  281. }
  282. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Authentication response: peer=" MACSTR
  283. " auth_type=%d status_code=%d",
  284. MAC2STR(data->auth.peer), data->auth.auth_type,
  285. data->auth.status_code);
  286. wpa_hexdump(MSG_MSGDUMP, "SME: Authentication response IEs",
  287. data->auth.ies, data->auth.ies_len);
  288. eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
  289. if (data->auth.status_code != WLAN_STATUS_SUCCESS) {
  290. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Authentication failed (status "
  291. "code %d)", data->auth.status_code);
  292. if (data->auth.status_code !=
  293. WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG ||
  294. wpa_s->sme.auth_alg == data->auth.auth_type ||
  295. wpa_s->current_ssid->auth_alg == WPA_AUTH_ALG_LEAP) {
  296. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  297. return;
  298. }
  299. switch (data->auth.auth_type) {
  300. case WLAN_AUTH_OPEN:
  301. wpa_s->current_ssid->auth_alg = WPA_AUTH_ALG_SHARED;
  302. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying SHARED auth");
  303. wpa_supplicant_associate(wpa_s, wpa_s->current_bss,
  304. wpa_s->current_ssid);
  305. return;
  306. case WLAN_AUTH_SHARED_KEY:
  307. wpa_s->current_ssid->auth_alg = WPA_AUTH_ALG_LEAP;
  308. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying LEAP auth");
  309. wpa_supplicant_associate(wpa_s, wpa_s->current_bss,
  310. wpa_s->current_ssid);
  311. return;
  312. default:
  313. return;
  314. }
  315. }
  316. #ifdef CONFIG_IEEE80211R
  317. if (data->auth.auth_type == WLAN_AUTH_FT) {
  318. union wpa_event_data edata;
  319. os_memset(&edata, 0, sizeof(edata));
  320. edata.ft_ies.ies = data->auth.ies;
  321. edata.ft_ies.ies_len = data->auth.ies_len;
  322. os_memcpy(edata.ft_ies.target_ap, data->auth.peer, ETH_ALEN);
  323. wpa_supplicant_event(wpa_s, EVENT_FT_RESPONSE, &edata);
  324. }
  325. #endif /* CONFIG_IEEE80211R */
  326. sme_associate(wpa_s, ssid->mode, data->auth.peer,
  327. data->auth.auth_type);
  328. }
  329. void sme_associate(struct wpa_supplicant *wpa_s, enum wpas_mode mode,
  330. const u8 *bssid, u16 auth_type)
  331. {
  332. struct wpa_driver_associate_params params;
  333. struct ieee802_11_elems elems;
  334. #ifdef CONFIG_HT_OVERRIDES
  335. struct ieee80211_ht_capabilities htcaps;
  336. struct ieee80211_ht_capabilities htcaps_mask;
  337. #endif /* CONFIG_HT_OVERRIDES */
  338. os_memset(&params, 0, sizeof(params));
  339. params.bssid = bssid;
  340. params.ssid = wpa_s->sme.ssid;
  341. params.ssid_len = wpa_s->sme.ssid_len;
  342. params.freq = wpa_s->sme.freq;
  343. params.bg_scan_period = wpa_s->current_ssid ?
  344. wpa_s->current_ssid->bg_scan_period : -1;
  345. params.wpa_ie = wpa_s->sme.assoc_req_ie_len ?
  346. wpa_s->sme.assoc_req_ie : NULL;
  347. params.wpa_ie_len = wpa_s->sme.assoc_req_ie_len;
  348. params.pairwise_suite = cipher_suite2driver(wpa_s->pairwise_cipher);
  349. params.group_suite = cipher_suite2driver(wpa_s->group_cipher);
  350. #ifdef CONFIG_HT_OVERRIDES
  351. os_memset(&htcaps, 0, sizeof(htcaps));
  352. os_memset(&htcaps_mask, 0, sizeof(htcaps_mask));
  353. params.htcaps = (u8 *) &htcaps;
  354. params.htcaps_mask = (u8 *) &htcaps_mask;
  355. wpa_supplicant_apply_ht_overrides(wpa_s, wpa_s->current_ssid, &params);
  356. #endif /* CONFIG_HT_OVERRIDES */
  357. #ifdef CONFIG_IEEE80211R
  358. if (auth_type == WLAN_AUTH_FT && wpa_s->sme.ft_ies) {
  359. params.wpa_ie = wpa_s->sme.ft_ies;
  360. params.wpa_ie_len = wpa_s->sme.ft_ies_len;
  361. }
  362. #endif /* CONFIG_IEEE80211R */
  363. params.mode = mode;
  364. params.mgmt_frame_protection = wpa_s->sme.mfp;
  365. if (wpa_s->sme.prev_bssid_set)
  366. params.prev_bssid = wpa_s->sme.prev_bssid;
  367. wpa_msg(wpa_s, MSG_INFO, "Trying to associate with " MACSTR
  368. " (SSID='%s' freq=%d MHz)", MAC2STR(params.bssid),
  369. params.ssid ? wpa_ssid_txt(params.ssid, params.ssid_len) : "",
  370. params.freq);
  371. wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATING);
  372. if (params.wpa_ie == NULL ||
  373. ieee802_11_parse_elems(params.wpa_ie, params.wpa_ie_len, &elems, 0)
  374. < 0) {
  375. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Could not parse own IEs?!");
  376. os_memset(&elems, 0, sizeof(elems));
  377. }
  378. if (elems.rsn_ie) {
  379. params.wpa_proto = WPA_PROTO_RSN;
  380. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.rsn_ie - 2,
  381. elems.rsn_ie_len + 2);
  382. } else if (elems.wpa_ie) {
  383. params.wpa_proto = WPA_PROTO_WPA;
  384. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.wpa_ie - 2,
  385. elems.wpa_ie_len + 2);
  386. } else
  387. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  388. if (wpa_s->current_ssid && wpa_s->current_ssid->p2p_group)
  389. params.p2p = 1;
  390. if (wpa_s->parent->set_sta_uapsd)
  391. params.uapsd = wpa_s->parent->sta_uapsd;
  392. else
  393. params.uapsd = -1;
  394. if (wpa_drv_associate(wpa_s, &params) < 0) {
  395. wpa_msg(wpa_s, MSG_INFO, "SME: Association request to the "
  396. "driver failed");
  397. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  398. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  399. return;
  400. }
  401. eloop_register_timeout(SME_ASSOC_TIMEOUT, 0, sme_assoc_timer, wpa_s,
  402. NULL);
  403. }
  404. int sme_update_ft_ies(struct wpa_supplicant *wpa_s, const u8 *md,
  405. const u8 *ies, size_t ies_len)
  406. {
  407. if (md == NULL || ies == NULL) {
  408. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Remove mobility domain");
  409. os_free(wpa_s->sme.ft_ies);
  410. wpa_s->sme.ft_ies = NULL;
  411. wpa_s->sme.ft_ies_len = 0;
  412. wpa_s->sme.ft_used = 0;
  413. return 0;
  414. }
  415. os_memcpy(wpa_s->sme.mobility_domain, md, MOBILITY_DOMAIN_ID_LEN);
  416. wpa_hexdump(MSG_DEBUG, "SME: FT IEs", ies, ies_len);
  417. os_free(wpa_s->sme.ft_ies);
  418. wpa_s->sme.ft_ies = os_malloc(ies_len);
  419. if (wpa_s->sme.ft_ies == NULL)
  420. return -1;
  421. os_memcpy(wpa_s->sme.ft_ies, ies, ies_len);
  422. wpa_s->sme.ft_ies_len = ies_len;
  423. return 0;
  424. }
  425. static void sme_deauth(struct wpa_supplicant *wpa_s)
  426. {
  427. int bssid_changed;
  428. bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
  429. if (wpa_drv_deauthenticate(wpa_s, wpa_s->pending_bssid,
  430. WLAN_REASON_DEAUTH_LEAVING) < 0) {
  431. wpa_msg(wpa_s, MSG_INFO, "SME: Deauth request to the driver "
  432. "failed");
  433. }
  434. wpa_s->sme.prev_bssid_set = 0;
  435. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  436. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  437. os_memset(wpa_s->bssid, 0, ETH_ALEN);
  438. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  439. if (bssid_changed)
  440. wpas_notify_bssid_changed(wpa_s);
  441. }
  442. void sme_event_assoc_reject(struct wpa_supplicant *wpa_s,
  443. union wpa_event_data *data)
  444. {
  445. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association with " MACSTR " failed: "
  446. "status code %d", MAC2STR(wpa_s->pending_bssid),
  447. data->assoc_reject.status_code);
  448. eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
  449. /*
  450. * For now, unconditionally terminate the previous authentication. In
  451. * theory, this should not be needed, but mac80211 gets quite confused
  452. * if the authentication is left pending.. Some roaming cases might
  453. * benefit from using the previous authentication, so this could be
  454. * optimized in the future.
  455. */
  456. sme_deauth(wpa_s);
  457. }
  458. void sme_event_auth_timed_out(struct wpa_supplicant *wpa_s,
  459. union wpa_event_data *data)
  460. {
  461. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Authentication timed out");
  462. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  463. wpa_supplicant_mark_disassoc(wpa_s);
  464. }
  465. void sme_event_assoc_timed_out(struct wpa_supplicant *wpa_s,
  466. union wpa_event_data *data)
  467. {
  468. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association timed out");
  469. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  470. wpa_supplicant_mark_disassoc(wpa_s);
  471. }
  472. void sme_event_disassoc(struct wpa_supplicant *wpa_s,
  473. union wpa_event_data *data)
  474. {
  475. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Disassociation event received");
  476. if (wpa_s->sme.prev_bssid_set) {
  477. /*
  478. * cfg80211/mac80211 can get into somewhat confused state if
  479. * the AP only disassociates us and leaves us in authenticated
  480. * state. For now, force the state to be cleared to avoid
  481. * confusing errors if we try to associate with the AP again.
  482. */
  483. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Deauthenticate to clear "
  484. "driver state");
  485. wpa_drv_deauthenticate(wpa_s, wpa_s->sme.prev_bssid,
  486. WLAN_REASON_DEAUTH_LEAVING);
  487. }
  488. }
  489. static void sme_auth_timer(void *eloop_ctx, void *timeout_ctx)
  490. {
  491. struct wpa_supplicant *wpa_s = eloop_ctx;
  492. if (wpa_s->wpa_state == WPA_AUTHENTICATING) {
  493. wpa_msg(wpa_s, MSG_DEBUG, "SME: Authentication timeout");
  494. sme_deauth(wpa_s);
  495. }
  496. }
  497. static void sme_assoc_timer(void *eloop_ctx, void *timeout_ctx)
  498. {
  499. struct wpa_supplicant *wpa_s = eloop_ctx;
  500. if (wpa_s->wpa_state == WPA_ASSOCIATING) {
  501. wpa_msg(wpa_s, MSG_DEBUG, "SME: Association timeout");
  502. sme_deauth(wpa_s);
  503. }
  504. }
  505. void sme_state_changed(struct wpa_supplicant *wpa_s)
  506. {
  507. /* Make sure timers are cleaned up appropriately. */
  508. if (wpa_s->wpa_state != WPA_ASSOCIATING)
  509. eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
  510. if (wpa_s->wpa_state != WPA_AUTHENTICATING)
  511. eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
  512. }
  513. void sme_disassoc_while_authenticating(struct wpa_supplicant *wpa_s,
  514. const u8 *prev_pending_bssid)
  515. {
  516. /*
  517. * mac80211-workaround to force deauth on failed auth cmd,
  518. * requires us to remain in authenticating state to allow the
  519. * second authentication attempt to be continued properly.
  520. */
  521. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Allow pending authentication "
  522. "to proceed after disconnection event");
  523. wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
  524. os_memcpy(wpa_s->pending_bssid, prev_pending_bssid, ETH_ALEN);
  525. /*
  526. * Re-arm authentication timer in case auth fails for whatever reason.
  527. */
  528. eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
  529. eloop_register_timeout(SME_AUTH_TIMEOUT, 0, sme_auth_timer, wpa_s,
  530. NULL);
  531. }
  532. void sme_deinit(struct wpa_supplicant *wpa_s)
  533. {
  534. os_free(wpa_s->sme.ft_ies);
  535. wpa_s->sme.ft_ies = NULL;
  536. wpa_s->sme.ft_ies_len = 0;
  537. #ifdef CONFIG_IEEE80211W
  538. sme_stop_sa_query(wpa_s);
  539. #endif /* CONFIG_IEEE80211W */
  540. eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
  541. eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
  542. eloop_cancel_timeout(sme_obss_scan_timeout, wpa_s, NULL);
  543. }
  544. static void sme_send_2040_bss_coex(struct wpa_supplicant *wpa_s,
  545. const u8 *chan_list, u8 num_channels,
  546. u8 num_intol)
  547. {
  548. struct ieee80211_2040_bss_coex_ie *bc_ie;
  549. struct ieee80211_2040_intol_chan_report *ic_report;
  550. struct wpabuf *buf;
  551. wpa_printf(MSG_DEBUG, "SME: Send 20/40 BSS Coexistence to " MACSTR,
  552. MAC2STR(wpa_s->bssid));
  553. buf = wpabuf_alloc(2 + /* action.category + action_code */
  554. sizeof(struct ieee80211_2040_bss_coex_ie) +
  555. sizeof(struct ieee80211_2040_intol_chan_report) +
  556. num_channels);
  557. if (buf == NULL)
  558. return;
  559. wpabuf_put_u8(buf, WLAN_ACTION_PUBLIC);
  560. wpabuf_put_u8(buf, WLAN_PA_20_40_BSS_COEX);
  561. bc_ie = wpabuf_put(buf, sizeof(*bc_ie));
  562. bc_ie->element_id = WLAN_EID_20_40_BSS_COEXISTENCE;
  563. bc_ie->length = 1;
  564. if (num_intol)
  565. bc_ie->coex_param |= WLAN_20_40_BSS_COEX_20MHZ_WIDTH_REQ;
  566. if (num_channels > 0) {
  567. ic_report = wpabuf_put(buf, sizeof(*ic_report));
  568. ic_report->element_id = WLAN_EID_20_40_BSS_INTOLERANT;
  569. ic_report->length = num_channels + 1;
  570. ic_report->op_class = 0;
  571. os_memcpy(wpabuf_put(buf, num_channels), chan_list,
  572. num_channels);
  573. }
  574. if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  575. wpa_s->own_addr, wpa_s->bssid,
  576. wpabuf_head(buf), wpabuf_len(buf), 0) < 0) {
  577. wpa_msg(wpa_s, MSG_INFO,
  578. "SME: Failed to send 20/40 BSS Coexistence frame");
  579. }
  580. wpabuf_free(buf);
  581. }
  582. /**
  583. * enum wpas_band - Frequency band
  584. * @WPAS_BAND_2GHZ: 2.4 GHz ISM band
  585. * @WPAS_BAND_5GHZ: around 5 GHz band (4.9 - 5.7 GHz)
  586. */
  587. enum wpas_band {
  588. WPAS_BAND_2GHZ,
  589. WPAS_BAND_5GHZ,
  590. WPAS_BAND_INVALID
  591. };
  592. /**
  593. * freq_to_channel - Convert frequency into channel info
  594. * @channel: Buffer for returning channel number
  595. * Returns: Band (2 or 5 GHz)
  596. */
  597. static enum wpas_band freq_to_channel(int freq, u8 *channel)
  598. {
  599. enum wpas_band band = (freq <= 2484) ? WPAS_BAND_2GHZ : WPAS_BAND_5GHZ;
  600. u8 chan = 0;
  601. if (freq >= 2412 && freq <= 2472)
  602. chan = (freq - 2407) / 5;
  603. else if (freq == 2484)
  604. chan = 14;
  605. else if (freq >= 5180 && freq <= 5805)
  606. chan = (freq - 5000) / 5;
  607. *channel = chan;
  608. return band;
  609. }
  610. int sme_proc_obss_scan(struct wpa_supplicant *wpa_s)
  611. {
  612. struct wpa_bss *bss;
  613. const u8 *ie;
  614. u16 ht_cap;
  615. u8 chan_list[P2P_MAX_CHANNELS], channel;
  616. u8 num_channels = 0, num_intol = 0, i;
  617. if (!wpa_s->sme.sched_obss_scan)
  618. return 0;
  619. wpa_s->sme.sched_obss_scan = 0;
  620. if (!wpa_s->current_bss || wpa_s->wpa_state != WPA_COMPLETED)
  621. return 1;
  622. /*
  623. * Check whether AP uses regulatory triplet or channel triplet in
  624. * country info. Right now the operating class of the BSS channel
  625. * width trigger event is "unknown" (IEEE Std 802.11-2012 10.15.12),
  626. * based on the assumption that operating class triplet is not used in
  627. * beacon frame. If the First Channel Number/Operating Extension
  628. * Identifier octet has a positive integer value of 201 or greater,
  629. * then its operating class triplet.
  630. *
  631. * TODO: If Supported Operating Classes element is present in beacon
  632. * frame, have to lookup operating class in Annex E and fill them in
  633. * 2040 coex frame.
  634. */
  635. ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_COUNTRY);
  636. if (ie && (ie[1] >= 6) && (ie[5] >= 201))
  637. return 1;
  638. os_memset(chan_list, 0, sizeof(chan_list));
  639. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  640. /* Skip other band bss */
  641. if (freq_to_channel(bss->freq, &channel) != WPAS_BAND_2GHZ)
  642. continue;
  643. ie = wpa_bss_get_ie(bss, WLAN_EID_HT_CAP);
  644. ht_cap = (ie && (ie[1] == 26)) ? WPA_GET_LE16(ie + 2) : 0;
  645. if (!ht_cap || (ht_cap & HT_CAP_INFO_40MHZ_INTOLERANT)) {
  646. /* Check whether the channel is already considered */
  647. for (i = 0; i < num_channels; i++) {
  648. if (channel == chan_list[i])
  649. break;
  650. }
  651. if (i != num_channels)
  652. continue;
  653. if (ht_cap & HT_CAP_INFO_40MHZ_INTOLERANT)
  654. num_intol++;
  655. chan_list[num_channels++] = channel;
  656. }
  657. }
  658. sme_send_2040_bss_coex(wpa_s, chan_list, num_channels, num_intol);
  659. return 1;
  660. }
  661. static struct hostapd_hw_modes * get_mode(struct hostapd_hw_modes *modes,
  662. u16 num_modes,
  663. enum hostapd_hw_mode mode)
  664. {
  665. u16 i;
  666. for (i = 0; i < num_modes; i++) {
  667. if (modes[i].mode == mode)
  668. return &modes[i];
  669. }
  670. return NULL;
  671. }
  672. static void wpa_setband_scan_freqs_list(struct wpa_supplicant *wpa_s,
  673. enum hostapd_hw_mode band,
  674. struct wpa_driver_scan_params *params)
  675. {
  676. /* Include only supported channels for the specified band */
  677. struct hostapd_hw_modes *mode;
  678. int count, i;
  679. mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, band);
  680. if (mode == NULL) {
  681. /* No channels supported in this band - use empty list */
  682. params->freqs = os_zalloc(sizeof(int));
  683. return;
  684. }
  685. params->freqs = os_zalloc((mode->num_channels + 1) * sizeof(int));
  686. if (params->freqs == NULL)
  687. return;
  688. for (count = 0, i = 0; i < mode->num_channels; i++) {
  689. if (mode->channels[i].flag & HOSTAPD_CHAN_DISABLED)
  690. continue;
  691. params->freqs[count++] = mode->channels[i].freq;
  692. }
  693. }
  694. static void sme_obss_scan_timeout(void *eloop_ctx, void *timeout_ctx)
  695. {
  696. struct wpa_supplicant *wpa_s = eloop_ctx;
  697. struct wpa_driver_scan_params params;
  698. if (!wpa_s->current_bss) {
  699. wpa_printf(MSG_DEBUG, "SME OBSS: Ignore scan request");
  700. return;
  701. }
  702. os_memset(&params, 0, sizeof(params));
  703. wpa_setband_scan_freqs_list(wpa_s, HOSTAPD_MODE_IEEE80211G, &params);
  704. wpa_printf(MSG_DEBUG, "SME OBSS: Request an OBSS scan");
  705. if (wpa_supplicant_trigger_scan(wpa_s, &params))
  706. wpa_printf(MSG_DEBUG, "SME OBSS: Failed to trigger scan");
  707. else
  708. wpa_s->sme.sched_obss_scan = 1;
  709. os_free(params.freqs);
  710. eloop_register_timeout(wpa_s->sme.obss_scan_int, 0,
  711. sme_obss_scan_timeout, wpa_s, NULL);
  712. }
  713. void sme_sched_obss_scan(struct wpa_supplicant *wpa_s, int enable)
  714. {
  715. const u8 *ie;
  716. struct wpa_bss *bss = wpa_s->current_bss;
  717. struct wpa_ssid *ssid = wpa_s->current_ssid;
  718. eloop_cancel_timeout(sme_obss_scan_timeout, wpa_s, NULL);
  719. wpa_s->sme.sched_obss_scan = 0;
  720. if (!enable)
  721. return;
  722. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) || ssid == NULL ||
  723. ssid->mode != IEEE80211_MODE_INFRA)
  724. return; /* Not using station SME in wpa_supplicant */
  725. if (!wpa_s->hw.modes ||
  726. !(wpa_s->hw.modes->ht_capab & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
  727. return; /* Driver does not support HT40 */
  728. if (bss == NULL || bss->freq < 2400 || bss->freq > 2500)
  729. return; /* Not associated on 2.4 GHz band */
  730. /* Check whether AP supports HT40 */
  731. ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_HT_CAP);
  732. if (!ie || ie[1] < 2 ||
  733. !(WPA_GET_LE16(ie + 2) & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
  734. return; /* AP does not support HT40 */
  735. ie = wpa_bss_get_ie(wpa_s->current_bss,
  736. WLAN_EID_OVERLAPPING_BSS_SCAN_PARAMS);
  737. if (!ie || ie[1] < 14)
  738. return; /* AP does not request OBSS scans */
  739. wpa_s->sme.obss_scan_int = WPA_GET_LE16(ie + 6);
  740. if (wpa_s->sme.obss_scan_int < 10) {
  741. wpa_printf(MSG_DEBUG, "SME: Invalid OBSS Scan Interval %u "
  742. "replaced with the minimum 10 sec",
  743. wpa_s->sme.obss_scan_int);
  744. wpa_s->sme.obss_scan_int = 10;
  745. }
  746. wpa_printf(MSG_DEBUG, "SME: OBSS Scan Interval %u sec",
  747. wpa_s->sme.obss_scan_int);
  748. eloop_register_timeout(wpa_s->sme.obss_scan_int, 0,
  749. sme_obss_scan_timeout, wpa_s, NULL);
  750. }
  751. #ifdef CONFIG_IEEE80211W
  752. static const unsigned int sa_query_max_timeout = 1000;
  753. static const unsigned int sa_query_retry_timeout = 201;
  754. static int sme_check_sa_query_timeout(struct wpa_supplicant *wpa_s)
  755. {
  756. u32 tu;
  757. struct os_time now, passed;
  758. os_get_time(&now);
  759. os_time_sub(&now, &wpa_s->sme.sa_query_start, &passed);
  760. tu = (passed.sec * 1000000 + passed.usec) / 1024;
  761. if (sa_query_max_timeout < tu) {
  762. wpa_dbg(wpa_s, MSG_DEBUG, "SME: SA Query timed out");
  763. sme_stop_sa_query(wpa_s);
  764. wpa_supplicant_deauthenticate(
  765. wpa_s, WLAN_REASON_PREV_AUTH_NOT_VALID);
  766. return 1;
  767. }
  768. return 0;
  769. }
  770. static void sme_send_sa_query_req(struct wpa_supplicant *wpa_s,
  771. const u8 *trans_id)
  772. {
  773. u8 req[2 + WLAN_SA_QUERY_TR_ID_LEN];
  774. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Sending SA Query Request to "
  775. MACSTR, MAC2STR(wpa_s->bssid));
  776. wpa_hexdump(MSG_DEBUG, "SME: SA Query Transaction ID",
  777. trans_id, WLAN_SA_QUERY_TR_ID_LEN);
  778. req[0] = WLAN_ACTION_SA_QUERY;
  779. req[1] = WLAN_SA_QUERY_REQUEST;
  780. os_memcpy(req + 2, trans_id, WLAN_SA_QUERY_TR_ID_LEN);
  781. if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  782. wpa_s->own_addr, wpa_s->bssid,
  783. req, sizeof(req), 0) < 0)
  784. wpa_msg(wpa_s, MSG_INFO, "SME: Failed to send SA Query "
  785. "Request");
  786. }
  787. static void sme_sa_query_timer(void *eloop_ctx, void *timeout_ctx)
  788. {
  789. struct wpa_supplicant *wpa_s = eloop_ctx;
  790. unsigned int timeout, sec, usec;
  791. u8 *trans_id, *nbuf;
  792. if (wpa_s->sme.sa_query_count > 0 &&
  793. sme_check_sa_query_timeout(wpa_s))
  794. return;
  795. nbuf = os_realloc(wpa_s->sme.sa_query_trans_id,
  796. (wpa_s->sme.sa_query_count + 1) *
  797. WLAN_SA_QUERY_TR_ID_LEN);
  798. if (nbuf == NULL)
  799. return;
  800. if (wpa_s->sme.sa_query_count == 0) {
  801. /* Starting a new SA Query procedure */
  802. os_get_time(&wpa_s->sme.sa_query_start);
  803. }
  804. trans_id = nbuf + wpa_s->sme.sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
  805. wpa_s->sme.sa_query_trans_id = nbuf;
  806. wpa_s->sme.sa_query_count++;
  807. os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN);
  808. timeout = sa_query_retry_timeout;
  809. sec = ((timeout / 1000) * 1024) / 1000;
  810. usec = (timeout % 1000) * 1024;
  811. eloop_register_timeout(sec, usec, sme_sa_query_timer, wpa_s, NULL);
  812. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association SA Query attempt %d",
  813. wpa_s->sme.sa_query_count);
  814. sme_send_sa_query_req(wpa_s, trans_id);
  815. }
  816. static void sme_start_sa_query(struct wpa_supplicant *wpa_s)
  817. {
  818. sme_sa_query_timer(wpa_s, NULL);
  819. }
  820. static void sme_stop_sa_query(struct wpa_supplicant *wpa_s)
  821. {
  822. eloop_cancel_timeout(sme_sa_query_timer, wpa_s, NULL);
  823. os_free(wpa_s->sme.sa_query_trans_id);
  824. wpa_s->sme.sa_query_trans_id = NULL;
  825. wpa_s->sme.sa_query_count = 0;
  826. }
  827. void sme_event_unprot_disconnect(struct wpa_supplicant *wpa_s, const u8 *sa,
  828. const u8 *da, u16 reason_code)
  829. {
  830. struct wpa_ssid *ssid;
  831. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME))
  832. return;
  833. if (wpa_s->wpa_state != WPA_COMPLETED)
  834. return;
  835. ssid = wpa_s->current_ssid;
  836. if (ssid == NULL || ssid->ieee80211w == 0)
  837. return;
  838. if (os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0)
  839. return;
  840. if (reason_code != WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA &&
  841. reason_code != WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA)
  842. return;
  843. if (wpa_s->sme.sa_query_count > 0)
  844. return;
  845. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Unprotected disconnect dropped - "
  846. "possible AP/STA state mismatch - trigger SA Query");
  847. sme_start_sa_query(wpa_s);
  848. }
  849. void sme_sa_query_rx(struct wpa_supplicant *wpa_s, const u8 *sa,
  850. const u8 *data, size_t len)
  851. {
  852. int i;
  853. if (wpa_s->sme.sa_query_trans_id == NULL ||
  854. len < 1 + WLAN_SA_QUERY_TR_ID_LEN ||
  855. data[0] != WLAN_SA_QUERY_RESPONSE)
  856. return;
  857. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Received SA Query response from "
  858. MACSTR " (trans_id %02x%02x)", MAC2STR(sa), data[1], data[2]);
  859. if (os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0)
  860. return;
  861. for (i = 0; i < wpa_s->sme.sa_query_count; i++) {
  862. if (os_memcmp(wpa_s->sme.sa_query_trans_id +
  863. i * WLAN_SA_QUERY_TR_ID_LEN,
  864. data + 1, WLAN_SA_QUERY_TR_ID_LEN) == 0)
  865. break;
  866. }
  867. if (i >= wpa_s->sme.sa_query_count) {
  868. wpa_dbg(wpa_s, MSG_DEBUG, "SME: No matching SA Query "
  869. "transaction identifier found");
  870. return;
  871. }
  872. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Reply to pending SA Query received "
  873. "from " MACSTR, MAC2STR(sa));
  874. sme_stop_sa_query(wpa_s);
  875. }
  876. #endif /* CONFIG_IEEE80211W */