mbo.c 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  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 (!wpa_s->non_pref_chan || !wpa_s->non_pref_chan_num ||
  107. len < MBO_IE_HEADER + 7)
  108. return 0;
  109. /* Leave room for the MBO IE header */
  110. mbo = wpabuf_alloc(len - MBO_IE_HEADER);
  111. if (!mbo)
  112. return 0;
  113. /* Add non-preferred channels attribute */
  114. wpas_mbo_non_pref_chan_attrs(wpa_s, mbo, 0);
  115. res = mbo_add_ie(buf, len, wpabuf_head_u8(mbo), wpabuf_len(mbo));
  116. if (!res)
  117. wpa_printf(MSG_ERROR, "Failed to add MBO IE");
  118. wpabuf_free(mbo);
  119. return res;
  120. }
  121. static void wpas_mbo_send_wnm_notification(struct wpa_supplicant *wpa_s)
  122. {
  123. struct wpabuf *buf;
  124. int res;
  125. /*
  126. * Send WNM-Notification Request frame only in case of a change in
  127. * non-preferred channels list during association, if the AP supports
  128. * MBO.
  129. */
  130. if (wpa_s->wpa_state != WPA_COMPLETED || !wpa_s->current_bss ||
  131. !wpa_bss_get_vendor_ie(wpa_s->current_bss, MBO_IE_VENDOR_TYPE))
  132. return;
  133. buf = wpabuf_alloc(512);
  134. if (!buf)
  135. return;
  136. wpabuf_put_u8(buf, WLAN_ACTION_WNM);
  137. wpabuf_put_u8(buf, WNM_NOTIFICATION_REQ);
  138. wpa_s->mbo_wnm_token++;
  139. if (wpa_s->mbo_wnm_token == 0)
  140. wpa_s->mbo_wnm_token++;
  141. wpabuf_put_u8(buf, wpa_s->mbo_wnm_token);
  142. wpabuf_put_u8(buf, WLAN_EID_VENDOR_SPECIFIC); /* Type */
  143. wpas_mbo_non_pref_chan_attrs(wpa_s, buf, 1);
  144. res = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  145. wpa_s->own_addr, wpa_s->bssid,
  146. wpabuf_head(buf), wpabuf_len(buf), 0);
  147. if (res < 0)
  148. wpa_printf(MSG_DEBUG,
  149. "Failed to send WNM-Notification Request frame with non-preferred channel list");
  150. wpabuf_free(buf);
  151. }
  152. static int wpa_non_pref_chan_is_eq(struct wpa_mbo_non_pref_channel *a,
  153. struct wpa_mbo_non_pref_channel *b)
  154. {
  155. return a->oper_class == b->oper_class && a->chan == b->chan;
  156. }
  157. /*
  158. * wpa_non_pref_chan_cmp - Compare two channels for sorting
  159. *
  160. * In MBO IE non-preferred channel subelement we can put many channels in an
  161. * attribute if they are in the same operating class and have the same
  162. * preference, reason, and reason detail. To make it easy for the functions that
  163. * build the IE attributes and WNM Request subelements, save the channels sorted
  164. * by their oper_class, reason, and reason_detail.
  165. */
  166. static int wpa_non_pref_chan_cmp(const void *_a, const void *_b)
  167. {
  168. const struct wpa_mbo_non_pref_channel *a = _a, *b = _b;
  169. if (a->oper_class != b->oper_class)
  170. return a->oper_class - b->oper_class;
  171. if (a->reason != b->reason)
  172. return a->reason - b->reason;
  173. if (a->reason_detail != b->reason_detail)
  174. return a->reason_detail - b->reason_detail;
  175. return a->preference - b->preference;
  176. }
  177. int wpas_mbo_update_non_pref_chan(struct wpa_supplicant *wpa_s,
  178. const char *non_pref_chan)
  179. {
  180. char *cmd, *token, *context = NULL;
  181. struct wpa_mbo_non_pref_channel *chans = NULL, *tmp_chans;
  182. size_t num = 0, size = 0;
  183. unsigned i;
  184. wpa_printf(MSG_DEBUG, "MBO: Update non-preferred channels, non_pref_chan=%s",
  185. non_pref_chan ? non_pref_chan : "N/A");
  186. /*
  187. * The shortest channel configuration is 10 characters - commas, 3
  188. * colons, and 4 values that one of them (oper_class) is 2 digits or
  189. * more.
  190. */
  191. if (!non_pref_chan || os_strlen(non_pref_chan) < 10)
  192. goto update;
  193. cmd = os_strdup(non_pref_chan);
  194. if (!cmd)
  195. return -1;
  196. while ((token = str_token(cmd, " ", &context))) {
  197. struct wpa_mbo_non_pref_channel *chan;
  198. int ret;
  199. unsigned int _oper_class;
  200. unsigned int _chan;
  201. unsigned int _preference;
  202. unsigned int _reason;
  203. unsigned int _reason_detail;
  204. if (num == size) {
  205. size = size ? size * 2 : 1;
  206. tmp_chans = os_realloc_array(chans, size,
  207. sizeof(*chans));
  208. if (!tmp_chans) {
  209. wpa_printf(MSG_ERROR,
  210. "Couldn't reallocate non_pref_chan");
  211. goto fail;
  212. }
  213. chans = tmp_chans;
  214. }
  215. chan = &chans[num];
  216. ret = sscanf(token, "%u:%u:%u:%u:%u", &_oper_class,
  217. &_chan, &_preference, &_reason,
  218. &_reason_detail);
  219. if ((ret != 4 && ret != 5) ||
  220. _oper_class > 255 || _chan > 255 ||
  221. _preference > 255 || _reason > 65535 ||
  222. (ret == 5 && _reason_detail > 255)) {
  223. wpa_printf(MSG_ERROR, "Invalid non-pref chan input %s",
  224. token);
  225. goto fail;
  226. }
  227. chan->oper_class = _oper_class;
  228. chan->chan = _chan;
  229. chan->preference = _preference;
  230. chan->reason = _reason;
  231. chan->reason_detail = ret == 4 ? 0 : _reason_detail;
  232. if (wpas_mbo_validate_non_pref_chan(chan->oper_class,
  233. chan->chan, chan->reason)) {
  234. wpa_printf(MSG_ERROR,
  235. "Invalid non_pref_chan: oper class %d chan %d reason %d",
  236. chan->oper_class, chan->chan, chan->reason);
  237. goto fail;
  238. }
  239. for (i = 0; i < num; i++)
  240. if (wpa_non_pref_chan_is_eq(chan, &chans[i]))
  241. break;
  242. if (i != num) {
  243. wpa_printf(MSG_ERROR,
  244. "oper class %d chan %d is duplicated",
  245. chan->oper_class, chan->chan);
  246. goto fail;
  247. }
  248. num++;
  249. }
  250. os_free(cmd);
  251. if (chans) {
  252. qsort(chans, num, sizeof(struct wpa_mbo_non_pref_channel),
  253. wpa_non_pref_chan_cmp);
  254. }
  255. update:
  256. os_free(wpa_s->non_pref_chan);
  257. wpa_s->non_pref_chan = chans;
  258. wpa_s->non_pref_chan_num = num;
  259. wpas_mbo_send_wnm_notification(wpa_s);
  260. return 0;
  261. fail:
  262. os_free(chans);
  263. os_free(cmd);
  264. return -1;
  265. }