wnm_sta.c 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420
  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 (wpa_s->current_ssid &&
  483. !wpa_scan_res_match(wpa_s, 0, target, wpa_s->current_ssid,
  484. 1)) {
  485. wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR
  486. " (pref %d) does not match the current network profile",
  487. MAC2STR(nei->bssid),
  488. nei->preference_present ? nei->preference :
  489. -1);
  490. continue;
  491. }
  492. if (wpa_is_bss_tmp_disallowed(wpa_s, target->bssid)) {
  493. wpa_printf(MSG_DEBUG,
  494. "MBO: Candidate BSS " MACSTR
  495. " retry delay is not over yet",
  496. MAC2STR(nei->bssid));
  497. continue;
  498. }
  499. if (target->level < bss->level && target->level < -80) {
  500. wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR
  501. " (pref %d) does not have sufficient signal level (%d)",
  502. MAC2STR(nei->bssid),
  503. nei->preference_present ? nei->preference :
  504. -1,
  505. target->level);
  506. continue;
  507. }
  508. wpa_printf(MSG_DEBUG,
  509. "WNM: Found an acceptable preferred transition candidate BSS "
  510. MACSTR " (RSSI %d)",
  511. MAC2STR(nei->bssid), target->level);
  512. return target;
  513. }
  514. return NULL;
  515. }
  516. static int wpa_bss_ies_eq(struct wpa_bss *a, struct wpa_bss *b, u8 eid)
  517. {
  518. const u8 *ie_a, *ie_b;
  519. if (!a || !b)
  520. return 0;
  521. ie_a = wpa_bss_get_ie(a, eid);
  522. ie_b = wpa_bss_get_ie(b, eid);
  523. if (!ie_a || !ie_b || ie_a[1] != ie_b[1])
  524. return 0;
  525. return os_memcmp(ie_a, ie_b, ie_a[1]) == 0;
  526. }
  527. static u32 wnm_get_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  528. {
  529. u32 info = 0;
  530. info |= NEI_REP_BSSID_INFO_AP_UNKNOWN_REACH;
  531. /*
  532. * Leave the security and key scope bits unset to indicate that the
  533. * security information is not available.
  534. */
  535. if (bss->caps & WLAN_CAPABILITY_SPECTRUM_MGMT)
  536. info |= NEI_REP_BSSID_INFO_SPECTRUM_MGMT;
  537. if (bss->caps & WLAN_CAPABILITY_QOS)
  538. info |= NEI_REP_BSSID_INFO_QOS;
  539. if (bss->caps & WLAN_CAPABILITY_APSD)
  540. info |= NEI_REP_BSSID_INFO_APSD;
  541. if (bss->caps & WLAN_CAPABILITY_RADIO_MEASUREMENT)
  542. info |= NEI_REP_BSSID_INFO_RM;
  543. if (bss->caps & WLAN_CAPABILITY_DELAYED_BLOCK_ACK)
  544. info |= NEI_REP_BSSID_INFO_DELAYED_BA;
  545. if (bss->caps & WLAN_CAPABILITY_IMM_BLOCK_ACK)
  546. info |= NEI_REP_BSSID_INFO_IMM_BA;
  547. if (wpa_bss_ies_eq(bss, wpa_s->current_bss, WLAN_EID_MOBILITY_DOMAIN))
  548. info |= NEI_REP_BSSID_INFO_MOBILITY_DOMAIN;
  549. if (wpa_bss_ies_eq(bss, wpa_s->current_bss, WLAN_EID_HT_CAP))
  550. info |= NEI_REP_BSSID_INFO_HT;
  551. return info;
  552. }
  553. static int wnm_add_nei_rep(u8 *buf, size_t len, const u8 *bssid, u32 bss_info,
  554. u8 op_class, u8 chan, u8 phy_type, u8 pref)
  555. {
  556. u8 *pos = buf;
  557. if (len < 18) {
  558. wpa_printf(MSG_DEBUG,
  559. "WNM: Not enough room for Neighbor Report element");
  560. return -1;
  561. }
  562. *pos++ = WLAN_EID_NEIGHBOR_REPORT;
  563. /* length: 13 for basic neighbor report + 3 for preference subelement */
  564. *pos++ = 16;
  565. os_memcpy(pos, bssid, ETH_ALEN);
  566. pos += ETH_ALEN;
  567. WPA_PUT_LE32(pos, bss_info);
  568. pos += 4;
  569. *pos++ = op_class;
  570. *pos++ = chan;
  571. *pos++ = phy_type;
  572. *pos++ = WNM_NEIGHBOR_BSS_TRANSITION_CANDIDATE;
  573. *pos++ = 1;
  574. *pos++ = pref;
  575. return pos - buf;
  576. }
  577. static int wnm_nei_rep_add_bss(struct wpa_supplicant *wpa_s,
  578. struct wpa_bss *bss, u8 *buf, size_t len,
  579. u8 pref)
  580. {
  581. const u8 *ie;
  582. u8 op_class, chan;
  583. int sec_chan = 0, vht = 0;
  584. enum phy_type phy_type;
  585. u32 info;
  586. struct ieee80211_ht_operation *ht_oper = NULL;
  587. struct ieee80211_vht_operation *vht_oper = NULL;
  588. ie = wpa_bss_get_ie(bss, WLAN_EID_HT_OPERATION);
  589. if (ie && ie[1] >= 2) {
  590. ht_oper = (struct ieee80211_ht_operation *) (ie + 2);
  591. if (ht_oper->ht_param & HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE)
  592. sec_chan = 1;
  593. else if (ht_oper->ht_param &
  594. HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW)
  595. sec_chan = -1;
  596. }
  597. ie = wpa_bss_get_ie(bss, WLAN_EID_VHT_OPERATION);
  598. if (ie && ie[1] >= 1) {
  599. vht_oper = (struct ieee80211_vht_operation *) (ie + 2);
  600. if (vht_oper->vht_op_info_chwidth == VHT_CHANWIDTH_80MHZ ||
  601. vht_oper->vht_op_info_chwidth == VHT_CHANWIDTH_160MHZ ||
  602. vht_oper->vht_op_info_chwidth == VHT_CHANWIDTH_80P80MHZ)
  603. vht = vht_oper->vht_op_info_chwidth;
  604. }
  605. if (ieee80211_freq_to_channel_ext(bss->freq, sec_chan, vht, &op_class,
  606. &chan) == NUM_HOSTAPD_MODES) {
  607. wpa_printf(MSG_DEBUG,
  608. "WNM: Cannot determine operating class and channel");
  609. return -2;
  610. }
  611. phy_type = ieee80211_get_phy_type(bss->freq, (ht_oper != NULL),
  612. (vht_oper != NULL));
  613. if (phy_type == PHY_TYPE_UNSPECIFIED) {
  614. wpa_printf(MSG_DEBUG,
  615. "WNM: Cannot determine BSS phy type for Neighbor Report");
  616. return -2;
  617. }
  618. info = wnm_get_bss_info(wpa_s, bss);
  619. return wnm_add_nei_rep(buf, len, bss->bssid, info, op_class, chan,
  620. phy_type, pref);
  621. }
  622. static int wnm_add_cand_list(struct wpa_supplicant *wpa_s, u8 *buf, size_t len)
  623. {
  624. u8 *pos = buf;
  625. unsigned int i, pref = 255;
  626. struct os_reltime now;
  627. struct wpa_ssid *ssid = wpa_s->current_ssid;
  628. if (!ssid)
  629. return 0;
  630. /*
  631. * TODO: Define when scan results are no longer valid for the candidate
  632. * list.
  633. */
  634. os_get_reltime(&now);
  635. if (os_reltime_expired(&now, &wpa_s->last_scan, 10))
  636. return 0;
  637. wpa_printf(MSG_DEBUG,
  638. "WNM: Add candidate list to BSS Transition Management Response frame");
  639. for (i = 0; i < wpa_s->last_scan_res_used && pref; i++) {
  640. struct wpa_bss *bss = wpa_s->last_scan_res[i];
  641. int res;
  642. if (wpa_scan_res_match(wpa_s, i, bss, ssid, 1)) {
  643. res = wnm_nei_rep_add_bss(wpa_s, bss, pos, len, pref--);
  644. if (res == -2)
  645. continue; /* could not build entry for BSS */
  646. if (res < 0)
  647. break; /* no more room for candidates */
  648. if (pref == 1)
  649. break;
  650. pos += res;
  651. len -= res;
  652. }
  653. }
  654. wpa_hexdump(MSG_DEBUG,
  655. "WNM: BSS Transition Management Response candidate list",
  656. buf, pos - buf);
  657. return pos - buf;
  658. }
  659. static void wnm_send_bss_transition_mgmt_resp(
  660. struct wpa_supplicant *wpa_s, u8 dialog_token,
  661. enum bss_trans_mgmt_status_code status, u8 delay,
  662. const u8 *target_bssid)
  663. {
  664. u8 buf[2000], *pos;
  665. struct ieee80211_mgmt *mgmt;
  666. size_t len;
  667. int res;
  668. wpa_printf(MSG_DEBUG, "WNM: Send BSS Transition Management Response "
  669. "to " MACSTR " dialog_token=%u status=%u delay=%d",
  670. MAC2STR(wpa_s->bssid), dialog_token, status, delay);
  671. if (!wpa_s->current_bss) {
  672. wpa_printf(MSG_DEBUG,
  673. "WNM: Current BSS not known - drop response");
  674. return;
  675. }
  676. mgmt = (struct ieee80211_mgmt *) buf;
  677. os_memset(&buf, 0, sizeof(buf));
  678. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  679. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  680. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  681. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  682. WLAN_FC_STYPE_ACTION);
  683. mgmt->u.action.category = WLAN_ACTION_WNM;
  684. mgmt->u.action.u.bss_tm_resp.action = WNM_BSS_TRANS_MGMT_RESP;
  685. mgmt->u.action.u.bss_tm_resp.dialog_token = dialog_token;
  686. mgmt->u.action.u.bss_tm_resp.status_code = status;
  687. mgmt->u.action.u.bss_tm_resp.bss_termination_delay = delay;
  688. pos = mgmt->u.action.u.bss_tm_resp.variable;
  689. if (target_bssid) {
  690. os_memcpy(pos, target_bssid, ETH_ALEN);
  691. pos += ETH_ALEN;
  692. } else if (status == WNM_BSS_TM_ACCEPT) {
  693. /*
  694. * P802.11-REVmc clarifies that the Target BSSID field is always
  695. * present when status code is zero, so use a fake value here if
  696. * no BSSID is yet known.
  697. */
  698. os_memset(pos, 0, ETH_ALEN);
  699. pos += ETH_ALEN;
  700. }
  701. if (status == WNM_BSS_TM_ACCEPT)
  702. pos += wnm_add_cand_list(wpa_s, pos, buf + sizeof(buf) - pos);
  703. #ifdef CONFIG_MBO
  704. if (status != WNM_BSS_TM_ACCEPT) {
  705. pos += wpas_mbo_ie_bss_trans_reject(
  706. wpa_s, pos, buf + sizeof(buf) - pos,
  707. MBO_TRANSITION_REJECT_REASON_UNSPECIFIED);
  708. }
  709. #endif /* CONFIG_MBO */
  710. len = pos - (u8 *) &mgmt->u.action.category;
  711. res = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  712. wpa_s->own_addr, wpa_s->bssid,
  713. &mgmt->u.action.category, len, 0);
  714. if (res < 0) {
  715. wpa_printf(MSG_DEBUG,
  716. "WNM: Failed to send BSS Transition Management Response");
  717. }
  718. }
  719. int wnm_scan_process(struct wpa_supplicant *wpa_s, int reply_on_fail)
  720. {
  721. struct wpa_bss *bss;
  722. struct wpa_ssid *ssid = wpa_s->current_ssid;
  723. enum bss_trans_mgmt_status_code status = WNM_BSS_TM_REJECT_UNSPECIFIED;
  724. if (!wpa_s->wnm_neighbor_report_elements)
  725. return 0;
  726. if (os_reltime_before(&wpa_s->wnm_cand_valid_until,
  727. &wpa_s->scan_trigger_time)) {
  728. wpa_printf(MSG_DEBUG, "WNM: Previously stored BSS transition candidate list is not valid anymore - drop it");
  729. wnm_deallocate_memory(wpa_s);
  730. return 0;
  731. }
  732. if (!wpa_s->current_bss ||
  733. os_memcmp(wpa_s->wnm_cand_from_bss, wpa_s->current_bss->bssid,
  734. ETH_ALEN) != 0) {
  735. wpa_printf(MSG_DEBUG, "WNM: Stored BSS transition candidate list not from the current BSS - ignore it");
  736. return 0;
  737. }
  738. /* Compare the Neighbor Report and scan results */
  739. bss = compare_scan_neighbor_results(wpa_s);
  740. if (!bss) {
  741. wpa_printf(MSG_DEBUG, "WNM: No BSS transition candidate match found");
  742. status = WNM_BSS_TM_REJECT_NO_SUITABLE_CANDIDATES;
  743. goto send_bss_resp_fail;
  744. }
  745. /* Associate to the network */
  746. /* Send the BSS Management Response - Accept */
  747. if (wpa_s->wnm_reply) {
  748. wpa_s->wnm_reply = 0;
  749. wnm_send_bss_transition_mgmt_resp(wpa_s,
  750. wpa_s->wnm_dialog_token,
  751. WNM_BSS_TM_ACCEPT,
  752. 0, bss->bssid);
  753. }
  754. if (bss == wpa_s->current_bss) {
  755. wpa_printf(MSG_DEBUG,
  756. "WNM: Already associated with the preferred candidate");
  757. wnm_deallocate_memory(wpa_s);
  758. return 1;
  759. }
  760. wpa_s->reassociate = 1;
  761. wpa_supplicant_connect(wpa_s, bss, ssid);
  762. wnm_deallocate_memory(wpa_s);
  763. return 1;
  764. send_bss_resp_fail:
  765. if (!reply_on_fail)
  766. return 0;
  767. /* Send reject response for all the failures */
  768. if (wpa_s->wnm_reply) {
  769. wpa_s->wnm_reply = 0;
  770. wnm_send_bss_transition_mgmt_resp(wpa_s,
  771. wpa_s->wnm_dialog_token,
  772. status, 0, NULL);
  773. }
  774. wnm_deallocate_memory(wpa_s);
  775. return 0;
  776. }
  777. static int cand_pref_compar(const void *a, const void *b)
  778. {
  779. const struct neighbor_report *aa = a;
  780. const struct neighbor_report *bb = b;
  781. if (!aa->preference_present && !bb->preference_present)
  782. return 0;
  783. if (!aa->preference_present)
  784. return 1;
  785. if (!bb->preference_present)
  786. return -1;
  787. if (bb->preference > aa->preference)
  788. return 1;
  789. if (bb->preference < aa->preference)
  790. return -1;
  791. return 0;
  792. }
  793. static void wnm_sort_cand_list(struct wpa_supplicant *wpa_s)
  794. {
  795. if (!wpa_s->wnm_neighbor_report_elements)
  796. return;
  797. qsort(wpa_s->wnm_neighbor_report_elements,
  798. wpa_s->wnm_num_neighbor_report, sizeof(struct neighbor_report),
  799. cand_pref_compar);
  800. }
  801. static void wnm_dump_cand_list(struct wpa_supplicant *wpa_s)
  802. {
  803. unsigned int i;
  804. wpa_printf(MSG_DEBUG, "WNM: BSS Transition Candidate List");
  805. if (!wpa_s->wnm_neighbor_report_elements)
  806. return;
  807. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  808. struct neighbor_report *nei;
  809. nei = &wpa_s->wnm_neighbor_report_elements[i];
  810. wpa_printf(MSG_DEBUG, "%u: " MACSTR
  811. " info=0x%x op_class=%u chan=%u phy=%u pref=%d freq=%d",
  812. i, MAC2STR(nei->bssid), nei->bssid_info,
  813. nei->regulatory_class,
  814. nei->channel_number, nei->phy_type,
  815. nei->preference_present ? nei->preference : -1,
  816. nei->freq);
  817. }
  818. }
  819. static int chan_supported(struct wpa_supplicant *wpa_s, int freq)
  820. {
  821. unsigned int i;
  822. for (i = 0; i < wpa_s->hw.num_modes; i++) {
  823. struct hostapd_hw_modes *mode = &wpa_s->hw.modes[i];
  824. int j;
  825. for (j = 0; j < mode->num_channels; j++) {
  826. struct hostapd_channel_data *chan;
  827. chan = &mode->channels[j];
  828. if (chan->freq == freq &&
  829. !(chan->flag & HOSTAPD_CHAN_DISABLED))
  830. return 1;
  831. }
  832. }
  833. return 0;
  834. }
  835. static void wnm_set_scan_freqs(struct wpa_supplicant *wpa_s)
  836. {
  837. int *freqs;
  838. int num_freqs = 0;
  839. unsigned int i;
  840. if (!wpa_s->wnm_neighbor_report_elements)
  841. return;
  842. if (wpa_s->hw.modes == NULL)
  843. return;
  844. os_free(wpa_s->next_scan_freqs);
  845. wpa_s->next_scan_freqs = NULL;
  846. freqs = os_calloc(wpa_s->wnm_num_neighbor_report + 1, sizeof(int));
  847. if (freqs == NULL)
  848. return;
  849. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  850. struct neighbor_report *nei;
  851. nei = &wpa_s->wnm_neighbor_report_elements[i];
  852. if (nei->freq <= 0) {
  853. wpa_printf(MSG_DEBUG,
  854. "WNM: Unknown neighbor operating frequency for "
  855. MACSTR " - scan all channels",
  856. MAC2STR(nei->bssid));
  857. os_free(freqs);
  858. return;
  859. }
  860. if (chan_supported(wpa_s, nei->freq))
  861. add_freq(freqs, &num_freqs, nei->freq);
  862. }
  863. if (num_freqs == 0) {
  864. os_free(freqs);
  865. return;
  866. }
  867. wpa_printf(MSG_DEBUG,
  868. "WNM: Scan %d frequencies based on transition candidate list",
  869. num_freqs);
  870. wpa_s->next_scan_freqs = freqs;
  871. }
  872. static void ieee802_11_rx_bss_trans_mgmt_req(struct wpa_supplicant *wpa_s,
  873. const u8 *pos, const u8 *end,
  874. int reply)
  875. {
  876. unsigned int beacon_int;
  877. u8 valid_int;
  878. #ifdef CONFIG_MBO
  879. const u8 *vendor;
  880. #endif /* CONFIG_MBO */
  881. if (end - pos < 5)
  882. return;
  883. if (wpa_s->current_bss)
  884. beacon_int = wpa_s->current_bss->beacon_int;
  885. else
  886. beacon_int = 100; /* best guess */
  887. wpa_s->wnm_dialog_token = pos[0];
  888. wpa_s->wnm_mode = pos[1];
  889. wpa_s->wnm_dissoc_timer = WPA_GET_LE16(pos + 2);
  890. valid_int = pos[4];
  891. wpa_s->wnm_reply = reply;
  892. wpa_printf(MSG_DEBUG, "WNM: BSS Transition Management Request: "
  893. "dialog_token=%u request_mode=0x%x "
  894. "disassoc_timer=%u validity_interval=%u",
  895. wpa_s->wnm_dialog_token, wpa_s->wnm_mode,
  896. wpa_s->wnm_dissoc_timer, valid_int);
  897. pos += 5;
  898. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_BSS_TERMINATION_INCLUDED) {
  899. if (end - pos < 12) {
  900. wpa_printf(MSG_DEBUG, "WNM: Too short BSS TM Request");
  901. return;
  902. }
  903. os_memcpy(wpa_s->wnm_bss_termination_duration, pos, 12);
  904. pos += 12; /* BSS Termination Duration */
  905. }
  906. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT) {
  907. char url[256];
  908. if (end - pos < 1 || 1 + pos[0] > end - pos) {
  909. wpa_printf(MSG_DEBUG, "WNM: Invalid BSS Transition "
  910. "Management Request (URL)");
  911. return;
  912. }
  913. os_memcpy(url, pos + 1, pos[0]);
  914. url[pos[0]] = '\0';
  915. pos += 1 + pos[0];
  916. wpa_msg(wpa_s, MSG_INFO, ESS_DISASSOC_IMMINENT "%d %u %s",
  917. wpa_sm_pmf_enabled(wpa_s->wpa),
  918. wpa_s->wnm_dissoc_timer * beacon_int * 128 / 125, url);
  919. }
  920. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_DISASSOC_IMMINENT) {
  921. wpa_msg(wpa_s, MSG_INFO, "WNM: Disassociation Imminent - "
  922. "Disassociation Timer %u", wpa_s->wnm_dissoc_timer);
  923. if (wpa_s->wnm_dissoc_timer && !wpa_s->scanning) {
  924. /* TODO: mark current BSS less preferred for
  925. * selection */
  926. wpa_printf(MSG_DEBUG, "Trying to find another BSS");
  927. wpa_supplicant_req_scan(wpa_s, 0, 0);
  928. }
  929. }
  930. #ifdef CONFIG_MBO
  931. vendor = get_ie(pos, end - pos, WLAN_EID_VENDOR_SPECIFIC);
  932. if (vendor)
  933. wpas_mbo_ie_trans_req(wpa_s, vendor + 2, vendor[1]);
  934. #endif /* CONFIG_MBO */
  935. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_PREF_CAND_LIST_INCLUDED) {
  936. unsigned int valid_ms;
  937. wpa_msg(wpa_s, MSG_INFO, "WNM: Preferred List Available");
  938. wnm_deallocate_memory(wpa_s);
  939. wpa_s->wnm_neighbor_report_elements = os_calloc(
  940. WNM_MAX_NEIGHBOR_REPORT,
  941. sizeof(struct neighbor_report));
  942. if (wpa_s->wnm_neighbor_report_elements == NULL)
  943. return;
  944. while (end - pos >= 2 &&
  945. wpa_s->wnm_num_neighbor_report < WNM_MAX_NEIGHBOR_REPORT)
  946. {
  947. u8 tag = *pos++;
  948. u8 len = *pos++;
  949. wpa_printf(MSG_DEBUG, "WNM: Neighbor report tag %u",
  950. tag);
  951. if (len > end - pos) {
  952. wpa_printf(MSG_DEBUG, "WNM: Truncated request");
  953. return;
  954. }
  955. if (tag == WLAN_EID_NEIGHBOR_REPORT) {
  956. struct neighbor_report *rep;
  957. rep = &wpa_s->wnm_neighbor_report_elements[
  958. wpa_s->wnm_num_neighbor_report];
  959. wnm_parse_neighbor_report(wpa_s, pos, len, rep);
  960. wpa_s->wnm_num_neighbor_report++;
  961. }
  962. pos += len;
  963. }
  964. if (!wpa_s->wnm_num_neighbor_report) {
  965. wpa_printf(MSG_DEBUG,
  966. "WNM: Candidate list included bit is set, but no candidates found");
  967. wnm_send_bss_transition_mgmt_resp(
  968. wpa_s, wpa_s->wnm_dialog_token,
  969. WNM_BSS_TM_REJECT_NO_SUITABLE_CANDIDATES,
  970. 0, NULL);
  971. return;
  972. }
  973. wnm_sort_cand_list(wpa_s);
  974. wnm_dump_cand_list(wpa_s);
  975. valid_ms = valid_int * beacon_int * 128 / 125;
  976. wpa_printf(MSG_DEBUG, "WNM: Candidate list valid for %u ms",
  977. valid_ms);
  978. os_get_reltime(&wpa_s->wnm_cand_valid_until);
  979. wpa_s->wnm_cand_valid_until.sec += valid_ms / 1000;
  980. wpa_s->wnm_cand_valid_until.usec += (valid_ms % 1000) * 1000;
  981. wpa_s->wnm_cand_valid_until.sec +=
  982. wpa_s->wnm_cand_valid_until.usec / 1000000;
  983. wpa_s->wnm_cand_valid_until.usec %= 1000000;
  984. os_memcpy(wpa_s->wnm_cand_from_bss, wpa_s->bssid, ETH_ALEN);
  985. if (wpa_s->last_scan_res_used > 0) {
  986. struct os_reltime now;
  987. os_get_reltime(&now);
  988. if (!os_reltime_expired(&now, &wpa_s->last_scan, 10)) {
  989. wpa_printf(MSG_DEBUG,
  990. "WNM: Try to use recent scan results");
  991. if (wnm_scan_process(wpa_s, 0) > 0)
  992. return;
  993. wpa_printf(MSG_DEBUG,
  994. "WNM: No match in previous scan results - try a new scan");
  995. }
  996. }
  997. wnm_set_scan_freqs(wpa_s);
  998. if (wpa_s->wnm_num_neighbor_report == 1) {
  999. os_memcpy(wpa_s->next_scan_bssid,
  1000. wpa_s->wnm_neighbor_report_elements[0].bssid,
  1001. ETH_ALEN);
  1002. wpa_printf(MSG_DEBUG,
  1003. "WNM: Scan only for a specific BSSID since there is only a single candidate "
  1004. MACSTR, MAC2STR(wpa_s->next_scan_bssid));
  1005. }
  1006. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1007. } else if (reply) {
  1008. enum bss_trans_mgmt_status_code status;
  1009. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT)
  1010. status = WNM_BSS_TM_ACCEPT;
  1011. else {
  1012. wpa_msg(wpa_s, MSG_INFO, "WNM: BSS Transition Management Request did not include candidates");
  1013. status = WNM_BSS_TM_REJECT_UNSPECIFIED;
  1014. }
  1015. wnm_send_bss_transition_mgmt_resp(wpa_s,
  1016. wpa_s->wnm_dialog_token,
  1017. status, 0, NULL);
  1018. }
  1019. }
  1020. int wnm_send_bss_transition_mgmt_query(struct wpa_supplicant *wpa_s,
  1021. u8 query_reason, int cand_list)
  1022. {
  1023. u8 buf[2000], *pos;
  1024. struct ieee80211_mgmt *mgmt;
  1025. size_t len;
  1026. int ret;
  1027. wpa_printf(MSG_DEBUG, "WNM: Send BSS Transition Management Query to "
  1028. MACSTR " query_reason=%u%s",
  1029. MAC2STR(wpa_s->bssid), query_reason,
  1030. cand_list ? " candidate list" : "");
  1031. mgmt = (struct ieee80211_mgmt *) buf;
  1032. os_memset(&buf, 0, sizeof(buf));
  1033. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  1034. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  1035. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  1036. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  1037. WLAN_FC_STYPE_ACTION);
  1038. mgmt->u.action.category = WLAN_ACTION_WNM;
  1039. mgmt->u.action.u.bss_tm_query.action = WNM_BSS_TRANS_MGMT_QUERY;
  1040. mgmt->u.action.u.bss_tm_query.dialog_token = 1;
  1041. mgmt->u.action.u.bss_tm_query.query_reason = query_reason;
  1042. pos = mgmt->u.action.u.bss_tm_query.variable;
  1043. if (cand_list)
  1044. pos += wnm_add_cand_list(wpa_s, pos, buf + sizeof(buf) - pos);
  1045. len = pos - (u8 *) &mgmt->u.action.category;
  1046. ret = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  1047. wpa_s->own_addr, wpa_s->bssid,
  1048. &mgmt->u.action.category, len, 0);
  1049. return ret;
  1050. }
  1051. static void ieee802_11_rx_wnm_notif_req_wfa(struct wpa_supplicant *wpa_s,
  1052. const u8 *sa, const u8 *data,
  1053. int len)
  1054. {
  1055. const u8 *pos, *end, *next;
  1056. u8 ie, ie_len;
  1057. pos = data;
  1058. end = data + len;
  1059. while (end - pos > 1) {
  1060. ie = *pos++;
  1061. ie_len = *pos++;
  1062. wpa_printf(MSG_DEBUG, "WNM: WFA subelement %u len %u",
  1063. ie, ie_len);
  1064. if (ie_len > end - pos) {
  1065. wpa_printf(MSG_DEBUG, "WNM: Not enough room for "
  1066. "subelement");
  1067. break;
  1068. }
  1069. next = pos + ie_len;
  1070. if (ie_len < 4) {
  1071. pos = next;
  1072. continue;
  1073. }
  1074. wpa_printf(MSG_DEBUG, "WNM: Subelement OUI %06x type %u",
  1075. WPA_GET_BE24(pos), pos[3]);
  1076. #ifdef CONFIG_HS20
  1077. if (ie == WLAN_EID_VENDOR_SPECIFIC && ie_len >= 5 &&
  1078. WPA_GET_BE24(pos) == OUI_WFA &&
  1079. pos[3] == HS20_WNM_SUB_REM_NEEDED) {
  1080. /* Subscription Remediation subelement */
  1081. const u8 *ie_end;
  1082. u8 url_len;
  1083. char *url;
  1084. u8 osu_method;
  1085. wpa_printf(MSG_DEBUG, "WNM: Subscription Remediation "
  1086. "subelement");
  1087. ie_end = pos + ie_len;
  1088. pos += 4;
  1089. url_len = *pos++;
  1090. if (url_len == 0) {
  1091. wpa_printf(MSG_DEBUG, "WNM: No Server URL included");
  1092. url = NULL;
  1093. osu_method = 1;
  1094. } else {
  1095. if (url_len + 1 > ie_end - pos) {
  1096. wpa_printf(MSG_DEBUG, "WNM: Not enough room for Server URL (len=%u) and Server Method (left %d)",
  1097. url_len,
  1098. (int) (ie_end - pos));
  1099. break;
  1100. }
  1101. url = os_malloc(url_len + 1);
  1102. if (url == NULL)
  1103. break;
  1104. os_memcpy(url, pos, url_len);
  1105. url[url_len] = '\0';
  1106. osu_method = pos[url_len];
  1107. }
  1108. hs20_rx_subscription_remediation(wpa_s, url,
  1109. osu_method);
  1110. os_free(url);
  1111. pos = next;
  1112. continue;
  1113. }
  1114. if (ie == WLAN_EID_VENDOR_SPECIFIC && ie_len >= 8 &&
  1115. WPA_GET_BE24(pos) == OUI_WFA &&
  1116. pos[3] == HS20_WNM_DEAUTH_IMMINENT_NOTICE) {
  1117. const u8 *ie_end;
  1118. u8 url_len;
  1119. char *url;
  1120. u8 code;
  1121. u16 reauth_delay;
  1122. ie_end = pos + ie_len;
  1123. pos += 4;
  1124. code = *pos++;
  1125. reauth_delay = WPA_GET_LE16(pos);
  1126. pos += 2;
  1127. url_len = *pos++;
  1128. wpa_printf(MSG_DEBUG, "WNM: HS 2.0 Deauthentication "
  1129. "Imminent - Reason Code %u "
  1130. "Re-Auth Delay %u URL Length %u",
  1131. code, reauth_delay, url_len);
  1132. if (url_len > ie_end - pos)
  1133. break;
  1134. url = os_malloc(url_len + 1);
  1135. if (url == NULL)
  1136. break;
  1137. os_memcpy(url, pos, url_len);
  1138. url[url_len] = '\0';
  1139. hs20_rx_deauth_imminent_notice(wpa_s, code,
  1140. reauth_delay, url);
  1141. os_free(url);
  1142. pos = next;
  1143. continue;
  1144. }
  1145. #endif /* CONFIG_HS20 */
  1146. pos = next;
  1147. }
  1148. }
  1149. static void ieee802_11_rx_wnm_notif_req(struct wpa_supplicant *wpa_s,
  1150. const u8 *sa, const u8 *frm, int len)
  1151. {
  1152. const u8 *pos, *end;
  1153. u8 dialog_token, type;
  1154. /* Dialog Token [1] | Type [1] | Subelements */
  1155. if (len < 2 || sa == NULL)
  1156. return;
  1157. end = frm + len;
  1158. pos = frm;
  1159. dialog_token = *pos++;
  1160. type = *pos++;
  1161. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: Received WNM-Notification Request "
  1162. "(dialog_token %u type %u sa " MACSTR ")",
  1163. dialog_token, type, MAC2STR(sa));
  1164. wpa_hexdump(MSG_DEBUG, "WNM-Notification Request subelements",
  1165. pos, end - pos);
  1166. if (wpa_s->wpa_state != WPA_COMPLETED ||
  1167. os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0) {
  1168. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: WNM-Notification frame not "
  1169. "from our AP - ignore it");
  1170. return;
  1171. }
  1172. switch (type) {
  1173. case 1:
  1174. ieee802_11_rx_wnm_notif_req_wfa(wpa_s, sa, pos, end - pos);
  1175. break;
  1176. default:
  1177. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: Ignore unknown "
  1178. "WNM-Notification type %u", type);
  1179. break;
  1180. }
  1181. }
  1182. void ieee802_11_rx_wnm_action(struct wpa_supplicant *wpa_s,
  1183. const struct ieee80211_mgmt *mgmt, size_t len)
  1184. {
  1185. const u8 *pos, *end;
  1186. u8 act;
  1187. if (len < IEEE80211_HDRLEN + 2)
  1188. return;
  1189. pos = ((const u8 *) mgmt) + IEEE80211_HDRLEN + 1;
  1190. act = *pos++;
  1191. end = ((const u8 *) mgmt) + len;
  1192. wpa_printf(MSG_DEBUG, "WNM: RX action %u from " MACSTR,
  1193. act, MAC2STR(mgmt->sa));
  1194. if (wpa_s->wpa_state < WPA_ASSOCIATED ||
  1195. os_memcmp(mgmt->sa, wpa_s->bssid, ETH_ALEN) != 0) {
  1196. wpa_printf(MSG_DEBUG, "WNM: Ignore unexpected WNM Action "
  1197. "frame");
  1198. return;
  1199. }
  1200. switch (act) {
  1201. case WNM_BSS_TRANS_MGMT_REQ:
  1202. ieee802_11_rx_bss_trans_mgmt_req(wpa_s, pos, end,
  1203. !(mgmt->da[0] & 0x01));
  1204. break;
  1205. case WNM_SLEEP_MODE_RESP:
  1206. ieee802_11_rx_wnmsleep_resp(wpa_s, pos, end - pos);
  1207. break;
  1208. case WNM_NOTIFICATION_REQ:
  1209. ieee802_11_rx_wnm_notif_req(wpa_s, mgmt->sa, pos, end - pos);
  1210. break;
  1211. default:
  1212. wpa_printf(MSG_ERROR, "WNM: Unknown request");
  1213. break;
  1214. }
  1215. }