wnm_sta.c 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701
  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 "config.h"
  15. #include "wpa_supplicant_i.h"
  16. #include "driver_i.h"
  17. #include "scan.h"
  18. #include "ctrl_iface.h"
  19. #include "bss.h"
  20. #include "wnm_sta.h"
  21. #include "hs20_supplicant.h"
  22. #define MAX_TFS_IE_LEN 1024
  23. #define WNM_MAX_NEIGHBOR_REPORT 10
  24. #define WNM_SCAN_RESULT_AGE 2 /* 2 seconds */
  25. /* get the TFS IE from driver */
  26. static int ieee80211_11_get_tfs_ie(struct wpa_supplicant *wpa_s, u8 *buf,
  27. u16 *buf_len, enum wnm_oper oper)
  28. {
  29. wpa_printf(MSG_DEBUG, "%s: TFS get operation %d", __func__, oper);
  30. return wpa_drv_wnm_oper(wpa_s, oper, wpa_s->bssid, buf, buf_len);
  31. }
  32. /* set the TFS IE to driver */
  33. static int ieee80211_11_set_tfs_ie(struct wpa_supplicant *wpa_s,
  34. const u8 *addr, const u8 *buf, u16 buf_len,
  35. enum wnm_oper oper)
  36. {
  37. u16 len = buf_len;
  38. wpa_printf(MSG_DEBUG, "%s: TFS set operation %d", __func__, oper);
  39. return wpa_drv_wnm_oper(wpa_s, oper, addr, (u8 *) buf, &len);
  40. }
  41. /* MLME-SLEEPMODE.request */
  42. int ieee802_11_send_wnmsleep_req(struct wpa_supplicant *wpa_s,
  43. u8 action, u16 intval, struct wpabuf *tfs_req)
  44. {
  45. struct ieee80211_mgmt *mgmt;
  46. int res;
  47. size_t len;
  48. struct wnm_sleep_element *wnmsleep_ie;
  49. u8 *wnmtfs_ie;
  50. u8 wnmsleep_ie_len;
  51. u16 wnmtfs_ie_len; /* possibly multiple IE(s) */
  52. enum wnm_oper tfs_oper = action == 0 ? WNM_SLEEP_TFS_REQ_IE_ADD :
  53. WNM_SLEEP_TFS_REQ_IE_NONE;
  54. wpa_printf(MSG_DEBUG, "WNM: Request to send WNM-Sleep Mode Request "
  55. "action=%s to " MACSTR,
  56. action == 0 ? "enter" : "exit",
  57. MAC2STR(wpa_s->bssid));
  58. /* WNM-Sleep Mode IE */
  59. wnmsleep_ie_len = sizeof(struct wnm_sleep_element);
  60. wnmsleep_ie = os_zalloc(sizeof(struct wnm_sleep_element));
  61. if (wnmsleep_ie == NULL)
  62. return -1;
  63. wnmsleep_ie->eid = WLAN_EID_WNMSLEEP;
  64. wnmsleep_ie->len = wnmsleep_ie_len - 2;
  65. wnmsleep_ie->action_type = action;
  66. wnmsleep_ie->status = WNM_STATUS_SLEEP_ACCEPT;
  67. wnmsleep_ie->intval = host_to_le16(intval);
  68. wpa_hexdump(MSG_DEBUG, "WNM: WNM-Sleep Mode element",
  69. (u8 *) wnmsleep_ie, wnmsleep_ie_len);
  70. /* TFS IE(s) */
  71. if (tfs_req) {
  72. wnmtfs_ie_len = wpabuf_len(tfs_req);
  73. wnmtfs_ie = os_memdup(wpabuf_head(tfs_req), wnmtfs_ie_len);
  74. if (wnmtfs_ie == NULL) {
  75. os_free(wnmsleep_ie);
  76. return -1;
  77. }
  78. } else {
  79. wnmtfs_ie = os_zalloc(MAX_TFS_IE_LEN);
  80. if (wnmtfs_ie == NULL) {
  81. os_free(wnmsleep_ie);
  82. return -1;
  83. }
  84. if (ieee80211_11_get_tfs_ie(wpa_s, wnmtfs_ie, &wnmtfs_ie_len,
  85. tfs_oper)) {
  86. wnmtfs_ie_len = 0;
  87. os_free(wnmtfs_ie);
  88. wnmtfs_ie = NULL;
  89. }
  90. }
  91. wpa_hexdump(MSG_DEBUG, "WNM: TFS Request element",
  92. (u8 *) wnmtfs_ie, wnmtfs_ie_len);
  93. mgmt = os_zalloc(sizeof(*mgmt) + wnmsleep_ie_len + wnmtfs_ie_len);
  94. if (mgmt == NULL) {
  95. wpa_printf(MSG_DEBUG, "MLME: Failed to allocate buffer for "
  96. "WNM-Sleep Request action frame");
  97. os_free(wnmsleep_ie);
  98. os_free(wnmtfs_ie);
  99. return -1;
  100. }
  101. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  102. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  103. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  104. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  105. WLAN_FC_STYPE_ACTION);
  106. mgmt->u.action.category = WLAN_ACTION_WNM;
  107. mgmt->u.action.u.wnm_sleep_req.action = WNM_SLEEP_MODE_REQ;
  108. mgmt->u.action.u.wnm_sleep_req.dialogtoken = 1;
  109. os_memcpy(mgmt->u.action.u.wnm_sleep_req.variable, wnmsleep_ie,
  110. wnmsleep_ie_len);
  111. /* copy TFS IE here */
  112. if (wnmtfs_ie_len > 0) {
  113. os_memcpy(mgmt->u.action.u.wnm_sleep_req.variable +
  114. wnmsleep_ie_len, wnmtfs_ie, wnmtfs_ie_len);
  115. }
  116. len = 1 + sizeof(mgmt->u.action.u.wnm_sleep_req) + wnmsleep_ie_len +
  117. wnmtfs_ie_len;
  118. res = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  119. wpa_s->own_addr, wpa_s->bssid,
  120. &mgmt->u.action.category, len, 0);
  121. if (res < 0)
  122. wpa_printf(MSG_DEBUG, "Failed to send WNM-Sleep Request "
  123. "(action=%d, intval=%d)", action, intval);
  124. else
  125. wpa_s->wnmsleep_used = 1;
  126. os_free(wnmsleep_ie);
  127. os_free(wnmtfs_ie);
  128. os_free(mgmt);
  129. return res;
  130. }
  131. static void wnm_sleep_mode_enter_success(struct wpa_supplicant *wpa_s,
  132. const u8 *tfsresp_ie_start,
  133. const u8 *tfsresp_ie_end)
  134. {
  135. wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_ENTER_CONFIRM,
  136. wpa_s->bssid, NULL, NULL);
  137. /* remove GTK/IGTK ?? */
  138. /* set the TFS Resp IE(s) */
  139. if (tfsresp_ie_start && tfsresp_ie_end &&
  140. tfsresp_ie_end - tfsresp_ie_start >= 0) {
  141. u16 tfsresp_ie_len;
  142. tfsresp_ie_len = (tfsresp_ie_end + tfsresp_ie_end[1] + 2) -
  143. tfsresp_ie_start;
  144. wpa_printf(MSG_DEBUG, "TFS Resp IE(s) found");
  145. /* pass the TFS Resp IE(s) to driver for processing */
  146. if (ieee80211_11_set_tfs_ie(wpa_s, wpa_s->bssid,
  147. tfsresp_ie_start,
  148. tfsresp_ie_len,
  149. WNM_SLEEP_TFS_RESP_IE_SET))
  150. wpa_printf(MSG_DEBUG, "WNM: Fail to set TFS Resp IE");
  151. }
  152. }
  153. static void wnm_sleep_mode_exit_success(struct wpa_supplicant *wpa_s,
  154. const u8 *frm, u16 key_len_total)
  155. {
  156. u8 *ptr, *end;
  157. u8 gtk_len;
  158. wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_EXIT_CONFIRM, wpa_s->bssid,
  159. NULL, NULL);
  160. /* Install GTK/IGTK */
  161. /* point to key data field */
  162. ptr = (u8 *) frm + 1 + 2;
  163. end = ptr + key_len_total;
  164. wpa_hexdump_key(MSG_DEBUG, "WNM: Key Data", ptr, key_len_total);
  165. if (key_len_total && !wpa_sm_pmf_enabled(wpa_s->wpa)) {
  166. wpa_msg(wpa_s, MSG_INFO,
  167. "WNM: Ignore Key Data in WNM-Sleep Mode Response - PMF not enabled");
  168. return;
  169. }
  170. while (end - ptr > 1) {
  171. if (2 + ptr[1] > end - ptr) {
  172. wpa_printf(MSG_DEBUG, "WNM: Invalid Key Data element "
  173. "length");
  174. if (end > ptr) {
  175. wpa_hexdump(MSG_DEBUG, "WNM: Remaining data",
  176. ptr, end - ptr);
  177. }
  178. break;
  179. }
  180. if (*ptr == WNM_SLEEP_SUBELEM_GTK) {
  181. if (ptr[1] < 11 + 5) {
  182. wpa_printf(MSG_DEBUG, "WNM: Too short GTK "
  183. "subelem");
  184. break;
  185. }
  186. gtk_len = *(ptr + 4);
  187. if (ptr[1] < 11 + gtk_len ||
  188. gtk_len < 5 || gtk_len > 32) {
  189. wpa_printf(MSG_DEBUG, "WNM: Invalid GTK "
  190. "subelem");
  191. break;
  192. }
  193. wpa_wnmsleep_install_key(
  194. wpa_s->wpa,
  195. WNM_SLEEP_SUBELEM_GTK,
  196. ptr);
  197. ptr += 13 + gtk_len;
  198. #ifdef CONFIG_IEEE80211W
  199. } else if (*ptr == WNM_SLEEP_SUBELEM_IGTK) {
  200. if (ptr[1] < 2 + 6 + WPA_IGTK_LEN) {
  201. wpa_printf(MSG_DEBUG, "WNM: Too short IGTK "
  202. "subelem");
  203. break;
  204. }
  205. wpa_wnmsleep_install_key(wpa_s->wpa,
  206. WNM_SLEEP_SUBELEM_IGTK, ptr);
  207. ptr += 10 + WPA_IGTK_LEN;
  208. #endif /* CONFIG_IEEE80211W */
  209. } else
  210. break; /* skip the loop */
  211. }
  212. }
  213. static void ieee802_11_rx_wnmsleep_resp(struct wpa_supplicant *wpa_s,
  214. const u8 *frm, int len)
  215. {
  216. /*
  217. * Action [1] | Dialog Token [1] | Key Data Len [2] | Key Data |
  218. * WNM-Sleep Mode IE | TFS Response IE
  219. */
  220. const u8 *pos = frm; /* point to payload after the action field */
  221. u16 key_len_total;
  222. struct wnm_sleep_element *wnmsleep_ie = NULL;
  223. /* multiple TFS Resp IE (assuming consecutive) */
  224. const u8 *tfsresp_ie_start = NULL;
  225. const u8 *tfsresp_ie_end = NULL;
  226. size_t left;
  227. if (!wpa_s->wnmsleep_used) {
  228. wpa_printf(MSG_DEBUG,
  229. "WNM: Ignore WNM-Sleep Mode Response frame since WNM-Sleep Mode has not been used in this association");
  230. return;
  231. }
  232. if (len < 3)
  233. return;
  234. key_len_total = WPA_GET_LE16(frm + 1);
  235. wpa_printf(MSG_DEBUG, "WNM-Sleep Mode Response token=%u key_len_total=%d",
  236. frm[0], key_len_total);
  237. left = len - 3;
  238. if (key_len_total > left) {
  239. wpa_printf(MSG_INFO, "WNM: Too short frame for Key Data field");
  240. return;
  241. }
  242. pos += 3 + key_len_total;
  243. while (pos - frm + 1 < len) {
  244. u8 ie_len = *(pos + 1);
  245. if (2 + ie_len > frm + len - pos) {
  246. wpa_printf(MSG_INFO, "WNM: Invalid IE len %u", ie_len);
  247. break;
  248. }
  249. wpa_hexdump(MSG_DEBUG, "WNM: Element", pos, 2 + ie_len);
  250. if (*pos == WLAN_EID_WNMSLEEP && ie_len >= 4)
  251. wnmsleep_ie = (struct wnm_sleep_element *) pos;
  252. else if (*pos == WLAN_EID_TFS_RESP) {
  253. if (!tfsresp_ie_start)
  254. tfsresp_ie_start = pos;
  255. tfsresp_ie_end = pos;
  256. } else
  257. wpa_printf(MSG_DEBUG, "EID %d not recognized", *pos);
  258. pos += ie_len + 2;
  259. }
  260. if (!wnmsleep_ie) {
  261. wpa_printf(MSG_DEBUG, "No WNM-Sleep IE found");
  262. return;
  263. }
  264. if (wnmsleep_ie->status == WNM_STATUS_SLEEP_ACCEPT ||
  265. wnmsleep_ie->status == WNM_STATUS_SLEEP_EXIT_ACCEPT_GTK_UPDATE) {
  266. wpa_printf(MSG_DEBUG, "Successfully recv WNM-Sleep Response "
  267. "frame (action=%d, intval=%d)",
  268. wnmsleep_ie->action_type, wnmsleep_ie->intval);
  269. if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_ENTER) {
  270. wnm_sleep_mode_enter_success(wpa_s, tfsresp_ie_start,
  271. tfsresp_ie_end);
  272. } else if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_EXIT) {
  273. wnm_sleep_mode_exit_success(wpa_s, frm, key_len_total);
  274. }
  275. } else {
  276. wpa_printf(MSG_DEBUG, "Reject recv WNM-Sleep Response frame "
  277. "(action=%d, intval=%d)",
  278. wnmsleep_ie->action_type, wnmsleep_ie->intval);
  279. if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_ENTER)
  280. wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_ENTER_FAIL,
  281. wpa_s->bssid, NULL, NULL);
  282. else if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_EXIT)
  283. wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_EXIT_FAIL,
  284. wpa_s->bssid, NULL, NULL);
  285. }
  286. }
  287. void wnm_deallocate_memory(struct wpa_supplicant *wpa_s)
  288. {
  289. int i;
  290. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  291. os_free(wpa_s->wnm_neighbor_report_elements[i].meas_pilot);
  292. os_free(wpa_s->wnm_neighbor_report_elements[i].mul_bssid);
  293. }
  294. wpa_s->wnm_num_neighbor_report = 0;
  295. os_free(wpa_s->wnm_neighbor_report_elements);
  296. wpa_s->wnm_neighbor_report_elements = NULL;
  297. }
  298. static void wnm_parse_neighbor_report_elem(struct neighbor_report *rep,
  299. u8 id, u8 elen, const u8 *pos)
  300. {
  301. switch (id) {
  302. case WNM_NEIGHBOR_TSF:
  303. if (elen < 2 + 2) {
  304. wpa_printf(MSG_DEBUG, "WNM: Too short TSF");
  305. break;
  306. }
  307. rep->tsf_offset = WPA_GET_LE16(pos);
  308. rep->beacon_int = WPA_GET_LE16(pos + 2);
  309. rep->tsf_present = 1;
  310. break;
  311. case WNM_NEIGHBOR_CONDENSED_COUNTRY_STRING:
  312. if (elen < 2) {
  313. wpa_printf(MSG_DEBUG, "WNM: Too short condensed "
  314. "country string");
  315. break;
  316. }
  317. os_memcpy(rep->country, pos, 2);
  318. rep->country_present = 1;
  319. break;
  320. case WNM_NEIGHBOR_BSS_TRANSITION_CANDIDATE:
  321. if (elen < 1) {
  322. wpa_printf(MSG_DEBUG, "WNM: Too short BSS transition "
  323. "candidate");
  324. break;
  325. }
  326. rep->preference = pos[0];
  327. rep->preference_present = 1;
  328. break;
  329. case WNM_NEIGHBOR_BSS_TERMINATION_DURATION:
  330. rep->bss_term_tsf = WPA_GET_LE64(pos);
  331. rep->bss_term_dur = WPA_GET_LE16(pos + 8);
  332. rep->bss_term_present = 1;
  333. break;
  334. case WNM_NEIGHBOR_BEARING:
  335. if (elen < 8) {
  336. wpa_printf(MSG_DEBUG, "WNM: Too short neighbor "
  337. "bearing");
  338. break;
  339. }
  340. rep->bearing = WPA_GET_LE16(pos);
  341. rep->distance = WPA_GET_LE32(pos + 2);
  342. rep->rel_height = WPA_GET_LE16(pos + 2 + 4);
  343. rep->bearing_present = 1;
  344. break;
  345. case WNM_NEIGHBOR_MEASUREMENT_PILOT:
  346. if (elen < 1) {
  347. wpa_printf(MSG_DEBUG, "WNM: Too short measurement "
  348. "pilot");
  349. break;
  350. }
  351. os_free(rep->meas_pilot);
  352. rep->meas_pilot = os_zalloc(sizeof(struct measurement_pilot));
  353. if (rep->meas_pilot == NULL)
  354. break;
  355. rep->meas_pilot->measurement_pilot = pos[0];
  356. rep->meas_pilot->subelem_len = elen - 1;
  357. os_memcpy(rep->meas_pilot->subelems, pos + 1, elen - 1);
  358. break;
  359. case WNM_NEIGHBOR_RRM_ENABLED_CAPABILITIES:
  360. if (elen < 5) {
  361. wpa_printf(MSG_DEBUG, "WNM: Too short RRM enabled "
  362. "capabilities");
  363. break;
  364. }
  365. os_memcpy(rep->rm_capab, pos, 5);
  366. rep->rm_capab_present = 1;
  367. break;
  368. case WNM_NEIGHBOR_MULTIPLE_BSSID:
  369. if (elen < 1) {
  370. wpa_printf(MSG_DEBUG, "WNM: Too short multiple BSSID");
  371. break;
  372. }
  373. os_free(rep->mul_bssid);
  374. rep->mul_bssid = os_zalloc(sizeof(struct multiple_bssid));
  375. if (rep->mul_bssid == NULL)
  376. break;
  377. rep->mul_bssid->max_bssid_indicator = pos[0];
  378. rep->mul_bssid->subelem_len = elen - 1;
  379. os_memcpy(rep->mul_bssid->subelems, pos + 1, elen - 1);
  380. break;
  381. }
  382. }
  383. static int wnm_nei_get_chan(struct wpa_supplicant *wpa_s, u8 op_class, u8 chan)
  384. {
  385. struct wpa_bss *bss = wpa_s->current_bss;
  386. const char *country = NULL;
  387. int freq;
  388. if (bss) {
  389. const u8 *elem = wpa_bss_get_ie(bss, WLAN_EID_COUNTRY);
  390. if (elem && elem[1] >= 2)
  391. country = (const char *) (elem + 2);
  392. }
  393. freq = ieee80211_chan_to_freq(country, op_class, chan);
  394. if (freq <= 0 && op_class == 0) {
  395. /*
  396. * Some APs do not advertise correct operating class
  397. * information. Try to determine the most likely operating
  398. * frequency based on the channel number.
  399. */
  400. if (chan >= 1 && chan <= 13)
  401. freq = 2407 + chan * 5;
  402. else if (chan == 14)
  403. freq = 2484;
  404. else if (chan >= 36 && chan <= 169)
  405. freq = 5000 + chan * 5;
  406. }
  407. return freq;
  408. }
  409. static void wnm_parse_neighbor_report(struct wpa_supplicant *wpa_s,
  410. const u8 *pos, u8 len,
  411. struct neighbor_report *rep)
  412. {
  413. u8 left = len;
  414. if (left < 13) {
  415. wpa_printf(MSG_DEBUG, "WNM: Too short neighbor report");
  416. return;
  417. }
  418. os_memcpy(rep->bssid, pos, ETH_ALEN);
  419. rep->bssid_info = WPA_GET_LE32(pos + ETH_ALEN);
  420. rep->regulatory_class = *(pos + 10);
  421. rep->channel_number = *(pos + 11);
  422. rep->phy_type = *(pos + 12);
  423. pos += 13;
  424. left -= 13;
  425. while (left >= 2) {
  426. u8 id, elen;
  427. id = *pos++;
  428. elen = *pos++;
  429. wpa_printf(MSG_DEBUG, "WNM: Subelement id=%u len=%u", id, elen);
  430. left -= 2;
  431. if (elen > left) {
  432. wpa_printf(MSG_DEBUG,
  433. "WNM: Truncated neighbor report subelement");
  434. break;
  435. }
  436. wnm_parse_neighbor_report_elem(rep, id, elen, pos);
  437. left -= elen;
  438. pos += elen;
  439. }
  440. rep->freq = wnm_nei_get_chan(wpa_s, rep->regulatory_class,
  441. rep->channel_number);
  442. }
  443. static void wnm_clear_acceptable(struct wpa_supplicant *wpa_s)
  444. {
  445. unsigned int i;
  446. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++)
  447. wpa_s->wnm_neighbor_report_elements[i].acceptable = 0;
  448. }
  449. static struct wpa_bss * get_first_acceptable(struct wpa_supplicant *wpa_s)
  450. {
  451. unsigned int i;
  452. struct neighbor_report *nei;
  453. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  454. nei = &wpa_s->wnm_neighbor_report_elements[i];
  455. if (nei->acceptable)
  456. return wpa_bss_get_bssid(wpa_s, nei->bssid);
  457. }
  458. return NULL;
  459. }
  460. #ifdef CONFIG_MBO
  461. static struct wpa_bss *
  462. get_mbo_transition_candidate(struct wpa_supplicant *wpa_s,
  463. enum mbo_transition_reject_reason *reason)
  464. {
  465. struct wpa_bss *target = NULL;
  466. struct wpa_bss_trans_info params;
  467. struct wpa_bss_candidate_info *info = NULL;
  468. struct neighbor_report *nei = wpa_s->wnm_neighbor_report_elements;
  469. u8 *first_candidate_bssid = NULL, *pos;
  470. unsigned int i;
  471. params.mbo_transition_reason = wpa_s->wnm_mbo_transition_reason;
  472. params.n_candidates = 0;
  473. params.bssid = os_calloc(wpa_s->wnm_num_neighbor_report, ETH_ALEN);
  474. if (!params.bssid)
  475. return NULL;
  476. pos = params.bssid;
  477. for (i = 0; i < wpa_s->wnm_num_neighbor_report; nei++, i++) {
  478. if (nei->is_first)
  479. first_candidate_bssid = nei->bssid;
  480. if (!nei->acceptable)
  481. continue;
  482. os_memcpy(pos, nei->bssid, ETH_ALEN);
  483. pos += ETH_ALEN;
  484. params.n_candidates++;
  485. }
  486. if (!params.n_candidates)
  487. goto end;
  488. info = wpa_drv_get_bss_trans_status(wpa_s, &params);
  489. if (!info) {
  490. /* If failed to get candidate BSS transition status from driver,
  491. * get the first acceptable candidate from wpa_supplicant.
  492. */
  493. target = wpa_bss_get_bssid(wpa_s, params.bssid);
  494. goto end;
  495. }
  496. /* Get the first acceptable candidate from driver */
  497. for (i = 0; i < info->num; i++) {
  498. if (info->candidates[i].is_accept) {
  499. target = wpa_bss_get_bssid(wpa_s,
  500. info->candidates[i].bssid);
  501. goto end;
  502. }
  503. }
  504. /* If Disassociation Imminent is set and driver rejects all the
  505. * candidate select first acceptable candidate which has
  506. * rssi > disassoc_imminent_rssi_threshold
  507. */
  508. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_DISASSOC_IMMINENT) {
  509. for (i = 0; i < info->num; i++) {
  510. target = wpa_bss_get_bssid(wpa_s,
  511. info->candidates[i].bssid);
  512. if (target->level <
  513. wpa_s->conf->disassoc_imminent_rssi_threshold)
  514. continue;
  515. goto end;
  516. }
  517. }
  518. /* While sending BTM reject use reason code of the first candidate
  519. * received in BTM request frame
  520. */
  521. if (reason) {
  522. for (i = 0; i < info->num; i++) {
  523. if (first_candidate_bssid &&
  524. os_memcmp(first_candidate_bssid,
  525. info->candidates[i].bssid, ETH_ALEN) == 0)
  526. {
  527. *reason = info->candidates[i].reject_reason;
  528. break;
  529. }
  530. }
  531. }
  532. target = NULL;
  533. end:
  534. os_free(params.bssid);
  535. if (info) {
  536. os_free(info->candidates);
  537. os_free(info);
  538. }
  539. return target;
  540. }
  541. #endif /* CONFIG_MBO */
  542. static struct wpa_bss *
  543. compare_scan_neighbor_results(struct wpa_supplicant *wpa_s, os_time_t age_secs,
  544. enum mbo_transition_reject_reason *reason)
  545. {
  546. u8 i;
  547. struct wpa_bss *bss = wpa_s->current_bss;
  548. struct wpa_bss *target;
  549. if (!bss)
  550. return NULL;
  551. wpa_printf(MSG_DEBUG, "WNM: Current BSS " MACSTR " RSSI %d",
  552. MAC2STR(wpa_s->bssid), bss->level);
  553. wnm_clear_acceptable(wpa_s);
  554. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  555. struct neighbor_report *nei;
  556. nei = &wpa_s->wnm_neighbor_report_elements[i];
  557. if (nei->preference_present && nei->preference == 0) {
  558. wpa_printf(MSG_DEBUG, "Skip excluded BSS " MACSTR,
  559. MAC2STR(nei->bssid));
  560. continue;
  561. }
  562. target = wpa_bss_get_bssid(wpa_s, nei->bssid);
  563. if (!target) {
  564. wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR
  565. " (pref %d) not found in scan results",
  566. MAC2STR(nei->bssid),
  567. nei->preference_present ? nei->preference :
  568. -1);
  569. continue;
  570. }
  571. if (age_secs) {
  572. struct os_reltime now;
  573. if (os_get_reltime(&now) == 0 &&
  574. os_reltime_expired(&now, &target->last_update,
  575. age_secs)) {
  576. wpa_printf(MSG_DEBUG,
  577. "Candidate BSS is more than %ld seconds old",
  578. age_secs);
  579. continue;
  580. }
  581. }
  582. if (bss->ssid_len != target->ssid_len ||
  583. os_memcmp(bss->ssid, target->ssid, bss->ssid_len) != 0) {
  584. /*
  585. * TODO: Could consider allowing transition to another
  586. * ESS if PMF was enabled for the association.
  587. */
  588. wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR
  589. " (pref %d) in different ESS",
  590. MAC2STR(nei->bssid),
  591. nei->preference_present ? nei->preference :
  592. -1);
  593. continue;
  594. }
  595. if (wpa_s->current_ssid &&
  596. !wpa_scan_res_match(wpa_s, 0, target, wpa_s->current_ssid,
  597. 1, 0)) {
  598. wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR
  599. " (pref %d) does not match the current network profile",
  600. MAC2STR(nei->bssid),
  601. nei->preference_present ? nei->preference :
  602. -1);
  603. continue;
  604. }
  605. if (wpa_is_bss_tmp_disallowed(wpa_s, target->bssid)) {
  606. wpa_printf(MSG_DEBUG,
  607. "MBO: Candidate BSS " MACSTR
  608. " retry delay is not over yet",
  609. MAC2STR(nei->bssid));
  610. continue;
  611. }
  612. if (target->level < bss->level && target->level < -80) {
  613. wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR
  614. " (pref %d) does not have sufficient signal level (%d)",
  615. MAC2STR(nei->bssid),
  616. nei->preference_present ? nei->preference :
  617. -1,
  618. target->level);
  619. continue;
  620. }
  621. nei->acceptable = 1;
  622. }
  623. #ifdef CONFIG_MBO
  624. if (wpa_s->wnm_mbo_trans_reason_present)
  625. target = get_mbo_transition_candidate(wpa_s, reason);
  626. else
  627. target = get_first_acceptable(wpa_s);
  628. #else /* CONFIG_MBO */
  629. target = get_first_acceptable(wpa_s);
  630. #endif /* CONFIG_MBO */
  631. if (target) {
  632. wpa_printf(MSG_DEBUG,
  633. "WNM: Found an acceptable preferred transition candidate BSS "
  634. MACSTR " (RSSI %d)",
  635. MAC2STR(target->bssid), target->level);
  636. }
  637. return target;
  638. }
  639. static int wpa_bss_ies_eq(struct wpa_bss *a, struct wpa_bss *b, u8 eid)
  640. {
  641. const u8 *ie_a, *ie_b;
  642. if (!a || !b)
  643. return 0;
  644. ie_a = wpa_bss_get_ie(a, eid);
  645. ie_b = wpa_bss_get_ie(b, eid);
  646. if (!ie_a || !ie_b || ie_a[1] != ie_b[1])
  647. return 0;
  648. return os_memcmp(ie_a, ie_b, ie_a[1]) == 0;
  649. }
  650. static u32 wnm_get_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  651. {
  652. u32 info = 0;
  653. info |= NEI_REP_BSSID_INFO_AP_UNKNOWN_REACH;
  654. /*
  655. * Leave the security and key scope bits unset to indicate that the
  656. * security information is not available.
  657. */
  658. if (bss->caps & WLAN_CAPABILITY_SPECTRUM_MGMT)
  659. info |= NEI_REP_BSSID_INFO_SPECTRUM_MGMT;
  660. if (bss->caps & WLAN_CAPABILITY_QOS)
  661. info |= NEI_REP_BSSID_INFO_QOS;
  662. if (bss->caps & WLAN_CAPABILITY_APSD)
  663. info |= NEI_REP_BSSID_INFO_APSD;
  664. if (bss->caps & WLAN_CAPABILITY_RADIO_MEASUREMENT)
  665. info |= NEI_REP_BSSID_INFO_RM;
  666. if (bss->caps & WLAN_CAPABILITY_DELAYED_BLOCK_ACK)
  667. info |= NEI_REP_BSSID_INFO_DELAYED_BA;
  668. if (bss->caps & WLAN_CAPABILITY_IMM_BLOCK_ACK)
  669. info |= NEI_REP_BSSID_INFO_IMM_BA;
  670. if (wpa_bss_ies_eq(bss, wpa_s->current_bss, WLAN_EID_MOBILITY_DOMAIN))
  671. info |= NEI_REP_BSSID_INFO_MOBILITY_DOMAIN;
  672. if (wpa_bss_ies_eq(bss, wpa_s->current_bss, WLAN_EID_HT_CAP))
  673. info |= NEI_REP_BSSID_INFO_HT;
  674. return info;
  675. }
  676. static int wnm_add_nei_rep(u8 *buf, size_t len, const u8 *bssid, u32 bss_info,
  677. u8 op_class, u8 chan, u8 phy_type, u8 pref)
  678. {
  679. u8 *pos = buf;
  680. if (len < 18) {
  681. wpa_printf(MSG_DEBUG,
  682. "WNM: Not enough room for Neighbor Report element");
  683. return -1;
  684. }
  685. *pos++ = WLAN_EID_NEIGHBOR_REPORT;
  686. /* length: 13 for basic neighbor report + 3 for preference subelement */
  687. *pos++ = 16;
  688. os_memcpy(pos, bssid, ETH_ALEN);
  689. pos += ETH_ALEN;
  690. WPA_PUT_LE32(pos, bss_info);
  691. pos += 4;
  692. *pos++ = op_class;
  693. *pos++ = chan;
  694. *pos++ = phy_type;
  695. *pos++ = WNM_NEIGHBOR_BSS_TRANSITION_CANDIDATE;
  696. *pos++ = 1;
  697. *pos++ = pref;
  698. return pos - buf;
  699. }
  700. static int wnm_nei_rep_add_bss(struct wpa_supplicant *wpa_s,
  701. struct wpa_bss *bss, u8 *buf, size_t len,
  702. u8 pref)
  703. {
  704. const u8 *ie;
  705. u8 op_class, chan;
  706. int sec_chan = 0, vht = 0;
  707. enum phy_type phy_type;
  708. u32 info;
  709. struct ieee80211_ht_operation *ht_oper = NULL;
  710. struct ieee80211_vht_operation *vht_oper = NULL;
  711. ie = wpa_bss_get_ie(bss, WLAN_EID_HT_OPERATION);
  712. if (ie && ie[1] >= 2) {
  713. ht_oper = (struct ieee80211_ht_operation *) (ie + 2);
  714. if (ht_oper->ht_param & HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE)
  715. sec_chan = 1;
  716. else if (ht_oper->ht_param &
  717. HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW)
  718. sec_chan = -1;
  719. }
  720. ie = wpa_bss_get_ie(bss, WLAN_EID_VHT_OPERATION);
  721. if (ie && ie[1] >= 1) {
  722. vht_oper = (struct ieee80211_vht_operation *) (ie + 2);
  723. if (vht_oper->vht_op_info_chwidth == VHT_CHANWIDTH_80MHZ ||
  724. vht_oper->vht_op_info_chwidth == VHT_CHANWIDTH_160MHZ ||
  725. vht_oper->vht_op_info_chwidth == VHT_CHANWIDTH_80P80MHZ)
  726. vht = vht_oper->vht_op_info_chwidth;
  727. }
  728. if (ieee80211_freq_to_channel_ext(bss->freq, sec_chan, vht, &op_class,
  729. &chan) == NUM_HOSTAPD_MODES) {
  730. wpa_printf(MSG_DEBUG,
  731. "WNM: Cannot determine operating class and channel");
  732. return -2;
  733. }
  734. phy_type = ieee80211_get_phy_type(bss->freq, (ht_oper != NULL),
  735. (vht_oper != NULL));
  736. if (phy_type == PHY_TYPE_UNSPECIFIED) {
  737. wpa_printf(MSG_DEBUG,
  738. "WNM: Cannot determine BSS phy type for Neighbor Report");
  739. return -2;
  740. }
  741. info = wnm_get_bss_info(wpa_s, bss);
  742. return wnm_add_nei_rep(buf, len, bss->bssid, info, op_class, chan,
  743. phy_type, pref);
  744. }
  745. static int wnm_add_cand_list(struct wpa_supplicant *wpa_s, u8 *buf, size_t len)
  746. {
  747. u8 *pos = buf;
  748. unsigned int i, pref = 255;
  749. struct os_reltime now;
  750. struct wpa_ssid *ssid = wpa_s->current_ssid;
  751. if (!ssid)
  752. return 0;
  753. /*
  754. * TODO: Define when scan results are no longer valid for the candidate
  755. * list.
  756. */
  757. os_get_reltime(&now);
  758. if (os_reltime_expired(&now, &wpa_s->last_scan, 10))
  759. return 0;
  760. wpa_printf(MSG_DEBUG,
  761. "WNM: Add candidate list to BSS Transition Management Response frame");
  762. for (i = 0; i < wpa_s->last_scan_res_used && pref; i++) {
  763. struct wpa_bss *bss = wpa_s->last_scan_res[i];
  764. int res;
  765. if (wpa_scan_res_match(wpa_s, i, bss, ssid, 1, 0)) {
  766. res = wnm_nei_rep_add_bss(wpa_s, bss, pos, len, pref--);
  767. if (res == -2)
  768. continue; /* could not build entry for BSS */
  769. if (res < 0)
  770. break; /* no more room for candidates */
  771. if (pref == 1)
  772. break;
  773. pos += res;
  774. len -= res;
  775. }
  776. }
  777. wpa_hexdump(MSG_DEBUG,
  778. "WNM: BSS Transition Management Response candidate list",
  779. buf, pos - buf);
  780. return pos - buf;
  781. }
  782. static void wnm_send_bss_transition_mgmt_resp(
  783. struct wpa_supplicant *wpa_s, u8 dialog_token,
  784. enum bss_trans_mgmt_status_code status,
  785. enum mbo_transition_reject_reason reason,
  786. u8 delay, const u8 *target_bssid)
  787. {
  788. u8 buf[2000], *pos;
  789. struct ieee80211_mgmt *mgmt;
  790. size_t len;
  791. int res;
  792. wpa_printf(MSG_DEBUG,
  793. "WNM: Send BSS Transition Management Response to " MACSTR
  794. " dialog_token=%u status=%u reason=%u delay=%d",
  795. MAC2STR(wpa_s->bssid), dialog_token, status, reason, delay);
  796. if (!wpa_s->current_bss) {
  797. wpa_printf(MSG_DEBUG,
  798. "WNM: Current BSS not known - drop response");
  799. return;
  800. }
  801. mgmt = (struct ieee80211_mgmt *) buf;
  802. os_memset(&buf, 0, sizeof(buf));
  803. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  804. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  805. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  806. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  807. WLAN_FC_STYPE_ACTION);
  808. mgmt->u.action.category = WLAN_ACTION_WNM;
  809. mgmt->u.action.u.bss_tm_resp.action = WNM_BSS_TRANS_MGMT_RESP;
  810. mgmt->u.action.u.bss_tm_resp.dialog_token = dialog_token;
  811. mgmt->u.action.u.bss_tm_resp.status_code = status;
  812. mgmt->u.action.u.bss_tm_resp.bss_termination_delay = delay;
  813. pos = mgmt->u.action.u.bss_tm_resp.variable;
  814. if (target_bssid) {
  815. os_memcpy(pos, target_bssid, ETH_ALEN);
  816. pos += ETH_ALEN;
  817. } else if (status == WNM_BSS_TM_ACCEPT) {
  818. /*
  819. * P802.11-REVmc clarifies that the Target BSSID field is always
  820. * present when status code is zero, so use a fake value here if
  821. * no BSSID is yet known.
  822. */
  823. os_memset(pos, 0, ETH_ALEN);
  824. pos += ETH_ALEN;
  825. }
  826. if (status == WNM_BSS_TM_ACCEPT)
  827. pos += wnm_add_cand_list(wpa_s, pos, buf + sizeof(buf) - pos);
  828. #ifdef CONFIG_MBO
  829. if (status != WNM_BSS_TM_ACCEPT &&
  830. wpa_bss_get_vendor_ie(wpa_s->current_bss, MBO_IE_VENDOR_TYPE)) {
  831. pos += wpas_mbo_ie_bss_trans_reject(
  832. wpa_s, pos, buf + sizeof(buf) - pos, reason);
  833. }
  834. #endif /* CONFIG_MBO */
  835. len = pos - (u8 *) &mgmt->u.action.category;
  836. res = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  837. wpa_s->own_addr, wpa_s->bssid,
  838. &mgmt->u.action.category, len, 0);
  839. if (res < 0) {
  840. wpa_printf(MSG_DEBUG,
  841. "WNM: Failed to send BSS Transition Management Response");
  842. }
  843. }
  844. static void wnm_bss_tm_connect(struct wpa_supplicant *wpa_s,
  845. struct wpa_bss *bss, struct wpa_ssid *ssid,
  846. int after_new_scan)
  847. {
  848. wpa_dbg(wpa_s, MSG_DEBUG,
  849. "WNM: Transition to BSS " MACSTR
  850. " based on BSS Transition Management Request (old BSSID "
  851. MACSTR " after_new_scan=%d)",
  852. MAC2STR(bss->bssid), MAC2STR(wpa_s->bssid), after_new_scan);
  853. /* Send the BSS Management Response - Accept */
  854. if (wpa_s->wnm_reply) {
  855. wpa_s->wnm_reply = 0;
  856. wpa_printf(MSG_DEBUG,
  857. "WNM: Sending successful BSS Transition Management Response");
  858. wnm_send_bss_transition_mgmt_resp(
  859. wpa_s, wpa_s->wnm_dialog_token, WNM_BSS_TM_ACCEPT,
  860. MBO_TRANSITION_REASON_UNSPECIFIED, 0, bss->bssid);
  861. }
  862. if (bss == wpa_s->current_bss) {
  863. wpa_printf(MSG_DEBUG,
  864. "WNM: Already associated with the preferred candidate");
  865. wnm_deallocate_memory(wpa_s);
  866. return;
  867. }
  868. wpa_s->reassociate = 1;
  869. wpa_printf(MSG_DEBUG, "WNM: Issuing connect");
  870. wpa_supplicant_connect(wpa_s, bss, ssid);
  871. wnm_deallocate_memory(wpa_s);
  872. }
  873. int wnm_scan_process(struct wpa_supplicant *wpa_s, int reply_on_fail)
  874. {
  875. struct wpa_bss *bss;
  876. struct wpa_ssid *ssid = wpa_s->current_ssid;
  877. enum bss_trans_mgmt_status_code status = WNM_BSS_TM_REJECT_UNSPECIFIED;
  878. enum mbo_transition_reject_reason reason =
  879. MBO_TRANSITION_REJECT_REASON_UNSPECIFIED;
  880. if (!wpa_s->wnm_neighbor_report_elements)
  881. return 0;
  882. wpa_dbg(wpa_s, MSG_DEBUG,
  883. "WNM: Process scan results for BSS Transition Management");
  884. if (os_reltime_before(&wpa_s->wnm_cand_valid_until,
  885. &wpa_s->scan_trigger_time)) {
  886. wpa_printf(MSG_DEBUG, "WNM: Previously stored BSS transition candidate list is not valid anymore - drop it");
  887. wnm_deallocate_memory(wpa_s);
  888. return 0;
  889. }
  890. if (!wpa_s->current_bss ||
  891. os_memcmp(wpa_s->wnm_cand_from_bss, wpa_s->current_bss->bssid,
  892. ETH_ALEN) != 0) {
  893. wpa_printf(MSG_DEBUG, "WNM: Stored BSS transition candidate list not from the current BSS - ignore it");
  894. return 0;
  895. }
  896. /* Compare the Neighbor Report and scan results */
  897. bss = compare_scan_neighbor_results(wpa_s, 0, &reason);
  898. if (!bss) {
  899. wpa_printf(MSG_DEBUG, "WNM: No BSS transition candidate match found");
  900. status = WNM_BSS_TM_REJECT_NO_SUITABLE_CANDIDATES;
  901. goto send_bss_resp_fail;
  902. }
  903. /* Associate to the network */
  904. wnm_bss_tm_connect(wpa_s, bss, ssid, 1);
  905. return 1;
  906. send_bss_resp_fail:
  907. if (!reply_on_fail)
  908. return 0;
  909. /* Send reject response for all the failures */
  910. if (wpa_s->wnm_reply) {
  911. wpa_s->wnm_reply = 0;
  912. wnm_send_bss_transition_mgmt_resp(wpa_s,
  913. wpa_s->wnm_dialog_token,
  914. status, reason, 0, NULL);
  915. }
  916. wnm_deallocate_memory(wpa_s);
  917. return 0;
  918. }
  919. static int cand_pref_compar(const void *a, const void *b)
  920. {
  921. const struct neighbor_report *aa = a;
  922. const struct neighbor_report *bb = b;
  923. if (!aa->preference_present && !bb->preference_present)
  924. return 0;
  925. if (!aa->preference_present)
  926. return 1;
  927. if (!bb->preference_present)
  928. return -1;
  929. if (bb->preference > aa->preference)
  930. return 1;
  931. if (bb->preference < aa->preference)
  932. return -1;
  933. return 0;
  934. }
  935. static void wnm_sort_cand_list(struct wpa_supplicant *wpa_s)
  936. {
  937. if (!wpa_s->wnm_neighbor_report_elements)
  938. return;
  939. qsort(wpa_s->wnm_neighbor_report_elements,
  940. wpa_s->wnm_num_neighbor_report, sizeof(struct neighbor_report),
  941. cand_pref_compar);
  942. }
  943. static void wnm_dump_cand_list(struct wpa_supplicant *wpa_s)
  944. {
  945. unsigned int i;
  946. wpa_printf(MSG_DEBUG, "WNM: BSS Transition Candidate List");
  947. if (!wpa_s->wnm_neighbor_report_elements)
  948. return;
  949. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  950. struct neighbor_report *nei;
  951. nei = &wpa_s->wnm_neighbor_report_elements[i];
  952. wpa_printf(MSG_DEBUG, "%u: " MACSTR
  953. " info=0x%x op_class=%u chan=%u phy=%u pref=%d freq=%d",
  954. i, MAC2STR(nei->bssid), nei->bssid_info,
  955. nei->regulatory_class,
  956. nei->channel_number, nei->phy_type,
  957. nei->preference_present ? nei->preference : -1,
  958. nei->freq);
  959. }
  960. }
  961. static int chan_supported(struct wpa_supplicant *wpa_s, int freq)
  962. {
  963. unsigned int i;
  964. for (i = 0; i < wpa_s->hw.num_modes; i++) {
  965. struct hostapd_hw_modes *mode = &wpa_s->hw.modes[i];
  966. int j;
  967. for (j = 0; j < mode->num_channels; j++) {
  968. struct hostapd_channel_data *chan;
  969. chan = &mode->channels[j];
  970. if (chan->freq == freq &&
  971. !(chan->flag & HOSTAPD_CHAN_DISABLED))
  972. return 1;
  973. }
  974. }
  975. return 0;
  976. }
  977. static void wnm_set_scan_freqs(struct wpa_supplicant *wpa_s)
  978. {
  979. int *freqs;
  980. int num_freqs = 0;
  981. unsigned int i;
  982. if (!wpa_s->wnm_neighbor_report_elements)
  983. return;
  984. if (wpa_s->hw.modes == NULL)
  985. return;
  986. os_free(wpa_s->next_scan_freqs);
  987. wpa_s->next_scan_freqs = NULL;
  988. freqs = os_calloc(wpa_s->wnm_num_neighbor_report + 1, sizeof(int));
  989. if (freqs == NULL)
  990. return;
  991. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  992. struct neighbor_report *nei;
  993. nei = &wpa_s->wnm_neighbor_report_elements[i];
  994. if (nei->freq <= 0) {
  995. wpa_printf(MSG_DEBUG,
  996. "WNM: Unknown neighbor operating frequency for "
  997. MACSTR " - scan all channels",
  998. MAC2STR(nei->bssid));
  999. os_free(freqs);
  1000. return;
  1001. }
  1002. if (chan_supported(wpa_s, nei->freq))
  1003. add_freq(freqs, &num_freqs, nei->freq);
  1004. }
  1005. if (num_freqs == 0) {
  1006. os_free(freqs);
  1007. return;
  1008. }
  1009. wpa_printf(MSG_DEBUG,
  1010. "WNM: Scan %d frequencies based on transition candidate list",
  1011. num_freqs);
  1012. wpa_s->next_scan_freqs = freqs;
  1013. }
  1014. static int wnm_fetch_scan_results(struct wpa_supplicant *wpa_s)
  1015. {
  1016. struct wpa_scan_results *scan_res;
  1017. struct wpa_bss *bss;
  1018. struct wpa_ssid *ssid = wpa_s->current_ssid;
  1019. u8 i, found = 0;
  1020. size_t j;
  1021. wpa_dbg(wpa_s, MSG_DEBUG,
  1022. "WNM: Fetch current scan results from the driver for checking transition candidates");
  1023. scan_res = wpa_drv_get_scan_results2(wpa_s);
  1024. if (!scan_res) {
  1025. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: Failed to get scan results");
  1026. return 0;
  1027. }
  1028. if (scan_res->fetch_time.sec == 0)
  1029. os_get_reltime(&scan_res->fetch_time);
  1030. filter_scan_res(wpa_s, scan_res);
  1031. for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
  1032. struct neighbor_report *nei;
  1033. nei = &wpa_s->wnm_neighbor_report_elements[i];
  1034. if (nei->preference_present && nei->preference == 0)
  1035. continue;
  1036. for (j = 0; j < scan_res->num; j++) {
  1037. struct wpa_scan_res *res;
  1038. const u8 *ssid_ie;
  1039. res = scan_res->res[j];
  1040. if (os_memcmp(nei->bssid, res->bssid, ETH_ALEN) != 0 ||
  1041. res->age > WNM_SCAN_RESULT_AGE * 1000)
  1042. continue;
  1043. bss = wpa_s->current_bss;
  1044. ssid_ie = wpa_scan_get_ie(res, WLAN_EID_SSID);
  1045. if (bss && ssid_ie &&
  1046. (bss->ssid_len != ssid_ie[1] ||
  1047. os_memcmp(bss->ssid, ssid_ie + 2,
  1048. bss->ssid_len) != 0))
  1049. continue;
  1050. /* Potential candidate found */
  1051. found = 1;
  1052. scan_snr(res);
  1053. scan_est_throughput(wpa_s, res);
  1054. wpa_bss_update_scan_res(wpa_s, res,
  1055. &scan_res->fetch_time);
  1056. }
  1057. }
  1058. wpa_scan_results_free(scan_res);
  1059. if (!found) {
  1060. wpa_dbg(wpa_s, MSG_DEBUG,
  1061. "WNM: No transition candidate matches existing scan results");
  1062. return 0;
  1063. }
  1064. bss = compare_scan_neighbor_results(wpa_s, WNM_SCAN_RESULT_AGE, NULL);
  1065. if (!bss) {
  1066. wpa_dbg(wpa_s, MSG_DEBUG,
  1067. "WNM: Comparison of scan results against transition candidates did not find matches");
  1068. return 0;
  1069. }
  1070. /* Associate to the network */
  1071. wnm_bss_tm_connect(wpa_s, bss, ssid, 0);
  1072. return 1;
  1073. }
  1074. static void ieee802_11_rx_bss_trans_mgmt_req(struct wpa_supplicant *wpa_s,
  1075. const u8 *pos, const u8 *end,
  1076. int reply)
  1077. {
  1078. unsigned int beacon_int;
  1079. u8 valid_int;
  1080. #ifdef CONFIG_MBO
  1081. const u8 *vendor;
  1082. #endif /* CONFIG_MBO */
  1083. if (end - pos < 5)
  1084. return;
  1085. #ifdef CONFIG_MBO
  1086. wpa_s->wnm_mbo_trans_reason_present = 0;
  1087. wpa_s->wnm_mbo_transition_reason = 0;
  1088. #endif /* CONFIG_MBO */
  1089. if (wpa_s->current_bss)
  1090. beacon_int = wpa_s->current_bss->beacon_int;
  1091. else
  1092. beacon_int = 100; /* best guess */
  1093. wpa_s->wnm_dialog_token = pos[0];
  1094. wpa_s->wnm_mode = pos[1];
  1095. wpa_s->wnm_dissoc_timer = WPA_GET_LE16(pos + 2);
  1096. valid_int = pos[4];
  1097. wpa_s->wnm_reply = reply;
  1098. wpa_printf(MSG_DEBUG, "WNM: BSS Transition Management Request: "
  1099. "dialog_token=%u request_mode=0x%x "
  1100. "disassoc_timer=%u validity_interval=%u",
  1101. wpa_s->wnm_dialog_token, wpa_s->wnm_mode,
  1102. wpa_s->wnm_dissoc_timer, valid_int);
  1103. #if defined(CONFIG_MBO) && defined(CONFIG_TESTING_OPTIONS)
  1104. if (wpa_s->reject_btm_req_reason) {
  1105. wpa_printf(MSG_INFO,
  1106. "WNM: Testing - reject BSS Transition Management Request: reject_btm_req_reason=%d",
  1107. wpa_s->reject_btm_req_reason);
  1108. wnm_send_bss_transition_mgmt_resp(
  1109. wpa_s, wpa_s->wnm_dialog_token,
  1110. wpa_s->reject_btm_req_reason,
  1111. MBO_TRANSITION_REASON_UNSPECIFIED, 0, NULL);
  1112. return;
  1113. }
  1114. #endif /* CONFIG_MBO && CONFIG_TESTING_OPTIONS */
  1115. pos += 5;
  1116. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_BSS_TERMINATION_INCLUDED) {
  1117. if (end - pos < 12) {
  1118. wpa_printf(MSG_DEBUG, "WNM: Too short BSS TM Request");
  1119. return;
  1120. }
  1121. os_memcpy(wpa_s->wnm_bss_termination_duration, pos, 12);
  1122. pos += 12; /* BSS Termination Duration */
  1123. }
  1124. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT) {
  1125. char url[256];
  1126. if (end - pos < 1 || 1 + pos[0] > end - pos) {
  1127. wpa_printf(MSG_DEBUG, "WNM: Invalid BSS Transition "
  1128. "Management Request (URL)");
  1129. return;
  1130. }
  1131. os_memcpy(url, pos + 1, pos[0]);
  1132. url[pos[0]] = '\0';
  1133. pos += 1 + pos[0];
  1134. wpa_msg(wpa_s, MSG_INFO, ESS_DISASSOC_IMMINENT "%d %u %s",
  1135. wpa_sm_pmf_enabled(wpa_s->wpa),
  1136. wpa_s->wnm_dissoc_timer * beacon_int * 128 / 125, url);
  1137. }
  1138. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_DISASSOC_IMMINENT) {
  1139. wpa_msg(wpa_s, MSG_INFO, "WNM: Disassociation Imminent - "
  1140. "Disassociation Timer %u", wpa_s->wnm_dissoc_timer);
  1141. if (wpa_s->wnm_dissoc_timer && !wpa_s->scanning) {
  1142. /* TODO: mark current BSS less preferred for
  1143. * selection */
  1144. wpa_printf(MSG_DEBUG, "Trying to find another BSS");
  1145. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1146. }
  1147. }
  1148. #ifdef CONFIG_MBO
  1149. vendor = get_ie(pos, end - pos, WLAN_EID_VENDOR_SPECIFIC);
  1150. if (vendor)
  1151. wpas_mbo_ie_trans_req(wpa_s, vendor + 2, vendor[1]);
  1152. #endif /* CONFIG_MBO */
  1153. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_PREF_CAND_LIST_INCLUDED) {
  1154. unsigned int valid_ms;
  1155. wpa_msg(wpa_s, MSG_INFO, "WNM: Preferred List Available");
  1156. wnm_deallocate_memory(wpa_s);
  1157. wpa_s->wnm_neighbor_report_elements = os_calloc(
  1158. WNM_MAX_NEIGHBOR_REPORT,
  1159. sizeof(struct neighbor_report));
  1160. if (wpa_s->wnm_neighbor_report_elements == NULL)
  1161. return;
  1162. while (end - pos >= 2 &&
  1163. wpa_s->wnm_num_neighbor_report < WNM_MAX_NEIGHBOR_REPORT)
  1164. {
  1165. u8 tag = *pos++;
  1166. u8 len = *pos++;
  1167. wpa_printf(MSG_DEBUG, "WNM: Neighbor report tag %u",
  1168. tag);
  1169. if (len > end - pos) {
  1170. wpa_printf(MSG_DEBUG, "WNM: Truncated request");
  1171. return;
  1172. }
  1173. if (tag == WLAN_EID_NEIGHBOR_REPORT) {
  1174. struct neighbor_report *rep;
  1175. rep = &wpa_s->wnm_neighbor_report_elements[
  1176. wpa_s->wnm_num_neighbor_report];
  1177. wnm_parse_neighbor_report(wpa_s, pos, len, rep);
  1178. wpa_s->wnm_num_neighbor_report++;
  1179. #ifdef CONFIG_MBO
  1180. if (wpa_s->wnm_mbo_trans_reason_present &&
  1181. wpa_s->wnm_num_neighbor_report == 1) {
  1182. rep->is_first = 1;
  1183. wpa_printf(MSG_DEBUG,
  1184. "WNM: First transition candidate is "
  1185. MACSTR, MAC2STR(rep->bssid));
  1186. }
  1187. #endif /* CONFIG_MBO */
  1188. }
  1189. pos += len;
  1190. }
  1191. if (!wpa_s->wnm_num_neighbor_report) {
  1192. wpa_printf(MSG_DEBUG,
  1193. "WNM: Candidate list included bit is set, but no candidates found");
  1194. wnm_send_bss_transition_mgmt_resp(
  1195. wpa_s, wpa_s->wnm_dialog_token,
  1196. WNM_BSS_TM_REJECT_NO_SUITABLE_CANDIDATES,
  1197. MBO_TRANSITION_REASON_UNSPECIFIED, 0, NULL);
  1198. return;
  1199. }
  1200. wnm_sort_cand_list(wpa_s);
  1201. wnm_dump_cand_list(wpa_s);
  1202. valid_ms = valid_int * beacon_int * 128 / 125;
  1203. wpa_printf(MSG_DEBUG, "WNM: Candidate list valid for %u ms",
  1204. valid_ms);
  1205. os_get_reltime(&wpa_s->wnm_cand_valid_until);
  1206. wpa_s->wnm_cand_valid_until.sec += valid_ms / 1000;
  1207. wpa_s->wnm_cand_valid_until.usec += (valid_ms % 1000) * 1000;
  1208. wpa_s->wnm_cand_valid_until.sec +=
  1209. wpa_s->wnm_cand_valid_until.usec / 1000000;
  1210. wpa_s->wnm_cand_valid_until.usec %= 1000000;
  1211. os_memcpy(wpa_s->wnm_cand_from_bss, wpa_s->bssid, ETH_ALEN);
  1212. /*
  1213. * Fetch the latest scan results from the kernel and check for
  1214. * candidates based on those results first. This can help in
  1215. * finding more up-to-date information should the driver has
  1216. * done some internal scanning operations after the last scan
  1217. * result update in wpa_supplicant.
  1218. */
  1219. if (wnm_fetch_scan_results(wpa_s) > 0)
  1220. return;
  1221. /*
  1222. * Try to use previously received scan results, if they are
  1223. * recent enough to use for a connection.
  1224. */
  1225. if (wpa_s->last_scan_res_used > 0) {
  1226. struct os_reltime now;
  1227. os_get_reltime(&now);
  1228. if (!os_reltime_expired(&now, &wpa_s->last_scan, 10)) {
  1229. wpa_printf(MSG_DEBUG,
  1230. "WNM: Try to use recent scan results");
  1231. if (wnm_scan_process(wpa_s, 0) > 0)
  1232. return;
  1233. wpa_printf(MSG_DEBUG,
  1234. "WNM: No match in previous scan results - try a new scan");
  1235. }
  1236. }
  1237. wnm_set_scan_freqs(wpa_s);
  1238. if (wpa_s->wnm_num_neighbor_report == 1) {
  1239. os_memcpy(wpa_s->next_scan_bssid,
  1240. wpa_s->wnm_neighbor_report_elements[0].bssid,
  1241. ETH_ALEN);
  1242. wpa_printf(MSG_DEBUG,
  1243. "WNM: Scan only for a specific BSSID since there is only a single candidate "
  1244. MACSTR, MAC2STR(wpa_s->next_scan_bssid));
  1245. }
  1246. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1247. } else if (reply) {
  1248. enum bss_trans_mgmt_status_code status;
  1249. if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT)
  1250. status = WNM_BSS_TM_ACCEPT;
  1251. else {
  1252. wpa_msg(wpa_s, MSG_INFO, "WNM: BSS Transition Management Request did not include candidates");
  1253. status = WNM_BSS_TM_REJECT_UNSPECIFIED;
  1254. }
  1255. wnm_send_bss_transition_mgmt_resp(
  1256. wpa_s, wpa_s->wnm_dialog_token, status,
  1257. MBO_TRANSITION_REASON_UNSPECIFIED, 0, NULL);
  1258. }
  1259. }
  1260. int wnm_send_bss_transition_mgmt_query(struct wpa_supplicant *wpa_s,
  1261. u8 query_reason, int cand_list)
  1262. {
  1263. u8 buf[2000], *pos;
  1264. struct ieee80211_mgmt *mgmt;
  1265. size_t len;
  1266. int ret;
  1267. wpa_printf(MSG_DEBUG, "WNM: Send BSS Transition Management Query to "
  1268. MACSTR " query_reason=%u%s",
  1269. MAC2STR(wpa_s->bssid), query_reason,
  1270. cand_list ? " candidate list" : "");
  1271. mgmt = (struct ieee80211_mgmt *) buf;
  1272. os_memset(&buf, 0, sizeof(buf));
  1273. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  1274. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  1275. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  1276. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  1277. WLAN_FC_STYPE_ACTION);
  1278. mgmt->u.action.category = WLAN_ACTION_WNM;
  1279. mgmt->u.action.u.bss_tm_query.action = WNM_BSS_TRANS_MGMT_QUERY;
  1280. mgmt->u.action.u.bss_tm_query.dialog_token = 1;
  1281. mgmt->u.action.u.bss_tm_query.query_reason = query_reason;
  1282. pos = mgmt->u.action.u.bss_tm_query.variable;
  1283. if (cand_list)
  1284. pos += wnm_add_cand_list(wpa_s, pos, buf + sizeof(buf) - pos);
  1285. len = pos - (u8 *) &mgmt->u.action.category;
  1286. ret = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  1287. wpa_s->own_addr, wpa_s->bssid,
  1288. &mgmt->u.action.category, len, 0);
  1289. return ret;
  1290. }
  1291. static void ieee802_11_rx_wnm_notif_req_wfa(struct wpa_supplicant *wpa_s,
  1292. const u8 *sa, const u8 *data,
  1293. int len)
  1294. {
  1295. const u8 *pos, *end, *next;
  1296. u8 ie, ie_len;
  1297. pos = data;
  1298. end = data + len;
  1299. while (end - pos > 1) {
  1300. ie = *pos++;
  1301. ie_len = *pos++;
  1302. wpa_printf(MSG_DEBUG, "WNM: WFA subelement %u len %u",
  1303. ie, ie_len);
  1304. if (ie_len > end - pos) {
  1305. wpa_printf(MSG_DEBUG, "WNM: Not enough room for "
  1306. "subelement");
  1307. break;
  1308. }
  1309. next = pos + ie_len;
  1310. if (ie_len < 4) {
  1311. pos = next;
  1312. continue;
  1313. }
  1314. wpa_printf(MSG_DEBUG, "WNM: Subelement OUI %06x type %u",
  1315. WPA_GET_BE24(pos), pos[3]);
  1316. #ifdef CONFIG_HS20
  1317. if (ie == WLAN_EID_VENDOR_SPECIFIC && ie_len >= 5 &&
  1318. WPA_GET_BE24(pos) == OUI_WFA &&
  1319. pos[3] == HS20_WNM_SUB_REM_NEEDED) {
  1320. /* Subscription Remediation subelement */
  1321. const u8 *ie_end;
  1322. u8 url_len;
  1323. char *url;
  1324. u8 osu_method;
  1325. wpa_printf(MSG_DEBUG, "WNM: Subscription Remediation "
  1326. "subelement");
  1327. ie_end = pos + ie_len;
  1328. pos += 4;
  1329. url_len = *pos++;
  1330. if (url_len == 0) {
  1331. wpa_printf(MSG_DEBUG, "WNM: No Server URL included");
  1332. url = NULL;
  1333. osu_method = 1;
  1334. } else {
  1335. if (url_len + 1 > ie_end - pos) {
  1336. wpa_printf(MSG_DEBUG, "WNM: Not enough room for Server URL (len=%u) and Server Method (left %d)",
  1337. url_len,
  1338. (int) (ie_end - pos));
  1339. break;
  1340. }
  1341. url = os_malloc(url_len + 1);
  1342. if (url == NULL)
  1343. break;
  1344. os_memcpy(url, pos, url_len);
  1345. url[url_len] = '\0';
  1346. osu_method = pos[url_len];
  1347. }
  1348. hs20_rx_subscription_remediation(wpa_s, url,
  1349. osu_method);
  1350. os_free(url);
  1351. pos = next;
  1352. continue;
  1353. }
  1354. if (ie == WLAN_EID_VENDOR_SPECIFIC && ie_len >= 8 &&
  1355. WPA_GET_BE24(pos) == OUI_WFA &&
  1356. pos[3] == HS20_WNM_DEAUTH_IMMINENT_NOTICE) {
  1357. const u8 *ie_end;
  1358. u8 url_len;
  1359. char *url;
  1360. u8 code;
  1361. u16 reauth_delay;
  1362. ie_end = pos + ie_len;
  1363. pos += 4;
  1364. code = *pos++;
  1365. reauth_delay = WPA_GET_LE16(pos);
  1366. pos += 2;
  1367. url_len = *pos++;
  1368. wpa_printf(MSG_DEBUG, "WNM: HS 2.0 Deauthentication "
  1369. "Imminent - Reason Code %u "
  1370. "Re-Auth Delay %u URL Length %u",
  1371. code, reauth_delay, url_len);
  1372. if (url_len > ie_end - pos)
  1373. break;
  1374. url = os_malloc(url_len + 1);
  1375. if (url == NULL)
  1376. break;
  1377. os_memcpy(url, pos, url_len);
  1378. url[url_len] = '\0';
  1379. hs20_rx_deauth_imminent_notice(wpa_s, code,
  1380. reauth_delay, url);
  1381. os_free(url);
  1382. pos = next;
  1383. continue;
  1384. }
  1385. #endif /* CONFIG_HS20 */
  1386. pos = next;
  1387. }
  1388. }
  1389. static void ieee802_11_rx_wnm_notif_req(struct wpa_supplicant *wpa_s,
  1390. const u8 *sa, const u8 *frm, int len)
  1391. {
  1392. const u8 *pos, *end;
  1393. u8 dialog_token, type;
  1394. /* Dialog Token [1] | Type [1] | Subelements */
  1395. if (len < 2 || sa == NULL)
  1396. return;
  1397. end = frm + len;
  1398. pos = frm;
  1399. dialog_token = *pos++;
  1400. type = *pos++;
  1401. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: Received WNM-Notification Request "
  1402. "(dialog_token %u type %u sa " MACSTR ")",
  1403. dialog_token, type, MAC2STR(sa));
  1404. wpa_hexdump(MSG_DEBUG, "WNM-Notification Request subelements",
  1405. pos, end - pos);
  1406. if (wpa_s->wpa_state != WPA_COMPLETED ||
  1407. os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0) {
  1408. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: WNM-Notification frame not "
  1409. "from our AP - ignore it");
  1410. return;
  1411. }
  1412. switch (type) {
  1413. case 1:
  1414. ieee802_11_rx_wnm_notif_req_wfa(wpa_s, sa, pos, end - pos);
  1415. break;
  1416. default:
  1417. wpa_dbg(wpa_s, MSG_DEBUG, "WNM: Ignore unknown "
  1418. "WNM-Notification type %u", type);
  1419. break;
  1420. }
  1421. }
  1422. void ieee802_11_rx_wnm_action(struct wpa_supplicant *wpa_s,
  1423. const struct ieee80211_mgmt *mgmt, size_t len)
  1424. {
  1425. const u8 *pos, *end;
  1426. u8 act;
  1427. if (len < IEEE80211_HDRLEN + 2)
  1428. return;
  1429. pos = ((const u8 *) mgmt) + IEEE80211_HDRLEN + 1;
  1430. act = *pos++;
  1431. end = ((const u8 *) mgmt) + len;
  1432. wpa_printf(MSG_DEBUG, "WNM: RX action %u from " MACSTR,
  1433. act, MAC2STR(mgmt->sa));
  1434. if (wpa_s->wpa_state < WPA_ASSOCIATED ||
  1435. os_memcmp(mgmt->sa, wpa_s->bssid, ETH_ALEN) != 0) {
  1436. wpa_printf(MSG_DEBUG, "WNM: Ignore unexpected WNM Action "
  1437. "frame");
  1438. return;
  1439. }
  1440. switch (act) {
  1441. case WNM_BSS_TRANS_MGMT_REQ:
  1442. ieee802_11_rx_bss_trans_mgmt_req(wpa_s, pos, end,
  1443. !(mgmt->da[0] & 0x01));
  1444. break;
  1445. case WNM_SLEEP_MODE_RESP:
  1446. ieee802_11_rx_wnmsleep_resp(wpa_s, pos, end - pos);
  1447. break;
  1448. case WNM_NOTIFICATION_REQ:
  1449. ieee802_11_rx_wnm_notif_req(wpa_s, mgmt->sa, pos, end - pos);
  1450. break;
  1451. default:
  1452. wpa_printf(MSG_ERROR, "WNM: Unknown request");
  1453. break;
  1454. }
  1455. }