mbo.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. /*
  2. * wpa_supplicant - MBO
  3. *
  4. * Copyright(c) 2015 Intel Deutschland GmbH
  5. * Contact Information:
  6. * Intel Linux Wireless <ilw@linux.intel.com>
  7. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  8. *
  9. * This software may be distributed under the terms of the BSD license.
  10. * See README for more details.
  11. */
  12. #include "utils/includes.h"
  13. #include "utils/common.h"
  14. #include "common/ieee802_11_defs.h"
  15. #include "config.h"
  16. #include "wpa_supplicant_i.h"
  17. #include "driver_i.h"
  18. #include "bss.h"
  19. /* type + length + oui + oui type */
  20. #define MBO_IE_HEADER 6
  21. static int wpas_mbo_validate_non_pref_chan(u8 oper_class, u8 chan, u8 reason)
  22. {
  23. if (reason > MBO_NON_PREF_CHAN_REASON_INT_INTERFERENCE)
  24. return -1;
  25. /* Only checking the validity of the channel and oper_class */
  26. if (ieee80211_chan_to_freq(NULL, oper_class, chan) == -1)
  27. return -1;
  28. return 0;
  29. }
  30. const u8 * wpas_mbo_get_bss_attr(struct wpa_bss *bss, enum mbo_attr_id attr)
  31. {
  32. const u8 *mbo, *end;
  33. if (!bss)
  34. return NULL;
  35. mbo = wpa_bss_get_vendor_ie(bss, MBO_IE_VENDOR_TYPE);
  36. if (!mbo)
  37. return NULL;
  38. end = mbo + 2 + mbo[1];
  39. mbo += MBO_IE_HEADER;
  40. return get_ie(mbo, end - mbo, attr);
  41. }
  42. static void wpas_mbo_non_pref_chan_attr_body(struct wpa_supplicant *wpa_s,
  43. struct wpabuf *mbo,
  44. u8 start, u8 end)
  45. {
  46. u8 i;
  47. wpabuf_put_u8(mbo, wpa_s->non_pref_chan[start].oper_class);
  48. for (i = start; i < end; i++)
  49. wpabuf_put_u8(mbo, wpa_s->non_pref_chan[i].chan);
  50. wpabuf_put_u8(mbo, wpa_s->non_pref_chan[start].preference);
  51. wpabuf_put_u8(mbo, wpa_s->non_pref_chan[start].reason);
  52. wpabuf_put_u8(mbo, wpa_s->non_pref_chan[start].reason_detail);
  53. }
  54. static void wpas_mbo_non_pref_chan_attr(struct wpa_supplicant *wpa_s,
  55. struct wpabuf *mbo, u8 start, u8 end)
  56. {
  57. size_t size = end - start + 4;
  58. if (size + 2 > wpabuf_tailroom(mbo))
  59. return;
  60. wpabuf_put_u8(mbo, MBO_ATTR_ID_NON_PREF_CHAN_REPORT);
  61. wpabuf_put_u8(mbo, size); /* Length */
  62. wpas_mbo_non_pref_chan_attr_body(wpa_s, mbo, start, end);
  63. }
  64. static void wpas_mbo_non_pref_chan_subelem_hdr(struct wpabuf *mbo, u8 len)
  65. {
  66. wpabuf_put_u8(mbo, WLAN_EID_VENDOR_SPECIFIC);
  67. wpabuf_put_u8(mbo, len); /* Length */
  68. wpabuf_put_be24(mbo, OUI_WFA);
  69. wpabuf_put_u8(mbo, MBO_ATTR_ID_NON_PREF_CHAN_REPORT);
  70. }
  71. static void wpas_mbo_non_pref_chan_subelement(struct wpa_supplicant *wpa_s,
  72. struct wpabuf *mbo, u8 start,
  73. u8 end)
  74. {
  75. size_t size = end - start + 8;
  76. if (size + 2 > wpabuf_tailroom(mbo))
  77. return;
  78. wpas_mbo_non_pref_chan_subelem_hdr(mbo, size);
  79. wpas_mbo_non_pref_chan_attr_body(wpa_s, mbo, start, end);
  80. }
  81. static void wpas_mbo_non_pref_chan_attrs(struct wpa_supplicant *wpa_s,
  82. struct wpabuf *mbo, int subelement)
  83. {
  84. u8 i, start = 0;
  85. struct wpa_mbo_non_pref_channel *start_pref;
  86. if (!wpa_s->non_pref_chan || !wpa_s->non_pref_chan_num) {
  87. if (subelement)
  88. wpas_mbo_non_pref_chan_subelem_hdr(mbo, 4);
  89. return;
  90. }
  91. start_pref = &wpa_s->non_pref_chan[0];
  92. for (i = 1; i <= wpa_s->non_pref_chan_num; i++) {
  93. struct wpa_mbo_non_pref_channel *non_pref = NULL;
  94. if (i < wpa_s->non_pref_chan_num)
  95. non_pref = &wpa_s->non_pref_chan[i];
  96. if (!non_pref ||
  97. non_pref->oper_class != start_pref->oper_class ||
  98. non_pref->reason != start_pref->reason ||
  99. non_pref->reason_detail != start_pref->reason_detail ||
  100. non_pref->preference != start_pref->preference) {
  101. if (subelement)
  102. wpas_mbo_non_pref_chan_subelement(wpa_s, mbo,
  103. start, i);
  104. else
  105. wpas_mbo_non_pref_chan_attr(wpa_s, mbo, start,
  106. i);
  107. if (!non_pref)
  108. return;
  109. start = i;
  110. start_pref = non_pref;
  111. }
  112. }
  113. }
  114. int wpas_mbo_ie(struct wpa_supplicant *wpa_s, u8 *buf, size_t len)
  115. {
  116. struct wpabuf *mbo;
  117. int res;
  118. if (len < MBO_IE_HEADER + 3 + 7)
  119. return 0;
  120. /* Leave room for the MBO IE header */
  121. mbo = wpabuf_alloc(len - MBO_IE_HEADER);
  122. if (!mbo)
  123. return 0;
  124. /* Add non-preferred channels attribute */
  125. wpas_mbo_non_pref_chan_attrs(wpa_s, mbo, 0);
  126. /*
  127. * Send cellular capabilities attribute even if AP does not advertise
  128. * cellular capabilities.
  129. */
  130. wpabuf_put_u8(mbo, MBO_ATTR_ID_CELL_DATA_CAPA);
  131. wpabuf_put_u8(mbo, 1);
  132. wpabuf_put_u8(mbo, wpa_s->conf->mbo_cell_capa);
  133. res = mbo_add_ie(buf, len, wpabuf_head_u8(mbo), wpabuf_len(mbo));
  134. if (!res)
  135. wpa_printf(MSG_ERROR, "Failed to add MBO IE");
  136. wpabuf_free(mbo);
  137. return res;
  138. }
  139. static void wpas_mbo_send_wnm_notification(struct wpa_supplicant *wpa_s)
  140. {
  141. struct wpabuf *buf;
  142. int res;
  143. /*
  144. * Send WNM-Notification Request frame only in case of a change in
  145. * non-preferred channels list during association, if the AP supports
  146. * MBO.
  147. */
  148. if (wpa_s->wpa_state != WPA_COMPLETED || !wpa_s->current_bss ||
  149. !wpa_bss_get_vendor_ie(wpa_s->current_bss, MBO_IE_VENDOR_TYPE))
  150. return;
  151. buf = wpabuf_alloc(512);
  152. if (!buf)
  153. return;
  154. wpabuf_put_u8(buf, WLAN_ACTION_WNM);
  155. wpabuf_put_u8(buf, WNM_NOTIFICATION_REQ);
  156. wpa_s->mbo_wnm_token++;
  157. if (wpa_s->mbo_wnm_token == 0)
  158. wpa_s->mbo_wnm_token++;
  159. wpabuf_put_u8(buf, wpa_s->mbo_wnm_token);
  160. wpabuf_put_u8(buf, WLAN_EID_VENDOR_SPECIFIC); /* Type */
  161. wpas_mbo_non_pref_chan_attrs(wpa_s, buf, 1);
  162. res = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  163. wpa_s->own_addr, wpa_s->bssid,
  164. wpabuf_head(buf), wpabuf_len(buf), 0);
  165. if (res < 0)
  166. wpa_printf(MSG_DEBUG,
  167. "Failed to send WNM-Notification Request frame with non-preferred channel list");
  168. wpabuf_free(buf);
  169. }
  170. static int wpa_non_pref_chan_is_eq(struct wpa_mbo_non_pref_channel *a,
  171. struct wpa_mbo_non_pref_channel *b)
  172. {
  173. return a->oper_class == b->oper_class && a->chan == b->chan;
  174. }
  175. /*
  176. * wpa_non_pref_chan_cmp - Compare two channels for sorting
  177. *
  178. * In MBO IE non-preferred channel subelement we can put many channels in an
  179. * attribute if they are in the same operating class and have the same
  180. * preference, reason, and reason detail. To make it easy for the functions that
  181. * build the IE attributes and WNM Request subelements, save the channels sorted
  182. * by their oper_class, reason, and reason_detail.
  183. */
  184. static int wpa_non_pref_chan_cmp(const void *_a, const void *_b)
  185. {
  186. const struct wpa_mbo_non_pref_channel *a = _a, *b = _b;
  187. if (a->oper_class != b->oper_class)
  188. return a->oper_class - b->oper_class;
  189. if (a->reason != b->reason)
  190. return a->reason - b->reason;
  191. if (a->reason_detail != b->reason_detail)
  192. return a->reason_detail - b->reason_detail;
  193. return a->preference - b->preference;
  194. }
  195. int wpas_mbo_update_non_pref_chan(struct wpa_supplicant *wpa_s,
  196. const char *non_pref_chan)
  197. {
  198. char *cmd, *token, *context = NULL;
  199. struct wpa_mbo_non_pref_channel *chans = NULL, *tmp_chans;
  200. size_t num = 0, size = 0;
  201. unsigned i;
  202. wpa_printf(MSG_DEBUG, "MBO: Update non-preferred channels, non_pref_chan=%s",
  203. non_pref_chan ? non_pref_chan : "N/A");
  204. /*
  205. * The shortest channel configuration is 10 characters - commas, 3
  206. * colons, and 4 values that one of them (oper_class) is 2 digits or
  207. * more.
  208. */
  209. if (!non_pref_chan || os_strlen(non_pref_chan) < 10)
  210. goto update;
  211. cmd = os_strdup(non_pref_chan);
  212. if (!cmd)
  213. return -1;
  214. while ((token = str_token(cmd, " ", &context))) {
  215. struct wpa_mbo_non_pref_channel *chan;
  216. int ret;
  217. unsigned int _oper_class;
  218. unsigned int _chan;
  219. unsigned int _preference;
  220. unsigned int _reason;
  221. unsigned int _reason_detail;
  222. if (num == size) {
  223. size = size ? size * 2 : 1;
  224. tmp_chans = os_realloc_array(chans, size,
  225. sizeof(*chans));
  226. if (!tmp_chans) {
  227. wpa_printf(MSG_ERROR,
  228. "Couldn't reallocate non_pref_chan");
  229. goto fail;
  230. }
  231. chans = tmp_chans;
  232. }
  233. chan = &chans[num];
  234. ret = sscanf(token, "%u:%u:%u:%u:%u", &_oper_class,
  235. &_chan, &_preference, &_reason,
  236. &_reason_detail);
  237. if ((ret != 4 && ret != 5) ||
  238. _oper_class > 255 || _chan > 255 ||
  239. _preference > 255 || _reason > 65535 ||
  240. (ret == 5 && _reason_detail > 255)) {
  241. wpa_printf(MSG_ERROR, "Invalid non-pref chan input %s",
  242. token);
  243. goto fail;
  244. }
  245. chan->oper_class = _oper_class;
  246. chan->chan = _chan;
  247. chan->preference = _preference;
  248. chan->reason = _reason;
  249. chan->reason_detail = ret == 4 ? 0 : _reason_detail;
  250. if (wpas_mbo_validate_non_pref_chan(chan->oper_class,
  251. chan->chan, chan->reason)) {
  252. wpa_printf(MSG_ERROR,
  253. "Invalid non_pref_chan: oper class %d chan %d reason %d",
  254. chan->oper_class, chan->chan, chan->reason);
  255. goto fail;
  256. }
  257. for (i = 0; i < num; i++)
  258. if (wpa_non_pref_chan_is_eq(chan, &chans[i]))
  259. break;
  260. if (i != num) {
  261. wpa_printf(MSG_ERROR,
  262. "oper class %d chan %d is duplicated",
  263. chan->oper_class, chan->chan);
  264. goto fail;
  265. }
  266. num++;
  267. }
  268. os_free(cmd);
  269. if (chans) {
  270. qsort(chans, num, sizeof(struct wpa_mbo_non_pref_channel),
  271. wpa_non_pref_chan_cmp);
  272. }
  273. update:
  274. os_free(wpa_s->non_pref_chan);
  275. wpa_s->non_pref_chan = chans;
  276. wpa_s->non_pref_chan_num = num;
  277. wpas_mbo_send_wnm_notification(wpa_s);
  278. return 0;
  279. fail:
  280. os_free(chans);
  281. os_free(cmd);
  282. return -1;
  283. }
  284. void wpas_mbo_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ie)
  285. {
  286. wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC);
  287. wpabuf_put_u8(ie, 7);
  288. wpabuf_put_be24(ie, OUI_WFA);
  289. wpabuf_put_u8(ie, MBO_OUI_TYPE);
  290. wpabuf_put_u8(ie, MBO_ATTR_ID_CELL_DATA_CAPA);
  291. wpabuf_put_u8(ie, 1);
  292. wpabuf_put_u8(ie, wpa_s->conf->mbo_cell_capa);
  293. }