blob: bf9beb2cdc8f552773b21db10e2c53ca5c669d46 [file] [log] [blame]
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001/*
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
9#include "utils/includes.h"
10
11#include "utils/common.h"
12#include "utils/eloop.h"
13#include "utils/uuid.h"
14#include "common/ieee802_11_defs.h"
15#include "common/wpa_ctrl.h"
16#include "ap/sta_info.h"
17#include "ap/hostapd.h"
18#include "ap/ieee802_11.h"
19#include "config_ssid.h"
20#include "config.h"
21#include "wpa_supplicant_i.h"
22#include "driver_i.h"
23#include "notify.h"
24#include "ap.h"
25#include "mesh_mpm.h"
26#include "mesh_rsn.h"
27#include "mesh.h"
28
29
30static void wpa_supplicant_mesh_deinit(struct wpa_supplicant *wpa_s)
31{
32 wpa_supplicant_mesh_iface_deinit(wpa_s, wpa_s->ifmsh);
33 wpa_s->ifmsh = NULL;
34 wpa_s->current_ssid = NULL;
35 os_free(wpa_s->mesh_rsn);
36 wpa_s->mesh_rsn = NULL;
37 /* TODO: leave mesh (stop beacon). This will happen on link down
38 * anyway, so it's not urgent */
39}
40
41
42void wpa_supplicant_mesh_iface_deinit(struct wpa_supplicant *wpa_s,
43 struct hostapd_iface *ifmsh)
44{
45 if (!ifmsh)
46 return;
47
48 if (ifmsh->mconf) {
49 mesh_mpm_deinit(wpa_s, ifmsh);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080050 if (ifmsh->mconf->rsn_ie) {
51 ifmsh->mconf->rsn_ie = NULL;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080052 /* We cannot free this struct
53 * because wpa_authenticator on
54 * hostapd side is also using it
55 * for now just set to NULL and
56 * let hostapd code free it.
57 */
58 }
59 os_free(ifmsh->mconf);
60 ifmsh->mconf = NULL;
61 }
62
63 /* take care of shared data */
64 hostapd_interface_deinit(ifmsh);
65 hostapd_interface_free(ifmsh);
66}
67
68
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -070069static struct mesh_conf * mesh_config_create(struct wpa_supplicant *wpa_s,
70 struct wpa_ssid *ssid)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080071{
72 struct mesh_conf *conf;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -070073 int cipher;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080074
75 conf = os_zalloc(sizeof(struct mesh_conf));
76 if (!conf)
77 return NULL;
78
79 os_memcpy(conf->meshid, ssid->ssid, ssid->ssid_len);
80 conf->meshid_len = ssid->ssid_len;
81
82 if (ssid->key_mgmt & WPA_KEY_MGMT_SAE)
83 conf->security |= MESH_CONF_SEC_AUTH |
84 MESH_CONF_SEC_AMPE;
85 else
86 conf->security |= MESH_CONF_SEC_NONE;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -070087 conf->ieee80211w = ssid->ieee80211w;
88 if (conf->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT) {
89 if (wpa_s->drv_enc & WPA_DRIVER_CAPA_ENC_BIP)
90 conf->ieee80211w = wpa_s->conf->pmf;
91 else
92 conf->ieee80211w = NO_MGMT_FRAME_PROTECTION;
93 }
94
95 cipher = wpa_pick_pairwise_cipher(ssid->pairwise_cipher, 0);
96 if (cipher < 0 || cipher == WPA_CIPHER_TKIP) {
97 wpa_msg(wpa_s, MSG_INFO, "mesh: Invalid pairwise cipher");
98 os_free(conf);
99 return NULL;
100 }
101 conf->pairwise_cipher = cipher;
102
103 cipher = wpa_pick_group_cipher(ssid->group_cipher);
104 if (cipher < 0 || cipher == WPA_CIPHER_TKIP ||
105 cipher == WPA_CIPHER_GTK_NOT_USED) {
106 wpa_msg(wpa_s, MSG_INFO, "mesh: Invalid group cipher");
107 os_free(conf);
108 return NULL;
109 }
110
111 conf->group_cipher = cipher;
112 if (conf->ieee80211w != NO_MGMT_FRAME_PROTECTION)
113 conf->mgmt_group_cipher = WPA_CIPHER_AES_128_CMAC;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800114
115 /* defaults */
116 conf->mesh_pp_id = MESH_PATH_PROTOCOL_HWMP;
117 conf->mesh_pm_id = MESH_PATH_METRIC_AIRTIME;
118 conf->mesh_cc_id = 0;
119 conf->mesh_sp_id = MESH_SYNC_METHOD_NEIGHBOR_OFFSET;
120 conf->mesh_auth_id = (conf->security & MESH_CONF_SEC_AUTH) ? 1 : 0;
121 conf->dot11MeshMaxRetries = ssid->dot11MeshMaxRetries;
122 conf->dot11MeshRetryTimeout = ssid->dot11MeshRetryTimeout;
123 conf->dot11MeshConfirmTimeout = ssid->dot11MeshConfirmTimeout;
124 conf->dot11MeshHoldingTimeout = ssid->dot11MeshHoldingTimeout;
125
126 return conf;
127}
128
129
130static void wpas_mesh_copy_groups(struct hostapd_data *bss,
131 struct wpa_supplicant *wpa_s)
132{
133 int num_groups;
134 size_t groups_size;
135
136 for (num_groups = 0; wpa_s->conf->sae_groups[num_groups] > 0;
137 num_groups++)
138 ;
139
140 groups_size = (num_groups + 1) * sizeof(wpa_s->conf->sae_groups[0]);
141 bss->conf->sae_groups = os_malloc(groups_size);
142 if (bss->conf->sae_groups)
143 os_memcpy(bss->conf->sae_groups, wpa_s->conf->sae_groups,
144 groups_size);
145}
146
147
148static int wpa_supplicant_mesh_init(struct wpa_supplicant *wpa_s,
149 struct wpa_ssid *ssid)
150{
151 struct hostapd_iface *ifmsh;
152 struct hostapd_data *bss;
153 struct hostapd_config *conf;
154 struct mesh_conf *mconf;
155 int basic_rates_erp[] = { 10, 20, 55, 60, 110, 120, 240, -1 };
156 static int default_groups[] = { 19, 20, 21, 25, 26, -1 };
157 size_t len;
158 int rate_len;
159
160 if (!wpa_s->conf->user_mpm) {
161 /* not much for us to do here */
162 wpa_msg(wpa_s, MSG_WARNING,
163 "user_mpm is not enabled in configuration");
164 return 0;
165 }
166
167 wpa_s->ifmsh = ifmsh = os_zalloc(sizeof(*wpa_s->ifmsh));
168 if (!ifmsh)
169 return -ENOMEM;
170
171 ifmsh->drv_flags = wpa_s->drv_flags;
172 ifmsh->num_bss = 1;
173 ifmsh->bss = os_calloc(wpa_s->ifmsh->num_bss,
174 sizeof(struct hostapd_data *));
175 if (!ifmsh->bss)
176 goto out_free;
177
178 ifmsh->bss[0] = bss = os_zalloc(sizeof(struct hostapd_data));
179 if (!bss)
180 goto out_free;
181
182 os_memcpy(bss->own_addr, wpa_s->own_addr, ETH_ALEN);
183 bss->driver = wpa_s->driver;
184 bss->drv_priv = wpa_s->drv_priv;
185 bss->iface = ifmsh;
186 bss->mesh_sta_free_cb = mesh_mpm_free_sta;
187 wpa_s->assoc_freq = ssid->frequency;
188 wpa_s->current_ssid = ssid;
189
190 /* setup an AP config for auth processing */
191 conf = hostapd_config_defaults();
192 if (!conf)
193 goto out_free;
194
195 bss->conf = *conf->bss;
196 bss->conf->start_disabled = 1;
197 bss->conf->mesh = MESH_ENABLED;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800198 bss->conf->ap_max_inactivity = wpa_s->conf->mesh_max_inactivity;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800199 bss->iconf = conf;
200 ifmsh->conf = conf;
201
202 ifmsh->bss[0]->max_plinks = wpa_s->conf->max_peer_links;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800203 ifmsh->bss[0]->dot11RSNASAERetransPeriod =
204 wpa_s->conf->dot11RSNASAERetransPeriod;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800205 os_strlcpy(bss->conf->iface, wpa_s->ifname, sizeof(bss->conf->iface));
206
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700207 mconf = mesh_config_create(wpa_s, ssid);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800208 if (!mconf)
209 goto out_free;
210 ifmsh->mconf = mconf;
211
212 /* need conf->hw_mode for supported rates. */
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700213 conf->hw_mode = ieee80211_freq_to_chan(ssid->frequency, &conf->channel);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800214 if (conf->hw_mode == NUM_HOSTAPD_MODES) {
215 wpa_printf(MSG_ERROR, "Unsupported mesh mode frequency: %d MHz",
216 ssid->frequency);
217 goto out_free;
218 }
Dmitry Shmidt0e58d9b2015-12-22 10:59:44 -0800219 if (ssid->ht40)
220 conf->secondary_channel = ssid->ht40;
221 if (conf->hw_mode == HOSTAPD_MODE_IEEE80211A && ssid->vht) {
222 conf->vht_oper_chwidth = ssid->max_oper_chwidth;
223 switch (conf->vht_oper_chwidth) {
224 case VHT_CHANWIDTH_80MHZ:
225 case VHT_CHANWIDTH_80P80MHZ:
226 ieee80211_freq_to_chan(
227 ssid->frequency,
228 &conf->vht_oper_centr_freq_seg0_idx);
229 conf->vht_oper_centr_freq_seg0_idx += ssid->ht40 * 2;
230 break;
231 case VHT_CHANWIDTH_160MHZ:
232 ieee80211_freq_to_chan(
233 ssid->frequency,
234 &conf->vht_oper_centr_freq_seg0_idx);
235 conf->vht_oper_centr_freq_seg0_idx += ssid->ht40 * 2;
236 conf->vht_oper_centr_freq_seg0_idx += 40 / 5;
237 break;
238 }
239 ieee80211_freq_to_chan(ssid->vht_center_freq2,
240 &conf->vht_oper_centr_freq_seg1_idx);
241 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800242
243 if (ssid->mesh_basic_rates == NULL) {
244 /*
245 * XXX: Hack! This is so an MPM which correctly sets the ERP
246 * mandatory rates as BSSBasicRateSet doesn't reject us. We
247 * could add a new hw_mode HOSTAPD_MODE_IEEE80211G_ERP, but
248 * this is way easier. This also makes our BSSBasicRateSet
249 * advertised in beacons match the one in peering frames, sigh.
250 */
251 if (conf->hw_mode == HOSTAPD_MODE_IEEE80211G) {
252 conf->basic_rates = os_malloc(sizeof(basic_rates_erp));
253 if (!conf->basic_rates)
254 goto out_free;
255 os_memcpy(conf->basic_rates, basic_rates_erp,
256 sizeof(basic_rates_erp));
257 }
258 } else {
259 rate_len = 0;
260 while (1) {
261 if (ssid->mesh_basic_rates[rate_len] < 1)
262 break;
263 rate_len++;
264 }
265 conf->basic_rates = os_calloc(rate_len + 1, sizeof(int));
266 if (conf->basic_rates == NULL)
267 goto out_free;
268 os_memcpy(conf->basic_rates, ssid->mesh_basic_rates,
269 rate_len * sizeof(int));
270 conf->basic_rates[rate_len] = -1;
271 }
272
273 if (hostapd_setup_interface(ifmsh)) {
274 wpa_printf(MSG_ERROR,
275 "Failed to initialize hostapd interface for mesh");
276 return -1;
277 }
278
279 if (wpa_drv_init_mesh(wpa_s)) {
280 wpa_msg(wpa_s, MSG_ERROR, "Failed to init mesh in driver");
281 return -1;
282 }
283
284 if (mconf->security != MESH_CONF_SEC_NONE) {
285 if (ssid->passphrase == NULL) {
286 wpa_printf(MSG_ERROR,
287 "mesh: Passphrase for SAE not configured");
288 goto out_free;
289 }
290
291 bss->conf->wpa = ssid->proto;
292 bss->conf->wpa_key_mgmt = ssid->key_mgmt;
293
294 if (wpa_s->conf->sae_groups &&
295 wpa_s->conf->sae_groups[0] > 0) {
296 wpas_mesh_copy_groups(bss, wpa_s);
297 } else {
298 bss->conf->sae_groups =
299 os_malloc(sizeof(default_groups));
300 if (!bss->conf->sae_groups)
301 goto out_free;
302 os_memcpy(bss->conf->sae_groups, default_groups,
303 sizeof(default_groups));
304 }
305
306 len = os_strlen(ssid->passphrase);
307 bss->conf->ssid.wpa_passphrase =
308 dup_binstr(ssid->passphrase, len);
309
310 wpa_s->mesh_rsn = mesh_rsn_auth_init(wpa_s, mconf);
311 if (!wpa_s->mesh_rsn)
312 goto out_free;
313 }
314
315 wpa_supplicant_conf_ap_ht(wpa_s, ssid, conf);
316
317 return 0;
318out_free:
319 wpa_supplicant_mesh_deinit(wpa_s);
320 return -ENOMEM;
321}
322
323
324void wpa_mesh_notify_peer(struct wpa_supplicant *wpa_s, const u8 *addr,
325 const u8 *ies, size_t ie_len)
326{
327 struct ieee802_11_elems elems;
328
329 wpa_msg(wpa_s, MSG_INFO,
330 "new peer notification for " MACSTR, MAC2STR(addr));
331
332 if (ieee802_11_parse_elems(ies, ie_len, &elems, 0) == ParseFailed) {
333 wpa_msg(wpa_s, MSG_INFO, "Could not parse beacon from " MACSTR,
334 MAC2STR(addr));
335 return;
336 }
337 wpa_mesh_new_mesh_peer(wpa_s, addr, &elems);
338}
339
340
341void wpa_supplicant_mesh_add_scan_ie(struct wpa_supplicant *wpa_s,
342 struct wpabuf **extra_ie)
343{
344 /* EID + 0-length (wildcard) mesh-id */
345 size_t ielen = 2;
346
347 if (wpabuf_resize(extra_ie, ielen) == 0) {
348 wpabuf_put_u8(*extra_ie, WLAN_EID_MESH_ID);
349 wpabuf_put_u8(*extra_ie, 0);
350 }
351}
352
353
354int wpa_supplicant_join_mesh(struct wpa_supplicant *wpa_s,
355 struct wpa_ssid *ssid)
356{
357 struct wpa_driver_mesh_join_params params;
358 int ret = 0;
359
360 if (!ssid || !ssid->ssid || !ssid->ssid_len || !ssid->frequency) {
361 ret = -ENOENT;
362 goto out;
363 }
364
365 wpa_supplicant_mesh_deinit(wpa_s);
366
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700367 wpa_s->pairwise_cipher = WPA_CIPHER_NONE;
368 wpa_s->group_cipher = WPA_CIPHER_NONE;
369 wpa_s->mgmt_group_cipher = 0;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -0800370
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800371 os_memset(&params, 0, sizeof(params));
372 params.meshid = ssid->ssid;
373 params.meshid_len = ssid->ssid_len;
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800374 ibss_mesh_setup_freq(wpa_s, ssid, &params.freq);
375 wpa_s->mesh_ht_enabled = !!params.freq.ht_enabled;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -0800376 wpa_s->mesh_vht_enabled = !!params.freq.vht_enabled;
Dmitry Shmidt0e58d9b2015-12-22 10:59:44 -0800377 if (params.freq.ht_enabled && params.freq.sec_channel_offset)
378 ssid->ht40 = params.freq.sec_channel_offset;
379 if (wpa_s->mesh_vht_enabled) {
380 ssid->vht = 1;
381 switch (params.freq.bandwidth) {
382 case 80:
383 if (params.freq.center_freq2) {
384 ssid->max_oper_chwidth = VHT_CHANWIDTH_80P80MHZ;
385 ssid->vht_center_freq2 =
386 params.freq.center_freq2;
387 } else {
388 ssid->max_oper_chwidth = VHT_CHANWIDTH_80MHZ;
389 }
390 break;
391 case 160:
392 ssid->max_oper_chwidth = VHT_CHANWIDTH_160MHZ;
393 break;
394 default:
395 ssid->max_oper_chwidth = VHT_CHANWIDTH_USE_HT;
396 break;
397 }
398 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800399 if (ssid->beacon_int > 0)
400 params.beacon_int = ssid->beacon_int;
401 else if (wpa_s->conf->beacon_int > 0)
402 params.beacon_int = wpa_s->conf->beacon_int;
403 params.max_peer_links = wpa_s->conf->max_peer_links;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800404
405 if (ssid->key_mgmt & WPA_KEY_MGMT_SAE) {
406 params.flags |= WPA_DRIVER_MESH_FLAG_SAE_AUTH;
407 params.flags |= WPA_DRIVER_MESH_FLAG_AMPE;
408 wpa_s->conf->user_mpm = 1;
409 }
410
411 if (wpa_s->conf->user_mpm) {
412 params.flags |= WPA_DRIVER_MESH_FLAG_USER_MPM;
413 params.conf.flags &= ~WPA_DRIVER_MESH_CONF_FLAG_AUTO_PLINKS;
414 } else {
415 params.flags |= WPA_DRIVER_MESH_FLAG_DRIVER_MPM;
416 params.conf.flags |= WPA_DRIVER_MESH_CONF_FLAG_AUTO_PLINKS;
417 }
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800418 params.conf.peer_link_timeout = wpa_s->conf->mesh_max_inactivity;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800419
420 if (wpa_supplicant_mesh_init(wpa_s, ssid)) {
421 wpa_msg(wpa_s, MSG_ERROR, "Failed to init mesh");
Dmitry Shmidt4dd28dc2015-03-10 11:21:43 -0700422 wpa_drv_leave_mesh(wpa_s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800423 ret = -1;
424 goto out;
425 }
426
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700427 if (ssid->key_mgmt & WPA_KEY_MGMT_SAE) {
428 wpa_s->pairwise_cipher = wpa_s->mesh_rsn->pairwise_cipher;
429 wpa_s->group_cipher = wpa_s->mesh_rsn->group_cipher;
430 wpa_s->mgmt_group_cipher = wpa_s->mesh_rsn->mgmt_group_cipher;
431 }
432
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800433 if (wpa_s->ifmsh) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800434 params.ies = wpa_s->ifmsh->mconf->rsn_ie;
435 params.ie_len = wpa_s->ifmsh->mconf->rsn_ie_len;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800436 params.basic_rates = wpa_s->ifmsh->basic_rates;
437 }
438
439 wpa_msg(wpa_s, MSG_INFO, "joining mesh %s",
440 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
441 ret = wpa_drv_join_mesh(wpa_s, &params);
442 if (ret)
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700443 wpa_msg(wpa_s, MSG_ERROR, "mesh join error=%d", ret);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800444
445 /* hostapd sets the interface down until we associate */
446 wpa_drv_set_operstate(wpa_s, 1);
447
448out:
449 return ret;
450}
451
452
453int wpa_supplicant_leave_mesh(struct wpa_supplicant *wpa_s)
454{
455 int ret = 0;
456
457 wpa_msg(wpa_s, MSG_INFO, "leaving mesh");
458
459 /* Need to send peering close messages first */
460 wpa_supplicant_mesh_deinit(wpa_s);
461
462 ret = wpa_drv_leave_mesh(wpa_s);
463 if (ret)
464 wpa_msg(wpa_s, MSG_ERROR, "mesh leave error=%d", ret);
465
466 wpa_drv_set_operstate(wpa_s, 1);
467
468 return ret;
469}
470
471
472static int mesh_attr_text(const u8 *ies, size_t ies_len, char *buf, char *end)
473{
474 struct ieee802_11_elems elems;
475 char *mesh_id, *pos = buf;
476 u8 *bss_basic_rate_set;
477 int bss_basic_rate_set_len, ret, i;
478
479 if (ieee802_11_parse_elems(ies, ies_len, &elems, 0) == ParseFailed)
480 return -1;
481
482 if (elems.mesh_id_len < 1)
483 return 0;
484
485 mesh_id = os_malloc(elems.mesh_id_len + 1);
486 if (mesh_id == NULL)
487 return -1;
488
489 os_memcpy(mesh_id, elems.mesh_id, elems.mesh_id_len);
490 mesh_id[elems.mesh_id_len] = '\0';
491 ret = os_snprintf(pos, end - pos, "mesh_id=%s\n", mesh_id);
492 os_free(mesh_id);
493 if (os_snprintf_error(end - pos, ret))
494 return pos - buf;
495 pos += ret;
496
497 if (elems.mesh_config_len > 6) {
498 ret = os_snprintf(pos, end - pos,
499 "active_path_selection_protocol_id=0x%02x\n"
500 "active_path_selection_metric_id=0x%02x\n"
501 "congestion_control_mode_id=0x%02x\n"
502 "synchronization_method_id=0x%02x\n"
503 "authentication_protocol_id=0x%02x\n"
504 "mesh_formation_info=0x%02x\n"
505 "mesh_capability=0x%02x\n",
506 elems.mesh_config[0], elems.mesh_config[1],
507 elems.mesh_config[2], elems.mesh_config[3],
508 elems.mesh_config[4], elems.mesh_config[5],
509 elems.mesh_config[6]);
510 if (os_snprintf_error(end - pos, ret))
511 return pos - buf;
512 pos += ret;
513 }
514
515 bss_basic_rate_set = os_malloc(elems.supp_rates_len +
516 elems.ext_supp_rates_len);
517 if (bss_basic_rate_set == NULL)
518 return -1;
519
520 bss_basic_rate_set_len = 0;
521 for (i = 0; i < elems.supp_rates_len; i++) {
522 if (elems.supp_rates[i] & 0x80) {
523 bss_basic_rate_set[bss_basic_rate_set_len++] =
524 (elems.supp_rates[i] & 0x7f) * 5;
525 }
526 }
527 for (i = 0; i < elems.ext_supp_rates_len; i++) {
528 if (elems.ext_supp_rates[i] & 0x80) {
529 bss_basic_rate_set[bss_basic_rate_set_len++] =
530 (elems.ext_supp_rates[i] & 0x7f) * 5;
531 }
532 }
533 if (bss_basic_rate_set_len > 0) {
534 ret = os_snprintf(pos, end - pos, "bss_basic_rate_set=%d",
535 bss_basic_rate_set[0]);
536 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700537 goto fail;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800538 pos += ret;
539
540 for (i = 1; i < bss_basic_rate_set_len; i++) {
541 ret = os_snprintf(pos, end - pos, " %d",
542 bss_basic_rate_set[i]);
543 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700544 goto fail;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800545 pos += ret;
546 }
547
548 ret = os_snprintf(pos, end - pos, "\n");
549 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700550 goto fail;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800551 pos += ret;
552 }
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700553fail:
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800554 os_free(bss_basic_rate_set);
555
556 return pos - buf;
557}
558
559
560int wpas_mesh_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
561 char *end)
562{
563 return mesh_attr_text(ies, ies_len, buf, end);
564}
565
566
567static int wpas_mesh_get_ifname(struct wpa_supplicant *wpa_s, char *ifname,
568 size_t len)
569{
570 char *ifname_ptr = wpa_s->ifname;
571 int res;
572
573 res = os_snprintf(ifname, len, "mesh-%s-%d", ifname_ptr,
574 wpa_s->mesh_if_idx);
575 if (os_snprintf_error(len, res) ||
576 (os_strlen(ifname) >= IFNAMSIZ &&
577 os_strlen(wpa_s->ifname) < IFNAMSIZ)) {
578 /* Try to avoid going over the IFNAMSIZ length limit */
579 res = os_snprintf(ifname, len, "mesh-%d", wpa_s->mesh_if_idx);
580 if (os_snprintf_error(len, res))
581 return -1;
582 }
583 wpa_s->mesh_if_idx++;
584 return 0;
585}
586
587
588int wpas_mesh_add_interface(struct wpa_supplicant *wpa_s, char *ifname,
589 size_t len)
590{
591 struct wpa_interface iface;
592 struct wpa_supplicant *mesh_wpa_s;
593 u8 addr[ETH_ALEN];
594
595 if (ifname[0] == '\0' && wpas_mesh_get_ifname(wpa_s, ifname, len) < 0)
596 return -1;
597
598 if (wpa_drv_if_add(wpa_s, WPA_IF_MESH, ifname, NULL, NULL, NULL, addr,
599 NULL) < 0) {
600 wpa_printf(MSG_ERROR,
601 "mesh: Failed to create new mesh interface");
602 return -1;
603 }
604 wpa_printf(MSG_INFO, "mesh: Created virtual interface %s addr "
605 MACSTR, ifname, MAC2STR(addr));
606
607 os_memset(&iface, 0, sizeof(iface));
608 iface.ifname = ifname;
609 iface.driver = wpa_s->driver->name;
610 iface.driver_param = wpa_s->conf->driver_param;
611 iface.ctrl_interface = wpa_s->conf->ctrl_interface;
612
Dmitry Shmidt203eadb2015-03-05 14:16:04 -0800613 mesh_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface, wpa_s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800614 if (!mesh_wpa_s) {
615 wpa_printf(MSG_ERROR,
616 "mesh: Failed to create new wpa_supplicant interface");
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700617 wpa_drv_if_remove(wpa_s, WPA_IF_MESH, ifname);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800618 return -1;
619 }
620 mesh_wpa_s->mesh_if_created = 1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800621 return 0;
622}
Dmitry Shmidte4663042016-04-04 10:07:49 -0700623
624
625int wpas_mesh_peer_remove(struct wpa_supplicant *wpa_s, const u8 *addr)
626{
627 return mesh_mpm_close_peer(wpa_s, addr);
628}
629
630
631int wpas_mesh_peer_add(struct wpa_supplicant *wpa_s, const u8 *addr,
632 int duration)
633{
634 return mesh_mpm_connect_peer(wpa_s, addr, duration);
635}