mbo.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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_attrs(struct wpa_supplicant *wpa_s,
  53. struct wpabuf *mbo)
  54. {
  55. u8 i, start = 0;
  56. struct wpa_mbo_non_pref_channel *start_pref;
  57. if (!wpa_s->non_pref_chan || !wpa_s->non_pref_chan_num)
  58. return;
  59. start_pref = &wpa_s->non_pref_chan[0];
  60. for (i = 1; i <= wpa_s->non_pref_chan_num; i++) {
  61. struct wpa_mbo_non_pref_channel *non_pref = NULL;
  62. if (i < wpa_s->non_pref_chan_num)
  63. non_pref = &wpa_s->non_pref_chan[i];
  64. if (!non_pref ||
  65. non_pref->oper_class != start_pref->oper_class ||
  66. non_pref->reason != start_pref->reason ||
  67. non_pref->reason_detail != start_pref->reason_detail ||
  68. non_pref->preference != start_pref->preference) {
  69. wpas_mbo_non_pref_chan_attr(wpa_s, mbo, start, i);
  70. if (!non_pref)
  71. return;
  72. start = i;
  73. start_pref = non_pref;
  74. }
  75. }
  76. }
  77. int wpas_mbo_ie(struct wpa_supplicant *wpa_s, u8 *buf, size_t len)
  78. {
  79. struct wpabuf *mbo;
  80. int res;
  81. if (!wpa_s->non_pref_chan || !wpa_s->non_pref_chan_num ||
  82. len < MBO_IE_HEADER + 7)
  83. return 0;
  84. /* Leave room for the MBO IE header */
  85. mbo = wpabuf_alloc(len - MBO_IE_HEADER);
  86. if (!mbo)
  87. return 0;
  88. /* Add non-preferred channels attribute */
  89. wpas_mbo_non_pref_chan_attrs(wpa_s, mbo);
  90. res = mbo_add_ie(buf, len, wpabuf_head_u8(mbo), wpabuf_len(mbo));
  91. if (!res)
  92. wpa_printf(MSG_ERROR, "Failed to add MBO IE");
  93. wpabuf_free(mbo);
  94. return res;
  95. }
  96. static int wpa_non_pref_chan_is_eq(struct wpa_mbo_non_pref_channel *a,
  97. struct wpa_mbo_non_pref_channel *b)
  98. {
  99. return a->oper_class == b->oper_class && a->chan == b->chan;
  100. }
  101. /*
  102. * wpa_non_pref_chan_cmp - Compare two channels for sorting
  103. *
  104. * In MBO IE non-preferred channel subelement we can put many channels in an
  105. * attribute if they are in the same operating class and have the same
  106. * preference, reason, and reason detail. To make it easy for the functions that
  107. * build the IE attributes and WNM Request subelements, save the channels sorted
  108. * by their oper_class, reason, and reason_detail.
  109. */
  110. static int wpa_non_pref_chan_cmp(const void *_a, const void *_b)
  111. {
  112. const struct wpa_mbo_non_pref_channel *a = _a, *b = _b;
  113. if (a->oper_class != b->oper_class)
  114. return a->oper_class - b->oper_class;
  115. if (a->reason != b->reason)
  116. return a->reason - b->reason;
  117. if (a->reason_detail != b->reason_detail)
  118. return a->reason_detail - b->reason_detail;
  119. return a->preference - b->preference;
  120. }
  121. int wpas_mbo_update_non_pref_chan(struct wpa_supplicant *wpa_s,
  122. const char *non_pref_chan)
  123. {
  124. char *cmd, *token, *context = NULL;
  125. struct wpa_mbo_non_pref_channel *chans = NULL, *tmp_chans;
  126. size_t num = 0, size = 0;
  127. unsigned i;
  128. wpa_printf(MSG_DEBUG, "MBO: Update non-preferred channels, non_pref_chan=%s",
  129. non_pref_chan ? non_pref_chan : "N/A");
  130. /*
  131. * The shortest channel configuration is 10 characters - commas, 3
  132. * colons, and 4 values that one of them (oper_class) is 2 digits or
  133. * more.
  134. */
  135. if (!non_pref_chan || os_strlen(non_pref_chan) < 10)
  136. goto update;
  137. cmd = os_strdup(non_pref_chan);
  138. if (!cmd)
  139. return -1;
  140. while ((token = str_token(cmd, " ", &context))) {
  141. struct wpa_mbo_non_pref_channel *chan;
  142. int ret;
  143. unsigned int _oper_class;
  144. unsigned int _chan;
  145. unsigned int _preference;
  146. unsigned int _reason;
  147. unsigned int _reason_detail;
  148. if (num == size) {
  149. size = size ? size * 2 : 1;
  150. tmp_chans = os_realloc_array(chans, size,
  151. sizeof(*chans));
  152. if (!tmp_chans) {
  153. wpa_printf(MSG_ERROR,
  154. "Couldn't reallocate non_pref_chan");
  155. goto fail;
  156. }
  157. chans = tmp_chans;
  158. }
  159. chan = &chans[num];
  160. ret = sscanf(token, "%u:%u:%u:%u:%u", &_oper_class,
  161. &_chan, &_preference, &_reason,
  162. &_reason_detail);
  163. if ((ret != 4 && ret != 5) ||
  164. _oper_class > 255 || _chan > 255 ||
  165. _preference > 255 || _reason > 65535 ||
  166. (ret == 5 && _reason_detail > 255)) {
  167. wpa_printf(MSG_ERROR, "Invalid non-pref chan input %s",
  168. token);
  169. goto fail;
  170. }
  171. chan->oper_class = _oper_class;
  172. chan->chan = _chan;
  173. chan->preference = _preference;
  174. chan->reason = _reason;
  175. chan->reason_detail = ret == 4 ? 0 : _reason_detail;
  176. if (wpas_mbo_validate_non_pref_chan(chan->oper_class,
  177. chan->chan, chan->reason)) {
  178. wpa_printf(MSG_ERROR,
  179. "Invalid non_pref_chan: oper class %d chan %d reason %d",
  180. chan->oper_class, chan->chan, chan->reason);
  181. goto fail;
  182. }
  183. for (i = 0; i < num; i++)
  184. if (wpa_non_pref_chan_is_eq(chan, &chans[i]))
  185. break;
  186. if (i != num) {
  187. wpa_printf(MSG_ERROR,
  188. "oper class %d chan %d is duplicated",
  189. chan->oper_class, chan->chan);
  190. goto fail;
  191. }
  192. num++;
  193. }
  194. os_free(cmd);
  195. if (chans) {
  196. qsort(chans, num, sizeof(struct wpa_mbo_non_pref_channel),
  197. wpa_non_pref_chan_cmp);
  198. }
  199. update:
  200. os_free(wpa_s->non_pref_chan);
  201. wpa_s->non_pref_chan = chans;
  202. wpa_s->non_pref_chan_num = num;
  203. return 0;
  204. fail:
  205. os_free(chans);
  206. os_free(cmd);
  207. return -1;
  208. }