wnm_sta.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113
  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)
  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 reject response for all the failures */
  553. send_bss_resp_fail:
  554. if (wpa_s->wnm_reply) {
  555. wpa_s->wnm_reply = 0;
  556. wnm_send_bss_transition_mgmt_resp(wpa_s,
  557. wpa_s->wnm_dialog_token,
  558. status, 0, NULL);
  559. }
  560. wnm_deallocate_memory(wpa_s);
  561. return 0;
  562. }
  563. static int cand_pref_compar(const void *a, const void *b)
  564. {
  565. const struct neighbor_report *aa = a;
  566. const struct neighbor_report *bb = b;
  567. if (!aa->preference_present && !bb->preference_present)
  568. return 0;
  569. if (!aa->preference_present)
  570. return 1;
  571. if (!bb->preference_present)
  572. return -1;
  573. if (bb->preference > aa->preference)
  574. return 1;
  575. if (bb->preference < aa->preference)
  576. return -1;
  577. return 0;
  578. }
  579. static void wnm_sort_cand_list(struct wpa_supplicant *wpa_s)
  580. {
  581. if (!wpa_s->wnm_neighbor_report_elements)
  582. return;
  583. qsort(wpa_s->wnm_neighbor_report_elements,
  584. wpa_s->wnm_num_neighbor_report, sizeof(struct neighbor_report),
  585. cand_pref_compar);
  586. }
  587. static void wnm_dump_cand_list(struct wpa_supplicant *wpa_s)
  588. {
  589. unsigned int i;
  590. wpa_printf(MSG_DEBUG, "WNM: BSS Transition Candidate List");
  591. if (!wpa_s->wnm_neighbor_report_elements)
  592. return;
  593. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  594. struct neighbor_report *nei;
  595. nei = &wpa_s->wnm_neighbor_report_elements[i];
  596. wpa_printf(MSG_DEBUG, "%u: " MACSTR
  597. " info=0x%x op_class=%u chan=%u phy=%u pref=%d freq=%d",
  598. i, MAC2STR(nei->bssid), nei->bssid_info,
  599. nei->regulatory_class,
  600. nei->channel_number, nei->phy_type,
  601. nei->preference_present ? nei->preference : -1,
  602. nei->freq);
  603. }
  604. }
  605. static int chan_supported(struct wpa_supplicant *wpa_s, int freq)
  606. {
  607. unsigned int i;
  608. for (i = 0; i < wpa_s->hw.num_modes; i++) {
  609. struct hostapd_hw_modes *mode = &wpa_s->hw.modes[i];
  610. int j;
  611. for (j = 0; j < mode->num_channels; j++) {
  612. struct hostapd_channel_data *chan;
  613. chan = &mode->channels[j];
  614. if (chan->freq == freq &&
  615. !(chan->flag & HOSTAPD_CHAN_DISABLED))
  616. return 1;
  617. }
  618. }
  619. return 0;
  620. }
  621. static void wnm_set_scan_freqs(struct wpa_supplicant *wpa_s)
  622. {
  623. int *freqs;
  624. int num_freqs = 0;
  625. unsigned int i;
  626. if (!wpa_s->wnm_neighbor_report_elements)
  627. return;
  628. if (wpa_s->hw.modes == NULL)
  629. return;
  630. os_free(wpa_s->next_scan_freqs);
  631. wpa_s->next_scan_freqs = NULL;
  632. freqs = os_calloc(wpa_s->wnm_num_neighbor_report + 1, sizeof(int));
  633. if (freqs == NULL)
  634. return;
  635. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  636. struct neighbor_report *nei;
  637. nei = &wpa_s->wnm_neighbor_report_elements[i];
  638. if (nei->freq <= 0) {
  639. wpa_printf(MSG_DEBUG,
  640. "WNM: Unknown neighbor operating frequency for "
  641. MACSTR " - scan all channels",
  642. MAC2STR(nei->bssid));
  643. os_free(freqs);
  644. return;
  645. }
  646. if (chan_supported(wpa_s, nei->freq))
  647. add_freq(freqs, &num_freqs, nei->freq);
  648. }
  649. if (num_freqs == 0) {
  650. os_free(freqs);
  651. return;
  652. }
  653. wpa_printf(MSG_DEBUG,
  654. "WNM: Scan %d frequencies based on transition candidate list",
  655. num_freqs);
  656. wpa_s->next_scan_freqs = freqs;
  657. }
  658. static void ieee802_11_rx_bss_trans_mgmt_req(struct wpa_supplicant *wpa_s,
  659. const u8 *pos, const u8 *end,
  660. int reply)
  661. {
  662. unsigned int beacon_int;
  663. u8 valid_int;
  664. if (pos + 5 > end)
  665. return;
  666. if (wpa_s->current_bss)
  667. beacon_int = wpa_s->current_bss->beacon_int;
  668. else
  669. beacon_int = 100; /* best guess */
  670. wpa_s->wnm_dialog_token = pos[0];
  671. wpa_s->wnm_mode = pos[1];
  672. wpa_s->wnm_dissoc_timer = WPA_GET_LE16(pos + 2);
  673. valid_int = pos[4];
  674. wpa_s->wnm_reply = reply;
  675. wpa_printf(MSG_DEBUG, "WNM: BSS Transition Management Request: "
  676. "dialog_token=%u request_mode=0x%x "
  677. "disassoc_timer=%u validity_interval=%u",
  678. wpa_s->wnm_dialog_token, wpa_s->wnm_mode,
  679. wpa_s->wnm_dissoc_timer, valid_int);
  680. pos += 5;
  681. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_BSS_TERMINATION_INCLUDED) {
  682. if (pos + 12 > end) {
  683. wpa_printf(MSG_DEBUG, "WNM: Too short BSS TM Request");
  684. return;
  685. }
  686. os_memcpy(wpa_s->wnm_bss_termination_duration, pos, 12);
  687. pos += 12; /* BSS Termination Duration */
  688. }
  689. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT) {
  690. char url[256];
  691. if (pos + 1 > end || pos + 1 + pos[0] > end) {
  692. wpa_printf(MSG_DEBUG, "WNM: Invalid BSS Transition "
  693. "Management Request (URL)");
  694. return;
  695. }
  696. os_memcpy(url, pos + 1, pos[0]);
  697. url[pos[0]] = '\0';
  698. pos += 1 + pos[0];
  699. wpa_msg(wpa_s, MSG_INFO, ESS_DISASSOC_IMMINENT "%d %u %s",
  700. wpa_sm_pmf_enabled(wpa_s->wpa),
  701. wpa_s->wnm_dissoc_timer * beacon_int * 128 / 125, url);
  702. }
  703. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_DISASSOC_IMMINENT) {
  704. wpa_msg(wpa_s, MSG_INFO, "WNM: Disassociation Imminent - "
  705. "Disassociation Timer %u", wpa_s->wnm_dissoc_timer);
  706. if (wpa_s->wnm_dissoc_timer && !wpa_s->scanning) {
  707. /* TODO: mark current BSS less preferred for
  708. * selection */
  709. wpa_printf(MSG_DEBUG, "Trying to find another BSS");
  710. wpa_supplicant_req_scan(wpa_s, 0, 0);
  711. }
  712. }
  713. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_PREF_CAND_LIST_INCLUDED) {
  714. unsigned int valid_ms;
  715. wpa_msg(wpa_s, MSG_INFO, "WNM: Preferred List Available");
  716. wnm_deallocate_memory(wpa_s);
  717. wpa_s->wnm_neighbor_report_elements = os_zalloc(
  718. WNM_MAX_NEIGHBOR_REPORT *
  719. sizeof(struct neighbor_report));
  720. if (wpa_s->wnm_neighbor_report_elements == NULL)
  721. return;
  722. while (pos + 2 <= end &&
  723. wpa_s->wnm_num_neighbor_report < WNM_MAX_NEIGHBOR_REPORT)
  724. {
  725. u8 tag = *pos++;
  726. u8 len = *pos++;
  727. wpa_printf(MSG_DEBUG, "WNM: Neighbor report tag %u",
  728. tag);
  729. if (pos + len > end) {
  730. wpa_printf(MSG_DEBUG, "WNM: Truncated request");
  731. return;
  732. }
  733. if (tag == WLAN_EID_NEIGHBOR_REPORT) {
  734. struct neighbor_report *rep;
  735. rep = &wpa_s->wnm_neighbor_report_elements[
  736. wpa_s->wnm_num_neighbor_report];
  737. wnm_parse_neighbor_report(wpa_s, pos, len, rep);
  738. }
  739. pos += len;
  740. wpa_s->wnm_num_neighbor_report++;
  741. }
  742. wnm_sort_cand_list(wpa_s);
  743. wnm_dump_cand_list(wpa_s);
  744. valid_ms = valid_int * beacon_int * 128 / 125;
  745. wpa_printf(MSG_DEBUG, "WNM: Candidate list valid for %u ms",
  746. valid_ms);
  747. os_get_reltime(&wpa_s->wnm_cand_valid_until);
  748. wpa_s->wnm_cand_valid_until.sec += valid_ms / 1000;
  749. wpa_s->wnm_cand_valid_until.usec += (valid_ms % 1000) * 1000;
  750. wpa_s->wnm_cand_valid_until.sec +=
  751. wpa_s->wnm_cand_valid_until.usec / 1000000;
  752. wpa_s->wnm_cand_valid_until.usec %= 1000000;
  753. os_memcpy(wpa_s->wnm_cand_from_bss, wpa_s->bssid, ETH_ALEN);
  754. wnm_set_scan_freqs(wpa_s);
  755. wpa_supplicant_req_scan(wpa_s, 0, 0);
  756. } else if (reply) {
  757. enum bss_trans_mgmt_status_code status;
  758. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT)
  759. status = WNM_BSS_TM_ACCEPT;
  760. else {
  761. wpa_msg(wpa_s, MSG_INFO, "WNM: BSS Transition Management Request did not include candidates");
  762. status = WNM_BSS_TM_REJECT_UNSPECIFIED;
  763. }
  764. wnm_send_bss_transition_mgmt_resp(wpa_s,
  765. wpa_s->wnm_dialog_token,
  766. status, 0, NULL);
  767. }
  768. }
  769. int wnm_send_bss_transition_mgmt_query(struct wpa_supplicant *wpa_s,
  770. u8 query_reason)
  771. {
  772. u8 buf[1000], *pos;
  773. struct ieee80211_mgmt *mgmt;
  774. size_t len;
  775. int ret;
  776. wpa_printf(MSG_DEBUG, "WNM: Send BSS Transition Management Query to "
  777. MACSTR " query_reason=%u",
  778. MAC2STR(wpa_s->bssid), query_reason);
  779. mgmt = (struct ieee80211_mgmt *) buf;
  780. os_memset(&buf, 0, sizeof(buf));
  781. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  782. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  783. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  784. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  785. WLAN_FC_STYPE_ACTION);
  786. mgmt->u.action.category = WLAN_ACTION_WNM;
  787. mgmt->u.action.u.bss_tm_query.action = WNM_BSS_TRANS_MGMT_QUERY;
  788. mgmt->u.action.u.bss_tm_query.dialog_token = 1;
  789. mgmt->u.action.u.bss_tm_query.query_reason = query_reason;
  790. pos = mgmt->u.action.u.bss_tm_query.variable;
  791. len = pos - (u8 *) &mgmt->u.action.category;
  792. ret = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  793. wpa_s->own_addr, wpa_s->bssid,
  794. &mgmt->u.action.category, len, 0);
  795. return ret;
  796. }
  797. static void ieee802_11_rx_wnm_notif_req_wfa(struct wpa_supplicant *wpa_s,
  798. const u8 *sa, const u8 *data,
  799. int len)
  800. {
  801. const u8 *pos, *end, *next;
  802. u8 ie, ie_len;
  803. pos = data;
  804. end = data + len;
  805. while (pos + 1 < end) {
  806. ie = *pos++;
  807. ie_len = *pos++;
  808. wpa_printf(MSG_DEBUG, "WNM: WFA subelement %u len %u",
  809. ie, ie_len);
  810. if (ie_len > end - pos) {
  811. wpa_printf(MSG_DEBUG, "WNM: Not enough room for "
  812. "subelement");
  813. break;
  814. }
  815. next = pos + ie_len;
  816. if (ie_len < 4) {
  817. pos = next;
  818. continue;
  819. }
  820. wpa_printf(MSG_DEBUG, "WNM: Subelement OUI %06x type %u",
  821. WPA_GET_BE24(pos), pos[3]);
  822. #ifdef CONFIG_HS20
  823. if (ie == WLAN_EID_VENDOR_SPECIFIC && ie_len >= 5 &&
  824. WPA_GET_BE24(pos) == OUI_WFA &&
  825. pos[3] == HS20_WNM_SUB_REM_NEEDED) {
  826. /* Subscription Remediation subelement */
  827. const u8 *ie_end;
  828. u8 url_len;
  829. char *url;
  830. u8 osu_method;
  831. wpa_printf(MSG_DEBUG, "WNM: Subscription Remediation "
  832. "subelement");
  833. ie_end = pos + ie_len;
  834. pos += 4;
  835. url_len = *pos++;
  836. if (url_len == 0) {
  837. wpa_printf(MSG_DEBUG, "WNM: No Server URL included");
  838. url = NULL;
  839. osu_method = 1;
  840. } else {
  841. if (pos + url_len + 1 > ie_end) {
  842. wpa_printf(MSG_DEBUG, "WNM: Not enough room for Server URL (len=%u) and Server Method (left %d)",
  843. url_len,
  844. (int) (ie_end - pos));
  845. break;
  846. }
  847. url = os_malloc(url_len + 1);
  848. if (url == NULL)
  849. break;
  850. os_memcpy(url, pos, url_len);
  851. url[url_len] = '\0';
  852. osu_method = pos[url_len];
  853. }
  854. hs20_rx_subscription_remediation(wpa_s, url,
  855. osu_method);
  856. os_free(url);
  857. pos = next;
  858. continue;
  859. }
  860. if (ie == WLAN_EID_VENDOR_SPECIFIC && ie_len >= 8 &&
  861. WPA_GET_BE24(pos) == OUI_WFA &&
  862. pos[3] == HS20_WNM_DEAUTH_IMMINENT_NOTICE) {
  863. const u8 *ie_end;
  864. u8 url_len;
  865. char *url;
  866. u8 code;
  867. u16 reauth_delay;
  868. ie_end = pos + ie_len;
  869. pos += 4;
  870. code = *pos++;
  871. reauth_delay = WPA_GET_LE16(pos);
  872. pos += 2;
  873. url_len = *pos++;
  874. wpa_printf(MSG_DEBUG, "WNM: HS 2.0 Deauthentication "
  875. "Imminent - Reason Code %u "
  876. "Re-Auth Delay %u URL Length %u",
  877. code, reauth_delay, url_len);
  878. if (pos + url_len > ie_end)
  879. break;
  880. url = os_malloc(url_len + 1);
  881. if (url == NULL)
  882. break;
  883. os_memcpy(url, pos, url_len);
  884. url[url_len] = '\0';
  885. hs20_rx_deauth_imminent_notice(wpa_s, code,
  886. reauth_delay, url);
  887. os_free(url);
  888. pos = next;
  889. continue;
  890. }
  891. #endif /* CONFIG_HS20 */
  892. pos = next;
  893. }
  894. }
  895. static void ieee802_11_rx_wnm_notif_req(struct wpa_supplicant *wpa_s,
  896. const u8 *sa, const u8 *frm, int len)
  897. {
  898. const u8 *pos, *end;
  899. u8 dialog_token, type;
  900. /* Dialog Token [1] | Type [1] | Subelements */
  901. if (len < 2 || sa == NULL)
  902. return;
  903. end = frm + len;
  904. pos = frm;
  905. dialog_token = *pos++;
  906. type = *pos++;
  907. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: Received WNM-Notification Request "
  908. "(dialog_token %u type %u sa " MACSTR ")",
  909. dialog_token, type, MAC2STR(sa));
  910. wpa_hexdump(MSG_DEBUG, "WNM-Notification Request subelements",
  911. pos, end - pos);
  912. if (wpa_s->wpa_state != WPA_COMPLETED ||
  913. os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0) {
  914. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: WNM-Notification frame not "
  915. "from our AP - ignore it");
  916. return;
  917. }
  918. switch (type) {
  919. case 1:
  920. ieee802_11_rx_wnm_notif_req_wfa(wpa_s, sa, pos, end - pos);
  921. break;
  922. default:
  923. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: Ignore unknown "
  924. "WNM-Notification type %u", type);
  925. break;
  926. }
  927. }
  928. void ieee802_11_rx_wnm_action(struct wpa_supplicant *wpa_s,
  929. const struct ieee80211_mgmt *mgmt, size_t len)
  930. {
  931. const u8 *pos, *end;
  932. u8 act;
  933. if (len < IEEE80211_HDRLEN + 2)
  934. return;
  935. pos = ((const u8 *) mgmt) + IEEE80211_HDRLEN + 1;
  936. act = *pos++;
  937. end = ((const u8 *) mgmt) + len;
  938. wpa_printf(MSG_DEBUG, "WNM: RX action %u from " MACSTR,
  939. act, MAC2STR(mgmt->sa));
  940. if (wpa_s->wpa_state < WPA_ASSOCIATED ||
  941. os_memcmp(mgmt->sa, wpa_s->bssid, ETH_ALEN) != 0) {
  942. wpa_printf(MSG_DEBUG, "WNM: Ignore unexpected WNM Action "
  943. "frame");
  944. return;
  945. }
  946. switch (act) {
  947. case WNM_BSS_TRANS_MGMT_REQ:
  948. ieee802_11_rx_bss_trans_mgmt_req(wpa_s, pos, end,
  949. !(mgmt->da[0] & 0x01));
  950. break;
  951. case WNM_SLEEP_MODE_RESP:
  952. ieee802_11_rx_wnmsleep_resp(wpa_s, pos, end - pos);
  953. break;
  954. case WNM_NOTIFICATION_REQ:
  955. ieee802_11_rx_wnm_notif_req(wpa_s, mgmt->sa, pos, end - pos);
  956. break;
  957. default:
  958. wpa_printf(MSG_ERROR, "WNM: Unknown request");
  959. break;
  960. }
  961. }