wnm_sta.c 28 KB

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