mbo.c 8.8 KB

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