wnm_sta.c 30 KB

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