wnm_sta.c 31 KB

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