wnm_sta.c 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131
  1. /*
  2. * wpa_supplicant - WNM
  3. * Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "common/ieee802_11_defs.h"
  11. #include "common/ieee802_11_common.h"
  12. #include "common/wpa_ctrl.h"
  13. #include "rsn_supp/wpa.h"
  14. #include "wpa_supplicant_i.h"
  15. #include "driver_i.h"
  16. #include "scan.h"
  17. #include "ctrl_iface.h"
  18. #include "bss.h"
  19. #include "wnm_sta.h"
  20. #include "hs20_supplicant.h"
  21. #define MAX_TFS_IE_LEN 1024
  22. #define WNM_MAX_NEIGHBOR_REPORT 10
  23. /* get the TFS IE from driver */
  24. static int ieee80211_11_get_tfs_ie(struct wpa_supplicant *wpa_s, u8 *buf,
  25. u16 *buf_len, enum wnm_oper oper)
  26. {
  27. wpa_printf(MSG_DEBUG, "%s: TFS get operation %d", __func__, oper);
  28. return wpa_drv_wnm_oper(wpa_s, oper, wpa_s->bssid, buf, buf_len);
  29. }
  30. /* set the TFS IE to driver */
  31. static int ieee80211_11_set_tfs_ie(struct wpa_supplicant *wpa_s,
  32. const u8 *addr, u8 *buf, u16 *buf_len,
  33. enum wnm_oper oper)
  34. {
  35. wpa_printf(MSG_DEBUG, "%s: TFS set operation %d", __func__, oper);
  36. return wpa_drv_wnm_oper(wpa_s, oper, addr, buf, buf_len);
  37. }
  38. /* MLME-SLEEPMODE.request */
  39. int ieee802_11_send_wnmsleep_req(struct wpa_supplicant *wpa_s,
  40. u8 action, u16 intval, struct wpabuf *tfs_req)
  41. {
  42. struct ieee80211_mgmt *mgmt;
  43. int res;
  44. size_t len;
  45. struct wnm_sleep_element *wnmsleep_ie;
  46. u8 *wnmtfs_ie;
  47. u8 wnmsleep_ie_len;
  48. u16 wnmtfs_ie_len; /* possibly multiple IE(s) */
  49. enum wnm_oper tfs_oper = action == 0 ? WNM_SLEEP_TFS_REQ_IE_ADD :
  50. WNM_SLEEP_TFS_REQ_IE_NONE;
  51. wpa_printf(MSG_DEBUG, "WNM: Request to send WNM-Sleep Mode Request "
  52. "action=%s to " MACSTR,
  53. action == 0 ? "enter" : "exit",
  54. MAC2STR(wpa_s->bssid));
  55. /* WNM-Sleep Mode IE */
  56. wnmsleep_ie_len = sizeof(struct wnm_sleep_element);
  57. wnmsleep_ie = os_zalloc(sizeof(struct wnm_sleep_element));
  58. if (wnmsleep_ie == NULL)
  59. return -1;
  60. wnmsleep_ie->eid = WLAN_EID_WNMSLEEP;
  61. wnmsleep_ie->len = wnmsleep_ie_len - 2;
  62. wnmsleep_ie->action_type = action;
  63. wnmsleep_ie->status = WNM_STATUS_SLEEP_ACCEPT;
  64. wnmsleep_ie->intval = host_to_le16(intval);
  65. wpa_hexdump(MSG_DEBUG, "WNM: WNM-Sleep Mode element",
  66. (u8 *) wnmsleep_ie, wnmsleep_ie_len);
  67. /* TFS IE(s) */
  68. if (tfs_req) {
  69. wnmtfs_ie_len = wpabuf_len(tfs_req);
  70. wnmtfs_ie = os_malloc(wnmtfs_ie_len);
  71. if (wnmtfs_ie == NULL) {
  72. os_free(wnmsleep_ie);
  73. return -1;
  74. }
  75. os_memcpy(wnmtfs_ie, wpabuf_head(tfs_req), wnmtfs_ie_len);
  76. } else {
  77. wnmtfs_ie = os_zalloc(MAX_TFS_IE_LEN);
  78. if (wnmtfs_ie == NULL) {
  79. os_free(wnmsleep_ie);
  80. return -1;
  81. }
  82. if (ieee80211_11_get_tfs_ie(wpa_s, wnmtfs_ie, &wnmtfs_ie_len,
  83. tfs_oper)) {
  84. wnmtfs_ie_len = 0;
  85. os_free(wnmtfs_ie);
  86. wnmtfs_ie = NULL;
  87. }
  88. }
  89. wpa_hexdump(MSG_DEBUG, "WNM: TFS Request element",
  90. (u8 *) wnmtfs_ie, wnmtfs_ie_len);
  91. mgmt = os_zalloc(sizeof(*mgmt) + wnmsleep_ie_len + wnmtfs_ie_len);
  92. if (mgmt == NULL) {
  93. wpa_printf(MSG_DEBUG, "MLME: Failed to allocate buffer for "
  94. "WNM-Sleep Request action frame");
  95. os_free(wnmsleep_ie);
  96. os_free(wnmtfs_ie);
  97. return -1;
  98. }
  99. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  100. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  101. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  102. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  103. WLAN_FC_STYPE_ACTION);
  104. mgmt->u.action.category = WLAN_ACTION_WNM;
  105. mgmt->u.action.u.wnm_sleep_req.action = WNM_SLEEP_MODE_REQ;
  106. mgmt->u.action.u.wnm_sleep_req.dialogtoken = 1;
  107. os_memcpy(mgmt->u.action.u.wnm_sleep_req.variable, wnmsleep_ie,
  108. wnmsleep_ie_len);
  109. /* copy TFS IE here */
  110. if (wnmtfs_ie_len > 0) {
  111. os_memcpy(mgmt->u.action.u.wnm_sleep_req.variable +
  112. wnmsleep_ie_len, wnmtfs_ie, wnmtfs_ie_len);
  113. }
  114. len = 1 + sizeof(mgmt->u.action.u.wnm_sleep_req) + wnmsleep_ie_len +
  115. wnmtfs_ie_len;
  116. res = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  117. wpa_s->own_addr, wpa_s->bssid,
  118. &mgmt->u.action.category, len, 0);
  119. if (res < 0)
  120. wpa_printf(MSG_DEBUG, "Failed to send WNM-Sleep Request "
  121. "(action=%d, intval=%d)", action, intval);
  122. os_free(wnmsleep_ie);
  123. os_free(wnmtfs_ie);
  124. os_free(mgmt);
  125. return res;
  126. }
  127. static void wnm_sleep_mode_enter_success(struct wpa_supplicant *wpa_s,
  128. u8 *tfsresp_ie_start,
  129. u8 *tfsresp_ie_end)
  130. {
  131. wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_ENTER_CONFIRM,
  132. wpa_s->bssid, NULL, NULL);
  133. /* remove GTK/IGTK ?? */
  134. /* set the TFS Resp IE(s) */
  135. if (tfsresp_ie_start && tfsresp_ie_end &&
  136. tfsresp_ie_end - tfsresp_ie_start >= 0) {
  137. u16 tfsresp_ie_len;
  138. tfsresp_ie_len = (tfsresp_ie_end + tfsresp_ie_end[1] + 2) -
  139. tfsresp_ie_start;
  140. wpa_printf(MSG_DEBUG, "TFS Resp IE(s) found");
  141. /* pass the TFS Resp IE(s) to driver for processing */
  142. if (ieee80211_11_set_tfs_ie(wpa_s, wpa_s->bssid,
  143. tfsresp_ie_start,
  144. &tfsresp_ie_len,
  145. WNM_SLEEP_TFS_RESP_IE_SET))
  146. wpa_printf(MSG_DEBUG, "WNM: Fail to set TFS Resp IE");
  147. }
  148. }
  149. static void wnm_sleep_mode_exit_success(struct wpa_supplicant *wpa_s,
  150. const u8 *frm, u16 key_len_total)
  151. {
  152. u8 *ptr, *end;
  153. u8 gtk_len;
  154. wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_EXIT_CONFIRM, wpa_s->bssid,
  155. NULL, NULL);
  156. /* Install GTK/IGTK */
  157. /* point to key data field */
  158. ptr = (u8 *) frm + 1 + 2;
  159. end = ptr + key_len_total;
  160. wpa_hexdump_key(MSG_DEBUG, "WNM: Key Data", ptr, key_len_total);
  161. while (ptr + 1 < end) {
  162. if (ptr + 2 + ptr[1] > end) {
  163. wpa_printf(MSG_DEBUG, "WNM: Invalid Key Data element "
  164. "length");
  165. if (end > ptr) {
  166. wpa_hexdump(MSG_DEBUG, "WNM: Remaining data",
  167. ptr, end - ptr);
  168. }
  169. break;
  170. }
  171. if (*ptr == WNM_SLEEP_SUBELEM_GTK) {
  172. if (ptr[1] < 11 + 5) {
  173. wpa_printf(MSG_DEBUG, "WNM: Too short GTK "
  174. "subelem");
  175. break;
  176. }
  177. gtk_len = *(ptr + 4);
  178. if (ptr[1] < 11 + gtk_len ||
  179. gtk_len < 5 || gtk_len > 32) {
  180. wpa_printf(MSG_DEBUG, "WNM: Invalid GTK "
  181. "subelem");
  182. break;
  183. }
  184. wpa_wnmsleep_install_key(
  185. wpa_s->wpa,
  186. WNM_SLEEP_SUBELEM_GTK,
  187. ptr);
  188. ptr += 13 + gtk_len;
  189. #ifdef CONFIG_IEEE80211W
  190. } else if (*ptr == WNM_SLEEP_SUBELEM_IGTK) {
  191. if (ptr[1] < 2 + 6 + WPA_IGTK_LEN) {
  192. wpa_printf(MSG_DEBUG, "WNM: Too short IGTK "
  193. "subelem");
  194. break;
  195. }
  196. wpa_wnmsleep_install_key(wpa_s->wpa,
  197. WNM_SLEEP_SUBELEM_IGTK, ptr);
  198. ptr += 10 + WPA_IGTK_LEN;
  199. #endif /* CONFIG_IEEE80211W */
  200. } else
  201. break; /* skip the loop */
  202. }
  203. }
  204. static void ieee802_11_rx_wnmsleep_resp(struct wpa_supplicant *wpa_s,
  205. const u8 *frm, int len)
  206. {
  207. /*
  208. * Action [1] | Dialog Token [1] | Key Data Len [2] | Key Data |
  209. * WNM-Sleep Mode IE | TFS Response IE
  210. */
  211. u8 *pos = (u8 *) frm; /* point to payload after the action field */
  212. u16 key_len_total;
  213. struct wnm_sleep_element *wnmsleep_ie = NULL;
  214. /* multiple TFS Resp IE (assuming consecutive) */
  215. u8 *tfsresp_ie_start = NULL;
  216. u8 *tfsresp_ie_end = NULL;
  217. if (len < 3)
  218. return;
  219. key_len_total = WPA_GET_LE16(frm + 1);
  220. wpa_printf(MSG_DEBUG, "WNM-Sleep Mode Response token=%u key_len_total=%d",
  221. frm[0], key_len_total);
  222. pos += 3 + key_len_total;
  223. if (pos > frm + len) {
  224. wpa_printf(MSG_INFO, "WNM: Too short frame for Key Data field");
  225. return;
  226. }
  227. while (pos - frm < len) {
  228. u8 ie_len = *(pos + 1);
  229. if (pos + 2 + ie_len > frm + len) {
  230. wpa_printf(MSG_INFO, "WNM: Invalid IE len %u", ie_len);
  231. break;
  232. }
  233. wpa_hexdump(MSG_DEBUG, "WNM: Element", pos, 2 + ie_len);
  234. if (*pos == WLAN_EID_WNMSLEEP)
  235. wnmsleep_ie = (struct wnm_sleep_element *) pos;
  236. else if (*pos == WLAN_EID_TFS_RESP) {
  237. if (!tfsresp_ie_start)
  238. tfsresp_ie_start = pos;
  239. tfsresp_ie_end = pos;
  240. } else
  241. wpa_printf(MSG_DEBUG, "EID %d not recognized", *pos);
  242. pos += ie_len + 2;
  243. }
  244. if (!wnmsleep_ie) {
  245. wpa_printf(MSG_DEBUG, "No WNM-Sleep IE found");
  246. return;
  247. }
  248. if (wnmsleep_ie->status == WNM_STATUS_SLEEP_ACCEPT ||
  249. wnmsleep_ie->status == WNM_STATUS_SLEEP_EXIT_ACCEPT_GTK_UPDATE) {
  250. wpa_printf(MSG_DEBUG, "Successfully recv WNM-Sleep Response "
  251. "frame (action=%d, intval=%d)",
  252. wnmsleep_ie->action_type, wnmsleep_ie->intval);
  253. if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_ENTER) {
  254. wnm_sleep_mode_enter_success(wpa_s, tfsresp_ie_start,
  255. tfsresp_ie_end);
  256. } else if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_EXIT) {
  257. wnm_sleep_mode_exit_success(wpa_s, frm, key_len_total);
  258. }
  259. } else {
  260. wpa_printf(MSG_DEBUG, "Reject recv WNM-Sleep Response frame "
  261. "(action=%d, intval=%d)",
  262. wnmsleep_ie->action_type, wnmsleep_ie->intval);
  263. if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_ENTER)
  264. wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_ENTER_FAIL,
  265. wpa_s->bssid, NULL, NULL);
  266. else if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_EXIT)
  267. wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_EXIT_FAIL,
  268. wpa_s->bssid, NULL, NULL);
  269. }
  270. }
  271. void wnm_deallocate_memory(struct wpa_supplicant *wpa_s)
  272. {
  273. int i;
  274. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  275. os_free(wpa_s->wnm_neighbor_report_elements[i].meas_pilot);
  276. os_free(wpa_s->wnm_neighbor_report_elements[i].mul_bssid);
  277. }
  278. wpa_s->wnm_num_neighbor_report = 0;
  279. os_free(wpa_s->wnm_neighbor_report_elements);
  280. wpa_s->wnm_neighbor_report_elements = NULL;
  281. }
  282. static void wnm_parse_neighbor_report_elem(struct neighbor_report *rep,
  283. u8 id, u8 elen, const u8 *pos)
  284. {
  285. switch (id) {
  286. case WNM_NEIGHBOR_TSF:
  287. if (elen < 2 + 2) {
  288. wpa_printf(MSG_DEBUG, "WNM: Too short TSF");
  289. break;
  290. }
  291. rep->tsf_offset = WPA_GET_LE16(pos);
  292. rep->beacon_int = WPA_GET_LE16(pos + 2);
  293. rep->tsf_present = 1;
  294. break;
  295. case WNM_NEIGHBOR_CONDENSED_COUNTRY_STRING:
  296. if (elen < 2) {
  297. wpa_printf(MSG_DEBUG, "WNM: Too short condensed "
  298. "country string");
  299. break;
  300. }
  301. os_memcpy(rep->country, pos, 2);
  302. rep->country_present = 1;
  303. break;
  304. case WNM_NEIGHBOR_BSS_TRANSITION_CANDIDATE:
  305. if (elen < 1) {
  306. wpa_printf(MSG_DEBUG, "WNM: Too short BSS transition "
  307. "candidate");
  308. break;
  309. }
  310. rep->preference = pos[0];
  311. rep->preference_present = 1;
  312. break;
  313. case WNM_NEIGHBOR_BSS_TERMINATION_DURATION:
  314. rep->bss_term_tsf = WPA_GET_LE64(pos);
  315. rep->bss_term_dur = WPA_GET_LE16(pos + 8);
  316. rep->bss_term_present = 1;
  317. break;
  318. case WNM_NEIGHBOR_BEARING:
  319. if (elen < 8) {
  320. wpa_printf(MSG_DEBUG, "WNM: Too short neighbor "
  321. "bearing");
  322. break;
  323. }
  324. rep->bearing = WPA_GET_LE16(pos);
  325. rep->distance = WPA_GET_LE32(pos + 2);
  326. rep->rel_height = WPA_GET_LE16(pos + 2 + 4);
  327. rep->bearing_present = 1;
  328. break;
  329. case WNM_NEIGHBOR_MEASUREMENT_PILOT:
  330. if (elen < 1) {
  331. wpa_printf(MSG_DEBUG, "WNM: Too short measurement "
  332. "pilot");
  333. break;
  334. }
  335. os_free(rep->meas_pilot);
  336. rep->meas_pilot = os_zalloc(sizeof(struct measurement_pilot));
  337. if (rep->meas_pilot == NULL)
  338. break;
  339. rep->meas_pilot->measurement_pilot = pos[0];
  340. rep->meas_pilot->subelem_len = elen - 1;
  341. os_memcpy(rep->meas_pilot->subelems, pos + 1, elen - 1);
  342. break;
  343. case WNM_NEIGHBOR_RRM_ENABLED_CAPABILITIES:
  344. if (elen < 5) {
  345. wpa_printf(MSG_DEBUG, "WNM: Too short RRM enabled "
  346. "capabilities");
  347. break;
  348. }
  349. os_memcpy(rep->rm_capab, pos, 5);
  350. rep->rm_capab_present = 1;
  351. break;
  352. case WNM_NEIGHBOR_MULTIPLE_BSSID:
  353. if (elen < 1) {
  354. wpa_printf(MSG_DEBUG, "WNM: Too short multiple BSSID");
  355. break;
  356. }
  357. os_free(rep->mul_bssid);
  358. rep->mul_bssid = os_zalloc(sizeof(struct multiple_bssid));
  359. if (rep->mul_bssid == NULL)
  360. break;
  361. rep->mul_bssid->max_bssid_indicator = pos[0];
  362. rep->mul_bssid->subelem_len = elen - 1;
  363. os_memcpy(rep->mul_bssid->subelems, pos + 1, elen - 1);
  364. break;
  365. }
  366. }
  367. static int wnm_nei_get_chan(struct wpa_supplicant *wpa_s, u8 op_class, u8 chan)
  368. {
  369. return ieee80211_chan_to_freq(NULL, op_class, chan);
  370. }
  371. static void wnm_parse_neighbor_report(struct wpa_supplicant *wpa_s,
  372. const u8 *pos, u8 len,
  373. struct neighbor_report *rep)
  374. {
  375. u8 left = len;
  376. if (left < 13) {
  377. wpa_printf(MSG_DEBUG, "WNM: Too short neighbor report");
  378. return;
  379. }
  380. os_memcpy(rep->bssid, pos, ETH_ALEN);
  381. rep->bssid_info = WPA_GET_LE32(pos + ETH_ALEN);
  382. rep->regulatory_class = *(pos + 10);
  383. rep->channel_number = *(pos + 11);
  384. rep->phy_type = *(pos + 12);
  385. pos += 13;
  386. left -= 13;
  387. while (left >= 2) {
  388. u8 id, elen;
  389. id = *pos++;
  390. elen = *pos++;
  391. wpa_printf(MSG_DEBUG, "WNM: Subelement id=%u len=%u", id, elen);
  392. left -= 2;
  393. if (elen > left) {
  394. wpa_printf(MSG_DEBUG,
  395. "WNM: Truncated neighbor report subelement");
  396. break;
  397. }
  398. wnm_parse_neighbor_report_elem(rep, id, elen, pos);
  399. left -= elen;
  400. pos += elen;
  401. }
  402. rep->freq = wnm_nei_get_chan(wpa_s, rep->regulatory_class,
  403. rep->channel_number);
  404. }
  405. static struct wpa_bss *
  406. compare_scan_neighbor_results(struct wpa_supplicant *wpa_s)
  407. {
  408. u8 i;
  409. struct wpa_bss *bss = wpa_s->current_bss;
  410. struct wpa_bss *target;
  411. if (!bss)
  412. return 0;
  413. wpa_printf(MSG_DEBUG, "WNM: Current BSS " MACSTR " RSSI %d",
  414. MAC2STR(wpa_s->bssid), bss->level);
  415. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  416. struct neighbor_report *nei;
  417. nei = &wpa_s->wnm_neighbor_report_elements[i];
  418. if (nei->preference_present && nei->preference == 0) {
  419. wpa_printf(MSG_DEBUG, "Skip excluded BSS " MACSTR,
  420. MAC2STR(nei->bssid));
  421. continue;
  422. }
  423. target = wpa_bss_get_bssid(wpa_s, nei->bssid);
  424. if (!target) {
  425. wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR
  426. " (pref %d) not found in scan results",
  427. MAC2STR(nei->bssid),
  428. nei->preference_present ? nei->preference :
  429. -1);
  430. continue;
  431. }
  432. if (bss->ssid_len != target->ssid_len ||
  433. os_memcmp(bss->ssid, target->ssid, bss->ssid_len) != 0) {
  434. /*
  435. * TODO: Could consider allowing transition to another
  436. * ESS if PMF was enabled for the association.
  437. */
  438. wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR
  439. " (pref %d) in different ESS",
  440. MAC2STR(nei->bssid),
  441. nei->preference_present ? nei->preference :
  442. -1);
  443. continue;
  444. }
  445. if (target->level < bss->level && target->level < -80) {
  446. wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR
  447. " (pref %d) does not have sufficient signal level (%d)",
  448. MAC2STR(nei->bssid),
  449. nei->preference_present ? nei->preference :
  450. -1,
  451. target->level);
  452. continue;
  453. }
  454. wpa_printf(MSG_DEBUG,
  455. "WNM: Found an acceptable preferred transition candidate BSS "
  456. MACSTR " (RSSI %d)",
  457. MAC2STR(nei->bssid), target->level);
  458. return target;
  459. }
  460. return NULL;
  461. }
  462. static void wnm_send_bss_transition_mgmt_resp(
  463. struct wpa_supplicant *wpa_s, u8 dialog_token,
  464. enum bss_trans_mgmt_status_code status, u8 delay,
  465. const u8 *target_bssid)
  466. {
  467. u8 buf[1000], *pos;
  468. struct ieee80211_mgmt *mgmt;
  469. size_t len;
  470. wpa_printf(MSG_DEBUG, "WNM: Send BSS Transition Management Response "
  471. "to " MACSTR " dialog_token=%u status=%u delay=%d",
  472. MAC2STR(wpa_s->bssid), dialog_token, status, delay);
  473. if (!wpa_s->current_bss) {
  474. wpa_printf(MSG_DEBUG,
  475. "WNM: Current BSS not known - drop response");
  476. return;
  477. }
  478. mgmt = (struct ieee80211_mgmt *) buf;
  479. os_memset(&buf, 0, sizeof(buf));
  480. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  481. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  482. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  483. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  484. WLAN_FC_STYPE_ACTION);
  485. mgmt->u.action.category = WLAN_ACTION_WNM;
  486. mgmt->u.action.u.bss_tm_resp.action = WNM_BSS_TRANS_MGMT_RESP;
  487. mgmt->u.action.u.bss_tm_resp.dialog_token = dialog_token;
  488. mgmt->u.action.u.bss_tm_resp.status_code = status;
  489. mgmt->u.action.u.bss_tm_resp.bss_termination_delay = delay;
  490. pos = mgmt->u.action.u.bss_tm_resp.variable;
  491. if (target_bssid) {
  492. os_memcpy(pos, target_bssid, ETH_ALEN);
  493. pos += ETH_ALEN;
  494. } else if (status == WNM_BSS_TM_ACCEPT) {
  495. /*
  496. * P802.11-REVmc clarifies that the Target BSSID field is always
  497. * present when status code is zero, so use a fake value here if
  498. * no BSSID is yet known.
  499. */
  500. os_memset(pos, 0, ETH_ALEN);
  501. pos += ETH_ALEN;
  502. }
  503. len = pos - (u8 *) &mgmt->u.action.category;
  504. wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  505. wpa_s->own_addr, wpa_s->bssid,
  506. &mgmt->u.action.category, len, 0);
  507. }
  508. int wnm_scan_process(struct wpa_supplicant *wpa_s, int reply_on_fail)
  509. {
  510. struct wpa_bss *bss;
  511. struct wpa_ssid *ssid = wpa_s->current_ssid;
  512. enum bss_trans_mgmt_status_code status = WNM_BSS_TM_REJECT_UNSPECIFIED;
  513. if (!wpa_s->wnm_neighbor_report_elements)
  514. return 0;
  515. if (os_reltime_before(&wpa_s->wnm_cand_valid_until,
  516. &wpa_s->scan_trigger_time)) {
  517. wpa_printf(MSG_DEBUG, "WNM: Previously stored BSS transition candidate list is not valid anymore - drop it");
  518. wnm_deallocate_memory(wpa_s);
  519. return 0;
  520. }
  521. if (!wpa_s->current_bss ||
  522. os_memcmp(wpa_s->wnm_cand_from_bss, wpa_s->current_bss->bssid,
  523. ETH_ALEN) != 0) {
  524. wpa_printf(MSG_DEBUG, "WNM: Stored BSS transition candidate list not from the current BSS - ignore it");
  525. return 0;
  526. }
  527. /* Compare the Neighbor Report and scan results */
  528. bss = compare_scan_neighbor_results(wpa_s);
  529. if (!bss) {
  530. wpa_printf(MSG_DEBUG, "WNM: No BSS transition candidate match found");
  531. status = WNM_BSS_TM_REJECT_NO_SUITABLE_CANDIDATES;
  532. goto send_bss_resp_fail;
  533. }
  534. /* Associate to the network */
  535. /* Send the BSS Management Response - Accept */
  536. if (wpa_s->wnm_reply) {
  537. wpa_s->wnm_reply = 0;
  538. wnm_send_bss_transition_mgmt_resp(wpa_s,
  539. wpa_s->wnm_dialog_token,
  540. WNM_BSS_TM_ACCEPT,
  541. 0, bss->bssid);
  542. }
  543. if (bss == wpa_s->current_bss) {
  544. wpa_printf(MSG_DEBUG,
  545. "WNM: Already associated with the preferred candidate");
  546. return 1;
  547. }
  548. wpa_s->reassociate = 1;
  549. wpa_supplicant_connect(wpa_s, bss, ssid);
  550. wnm_deallocate_memory(wpa_s);
  551. return 1;
  552. send_bss_resp_fail:
  553. if (!reply_on_fail)
  554. return 0;
  555. /* Send reject response for all the failures */
  556. if (wpa_s->wnm_reply) {
  557. wpa_s->wnm_reply = 0;
  558. wnm_send_bss_transition_mgmt_resp(wpa_s,
  559. wpa_s->wnm_dialog_token,
  560. status, 0, NULL);
  561. }
  562. wnm_deallocate_memory(wpa_s);
  563. return 0;
  564. }
  565. static int cand_pref_compar(const void *a, const void *b)
  566. {
  567. const struct neighbor_report *aa = a;
  568. const struct neighbor_report *bb = b;
  569. if (!aa->preference_present && !bb->preference_present)
  570. return 0;
  571. if (!aa->preference_present)
  572. return 1;
  573. if (!bb->preference_present)
  574. return -1;
  575. if (bb->preference > aa->preference)
  576. return 1;
  577. if (bb->preference < aa->preference)
  578. return -1;
  579. return 0;
  580. }
  581. static void wnm_sort_cand_list(struct wpa_supplicant *wpa_s)
  582. {
  583. if (!wpa_s->wnm_neighbor_report_elements)
  584. return;
  585. qsort(wpa_s->wnm_neighbor_report_elements,
  586. wpa_s->wnm_num_neighbor_report, sizeof(struct neighbor_report),
  587. cand_pref_compar);
  588. }
  589. static void wnm_dump_cand_list(struct wpa_supplicant *wpa_s)
  590. {
  591. unsigned int i;
  592. wpa_printf(MSG_DEBUG, "WNM: BSS Transition Candidate List");
  593. if (!wpa_s->wnm_neighbor_report_elements)
  594. return;
  595. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  596. struct neighbor_report *nei;
  597. nei = &wpa_s->wnm_neighbor_report_elements[i];
  598. wpa_printf(MSG_DEBUG, "%u: " MACSTR
  599. " info=0x%x op_class=%u chan=%u phy=%u pref=%d freq=%d",
  600. i, MAC2STR(nei->bssid), nei->bssid_info,
  601. nei->regulatory_class,
  602. nei->channel_number, nei->phy_type,
  603. nei->preference_present ? nei->preference : -1,
  604. nei->freq);
  605. }
  606. }
  607. static int chan_supported(struct wpa_supplicant *wpa_s, int freq)
  608. {
  609. unsigned int i;
  610. for (i = 0; i < wpa_s->hw.num_modes; i++) {
  611. struct hostapd_hw_modes *mode = &wpa_s->hw.modes[i];
  612. int j;
  613. for (j = 0; j < mode->num_channels; j++) {
  614. struct hostapd_channel_data *chan;
  615. chan = &mode->channels[j];
  616. if (chan->freq == freq &&
  617. !(chan->flag & HOSTAPD_CHAN_DISABLED))
  618. return 1;
  619. }
  620. }
  621. return 0;
  622. }
  623. static void wnm_set_scan_freqs(struct wpa_supplicant *wpa_s)
  624. {
  625. int *freqs;
  626. int num_freqs = 0;
  627. unsigned int i;
  628. if (!wpa_s->wnm_neighbor_report_elements)
  629. return;
  630. if (wpa_s->hw.modes == NULL)
  631. return;
  632. os_free(wpa_s->next_scan_freqs);
  633. wpa_s->next_scan_freqs = NULL;
  634. freqs = os_calloc(wpa_s->wnm_num_neighbor_report + 1, sizeof(int));
  635. if (freqs == NULL)
  636. return;
  637. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  638. struct neighbor_report *nei;
  639. nei = &wpa_s->wnm_neighbor_report_elements[i];
  640. if (nei->freq <= 0) {
  641. wpa_printf(MSG_DEBUG,
  642. "WNM: Unknown neighbor operating frequency for "
  643. MACSTR " - scan all channels",
  644. MAC2STR(nei->bssid));
  645. os_free(freqs);
  646. return;
  647. }
  648. if (chan_supported(wpa_s, nei->freq))
  649. add_freq(freqs, &num_freqs, nei->freq);
  650. }
  651. if (num_freqs == 0) {
  652. os_free(freqs);
  653. return;
  654. }
  655. wpa_printf(MSG_DEBUG,
  656. "WNM: Scan %d frequencies based on transition candidate list",
  657. num_freqs);
  658. wpa_s->next_scan_freqs = freqs;
  659. }
  660. static void ieee802_11_rx_bss_trans_mgmt_req(struct wpa_supplicant *wpa_s,
  661. const u8 *pos, const u8 *end,
  662. int reply)
  663. {
  664. unsigned int beacon_int;
  665. u8 valid_int;
  666. if (pos + 5 > end)
  667. return;
  668. if (wpa_s->current_bss)
  669. beacon_int = wpa_s->current_bss->beacon_int;
  670. else
  671. beacon_int = 100; /* best guess */
  672. wpa_s->wnm_dialog_token = pos[0];
  673. wpa_s->wnm_mode = pos[1];
  674. wpa_s->wnm_dissoc_timer = WPA_GET_LE16(pos + 2);
  675. valid_int = pos[4];
  676. wpa_s->wnm_reply = reply;
  677. wpa_printf(MSG_DEBUG, "WNM: BSS Transition Management Request: "
  678. "dialog_token=%u request_mode=0x%x "
  679. "disassoc_timer=%u validity_interval=%u",
  680. wpa_s->wnm_dialog_token, wpa_s->wnm_mode,
  681. wpa_s->wnm_dissoc_timer, valid_int);
  682. pos += 5;
  683. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_BSS_TERMINATION_INCLUDED) {
  684. if (pos + 12 > end) {
  685. wpa_printf(MSG_DEBUG, "WNM: Too short BSS TM Request");
  686. return;
  687. }
  688. os_memcpy(wpa_s->wnm_bss_termination_duration, pos, 12);
  689. pos += 12; /* BSS Termination Duration */
  690. }
  691. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT) {
  692. char url[256];
  693. if (pos + 1 > end || pos + 1 + pos[0] > end) {
  694. wpa_printf(MSG_DEBUG, "WNM: Invalid BSS Transition "
  695. "Management Request (URL)");
  696. return;
  697. }
  698. os_memcpy(url, pos + 1, pos[0]);
  699. url[pos[0]] = '\0';
  700. pos += 1 + pos[0];
  701. wpa_msg(wpa_s, MSG_INFO, ESS_DISASSOC_IMMINENT "%d %u %s",
  702. wpa_sm_pmf_enabled(wpa_s->wpa),
  703. wpa_s->wnm_dissoc_timer * beacon_int * 128 / 125, url);
  704. }
  705. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_DISASSOC_IMMINENT) {
  706. wpa_msg(wpa_s, MSG_INFO, "WNM: Disassociation Imminent - "
  707. "Disassociation Timer %u", wpa_s->wnm_dissoc_timer);
  708. if (wpa_s->wnm_dissoc_timer && !wpa_s->scanning) {
  709. /* TODO: mark current BSS less preferred for
  710. * selection */
  711. wpa_printf(MSG_DEBUG, "Trying to find another BSS");
  712. wpa_supplicant_req_scan(wpa_s, 0, 0);
  713. }
  714. }
  715. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_PREF_CAND_LIST_INCLUDED) {
  716. unsigned int valid_ms;
  717. wpa_msg(wpa_s, MSG_INFO, "WNM: Preferred List Available");
  718. wnm_deallocate_memory(wpa_s);
  719. wpa_s->wnm_neighbor_report_elements = os_zalloc(
  720. WNM_MAX_NEIGHBOR_REPORT *
  721. sizeof(struct neighbor_report));
  722. if (wpa_s->wnm_neighbor_report_elements == NULL)
  723. return;
  724. while (pos + 2 <= end &&
  725. wpa_s->wnm_num_neighbor_report < WNM_MAX_NEIGHBOR_REPORT)
  726. {
  727. u8 tag = *pos++;
  728. u8 len = *pos++;
  729. wpa_printf(MSG_DEBUG, "WNM: Neighbor report tag %u",
  730. tag);
  731. if (pos + len > end) {
  732. wpa_printf(MSG_DEBUG, "WNM: Truncated request");
  733. return;
  734. }
  735. if (tag == WLAN_EID_NEIGHBOR_REPORT) {
  736. struct neighbor_report *rep;
  737. rep = &wpa_s->wnm_neighbor_report_elements[
  738. wpa_s->wnm_num_neighbor_report];
  739. wnm_parse_neighbor_report(wpa_s, pos, len, rep);
  740. }
  741. pos += len;
  742. wpa_s->wnm_num_neighbor_report++;
  743. }
  744. wnm_sort_cand_list(wpa_s);
  745. wnm_dump_cand_list(wpa_s);
  746. valid_ms = valid_int * beacon_int * 128 / 125;
  747. wpa_printf(MSG_DEBUG, "WNM: Candidate list valid for %u ms",
  748. valid_ms);
  749. os_get_reltime(&wpa_s->wnm_cand_valid_until);
  750. wpa_s->wnm_cand_valid_until.sec += valid_ms / 1000;
  751. wpa_s->wnm_cand_valid_until.usec += (valid_ms % 1000) * 1000;
  752. wpa_s->wnm_cand_valid_until.sec +=
  753. wpa_s->wnm_cand_valid_until.usec / 1000000;
  754. wpa_s->wnm_cand_valid_until.usec %= 1000000;
  755. os_memcpy(wpa_s->wnm_cand_from_bss, wpa_s->bssid, ETH_ALEN);
  756. if (wpa_s->last_scan_res_used > 0) {
  757. struct os_reltime now;
  758. os_get_reltime(&now);
  759. if (!os_reltime_expired(&now, &wpa_s->last_scan, 10)) {
  760. wpa_printf(MSG_DEBUG,
  761. "WNM: Try to use recent scan results");
  762. if (wnm_scan_process(wpa_s, 0) > 0)
  763. return;
  764. wpa_printf(MSG_DEBUG,
  765. "WNM: No match in previous scan results - try a new scan");
  766. }
  767. }
  768. wnm_set_scan_freqs(wpa_s);
  769. wpa_supplicant_req_scan(wpa_s, 0, 0);
  770. } else if (reply) {
  771. enum bss_trans_mgmt_status_code status;
  772. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT)
  773. status = WNM_BSS_TM_ACCEPT;
  774. else {
  775. wpa_msg(wpa_s, MSG_INFO, "WNM: BSS Transition Management Request did not include candidates");
  776. status = WNM_BSS_TM_REJECT_UNSPECIFIED;
  777. }
  778. wnm_send_bss_transition_mgmt_resp(wpa_s,
  779. wpa_s->wnm_dialog_token,
  780. status, 0, NULL);
  781. }
  782. }
  783. int wnm_send_bss_transition_mgmt_query(struct wpa_supplicant *wpa_s,
  784. u8 query_reason)
  785. {
  786. u8 buf[1000], *pos;
  787. struct ieee80211_mgmt *mgmt;
  788. size_t len;
  789. int ret;
  790. wpa_printf(MSG_DEBUG, "WNM: Send BSS Transition Management Query to "
  791. MACSTR " query_reason=%u",
  792. MAC2STR(wpa_s->bssid), query_reason);
  793. mgmt = (struct ieee80211_mgmt *) buf;
  794. os_memset(&buf, 0, sizeof(buf));
  795. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  796. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  797. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  798. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  799. WLAN_FC_STYPE_ACTION);
  800. mgmt->u.action.category = WLAN_ACTION_WNM;
  801. mgmt->u.action.u.bss_tm_query.action = WNM_BSS_TRANS_MGMT_QUERY;
  802. mgmt->u.action.u.bss_tm_query.dialog_token = 1;
  803. mgmt->u.action.u.bss_tm_query.query_reason = query_reason;
  804. pos = mgmt->u.action.u.bss_tm_query.variable;
  805. len = pos - (u8 *) &mgmt->u.action.category;
  806. ret = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  807. wpa_s->own_addr, wpa_s->bssid,
  808. &mgmt->u.action.category, len, 0);
  809. return ret;
  810. }
  811. static void ieee802_11_rx_wnm_notif_req_wfa(struct wpa_supplicant *wpa_s,
  812. const u8 *sa, const u8 *data,
  813. int len)
  814. {
  815. const u8 *pos, *end, *next;
  816. u8 ie, ie_len;
  817. pos = data;
  818. end = data + len;
  819. while (pos + 1 < end) {
  820. ie = *pos++;
  821. ie_len = *pos++;
  822. wpa_printf(MSG_DEBUG, "WNM: WFA subelement %u len %u",
  823. ie, ie_len);
  824. if (ie_len > end - pos) {
  825. wpa_printf(MSG_DEBUG, "WNM: Not enough room for "
  826. "subelement");
  827. break;
  828. }
  829. next = pos + ie_len;
  830. if (ie_len < 4) {
  831. pos = next;
  832. continue;
  833. }
  834. wpa_printf(MSG_DEBUG, "WNM: Subelement OUI %06x type %u",
  835. WPA_GET_BE24(pos), pos[3]);
  836. #ifdef CONFIG_HS20
  837. if (ie == WLAN_EID_VENDOR_SPECIFIC && ie_len >= 5 &&
  838. WPA_GET_BE24(pos) == OUI_WFA &&
  839. pos[3] == HS20_WNM_SUB_REM_NEEDED) {
  840. /* Subscription Remediation subelement */
  841. const u8 *ie_end;
  842. u8 url_len;
  843. char *url;
  844. u8 osu_method;
  845. wpa_printf(MSG_DEBUG, "WNM: Subscription Remediation "
  846. "subelement");
  847. ie_end = pos + ie_len;
  848. pos += 4;
  849. url_len = *pos++;
  850. if (url_len == 0) {
  851. wpa_printf(MSG_DEBUG, "WNM: No Server URL included");
  852. url = NULL;
  853. osu_method = 1;
  854. } else {
  855. if (pos + url_len + 1 > ie_end) {
  856. wpa_printf(MSG_DEBUG, "WNM: Not enough room for Server URL (len=%u) and Server Method (left %d)",
  857. url_len,
  858. (int) (ie_end - pos));
  859. break;
  860. }
  861. url = os_malloc(url_len + 1);
  862. if (url == NULL)
  863. break;
  864. os_memcpy(url, pos, url_len);
  865. url[url_len] = '\0';
  866. osu_method = pos[url_len];
  867. }
  868. hs20_rx_subscription_remediation(wpa_s, url,
  869. osu_method);
  870. os_free(url);
  871. pos = next;
  872. continue;
  873. }
  874. if (ie == WLAN_EID_VENDOR_SPECIFIC && ie_len >= 8 &&
  875. WPA_GET_BE24(pos) == OUI_WFA &&
  876. pos[3] == HS20_WNM_DEAUTH_IMMINENT_NOTICE) {
  877. const u8 *ie_end;
  878. u8 url_len;
  879. char *url;
  880. u8 code;
  881. u16 reauth_delay;
  882. ie_end = pos + ie_len;
  883. pos += 4;
  884. code = *pos++;
  885. reauth_delay = WPA_GET_LE16(pos);
  886. pos += 2;
  887. url_len = *pos++;
  888. wpa_printf(MSG_DEBUG, "WNM: HS 2.0 Deauthentication "
  889. "Imminent - Reason Code %u "
  890. "Re-Auth Delay %u URL Length %u",
  891. code, reauth_delay, url_len);
  892. if (pos + url_len > ie_end)
  893. break;
  894. url = os_malloc(url_len + 1);
  895. if (url == NULL)
  896. break;
  897. os_memcpy(url, pos, url_len);
  898. url[url_len] = '\0';
  899. hs20_rx_deauth_imminent_notice(wpa_s, code,
  900. reauth_delay, url);
  901. os_free(url);
  902. pos = next;
  903. continue;
  904. }
  905. #endif /* CONFIG_HS20 */
  906. pos = next;
  907. }
  908. }
  909. static void ieee802_11_rx_wnm_notif_req(struct wpa_supplicant *wpa_s,
  910. const u8 *sa, const u8 *frm, int len)
  911. {
  912. const u8 *pos, *end;
  913. u8 dialog_token, type;
  914. /* Dialog Token [1] | Type [1] | Subelements */
  915. if (len < 2 || sa == NULL)
  916. return;
  917. end = frm + len;
  918. pos = frm;
  919. dialog_token = *pos++;
  920. type = *pos++;
  921. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: Received WNM-Notification Request "
  922. "(dialog_token %u type %u sa " MACSTR ")",
  923. dialog_token, type, MAC2STR(sa));
  924. wpa_hexdump(MSG_DEBUG, "WNM-Notification Request subelements",
  925. pos, end - pos);
  926. if (wpa_s->wpa_state != WPA_COMPLETED ||
  927. os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0) {
  928. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: WNM-Notification frame not "
  929. "from our AP - ignore it");
  930. return;
  931. }
  932. switch (type) {
  933. case 1:
  934. ieee802_11_rx_wnm_notif_req_wfa(wpa_s, sa, pos, end - pos);
  935. break;
  936. default:
  937. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: Ignore unknown "
  938. "WNM-Notification type %u", type);
  939. break;
  940. }
  941. }
  942. void ieee802_11_rx_wnm_action(struct wpa_supplicant *wpa_s,
  943. const struct ieee80211_mgmt *mgmt, size_t len)
  944. {
  945. const u8 *pos, *end;
  946. u8 act;
  947. if (len < IEEE80211_HDRLEN + 2)
  948. return;
  949. pos = ((const u8 *) mgmt) + IEEE80211_HDRLEN + 1;
  950. act = *pos++;
  951. end = ((const u8 *) mgmt) + len;
  952. wpa_printf(MSG_DEBUG, "WNM: RX action %u from " MACSTR,
  953. act, MAC2STR(mgmt->sa));
  954. if (wpa_s->wpa_state < WPA_ASSOCIATED ||
  955. os_memcmp(mgmt->sa, wpa_s->bssid, ETH_ALEN) != 0) {
  956. wpa_printf(MSG_DEBUG, "WNM: Ignore unexpected WNM Action "
  957. "frame");
  958. return;
  959. }
  960. switch (act) {
  961. case WNM_BSS_TRANS_MGMT_REQ:
  962. ieee802_11_rx_bss_trans_mgmt_req(wpa_s, pos, end,
  963. !(mgmt->da[0] & 0x01));
  964. break;
  965. case WNM_SLEEP_MODE_RESP:
  966. ieee802_11_rx_wnmsleep_resp(wpa_s, pos, end - pos);
  967. break;
  968. case WNM_NOTIFICATION_REQ:
  969. ieee802_11_rx_wnm_notif_req(wpa_s, mgmt->sa, pos, end - pos);
  970. break;
  971. default:
  972. wpa_printf(MSG_ERROR, "WNM: Unknown request");
  973. break;
  974. }
  975. }