mesh.c 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. /*
  2. * WPA Supplicant - Basic mesh mode routines
  3. * Copyright (c) 2013-2014, cozybit, Inc. All rights reserved.
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "utils/eloop.h"
  11. #include "utils/uuid.h"
  12. #include "common/ieee802_11_defs.h"
  13. #include "common/wpa_ctrl.h"
  14. #include "ap/sta_info.h"
  15. #include "ap/hostapd.h"
  16. #include "ap/ieee802_11.h"
  17. #include "config_ssid.h"
  18. #include "config.h"
  19. #include "wpa_supplicant_i.h"
  20. #include "driver_i.h"
  21. #include "notify.h"
  22. #include "mesh.h"
  23. static void wpa_supplicant_mesh_deinit(struct wpa_supplicant *wpa_s)
  24. {
  25. wpa_supplicant_mesh_iface_deinit(wpa_s, wpa_s->ifmsh);
  26. wpa_s->ifmsh = NULL;
  27. wpa_s->current_ssid = NULL;
  28. /* TODO: leave mesh (stop beacon). This will happen on link down
  29. * anyway, so it's not urgent */
  30. }
  31. void wpa_supplicant_mesh_iface_deinit(struct wpa_supplicant *wpa_s,
  32. struct hostapd_iface *ifmsh)
  33. {
  34. if (!ifmsh)
  35. return;
  36. if (ifmsh->mconf) {
  37. if (ifmsh->mconf->ies) {
  38. ifmsh->mconf->ies = NULL;
  39. /* We cannot free this struct
  40. * because wpa_authenticator on
  41. * hostapd side is also using it
  42. * for now just set to NULL and
  43. * let hostapd code free it.
  44. */
  45. }
  46. os_free(ifmsh->mconf);
  47. ifmsh->mconf = NULL;
  48. }
  49. /* take care of shared data */
  50. hostapd_interface_deinit(ifmsh);
  51. hostapd_interface_free(ifmsh);
  52. }
  53. static struct mesh_conf * mesh_config_create(struct wpa_ssid *ssid)
  54. {
  55. struct mesh_conf *conf;
  56. conf = os_zalloc(sizeof(struct mesh_conf));
  57. if (!conf)
  58. return NULL;
  59. os_memcpy(conf->meshid, ssid->ssid, ssid->ssid_len);
  60. conf->meshid_len = ssid->ssid_len;
  61. if (ssid->key_mgmt & WPA_KEY_MGMT_SAE)
  62. conf->security |= MESH_CONF_SEC_AUTH |
  63. MESH_CONF_SEC_AMPE;
  64. else
  65. conf->security |= MESH_CONF_SEC_NONE;
  66. /* defaults */
  67. conf->mesh_pp_id = MESH_PATH_PROTOCOL_HWMP;
  68. conf->mesh_pm_id = MESH_PATH_METRIC_AIRTIME;
  69. conf->mesh_cc_id = 0;
  70. conf->mesh_sp_id = MESH_SYNC_METHOD_NEIGHBOR_OFFSET;
  71. conf->mesh_auth_id = (conf->security & MESH_CONF_SEC_AUTH) ? 1 : 0;
  72. return conf;
  73. }
  74. static void wpas_mesh_copy_groups(struct hostapd_data *bss,
  75. struct wpa_supplicant *wpa_s)
  76. {
  77. int num_groups;
  78. size_t groups_size;
  79. for (num_groups = 0; wpa_s->conf->sae_groups[num_groups] > 0;
  80. num_groups++)
  81. ;
  82. groups_size = (num_groups + 1) * sizeof(wpa_s->conf->sae_groups[0]);
  83. bss->conf->sae_groups = os_malloc(groups_size);
  84. if (bss->conf->sae_groups)
  85. os_memcpy(bss->conf->sae_groups, wpa_s->conf->sae_groups,
  86. groups_size);
  87. }
  88. static int wpa_supplicant_mesh_init(struct wpa_supplicant *wpa_s,
  89. struct wpa_ssid *ssid)
  90. {
  91. struct hostapd_iface *ifmsh;
  92. struct hostapd_data *bss;
  93. struct hostapd_config *conf;
  94. struct mesh_conf *mconf;
  95. int basic_rates_erp[] = { 10, 20, 55, 60, 110, 120, 240, -1 };
  96. static int default_groups[] = { 19, 20, 21, 25, 26, -1 };
  97. size_t len;
  98. wpa_s->ifmsh = ifmsh = os_zalloc(sizeof(*wpa_s->ifmsh));
  99. if (!ifmsh)
  100. return -ENOMEM;
  101. ifmsh->num_bss = 1;
  102. ifmsh->bss = os_calloc(wpa_s->ifmsh->num_bss,
  103. sizeof(struct hostapd_data *));
  104. if (!ifmsh->bss)
  105. goto out_free;
  106. ifmsh->bss[0] = bss = os_zalloc(sizeof(struct hostapd_data));
  107. if (!bss)
  108. goto out_free;
  109. os_memcpy(bss->own_addr, wpa_s->own_addr, ETH_ALEN);
  110. bss->driver = wpa_s->driver;
  111. bss->drv_priv = wpa_s->drv_priv;
  112. bss->iface = ifmsh;
  113. wpa_s->assoc_freq = ssid->frequency;
  114. wpa_s->current_ssid = ssid;
  115. /* setup an AP config for auth processing */
  116. conf = hostapd_config_defaults();
  117. if (!conf)
  118. goto out_free;
  119. bss->conf = *conf->bss;
  120. bss->conf->start_disabled = 1;
  121. bss->conf->mesh = MESH_ENABLED;
  122. bss->iconf = conf;
  123. ifmsh->conf = conf;
  124. os_strlcpy(bss->conf->iface, wpa_s->ifname, sizeof(bss->conf->iface));
  125. mconf = mesh_config_create(ssid);
  126. if (!mconf)
  127. goto out_free;
  128. ifmsh->mconf = mconf;
  129. /* need conf->hw_mode for supported rates. */
  130. if (ssid->frequency == 0) {
  131. conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
  132. conf->channel = 1;
  133. } else {
  134. conf->hw_mode = ieee80211_freq_to_chan(ssid->frequency,
  135. &conf->channel);
  136. }
  137. if (conf->hw_mode == NUM_HOSTAPD_MODES) {
  138. wpa_printf(MSG_ERROR, "Unsupported mesh mode frequency: %d MHz",
  139. ssid->frequency);
  140. goto out_free;
  141. }
  142. /*
  143. * XXX: Hack! This is so an MPM which correctly sets the ERP mandatory
  144. * rates as BSSBasicRateSet doesn't reject us. We could add a new
  145. * hw_mode HOSTAPD_MODE_IEEE80211G_ERP, but this is way easier. This
  146. * also makes our BSSBasicRateSet advertised in Beacon frames match the
  147. * one in peering frames, sigh.
  148. */
  149. if (conf->hw_mode == HOSTAPD_MODE_IEEE80211G) {
  150. conf->basic_rates = os_malloc(sizeof(basic_rates_erp));
  151. if (!conf->basic_rates)
  152. goto out_free;
  153. os_memcpy(conf->basic_rates, basic_rates_erp,
  154. sizeof(basic_rates_erp));
  155. }
  156. if (hostapd_setup_interface(ifmsh)) {
  157. wpa_printf(MSG_ERROR,
  158. "Failed to initialize hostapd interface for mesh");
  159. return -1;
  160. }
  161. if (wpa_drv_init_mesh(wpa_s)) {
  162. wpa_msg(wpa_s, MSG_ERROR, "Failed to init mesh in driver");
  163. return -1;
  164. }
  165. if (mconf->security != MESH_CONF_SEC_NONE) {
  166. if (ssid->passphrase == NULL) {
  167. wpa_printf(MSG_ERROR,
  168. "mesh: Passphrase for SAE not configured");
  169. goto out_free;
  170. }
  171. bss->conf->wpa = ssid->proto;
  172. bss->conf->wpa_key_mgmt = ssid->key_mgmt;
  173. if (wpa_s->conf->sae_groups &&
  174. wpa_s->conf->sae_groups[0] > 0) {
  175. wpas_mesh_copy_groups(bss, wpa_s);
  176. } else {
  177. bss->conf->sae_groups =
  178. os_malloc(sizeof(default_groups));
  179. if (!bss->conf->sae_groups)
  180. goto out_free;
  181. os_memcpy(bss->conf->sae_groups, default_groups,
  182. sizeof(default_groups));
  183. }
  184. len = os_strlen(ssid->passphrase);
  185. bss->conf->ssid.wpa_passphrase =
  186. dup_binstr(ssid->passphrase, len);
  187. }
  188. return 0;
  189. out_free:
  190. wpa_supplicant_mesh_deinit(wpa_s);
  191. return -ENOMEM;
  192. }
  193. void wpa_mesh_notify_peer(struct wpa_supplicant *wpa_s, const u8 *addr,
  194. const u8 *ies, size_t ie_len)
  195. {
  196. struct ieee802_11_elems elems;
  197. wpa_msg(wpa_s, MSG_INFO,
  198. "new peer notification for " MACSTR, MAC2STR(addr));
  199. if (ieee802_11_parse_elems(ies, ie_len, &elems, 0) == ParseFailed) {
  200. wpa_msg(wpa_s, MSG_INFO, "Could not parse beacon from " MACSTR,
  201. MAC2STR(addr));
  202. }
  203. }
  204. int wpa_supplicant_join_mesh(struct wpa_supplicant *wpa_s,
  205. struct wpa_ssid *ssid)
  206. {
  207. struct wpa_driver_mesh_join_params params;
  208. int ret = 0;
  209. if (!ssid || !ssid->ssid || !ssid->ssid_len || !ssid->frequency) {
  210. ret = -ENOENT;
  211. goto out;
  212. }
  213. wpa_supplicant_mesh_deinit(wpa_s);
  214. os_memset(&params, 0, sizeof(params));
  215. params.meshid = ssid->ssid;
  216. params.meshid_len = ssid->ssid_len;
  217. params.freq = ssid->frequency;
  218. if (ssid->key_mgmt & WPA_KEY_MGMT_SAE) {
  219. params.flags |= WPA_DRIVER_MESH_FLAG_SAE_AUTH;
  220. params.flags |= WPA_DRIVER_MESH_FLAG_AMPE;
  221. }
  222. params.flags |= WPA_DRIVER_MESH_FLAG_DRIVER_MPM;
  223. params.conf.flags |= WPA_DRIVER_MESH_CONF_FLAG_AUTO_PLINKS;
  224. if (wpa_supplicant_mesh_init(wpa_s, ssid)) {
  225. wpa_msg(wpa_s, MSG_ERROR, "Failed to init mesh");
  226. ret = -1;
  227. goto out;
  228. }
  229. if (wpa_s->ifmsh) {
  230. params.ies = wpa_s->ifmsh->mconf->ies;
  231. params.ie_len = wpa_s->ifmsh->mconf->ie_len;
  232. params.basic_rates = wpa_s->ifmsh->basic_rates;
  233. }
  234. wpa_msg(wpa_s, MSG_INFO, "joining mesh %s",
  235. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  236. ret = wpa_drv_join_mesh(wpa_s, &params);
  237. if (ret)
  238. wpa_msg(wpa_s, MSG_ERROR, "mesh join error=%d\n", ret);
  239. /* hostapd sets the interface down until we associate */
  240. wpa_drv_set_operstate(wpa_s, 1);
  241. out:
  242. return ret;
  243. }
  244. int wpa_supplicant_leave_mesh(struct wpa_supplicant *wpa_s)
  245. {
  246. int ret = 0;
  247. wpa_msg(wpa_s, MSG_INFO, "leaving mesh");
  248. ret = wpa_drv_leave_mesh(wpa_s);
  249. if (ret)
  250. wpa_msg(wpa_s, MSG_ERROR, "mesh leave error=%d", ret);
  251. wpa_drv_set_operstate(wpa_s, 1);
  252. wpa_supplicant_mesh_deinit(wpa_s);
  253. return ret;
  254. }