rrm.c 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453
  1. /*
  2. * wpa_supplicant - Radio Measurements
  3. * Copyright (c) 2003-2016, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "utils/common.h"
  10. #include "utils/eloop.h"
  11. #include "common/ieee802_11_common.h"
  12. #include "wpa_supplicant_i.h"
  13. #include "driver_i.h"
  14. #include "bss.h"
  15. #include "scan.h"
  16. #include "p2p_supplicant.h"
  17. static void wpas_rrm_neighbor_rep_timeout_handler(void *data, void *user_ctx)
  18. {
  19. struct rrm_data *rrm = data;
  20. if (!rrm->notify_neighbor_rep) {
  21. wpa_printf(MSG_ERROR,
  22. "RRM: Unexpected neighbor report timeout");
  23. return;
  24. }
  25. wpa_printf(MSG_DEBUG, "RRM: Notifying neighbor report - NONE");
  26. rrm->notify_neighbor_rep(rrm->neighbor_rep_cb_ctx, NULL);
  27. rrm->notify_neighbor_rep = NULL;
  28. rrm->neighbor_rep_cb_ctx = NULL;
  29. }
  30. /*
  31. * wpas_rrm_reset - Clear and reset all RRM data in wpa_supplicant
  32. * @wpa_s: Pointer to wpa_supplicant
  33. */
  34. void wpas_rrm_reset(struct wpa_supplicant *wpa_s)
  35. {
  36. wpa_s->rrm.rrm_used = 0;
  37. eloop_cancel_timeout(wpas_rrm_neighbor_rep_timeout_handler, &wpa_s->rrm,
  38. NULL);
  39. if (wpa_s->rrm.notify_neighbor_rep)
  40. wpas_rrm_neighbor_rep_timeout_handler(&wpa_s->rrm, NULL);
  41. wpa_s->rrm.next_neighbor_rep_token = 1;
  42. wpas_clear_beacon_rep_data(wpa_s);
  43. }
  44. /*
  45. * wpas_rrm_process_neighbor_rep - Handle incoming neighbor report
  46. * @wpa_s: Pointer to wpa_supplicant
  47. * @report: Neighbor report buffer, prefixed by a 1-byte dialog token
  48. * @report_len: Length of neighbor report buffer
  49. */
  50. void wpas_rrm_process_neighbor_rep(struct wpa_supplicant *wpa_s,
  51. const u8 *report, size_t report_len)
  52. {
  53. struct wpabuf *neighbor_rep;
  54. wpa_hexdump(MSG_DEBUG, "RRM: New Neighbor Report", report, report_len);
  55. if (report_len < 1)
  56. return;
  57. if (report[0] != wpa_s->rrm.next_neighbor_rep_token - 1) {
  58. wpa_printf(MSG_DEBUG,
  59. "RRM: Discarding neighbor report with token %d (expected %d)",
  60. report[0], wpa_s->rrm.next_neighbor_rep_token - 1);
  61. return;
  62. }
  63. eloop_cancel_timeout(wpas_rrm_neighbor_rep_timeout_handler, &wpa_s->rrm,
  64. NULL);
  65. if (!wpa_s->rrm.notify_neighbor_rep) {
  66. wpa_printf(MSG_ERROR, "RRM: Unexpected neighbor report");
  67. return;
  68. }
  69. /* skipping the first byte, which is only an id (dialog token) */
  70. neighbor_rep = wpabuf_alloc(report_len - 1);
  71. if (!neighbor_rep) {
  72. wpas_rrm_neighbor_rep_timeout_handler(&wpa_s->rrm, NULL);
  73. return;
  74. }
  75. wpabuf_put_data(neighbor_rep, report + 1, report_len - 1);
  76. wpa_printf(MSG_DEBUG, "RRM: Notifying neighbor report (token = %d)",
  77. report[0]);
  78. wpa_s->rrm.notify_neighbor_rep(wpa_s->rrm.neighbor_rep_cb_ctx,
  79. neighbor_rep);
  80. wpa_s->rrm.notify_neighbor_rep = NULL;
  81. wpa_s->rrm.neighbor_rep_cb_ctx = NULL;
  82. }
  83. #if defined(__CYGWIN__) || defined(CONFIG_NATIVE_WINDOWS)
  84. /* Workaround different, undefined for Windows, error codes used here */
  85. #define ENOTCONN -1
  86. #define EOPNOTSUPP -1
  87. #define ECANCELED -1
  88. #endif
  89. /* Measurement Request element + Location Subject + Maximum Age subelement */
  90. #define MEASURE_REQUEST_LCI_LEN (3 + 1 + 4)
  91. /* Measurement Request element + Location Civic Request */
  92. #define MEASURE_REQUEST_CIVIC_LEN (3 + 5)
  93. /**
  94. * wpas_rrm_send_neighbor_rep_request - Request a neighbor report from our AP
  95. * @wpa_s: Pointer to wpa_supplicant
  96. * @ssid: if not null, this is sent in the request. Otherwise, no SSID IE
  97. * is sent in the request.
  98. * @lci: if set, neighbor request will include LCI request
  99. * @civic: if set, neighbor request will include civic location request
  100. * @cb: Callback function to be called once the requested report arrives, or
  101. * timed out after RRM_NEIGHBOR_REPORT_TIMEOUT seconds.
  102. * In the former case, 'neighbor_rep' is a newly allocated wpabuf, and it's
  103. * the requester's responsibility to free it.
  104. * In the latter case NULL will be sent in 'neighbor_rep'.
  105. * @cb_ctx: Context value to send the callback function
  106. * Returns: 0 in case of success, negative error code otherwise
  107. *
  108. * In case there is a previous request which has not been answered yet, the
  109. * new request fails. The caller may retry after RRM_NEIGHBOR_REPORT_TIMEOUT.
  110. * Request must contain a callback function.
  111. */
  112. int wpas_rrm_send_neighbor_rep_request(struct wpa_supplicant *wpa_s,
  113. const struct wpa_ssid_value *ssid,
  114. int lci, int civic,
  115. void (*cb)(void *ctx,
  116. struct wpabuf *neighbor_rep),
  117. void *cb_ctx)
  118. {
  119. struct wpabuf *buf;
  120. const u8 *rrm_ie;
  121. if (wpa_s->wpa_state != WPA_COMPLETED || wpa_s->current_ssid == NULL) {
  122. wpa_printf(MSG_DEBUG, "RRM: No connection, no RRM.");
  123. return -ENOTCONN;
  124. }
  125. if (!wpa_s->rrm.rrm_used) {
  126. wpa_printf(MSG_DEBUG, "RRM: No RRM in current connection.");
  127. return -EOPNOTSUPP;
  128. }
  129. rrm_ie = wpa_bss_get_ie(wpa_s->current_bss,
  130. WLAN_EID_RRM_ENABLED_CAPABILITIES);
  131. if (!rrm_ie || !(wpa_s->current_bss->caps & IEEE80211_CAP_RRM) ||
  132. !(rrm_ie[2] & WLAN_RRM_CAPS_NEIGHBOR_REPORT)) {
  133. wpa_printf(MSG_DEBUG,
  134. "RRM: No network support for Neighbor Report.");
  135. return -EOPNOTSUPP;
  136. }
  137. if (!cb) {
  138. wpa_printf(MSG_DEBUG,
  139. "RRM: Neighbor Report request must provide a callback.");
  140. return -EINVAL;
  141. }
  142. /* Refuse if there's a live request */
  143. if (wpa_s->rrm.notify_neighbor_rep) {
  144. wpa_printf(MSG_DEBUG,
  145. "RRM: Currently handling previous Neighbor Report.");
  146. return -EBUSY;
  147. }
  148. /* 3 = action category + action code + dialog token */
  149. buf = wpabuf_alloc(3 + (ssid ? 2 + ssid->ssid_len : 0) +
  150. (lci ? 2 + MEASURE_REQUEST_LCI_LEN : 0) +
  151. (civic ? 2 + MEASURE_REQUEST_CIVIC_LEN : 0));
  152. if (buf == NULL) {
  153. wpa_printf(MSG_DEBUG,
  154. "RRM: Failed to allocate Neighbor Report Request");
  155. return -ENOMEM;
  156. }
  157. wpa_printf(MSG_DEBUG, "RRM: Neighbor report request (for %s), token=%d",
  158. (ssid ? wpa_ssid_txt(ssid->ssid, ssid->ssid_len) : ""),
  159. wpa_s->rrm.next_neighbor_rep_token);
  160. wpabuf_put_u8(buf, WLAN_ACTION_RADIO_MEASUREMENT);
  161. wpabuf_put_u8(buf, WLAN_RRM_NEIGHBOR_REPORT_REQUEST);
  162. wpabuf_put_u8(buf, wpa_s->rrm.next_neighbor_rep_token);
  163. if (ssid) {
  164. wpabuf_put_u8(buf, WLAN_EID_SSID);
  165. wpabuf_put_u8(buf, ssid->ssid_len);
  166. wpabuf_put_data(buf, ssid->ssid, ssid->ssid_len);
  167. }
  168. if (lci) {
  169. /* IEEE P802.11-REVmc/D5.0 9.4.2.21 */
  170. wpabuf_put_u8(buf, WLAN_EID_MEASURE_REQUEST);
  171. wpabuf_put_u8(buf, MEASURE_REQUEST_LCI_LEN);
  172. /*
  173. * Measurement token; nonzero number that is unique among the
  174. * Measurement Request elements in a particular frame.
  175. */
  176. wpabuf_put_u8(buf, 1); /* Measurement Token */
  177. /*
  178. * Parallel, Enable, Request, and Report bits are 0, Duration is
  179. * reserved.
  180. */
  181. wpabuf_put_u8(buf, 0); /* Measurement Request Mode */
  182. wpabuf_put_u8(buf, MEASURE_TYPE_LCI); /* Measurement Type */
  183. /* IEEE P802.11-REVmc/D5.0 9.4.2.21.10 - LCI request */
  184. /* Location Subject */
  185. wpabuf_put_u8(buf, LOCATION_SUBJECT_REMOTE);
  186. /* Optional Subelements */
  187. /*
  188. * IEEE P802.11-REVmc/D5.0 Figure 9-170
  189. * The Maximum Age subelement is required, otherwise the AP can
  190. * send only data that was determined after receiving the
  191. * request. Setting it here to unlimited age.
  192. */
  193. wpabuf_put_u8(buf, LCI_REQ_SUBELEM_MAX_AGE);
  194. wpabuf_put_u8(buf, 2);
  195. wpabuf_put_le16(buf, 0xffff);
  196. }
  197. if (civic) {
  198. /* IEEE P802.11-REVmc/D5.0 9.4.2.21 */
  199. wpabuf_put_u8(buf, WLAN_EID_MEASURE_REQUEST);
  200. wpabuf_put_u8(buf, MEASURE_REQUEST_CIVIC_LEN);
  201. /*
  202. * Measurement token; nonzero number that is unique among the
  203. * Measurement Request elements in a particular frame.
  204. */
  205. wpabuf_put_u8(buf, 2); /* Measurement Token */
  206. /*
  207. * Parallel, Enable, Request, and Report bits are 0, Duration is
  208. * reserved.
  209. */
  210. wpabuf_put_u8(buf, 0); /* Measurement Request Mode */
  211. /* Measurement Type */
  212. wpabuf_put_u8(buf, MEASURE_TYPE_LOCATION_CIVIC);
  213. /* IEEE P802.11-REVmc/D5.0 9.4.2.21.14:
  214. * Location Civic request */
  215. /* Location Subject */
  216. wpabuf_put_u8(buf, LOCATION_SUBJECT_REMOTE);
  217. wpabuf_put_u8(buf, 0); /* Civic Location Type: IETF RFC 4776 */
  218. /* Location Service Interval Units: Seconds */
  219. wpabuf_put_u8(buf, 0);
  220. /* Location Service Interval: 0 - Only one report is requested
  221. */
  222. wpabuf_put_le16(buf, 0);
  223. /* No optional subelements */
  224. }
  225. wpa_s->rrm.next_neighbor_rep_token++;
  226. if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  227. wpa_s->own_addr, wpa_s->bssid,
  228. wpabuf_head(buf), wpabuf_len(buf), 0) < 0) {
  229. wpa_printf(MSG_DEBUG,
  230. "RRM: Failed to send Neighbor Report Request");
  231. wpabuf_free(buf);
  232. return -ECANCELED;
  233. }
  234. wpa_s->rrm.neighbor_rep_cb_ctx = cb_ctx;
  235. wpa_s->rrm.notify_neighbor_rep = cb;
  236. eloop_register_timeout(RRM_NEIGHBOR_REPORT_TIMEOUT, 0,
  237. wpas_rrm_neighbor_rep_timeout_handler,
  238. &wpa_s->rrm, NULL);
  239. wpabuf_free(buf);
  240. return 0;
  241. }
  242. static int wpas_rrm_report_elem(struct wpabuf *buf, u8 token, u8 mode, u8 type,
  243. const u8 *data, size_t data_len)
  244. {
  245. if (wpabuf_tailroom(buf) < 5 + data_len)
  246. return -1;
  247. wpabuf_put_u8(buf, WLAN_EID_MEASURE_REPORT);
  248. wpabuf_put_u8(buf, 3 + data_len);
  249. wpabuf_put_u8(buf, token);
  250. wpabuf_put_u8(buf, mode);
  251. wpabuf_put_u8(buf, type);
  252. if (data_len)
  253. wpabuf_put_data(buf, data, data_len);
  254. return 0;
  255. }
  256. static int
  257. wpas_rrm_build_lci_report(struct wpa_supplicant *wpa_s,
  258. const struct rrm_measurement_request_element *req,
  259. struct wpabuf **buf)
  260. {
  261. u8 subject;
  262. u16 max_age = 0;
  263. struct os_reltime t, diff;
  264. unsigned long diff_l;
  265. const u8 *subelem;
  266. const u8 *request = req->variable;
  267. size_t len = req->len - 3;
  268. if (len < 1)
  269. return -1;
  270. if (!wpa_s->lci)
  271. goto reject;
  272. subject = *request++;
  273. len--;
  274. wpa_printf(MSG_DEBUG, "Measurement request location subject=%u",
  275. subject);
  276. if (subject != LOCATION_SUBJECT_REMOTE) {
  277. wpa_printf(MSG_INFO,
  278. "Not building LCI report - bad location subject");
  279. return 0;
  280. }
  281. /* Subelements are formatted exactly like elements */
  282. wpa_hexdump(MSG_DEBUG, "LCI request subelements", request, len);
  283. subelem = get_ie(request, len, LCI_REQ_SUBELEM_MAX_AGE);
  284. if (subelem && subelem[1] == 2)
  285. max_age = WPA_GET_LE16(subelem + 2);
  286. if (os_get_reltime(&t))
  287. goto reject;
  288. os_reltime_sub(&t, &wpa_s->lci_time, &diff);
  289. /* LCI age is calculated in 10th of a second units. */
  290. diff_l = diff.sec * 10 + diff.usec / 100000;
  291. if (max_age != 0xffff && max_age < diff_l)
  292. goto reject;
  293. if (wpabuf_resize(buf, 5 + wpabuf_len(wpa_s->lci)))
  294. return -1;
  295. if (wpas_rrm_report_elem(*buf, req->token,
  296. MEASUREMENT_REPORT_MODE_ACCEPT, req->type,
  297. wpabuf_head_u8(wpa_s->lci),
  298. wpabuf_len(wpa_s->lci)) < 0) {
  299. wpa_printf(MSG_DEBUG, "Failed to add LCI report element");
  300. return -1;
  301. }
  302. return 0;
  303. reject:
  304. if (wpabuf_resize(buf, sizeof(struct rrm_measurement_report_element))) {
  305. wpa_printf(MSG_DEBUG, "RRM: Memory allocation failed");
  306. return -1;
  307. }
  308. if (wpas_rrm_report_elem(*buf, req->token,
  309. MEASUREMENT_REPORT_MODE_REJECT_INCAPABLE,
  310. req->type, NULL, 0) < 0) {
  311. wpa_printf(MSG_DEBUG, "RRM: Failed to add report element");
  312. return -1;
  313. }
  314. return 0;
  315. }
  316. static void wpas_rrm_send_msr_report_mpdu(struct wpa_supplicant *wpa_s,
  317. const u8 *data, size_t len)
  318. {
  319. struct wpabuf *report = wpabuf_alloc(len + 3);
  320. if (!report)
  321. return;
  322. wpabuf_put_u8(report, WLAN_ACTION_RADIO_MEASUREMENT);
  323. wpabuf_put_u8(report, WLAN_RRM_RADIO_MEASUREMENT_REPORT);
  324. wpabuf_put_u8(report, wpa_s->rrm.token);
  325. wpabuf_put_data(report, data, len);
  326. if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  327. wpa_s->own_addr, wpa_s->bssid,
  328. wpabuf_head(report), wpabuf_len(report), 0)) {
  329. wpa_printf(MSG_ERROR,
  330. "RRM: Radio measurement report failed: Sending Action frame failed");
  331. }
  332. wpabuf_free(report);
  333. }
  334. static void wpas_rrm_send_msr_report(struct wpa_supplicant *wpa_s,
  335. struct wpabuf *buf)
  336. {
  337. int len = wpabuf_len(buf);
  338. const u8 *pos = wpabuf_head_u8(buf), *next = pos;
  339. #define MPDU_REPORT_LEN (int) (IEEE80211_MAX_MMPDU_SIZE - IEEE80211_HDRLEN - 3)
  340. while (len) {
  341. int send_len = (len > MPDU_REPORT_LEN) ? next - pos : len;
  342. if (send_len == len ||
  343. (send_len + next[1] + 2) > MPDU_REPORT_LEN) {
  344. wpas_rrm_send_msr_report_mpdu(wpa_s, pos, send_len);
  345. len -= send_len;
  346. pos = next;
  347. }
  348. next += next[1] + 2;
  349. }
  350. #undef MPDU_REPORT_LEN
  351. }
  352. static int wpas_add_channel(u8 op_class, u8 chan, u8 num_primary_channels,
  353. int *freqs)
  354. {
  355. size_t i;
  356. for (i = 0; i < num_primary_channels; i++) {
  357. u8 primary_chan = chan - (2 * num_primary_channels - 2) + i * 4;
  358. freqs[i] = ieee80211_chan_to_freq(NULL, op_class, primary_chan);
  359. if (freqs[i] < 0) {
  360. wpa_printf(MSG_DEBUG,
  361. "Beacon Report: Invalid channel %u",
  362. chan);
  363. return -1;
  364. }
  365. }
  366. return 0;
  367. }
  368. static int * wpas_add_channels(const struct oper_class_map *op,
  369. struct hostapd_hw_modes *mode, int active,
  370. const u8 *channels, const u8 size)
  371. {
  372. int *freqs, *next_freq;
  373. u8 num_primary_channels, i;
  374. u8 num_chans;
  375. num_chans = channels ? size :
  376. (op->max_chan - op->min_chan) / op->inc + 1;
  377. if (op->bw == BW80 || op->bw == BW80P80)
  378. num_primary_channels = 4;
  379. else if (op->bw == BW160)
  380. num_primary_channels = 8;
  381. else
  382. num_primary_channels = 1;
  383. /* one extra place for the zero-terminator */
  384. freqs = os_calloc(num_chans * num_primary_channels + 1, sizeof(*freqs));
  385. if (!freqs) {
  386. wpa_printf(MSG_ERROR,
  387. "Beacon Report: Failed to allocate freqs array");
  388. return NULL;
  389. }
  390. next_freq = freqs;
  391. for (i = 0; i < num_chans; i++) {
  392. u8 chan = channels ? channels[i] : op->min_chan + i * op->inc;
  393. enum chan_allowed res = verify_channel(mode, chan, op->bw);
  394. if (res == NOT_ALLOWED || (res == NO_IR && active))
  395. continue;
  396. if (wpas_add_channel(op->op_class, chan, num_primary_channels,
  397. next_freq) < 0) {
  398. os_free(freqs);
  399. return NULL;
  400. }
  401. next_freq += num_primary_channels;
  402. }
  403. if (!freqs[0]) {
  404. os_free(freqs);
  405. return NULL;
  406. }
  407. return freqs;
  408. }
  409. static int * wpas_op_class_freqs(const struct oper_class_map *op,
  410. struct hostapd_hw_modes *mode, int active)
  411. {
  412. u8 channels_80mhz[] = { 42, 58, 106, 122, 138, 155 };
  413. u8 channels_160mhz[] = { 50, 114 };
  414. /*
  415. * When adding all channels in the operating class, 80 + 80 MHz
  416. * operating classes are like 80 MHz channels because we add all valid
  417. * channels anyway.
  418. */
  419. if (op->bw == BW80 || op->bw == BW80P80)
  420. return wpas_add_channels(op, mode, active, channels_80mhz,
  421. ARRAY_SIZE(channels_80mhz));
  422. if (op->bw == BW160)
  423. return wpas_add_channels(op, mode, active, channels_160mhz,
  424. ARRAY_SIZE(channels_160mhz));
  425. return wpas_add_channels(op, mode, active, NULL, 0);
  426. }
  427. static int * wpas_channel_report_freqs(struct wpa_supplicant *wpa_s, int active,
  428. const char *country, const u8 *subelems,
  429. size_t len)
  430. {
  431. int *freqs = NULL, *new_freqs;
  432. const u8 *end = subelems + len;
  433. while (end - subelems > 2) {
  434. const struct oper_class_map *op;
  435. const u8 *ap_chan_elem, *pos;
  436. u8 left;
  437. struct hostapd_hw_modes *mode;
  438. ap_chan_elem = get_ie(subelems, end - subelems,
  439. WLAN_BEACON_REQUEST_SUBELEM_AP_CHANNEL);
  440. if (!ap_chan_elem)
  441. break;
  442. pos = ap_chan_elem + 2;
  443. left = ap_chan_elem[1];
  444. if (left < 1)
  445. break;
  446. subelems = ap_chan_elem + 2 + left;
  447. op = get_oper_class(country, *pos);
  448. if (!op) {
  449. wpa_printf(MSG_DEBUG,
  450. "Beacon request: unknown operating class in AP Channel Report subelement %u",
  451. *pos);
  452. goto out;
  453. }
  454. pos++;
  455. left--;
  456. mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, op->mode);
  457. if (!mode)
  458. continue;
  459. /*
  460. * For 80 + 80 MHz operating classes, this AP Channel Report
  461. * element should be followed by another element specifying
  462. * the second 80 MHz channel. For now just add this 80 MHz
  463. * channel, the second 80 MHz channel will be added when the
  464. * next element is parsed.
  465. * TODO: Verify that this AP Channel Report element is followed
  466. * by a corresponding AP Channel Report element as specified in
  467. * IEEE Std 802.11-2016, 11.11.9.1.
  468. */
  469. new_freqs = wpas_add_channels(op, mode, active, pos, left);
  470. if (new_freqs)
  471. int_array_concat(&freqs, new_freqs);
  472. os_free(new_freqs);
  473. }
  474. return freqs;
  475. out:
  476. os_free(freqs);
  477. return NULL;
  478. }
  479. static int * wpas_beacon_request_freqs(struct wpa_supplicant *wpa_s,
  480. u8 op_class, u8 chan, int active,
  481. const u8 *subelems, size_t len)
  482. {
  483. int *freqs = NULL, *ext_freqs = NULL;
  484. struct hostapd_hw_modes *mode;
  485. const char *country = NULL;
  486. const struct oper_class_map *op;
  487. const u8 *elem;
  488. if (!wpa_s->current_bss)
  489. return NULL;
  490. elem = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_COUNTRY);
  491. if (elem && elem[1] >= 2)
  492. country = (const char *) (elem + 2);
  493. op = get_oper_class(country, op_class);
  494. if (!op) {
  495. wpa_printf(MSG_DEBUG,
  496. "Beacon request: invalid operating class %d",
  497. op_class);
  498. return NULL;
  499. }
  500. mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, op->mode);
  501. if (!mode)
  502. return NULL;
  503. switch (chan) {
  504. case 0:
  505. freqs = wpas_op_class_freqs(op, mode, active);
  506. if (!freqs)
  507. return NULL;
  508. break;
  509. case 255:
  510. /* freqs will be added from AP channel subelements */
  511. break;
  512. default:
  513. freqs = wpas_add_channels(op, mode, active, &chan, 1);
  514. if (!freqs)
  515. return NULL;
  516. break;
  517. }
  518. ext_freqs = wpas_channel_report_freqs(wpa_s, active, country, subelems,
  519. len);
  520. if (ext_freqs) {
  521. int_array_concat(&freqs, ext_freqs);
  522. os_free(ext_freqs);
  523. }
  524. return freqs;
  525. }
  526. int wpas_get_op_chan_phy(int freq, const u8 *ies, size_t ies_len,
  527. u8 *op_class, u8 *chan, u8 *phy_type)
  528. {
  529. const u8 *ie;
  530. int sec_chan = 0, vht = 0;
  531. struct ieee80211_ht_operation *ht_oper = NULL;
  532. struct ieee80211_vht_operation *vht_oper = NULL;
  533. u8 seg0, seg1;
  534. ie = get_ie(ies, ies_len, WLAN_EID_HT_OPERATION);
  535. if (ie && ie[1] >= sizeof(struct ieee80211_ht_operation)) {
  536. u8 sec_chan_offset;
  537. ht_oper = (struct ieee80211_ht_operation *) (ie + 2);
  538. sec_chan_offset = ht_oper->ht_param &
  539. HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK;
  540. if (sec_chan_offset == HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE)
  541. sec_chan = 1;
  542. else if (sec_chan_offset ==
  543. HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW)
  544. sec_chan = -1;
  545. }
  546. ie = get_ie(ies, ies_len, WLAN_EID_VHT_OPERATION);
  547. if (ie && ie[1] >= sizeof(struct ieee80211_vht_operation)) {
  548. vht_oper = (struct ieee80211_vht_operation *) (ie + 2);
  549. switch (vht_oper->vht_op_info_chwidth) {
  550. case 1:
  551. seg0 = vht_oper->vht_op_info_chan_center_freq_seg0_idx;
  552. seg1 = vht_oper->vht_op_info_chan_center_freq_seg1_idx;
  553. if (seg1 && abs(seg1 - seg0) == 8)
  554. vht = VHT_CHANWIDTH_160MHZ;
  555. else if (seg1)
  556. vht = VHT_CHANWIDTH_80P80MHZ;
  557. else
  558. vht = VHT_CHANWIDTH_80MHZ;
  559. break;
  560. case 2:
  561. vht = VHT_CHANWIDTH_160MHZ;
  562. break;
  563. case 3:
  564. vht = VHT_CHANWIDTH_80P80MHZ;
  565. break;
  566. default:
  567. vht = VHT_CHANWIDTH_USE_HT;
  568. break;
  569. }
  570. }
  571. if (ieee80211_freq_to_channel_ext(freq, sec_chan, vht, op_class,
  572. chan) == NUM_HOSTAPD_MODES) {
  573. wpa_printf(MSG_DEBUG,
  574. "Cannot determine operating class and channel");
  575. return -1;
  576. }
  577. *phy_type = ieee80211_get_phy_type(freq, ht_oper != NULL,
  578. vht_oper != NULL);
  579. if (*phy_type == PHY_TYPE_UNSPECIFIED) {
  580. wpa_printf(MSG_DEBUG, "Cannot determine phy type");
  581. return -1;
  582. }
  583. return 0;
  584. }
  585. static int wpas_beacon_rep_add_frame_body(struct bitfield *eids,
  586. enum beacon_report_detail detail,
  587. struct wpa_bss *bss, u8 *buf,
  588. size_t buf_len)
  589. {
  590. u8 *ies = (u8 *) (bss + 1);
  591. size_t ies_len = bss->ie_len ? bss->ie_len : bss->beacon_ie_len;
  592. u8 *pos = buf;
  593. int rem_len;
  594. rem_len = 255 - sizeof(struct rrm_measurement_beacon_report) -
  595. sizeof(struct rrm_measurement_report_element) - 2;
  596. if (detail > BEACON_REPORT_DETAIL_ALL_FIELDS_AND_ELEMENTS) {
  597. wpa_printf(MSG_DEBUG,
  598. "Beacon Request: Invalid reporting detail: %d",
  599. detail);
  600. return -1;
  601. }
  602. if (detail == BEACON_REPORT_DETAIL_NONE)
  603. return 0;
  604. /*
  605. * Minimal frame body subelement size: EID(1) + length(1) + TSF(8) +
  606. * beacon interval(2) + capabilities(2) = 14 bytes
  607. */
  608. if (buf_len < 14)
  609. return 0;
  610. *pos++ = WLAN_BEACON_REPORT_SUBELEM_FRAME_BODY;
  611. /* The length will be filled later */
  612. pos++;
  613. WPA_PUT_LE64(pos, bss->tsf);
  614. pos += sizeof(bss->tsf);
  615. WPA_PUT_LE16(pos, bss->beacon_int);
  616. pos += 2;
  617. WPA_PUT_LE16(pos, bss->caps);
  618. pos += 2;
  619. rem_len -= pos - buf;
  620. /*
  621. * According to IEEE Std 802.11-2016, 9.4.2.22.7, if the reported frame
  622. * body subelement causes the element to exceed the maximum element
  623. * size, the subelement is truncated so that the last IE is a complete
  624. * IE. So even when required to report all IEs, add elements one after
  625. * the other and stop once there is no more room in the measurement
  626. * element.
  627. */
  628. while (ies_len > 2 && 2U + ies[1] <= ies_len && rem_len > 0) {
  629. if (detail == BEACON_REPORT_DETAIL_ALL_FIELDS_AND_ELEMENTS ||
  630. (eids && bitfield_is_set(eids, ies[0]))) {
  631. u8 eid = ies[0], elen = ies[1];
  632. if ((eid == WLAN_EID_TIM || eid == WLAN_EID_RSN) &&
  633. elen > 4)
  634. elen = 4;
  635. /*
  636. * TODO: Truncate IBSS DFS element as described in
  637. * IEEE Std 802.11-2016, 9.4.2.22.7.
  638. */
  639. if (2 + elen > buf + buf_len - pos ||
  640. 2 + elen > rem_len)
  641. break;
  642. *pos++ = ies[0];
  643. *pos++ = elen;
  644. os_memcpy(pos, ies + 2, elen);
  645. pos += elen;
  646. rem_len -= 2 + elen;
  647. }
  648. ies_len -= 2 + ies[1];
  649. ies += 2 + ies[1];
  650. }
  651. /* Now the length is known */
  652. buf[1] = pos - buf - 2;
  653. return pos - buf;
  654. }
  655. static int wpas_add_beacon_rep(struct wpa_supplicant *wpa_s,
  656. struct wpabuf **wpa_buf, struct wpa_bss *bss,
  657. u64 start, u64 parent_tsf)
  658. {
  659. struct beacon_rep_data *data = &wpa_s->beacon_rep_data;
  660. u8 *ie = (u8 *) (bss + 1);
  661. size_t ie_len = bss->ie_len + bss->beacon_ie_len;
  662. int ret;
  663. u8 buf[2000];
  664. struct rrm_measurement_beacon_report *rep;
  665. if (os_memcmp(data->bssid, broadcast_ether_addr, ETH_ALEN) != 0 &&
  666. os_memcmp(data->bssid, bss->bssid, ETH_ALEN) != 0)
  667. return 0;
  668. if (data->ssid_len &&
  669. (data->ssid_len != bss->ssid_len ||
  670. os_memcmp(data->ssid, bss->ssid, bss->ssid_len) != 0))
  671. return 0;
  672. rep = (struct rrm_measurement_beacon_report *) buf;
  673. if (wpas_get_op_chan_phy(bss->freq, ie, ie_len, &rep->op_class,
  674. &rep->channel, &rep->report_info) < 0)
  675. return 0;
  676. rep->start_time = host_to_le64(start);
  677. rep->duration = host_to_le16(data->scan_params.duration);
  678. rep->rcpi = rssi_to_rcpi(bss->level);
  679. rep->rsni = 255; /* 255 indicates that RSNI is not available */
  680. os_memcpy(rep->bssid, bss->bssid, ETH_ALEN);
  681. rep->antenna_id = 0; /* unknown */
  682. rep->parent_tsf = host_to_le32(parent_tsf);
  683. ret = wpas_beacon_rep_add_frame_body(data->eids, data->report_detail,
  684. bss, rep->variable,
  685. sizeof(buf) - sizeof(*rep));
  686. if (ret < 0)
  687. return -1;
  688. if (wpabuf_resize(wpa_buf,
  689. sizeof(struct rrm_measurement_report_element) +
  690. sizeof(*rep) + ret)) {
  691. wpa_printf(MSG_ERROR, "RRM: Memory allocation failed");
  692. return -1;
  693. }
  694. return wpas_rrm_report_elem(*wpa_buf, wpa_s->beacon_rep_data.token,
  695. MEASUREMENT_REPORT_MODE_ACCEPT,
  696. MEASURE_TYPE_BEACON, buf,
  697. ret + sizeof(*rep));
  698. }
  699. static int wpas_beacon_rep_no_results(struct wpa_supplicant *wpa_s,
  700. struct wpabuf **buf)
  701. {
  702. if (wpabuf_resize(buf, 5)) {
  703. wpa_printf(MSG_DEBUG, "RRM: Memory allocation failed");
  704. return -1;
  705. }
  706. return wpas_rrm_report_elem(*buf, wpa_s->beacon_rep_data.token,
  707. MEASUREMENT_REPORT_MODE_ACCEPT,
  708. MEASURE_TYPE_BEACON, NULL, 0);
  709. }
  710. static void wpas_beacon_rep_table(struct wpa_supplicant *wpa_s,
  711. struct wpabuf **buf)
  712. {
  713. size_t i;
  714. for (i = 0; i < wpa_s->last_scan_res_used; i++) {
  715. if (wpas_add_beacon_rep(wpa_s, buf, wpa_s->last_scan_res[i],
  716. 0, 0) < 0)
  717. break;
  718. }
  719. if (!(*buf))
  720. wpas_beacon_rep_no_results(wpa_s, buf);
  721. wpa_hexdump_buf(MSG_DEBUG, "RRM: Radio Measurement report", *buf);
  722. }
  723. static void wpas_rrm_refuse_request(struct wpa_supplicant *wpa_s)
  724. {
  725. struct wpabuf *buf;
  726. buf = wpabuf_alloc(sizeof(struct rrm_measurement_beacon_report));
  727. if (!buf ||
  728. wpas_rrm_report_elem(buf, wpa_s->beacon_rep_data.token,
  729. MEASUREMENT_REPORT_MODE_REJECT_REFUSED,
  730. MEASURE_TYPE_BEACON, NULL, 0)) {
  731. wpa_printf(MSG_ERROR, "RRM: Memory allocation failed");
  732. wpabuf_free(buf);
  733. return;
  734. }
  735. wpas_rrm_send_msr_report(wpa_s, buf);
  736. wpas_clear_beacon_rep_data(wpa_s);
  737. wpabuf_free(buf);
  738. }
  739. static void wpas_rrm_scan_timeout(void *eloop_ctx, void *timeout_ctx)
  740. {
  741. struct wpa_supplicant *wpa_s = eloop_ctx;
  742. struct wpa_driver_scan_params *params =
  743. &wpa_s->beacon_rep_data.scan_params;
  744. u16 prev_duration = params->duration;
  745. if (!wpa_s->current_bss)
  746. return;
  747. if (!(wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_SUPPORT_SET_SCAN_DWELL) &&
  748. params->duration) {
  749. wpa_printf(MSG_DEBUG,
  750. "RRM: Cannot set scan duration due to missing driver support");
  751. params->duration = 0;
  752. }
  753. os_get_reltime(&wpa_s->beacon_rep_scan);
  754. if (wpa_s->scanning || wpas_p2p_in_progress(wpa_s) ||
  755. wpa_supplicant_trigger_scan(wpa_s, params))
  756. wpas_rrm_refuse_request(wpa_s);
  757. params->duration = prev_duration;
  758. }
  759. static int wpas_rm_handle_beacon_req_subelem(struct wpa_supplicant *wpa_s,
  760. struct beacon_rep_data *data,
  761. u8 sid, u8 slen, const u8 *subelem)
  762. {
  763. u8 report_info, i;
  764. switch (sid) {
  765. case WLAN_BEACON_REQUEST_SUBELEM_SSID:
  766. if (!slen) {
  767. wpa_printf(MSG_DEBUG,
  768. "SSID subelement with zero length - wildcard SSID");
  769. break;
  770. }
  771. if (slen > SSID_MAX_LEN) {
  772. wpa_printf(MSG_DEBUG,
  773. "Invalid SSID subelement length: %u", slen);
  774. return -1;
  775. }
  776. data->ssid_len = slen;
  777. os_memcpy(data->ssid, subelem, data->ssid_len);
  778. break;
  779. case WLAN_BEACON_REQUEST_SUBELEM_INFO:
  780. if (slen != 2) {
  781. wpa_printf(MSG_DEBUG,
  782. "Invalid reporting information subelement length: %u",
  783. slen);
  784. return -1;
  785. }
  786. report_info = subelem[0];
  787. if (report_info != 0) {
  788. wpa_printf(MSG_DEBUG,
  789. "reporting information=%u is not supported",
  790. report_info);
  791. return 0;
  792. }
  793. break;
  794. case WLAN_BEACON_REQUEST_SUBELEM_DETAIL:
  795. if (slen != 1) {
  796. wpa_printf(MSG_DEBUG,
  797. "Invalid reporting detail subelement length: %u",
  798. slen);
  799. return -1;
  800. }
  801. data->report_detail = subelem[0];
  802. if (data->report_detail >
  803. BEACON_REPORT_DETAIL_ALL_FIELDS_AND_ELEMENTS) {
  804. wpa_printf(MSG_DEBUG, "Invalid reporting detail: %u",
  805. subelem[0]);
  806. return 0;
  807. }
  808. break;
  809. case WLAN_BEACON_REQUEST_SUBELEM_REQUEST:
  810. if (data->report_detail !=
  811. BEACON_REPORT_DETAIL_REQUESTED_ONLY) {
  812. wpa_printf(MSG_DEBUG,
  813. "Beacon request: request subelement is present but report detail is %u",
  814. data->report_detail);
  815. return -1;
  816. }
  817. if (!slen) {
  818. wpa_printf(MSG_DEBUG,
  819. "Invalid request subelement length: %u",
  820. slen);
  821. return -1;
  822. }
  823. if (data->eids) {
  824. wpa_printf(MSG_DEBUG,
  825. "Beacon Request: Request subelement appears more than once");
  826. return -1;
  827. }
  828. data->eids = bitfield_alloc(255);
  829. if (!data->eids) {
  830. wpa_printf(MSG_DEBUG, "Failed to allocate EIDs bitmap");
  831. return -1;
  832. }
  833. for (i = 0; i < slen; i++)
  834. bitfield_set(data->eids, subelem[i]);
  835. break;
  836. case WLAN_BEACON_REQUEST_SUBELEM_AP_CHANNEL:
  837. /* Skip - it will be processed when freqs are added */
  838. break;
  839. default:
  840. wpa_printf(MSG_DEBUG,
  841. "Beacon request: Unknown subelement id %u", sid);
  842. break;
  843. }
  844. return 1;
  845. }
  846. /**
  847. * Returns 0 if the next element can be processed, 1 if some operation was
  848. * triggered, and -1 if processing failed (i.e., the element is in invalid
  849. * format or an internal error occurred).
  850. */
  851. static int
  852. wpas_rm_handle_beacon_req(struct wpa_supplicant *wpa_s,
  853. u8 elem_token, int duration_mandatory,
  854. const struct rrm_measurement_beacon_request *req,
  855. size_t len, struct wpabuf **buf)
  856. {
  857. struct beacon_rep_data *data = &wpa_s->beacon_rep_data;
  858. struct wpa_driver_scan_params *params = &data->scan_params;
  859. const u8 *subelems;
  860. size_t elems_len;
  861. u16 rand_interval;
  862. u32 interval_usec;
  863. u32 _rand;
  864. int ret = 0, res;
  865. if (len < sizeof(*req))
  866. return -1;
  867. if (req->mode != BEACON_REPORT_MODE_PASSIVE &&
  868. req->mode != BEACON_REPORT_MODE_ACTIVE &&
  869. req->mode != BEACON_REPORT_MODE_TABLE)
  870. return 0;
  871. subelems = req->variable;
  872. elems_len = len - sizeof(*req);
  873. rand_interval = le_to_host16(req->rand_interval);
  874. os_memset(params, 0, sizeof(*params));
  875. data->token = elem_token;
  876. /* default reporting detail is all fixed length fields and all
  877. * elements */
  878. data->report_detail = BEACON_REPORT_DETAIL_ALL_FIELDS_AND_ELEMENTS;
  879. os_memcpy(data->bssid, req->bssid, ETH_ALEN);
  880. while (elems_len >= 2) {
  881. if (subelems[1] > elems_len - 2) {
  882. wpa_printf(MSG_DEBUG,
  883. "Beacon Request: Truncated subelement");
  884. ret = -1;
  885. goto out;
  886. }
  887. res = wpas_rm_handle_beacon_req_subelem(
  888. wpa_s, data, subelems[0], subelems[1], &subelems[2]);
  889. if (res != 1) {
  890. ret = res;
  891. goto out;
  892. }
  893. elems_len -= 2 + subelems[1];
  894. subelems += 2 + subelems[1];
  895. }
  896. if (req->mode == BEACON_REPORT_MODE_TABLE) {
  897. wpas_beacon_rep_table(wpa_s, buf);
  898. goto out;
  899. }
  900. params->freqs = wpas_beacon_request_freqs(
  901. wpa_s, req->oper_class, req->channel,
  902. req->mode == BEACON_REPORT_MODE_ACTIVE,
  903. req->variable, len - sizeof(*req));
  904. if (!params->freqs) {
  905. wpa_printf(MSG_DEBUG, "Beacon request: No valid channels");
  906. goto out;
  907. }
  908. params->duration = le_to_host16(req->duration);
  909. params->duration_mandatory = duration_mandatory;
  910. if (!params->duration) {
  911. wpa_printf(MSG_DEBUG, "Beacon request: Duration is 0");
  912. ret = -1;
  913. goto out;
  914. }
  915. params->only_new_results = 1;
  916. if (req->mode == BEACON_REPORT_MODE_ACTIVE) {
  917. params->ssids[params->num_ssids].ssid = data->ssid;
  918. params->ssids[params->num_ssids++].ssid_len = data->ssid_len;
  919. }
  920. if (os_get_random((u8 *) &_rand, sizeof(_rand)) < 0)
  921. _rand = os_random();
  922. interval_usec = (_rand % (rand_interval + 1)) * 1024;
  923. eloop_register_timeout(0, interval_usec, wpas_rrm_scan_timeout, wpa_s,
  924. NULL);
  925. return 1;
  926. out:
  927. wpas_clear_beacon_rep_data(wpa_s);
  928. return ret;
  929. }
  930. static int
  931. wpas_rrm_handle_msr_req_element(
  932. struct wpa_supplicant *wpa_s,
  933. const struct rrm_measurement_request_element *req,
  934. struct wpabuf **buf)
  935. {
  936. int duration_mandatory;
  937. wpa_printf(MSG_DEBUG, "Measurement request type %d token %d",
  938. req->type, req->token);
  939. if (req->mode & MEASUREMENT_REQUEST_MODE_ENABLE) {
  940. /* Enable bit is not supported for now */
  941. wpa_printf(MSG_DEBUG, "RRM: Enable bit not supported, ignore");
  942. return 0;
  943. }
  944. if ((req->mode & MEASUREMENT_REQUEST_MODE_PARALLEL) &&
  945. req->type > MEASURE_TYPE_RPI_HIST) {
  946. /* Parallel measurements are not supported for now */
  947. wpa_printf(MSG_DEBUG,
  948. "RRM: Parallel measurements are not supported, reject");
  949. goto reject;
  950. }
  951. duration_mandatory =
  952. !!(req->mode & MEASUREMENT_REQUEST_MODE_DURATION_MANDATORY);
  953. switch (req->type) {
  954. case MEASURE_TYPE_LCI:
  955. return wpas_rrm_build_lci_report(wpa_s, req, buf);
  956. case MEASURE_TYPE_BEACON:
  957. if (duration_mandatory &&
  958. !(wpa_s->drv_rrm_flags &
  959. WPA_DRIVER_FLAGS_SUPPORT_SET_SCAN_DWELL)) {
  960. wpa_printf(MSG_DEBUG,
  961. "RRM: Driver does not support dwell time configuration - reject beacon report with mandatory duration");
  962. goto reject;
  963. }
  964. return wpas_rm_handle_beacon_req(wpa_s, req->token,
  965. duration_mandatory,
  966. (const void *) req->variable,
  967. req->len - 3, buf);
  968. default:
  969. wpa_printf(MSG_INFO,
  970. "RRM: Unsupported radio measurement type %u",
  971. req->type);
  972. break;
  973. }
  974. reject:
  975. if (wpabuf_resize(buf, sizeof(struct rrm_measurement_report_element))) {
  976. wpa_printf(MSG_DEBUG, "RRM: Memory allocation failed");
  977. return -1;
  978. }
  979. if (wpas_rrm_report_elem(*buf, req->token,
  980. MEASUREMENT_REPORT_MODE_REJECT_INCAPABLE,
  981. req->type, NULL, 0) < 0) {
  982. wpa_printf(MSG_DEBUG, "RRM: Failed to add report element");
  983. return -1;
  984. }
  985. return 0;
  986. }
  987. static struct wpabuf *
  988. wpas_rrm_process_msr_req_elems(struct wpa_supplicant *wpa_s, const u8 *pos,
  989. size_t len)
  990. {
  991. struct wpabuf *buf = NULL;
  992. while (len) {
  993. const struct rrm_measurement_request_element *req;
  994. int res;
  995. if (len < 2) {
  996. wpa_printf(MSG_DEBUG, "RRM: Truncated element");
  997. goto out;
  998. }
  999. req = (const struct rrm_measurement_request_element *) pos;
  1000. if (req->eid != WLAN_EID_MEASURE_REQUEST) {
  1001. wpa_printf(MSG_DEBUG,
  1002. "RRM: Expected Measurement Request element, but EID is %u",
  1003. req->eid);
  1004. goto out;
  1005. }
  1006. if (req->len < 3) {
  1007. wpa_printf(MSG_DEBUG, "RRM: Element length too short");
  1008. goto out;
  1009. }
  1010. if (req->len > len - 2) {
  1011. wpa_printf(MSG_DEBUG, "RRM: Element length too long");
  1012. goto out;
  1013. }
  1014. res = wpas_rrm_handle_msr_req_element(wpa_s, req, &buf);
  1015. if (res < 0)
  1016. goto out;
  1017. pos += req->len + 2;
  1018. len -= req->len + 2;
  1019. }
  1020. return buf;
  1021. out:
  1022. wpabuf_free(buf);
  1023. return NULL;
  1024. }
  1025. void wpas_rrm_handle_radio_measurement_request(struct wpa_supplicant *wpa_s,
  1026. const u8 *src,
  1027. const u8 *frame, size_t len)
  1028. {
  1029. struct wpabuf *report;
  1030. if (wpa_s->wpa_state != WPA_COMPLETED) {
  1031. wpa_printf(MSG_INFO,
  1032. "RRM: Ignoring radio measurement request: Not associated");
  1033. return;
  1034. }
  1035. if (!wpa_s->rrm.rrm_used) {
  1036. wpa_printf(MSG_INFO,
  1037. "RRM: Ignoring radio measurement request: Not RRM network");
  1038. return;
  1039. }
  1040. if (len < 3) {
  1041. wpa_printf(MSG_INFO,
  1042. "RRM: Ignoring too short radio measurement request");
  1043. return;
  1044. }
  1045. wpa_s->rrm.token = *frame;
  1046. /* Number of repetitions is not supported */
  1047. report = wpas_rrm_process_msr_req_elems(wpa_s, frame + 3, len - 3);
  1048. if (!report)
  1049. return;
  1050. wpas_rrm_send_msr_report(wpa_s, report);
  1051. wpabuf_free(report);
  1052. }
  1053. void wpas_rrm_handle_link_measurement_request(struct wpa_supplicant *wpa_s,
  1054. const u8 *src,
  1055. const u8 *frame, size_t len,
  1056. int rssi)
  1057. {
  1058. struct wpabuf *buf;
  1059. const struct rrm_link_measurement_request *req;
  1060. struct rrm_link_measurement_report report;
  1061. if (wpa_s->wpa_state != WPA_COMPLETED) {
  1062. wpa_printf(MSG_INFO,
  1063. "RRM: Ignoring link measurement request. Not associated");
  1064. return;
  1065. }
  1066. if (!wpa_s->rrm.rrm_used) {
  1067. wpa_printf(MSG_INFO,
  1068. "RRM: Ignoring link measurement request. Not RRM network");
  1069. return;
  1070. }
  1071. if (!(wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_TX_POWER_INSERTION)) {
  1072. wpa_printf(MSG_INFO,
  1073. "RRM: Measurement report failed. TX power insertion not supported");
  1074. return;
  1075. }
  1076. req = (const struct rrm_link_measurement_request *) frame;
  1077. if (len < sizeof(*req)) {
  1078. wpa_printf(MSG_INFO,
  1079. "RRM: Link measurement report failed. Request too short");
  1080. return;
  1081. }
  1082. os_memset(&report, 0, sizeof(report));
  1083. report.tpc.eid = WLAN_EID_TPC_REPORT;
  1084. report.tpc.len = 2;
  1085. report.rsni = 255; /* 255 indicates that RSNI is not available */
  1086. report.dialog_token = req->dialog_token;
  1087. report.rcpi = rssi_to_rcpi(rssi);
  1088. /* action_category + action_code */
  1089. buf = wpabuf_alloc(2 + sizeof(report));
  1090. if (buf == NULL) {
  1091. wpa_printf(MSG_ERROR,
  1092. "RRM: Link measurement report failed. Buffer allocation failed");
  1093. return;
  1094. }
  1095. wpabuf_put_u8(buf, WLAN_ACTION_RADIO_MEASUREMENT);
  1096. wpabuf_put_u8(buf, WLAN_RRM_LINK_MEASUREMENT_REPORT);
  1097. wpabuf_put_data(buf, &report, sizeof(report));
  1098. wpa_hexdump(MSG_DEBUG, "RRM: Link measurement report:",
  1099. wpabuf_head(buf), wpabuf_len(buf));
  1100. if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, src,
  1101. wpa_s->own_addr, wpa_s->bssid,
  1102. wpabuf_head(buf), wpabuf_len(buf), 0)) {
  1103. wpa_printf(MSG_ERROR,
  1104. "RRM: Link measurement report failed. Send action failed");
  1105. }
  1106. wpabuf_free(buf);
  1107. }
  1108. int wpas_beacon_rep_scan_process(struct wpa_supplicant *wpa_s,
  1109. struct wpa_scan_results *scan_res,
  1110. struct scan_info *info)
  1111. {
  1112. size_t i = 0;
  1113. struct wpabuf *buf = NULL;
  1114. if (!wpa_s->beacon_rep_data.token)
  1115. return 0;
  1116. if (!wpa_s->current_bss)
  1117. goto out;
  1118. /* If the measurement was aborted, don't report partial results */
  1119. if (info->aborted)
  1120. goto out;
  1121. wpa_printf(MSG_DEBUG, "RRM: TSF BSSID: " MACSTR " current BSS: " MACSTR,
  1122. MAC2STR(info->scan_start_tsf_bssid),
  1123. MAC2STR(wpa_s->current_bss->bssid));
  1124. if ((wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_SUPPORT_BEACON_REPORT) &&
  1125. os_memcmp(info->scan_start_tsf_bssid, wpa_s->current_bss->bssid,
  1126. ETH_ALEN) != 0) {
  1127. wpa_printf(MSG_DEBUG,
  1128. "RRM: Ignore scan results due to mismatching TSF BSSID");
  1129. goto out;
  1130. }
  1131. for (i = 0; i < scan_res->num; i++) {
  1132. struct wpa_bss *bss =
  1133. wpa_bss_get_bssid(wpa_s, scan_res->res[i]->bssid);
  1134. if (!bss)
  1135. continue;
  1136. if ((wpa_s->drv_rrm_flags &
  1137. WPA_DRIVER_FLAGS_SUPPORT_BEACON_REPORT) &&
  1138. os_memcmp(scan_res->res[i]->tsf_bssid,
  1139. wpa_s->current_bss->bssid, ETH_ALEN) != 0) {
  1140. wpa_printf(MSG_DEBUG,
  1141. "RRM: Ignore scan result for " MACSTR
  1142. " due to mismatching TSF BSSID" MACSTR,
  1143. MAC2STR(scan_res->res[i]->bssid),
  1144. MAC2STR(scan_res->res[i]->tsf_bssid));
  1145. continue;
  1146. }
  1147. if (!(wpa_s->drv_rrm_flags &
  1148. WPA_DRIVER_FLAGS_SUPPORT_BEACON_REPORT)) {
  1149. struct os_reltime update_time, diff;
  1150. /* For now, allow 8 ms older results due to some
  1151. * unknown issue with cfg80211 BSS table updates during
  1152. * a scan with the current BSS.
  1153. * TODO: Fix this more properly to avoid having to have
  1154. * this type of hacks in place. */
  1155. calculate_update_time(&scan_res->fetch_time,
  1156. scan_res->res[i]->age,
  1157. &update_time);
  1158. os_reltime_sub(&wpa_s->beacon_rep_scan,
  1159. &update_time, &diff);
  1160. if (os_reltime_before(&update_time,
  1161. &wpa_s->beacon_rep_scan) &&
  1162. (diff.sec || diff.usec >= 8000)) {
  1163. wpa_printf(MSG_DEBUG,
  1164. "RRM: Ignore scan result for " MACSTR
  1165. " due to old update (age(ms) %u, calculated age %u.%06u seconds)",
  1166. MAC2STR(scan_res->res[i]->bssid),
  1167. scan_res->res[i]->age,
  1168. (unsigned int) diff.sec,
  1169. (unsigned int) diff.usec);
  1170. continue;
  1171. }
  1172. }
  1173. /*
  1174. * Don't report results that were not received during the
  1175. * current measurement.
  1176. */
  1177. if (info->scan_start_tsf > scan_res->res[i]->parent_tsf)
  1178. continue;
  1179. if (wpas_add_beacon_rep(wpa_s, &buf, bss, info->scan_start_tsf,
  1180. scan_res->res[i]->parent_tsf) < 0)
  1181. break;
  1182. }
  1183. if (!buf && wpas_beacon_rep_no_results(wpa_s, &buf))
  1184. goto out;
  1185. wpa_hexdump_buf(MSG_DEBUG, "RRM: Radio Measurement report", buf);
  1186. wpas_rrm_send_msr_report(wpa_s, buf);
  1187. wpabuf_free(buf);
  1188. out:
  1189. wpas_clear_beacon_rep_data(wpa_s);
  1190. return 1;
  1191. }
  1192. void wpas_clear_beacon_rep_data(struct wpa_supplicant *wpa_s)
  1193. {
  1194. struct beacon_rep_data *data = &wpa_s->beacon_rep_data;
  1195. eloop_cancel_timeout(wpas_rrm_scan_timeout, wpa_s, NULL);
  1196. bitfield_free(data->eids);
  1197. os_free(data->scan_params.freqs);
  1198. os_memset(data, 0, sizeof(*data));
  1199. }