blob: e9457f0440f3c7cb1c09530cf427afeb3554ebf9 [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;
Hai Shalom74f70d42019-02-11 14:42:39 -080037 os_free(wpa_s->mesh_params);
38 wpa_s->mesh_params = NULL;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080039 /* TODO: leave mesh (stop beacon). This will happen on link down
40 * anyway, so it's not urgent */
41}
42
43
44void wpa_supplicant_mesh_iface_deinit(struct wpa_supplicant *wpa_s,
45 struct hostapd_iface *ifmsh)
46{
47 if (!ifmsh)
48 return;
49
50 if (ifmsh->mconf) {
51 mesh_mpm_deinit(wpa_s, ifmsh);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080052 if (ifmsh->mconf->rsn_ie) {
53 ifmsh->mconf->rsn_ie = NULL;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080054 /* We cannot free this struct
55 * because wpa_authenticator on
56 * hostapd side is also using it
57 * for now just set to NULL and
58 * let hostapd code free it.
59 */
60 }
61 os_free(ifmsh->mconf);
62 ifmsh->mconf = NULL;
63 }
64
65 /* take care of shared data */
66 hostapd_interface_deinit(ifmsh);
67 hostapd_interface_free(ifmsh);
68}
69
70
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -070071static struct mesh_conf * mesh_config_create(struct wpa_supplicant *wpa_s,
72 struct wpa_ssid *ssid)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080073{
74 struct mesh_conf *conf;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -070075 int cipher;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080076
77 conf = os_zalloc(sizeof(struct mesh_conf));
78 if (!conf)
79 return NULL;
80
81 os_memcpy(conf->meshid, ssid->ssid, ssid->ssid_len);
82 conf->meshid_len = ssid->ssid_len;
83
84 if (ssid->key_mgmt & WPA_KEY_MGMT_SAE)
85 conf->security |= MESH_CONF_SEC_AUTH |
86 MESH_CONF_SEC_AMPE;
87 else
88 conf->security |= MESH_CONF_SEC_NONE;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070089#ifdef CONFIG_IEEE80211W
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -070090 conf->ieee80211w = ssid->ieee80211w;
91 if (conf->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT) {
92 if (wpa_s->drv_enc & WPA_DRIVER_CAPA_ENC_BIP)
93 conf->ieee80211w = wpa_s->conf->pmf;
94 else
95 conf->ieee80211w = NO_MGMT_FRAME_PROTECTION;
96 }
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070097#endif /* CONFIG_IEEE80211W */
Hai Shalom74f70d42019-02-11 14:42:39 -080098#ifdef CONFIG_OCV
99 conf->ocv = ssid->ocv;
100#endif /* CONFIG_OCV */
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700101
102 cipher = wpa_pick_pairwise_cipher(ssid->pairwise_cipher, 0);
103 if (cipher < 0 || cipher == WPA_CIPHER_TKIP) {
104 wpa_msg(wpa_s, MSG_INFO, "mesh: Invalid pairwise cipher");
105 os_free(conf);
106 return NULL;
107 }
108 conf->pairwise_cipher = cipher;
109
110 cipher = wpa_pick_group_cipher(ssid->group_cipher);
111 if (cipher < 0 || cipher == WPA_CIPHER_TKIP ||
112 cipher == WPA_CIPHER_GTK_NOT_USED) {
113 wpa_msg(wpa_s, MSG_INFO, "mesh: Invalid group cipher");
114 os_free(conf);
115 return NULL;
116 }
117
118 conf->group_cipher = cipher;
119 if (conf->ieee80211w != NO_MGMT_FRAME_PROTECTION)
120 conf->mgmt_group_cipher = WPA_CIPHER_AES_128_CMAC;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800121
122 /* defaults */
123 conf->mesh_pp_id = MESH_PATH_PROTOCOL_HWMP;
124 conf->mesh_pm_id = MESH_PATH_METRIC_AIRTIME;
125 conf->mesh_cc_id = 0;
126 conf->mesh_sp_id = MESH_SYNC_METHOD_NEIGHBOR_OFFSET;
127 conf->mesh_auth_id = (conf->security & MESH_CONF_SEC_AUTH) ? 1 : 0;
128 conf->dot11MeshMaxRetries = ssid->dot11MeshMaxRetries;
129 conf->dot11MeshRetryTimeout = ssid->dot11MeshRetryTimeout;
130 conf->dot11MeshConfirmTimeout = ssid->dot11MeshConfirmTimeout;
131 conf->dot11MeshHoldingTimeout = ssid->dot11MeshHoldingTimeout;
132
133 return conf;
134}
135
136
137static void wpas_mesh_copy_groups(struct hostapd_data *bss,
138 struct wpa_supplicant *wpa_s)
139{
140 int num_groups;
141 size_t groups_size;
142
143 for (num_groups = 0; wpa_s->conf->sae_groups[num_groups] > 0;
144 num_groups++)
145 ;
146
147 groups_size = (num_groups + 1) * sizeof(wpa_s->conf->sae_groups[0]);
148 bss->conf->sae_groups = os_malloc(groups_size);
149 if (bss->conf->sae_groups)
150 os_memcpy(bss->conf->sae_groups, wpa_s->conf->sae_groups,
151 groups_size);
152}
153
154
Hai Shalom74f70d42019-02-11 14:42:39 -0800155static int wpas_mesh_init_rsn(struct wpa_supplicant *wpa_s)
156{
157 struct hostapd_iface *ifmsh = wpa_s->ifmsh;
158 struct wpa_ssid *ssid = wpa_s->current_ssid;
159 struct hostapd_data *bss = ifmsh->bss[0];
160 static int default_groups[] = { 19, 20, 21, 25, 26, -1 };
161 const char *password;
162 size_t len;
163
164 password = ssid->sae_password;
165 if (!password)
166 password = ssid->passphrase;
167 if (!password) {
168 wpa_printf(MSG_ERROR,
169 "mesh: Passphrase for SAE not configured");
170 return -1;
171 }
172
173 bss->conf->wpa = ssid->proto;
174 bss->conf->wpa_key_mgmt = ssid->key_mgmt;
175
176 if (wpa_s->conf->sae_groups && wpa_s->conf->sae_groups[0] > 0) {
177 wpas_mesh_copy_groups(bss, wpa_s);
178 } else {
179 bss->conf->sae_groups = os_memdup(default_groups,
180 sizeof(default_groups));
181 if (!bss->conf->sae_groups)
182 return -1;
183 }
184
185 len = os_strlen(password);
186 bss->conf->ssid.wpa_passphrase = dup_binstr(password, len);
187
188 wpa_s->mesh_rsn = mesh_rsn_auth_init(wpa_s, ifmsh->mconf);
189 return !wpa_s->mesh_rsn ? -1 : 0;
190}
191
192
193static int wpas_mesh_complete(struct wpa_supplicant *wpa_s)
194{
195 struct hostapd_iface *ifmsh = wpa_s->ifmsh;
196 struct wpa_driver_mesh_join_params *params = wpa_s->mesh_params;
197 struct wpa_ssid *ssid = wpa_s->current_ssid;
198 int ret;
199
200 if (!params || !ssid) {
201 wpa_printf(MSG_ERROR, "mesh: %s called without active mesh",
202 __func__);
203 return -1;
204 }
205
206 if (ifmsh->mconf->security != MESH_CONF_SEC_NONE &&
207 wpas_mesh_init_rsn(wpa_s)) {
208 wpa_printf(MSG_ERROR,
209 "mesh: RSN initialization failed - deinit mesh");
210 wpa_supplicant_mesh_deinit(wpa_s);
211 return -1;
212 }
213
214 if (ssid->key_mgmt & WPA_KEY_MGMT_SAE) {
215 wpa_s->pairwise_cipher = wpa_s->mesh_rsn->pairwise_cipher;
216 wpa_s->group_cipher = wpa_s->mesh_rsn->group_cipher;
217 wpa_s->mgmt_group_cipher = wpa_s->mesh_rsn->mgmt_group_cipher;
218 }
219
220 if (ifmsh) {
221 params->ies = ifmsh->mconf->rsn_ie;
222 params->ie_len = ifmsh->mconf->rsn_ie_len;
223 params->basic_rates = ifmsh->basic_rates;
224 params->conf.flags |= WPA_DRIVER_MESH_CONF_FLAG_HT_OP_MODE;
225 params->conf.ht_opmode = ifmsh->bss[0]->iface->ht_op_mode;
226 }
227
228 wpa_msg(wpa_s, MSG_INFO, "joining mesh %s",
229 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
230 ret = wpa_drv_join_mesh(wpa_s, params);
231 if (ret)
232 wpa_msg(wpa_s, MSG_ERROR, "mesh join error=%d", ret);
233
234 /* hostapd sets the interface down until we associate */
235 wpa_drv_set_operstate(wpa_s, 1);
236
237 if (!ret)
238 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
239
240 return ret;
241}
242
243
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800244static int wpa_supplicant_mesh_init(struct wpa_supplicant *wpa_s,
Dmitry Shmidt29333592017-01-09 12:27:11 -0800245 struct wpa_ssid *ssid,
246 struct hostapd_freq_params *freq)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800247{
248 struct hostapd_iface *ifmsh;
249 struct hostapd_data *bss;
250 struct hostapd_config *conf;
251 struct mesh_conf *mconf;
252 int basic_rates_erp[] = { 10, 20, 55, 60, 110, 120, 240, -1 };
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800253 int rate_len;
Dmitry Shmidt29333592017-01-09 12:27:11 -0800254 int frequency;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800255
256 if (!wpa_s->conf->user_mpm) {
257 /* not much for us to do here */
258 wpa_msg(wpa_s, MSG_WARNING,
259 "user_mpm is not enabled in configuration");
260 return 0;
261 }
262
Roshan Pius3a1667e2018-07-03 15:17:14 -0700263 wpa_s->ifmsh = ifmsh = hostapd_alloc_iface();
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800264 if (!ifmsh)
265 return -ENOMEM;
266
267 ifmsh->drv_flags = wpa_s->drv_flags;
268 ifmsh->num_bss = 1;
269 ifmsh->bss = os_calloc(wpa_s->ifmsh->num_bss,
270 sizeof(struct hostapd_data *));
271 if (!ifmsh->bss)
272 goto out_free;
273
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800274 ifmsh->bss[0] = bss = hostapd_alloc_bss_data(NULL, NULL, NULL);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800275 if (!bss)
276 goto out_free;
277
Roshan Pius3a1667e2018-07-03 15:17:14 -0700278 ifmsh->bss[0]->msg_ctx = wpa_s;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800279 os_memcpy(bss->own_addr, wpa_s->own_addr, ETH_ALEN);
280 bss->driver = wpa_s->driver;
281 bss->drv_priv = wpa_s->drv_priv;
282 bss->iface = ifmsh;
283 bss->mesh_sta_free_cb = mesh_mpm_free_sta;
Dmitry Shmidt29333592017-01-09 12:27:11 -0800284 frequency = ssid->frequency;
285 if (frequency != freq->freq &&
286 frequency == freq->freq + freq->sec_channel_offset * 20) {
287 wpa_printf(MSG_DEBUG, "mesh: pri/sec channels switched");
288 frequency = freq->freq;
289 }
290 wpa_s->assoc_freq = frequency;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800291 wpa_s->current_ssid = ssid;
292
293 /* setup an AP config for auth processing */
294 conf = hostapd_config_defaults();
295 if (!conf)
296 goto out_free;
297
298 bss->conf = *conf->bss;
299 bss->conf->start_disabled = 1;
300 bss->conf->mesh = MESH_ENABLED;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800301 bss->conf->ap_max_inactivity = wpa_s->conf->mesh_max_inactivity;
Hai Shalom74f70d42019-02-11 14:42:39 -0800302
303 if (ieee80211_is_dfs(ssid->frequency, wpa_s->hw.modes,
304 wpa_s->hw.num_modes) && wpa_s->conf->country[0]) {
305 conf->ieee80211h = 1;
306 conf->ieee80211d = 1;
307 conf->country[0] = wpa_s->conf->country[0];
308 conf->country[1] = wpa_s->conf->country[1];
309 conf->country[2] = ' ';
310 }
311
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800312 bss->iconf = conf;
313 ifmsh->conf = conf;
314
315 ifmsh->bss[0]->max_plinks = wpa_s->conf->max_peer_links;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800316 ifmsh->bss[0]->dot11RSNASAERetransPeriod =
317 wpa_s->conf->dot11RSNASAERetransPeriod;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800318 os_strlcpy(bss->conf->iface, wpa_s->ifname, sizeof(bss->conf->iface));
319
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700320 mconf = mesh_config_create(wpa_s, ssid);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800321 if (!mconf)
322 goto out_free;
323 ifmsh->mconf = mconf;
324
325 /* need conf->hw_mode for supported rates. */
Dmitry Shmidt29333592017-01-09 12:27:11 -0800326 conf->hw_mode = ieee80211_freq_to_chan(frequency, &conf->channel);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800327 if (conf->hw_mode == NUM_HOSTAPD_MODES) {
328 wpa_printf(MSG_ERROR, "Unsupported mesh mode frequency: %d MHz",
Dmitry Shmidt29333592017-01-09 12:27:11 -0800329 frequency);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800330 goto out_free;
331 }
Dmitry Shmidt0e58d9b2015-12-22 10:59:44 -0800332 if (ssid->ht40)
333 conf->secondary_channel = ssid->ht40;
334 if (conf->hw_mode == HOSTAPD_MODE_IEEE80211A && ssid->vht) {
Hai Shalom74f70d42019-02-11 14:42:39 -0800335 if (ssid->max_oper_chwidth != DEFAULT_MAX_OPER_CHWIDTH)
336 conf->vht_oper_chwidth = ssid->max_oper_chwidth;
Dmitry Shmidt0e58d9b2015-12-22 10:59:44 -0800337 switch (conf->vht_oper_chwidth) {
338 case VHT_CHANWIDTH_80MHZ:
339 case VHT_CHANWIDTH_80P80MHZ:
340 ieee80211_freq_to_chan(
Dmitry Shmidt29333592017-01-09 12:27:11 -0800341 frequency,
Dmitry Shmidt0e58d9b2015-12-22 10:59:44 -0800342 &conf->vht_oper_centr_freq_seg0_idx);
343 conf->vht_oper_centr_freq_seg0_idx += ssid->ht40 * 2;
344 break;
345 case VHT_CHANWIDTH_160MHZ:
346 ieee80211_freq_to_chan(
Dmitry Shmidt29333592017-01-09 12:27:11 -0800347 frequency,
Dmitry Shmidt0e58d9b2015-12-22 10:59:44 -0800348 &conf->vht_oper_centr_freq_seg0_idx);
349 conf->vht_oper_centr_freq_seg0_idx += ssid->ht40 * 2;
350 conf->vht_oper_centr_freq_seg0_idx += 40 / 5;
351 break;
352 }
353 ieee80211_freq_to_chan(ssid->vht_center_freq2,
354 &conf->vht_oper_centr_freq_seg1_idx);
355 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800356
357 if (ssid->mesh_basic_rates == NULL) {
358 /*
359 * XXX: Hack! This is so an MPM which correctly sets the ERP
360 * mandatory rates as BSSBasicRateSet doesn't reject us. We
361 * could add a new hw_mode HOSTAPD_MODE_IEEE80211G_ERP, but
362 * this is way easier. This also makes our BSSBasicRateSet
363 * advertised in beacons match the one in peering frames, sigh.
364 */
365 if (conf->hw_mode == HOSTAPD_MODE_IEEE80211G) {
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700366 conf->basic_rates = os_memdup(basic_rates_erp,
367 sizeof(basic_rates_erp));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800368 if (!conf->basic_rates)
369 goto out_free;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800370 }
371 } else {
372 rate_len = 0;
373 while (1) {
374 if (ssid->mesh_basic_rates[rate_len] < 1)
375 break;
376 rate_len++;
377 }
378 conf->basic_rates = os_calloc(rate_len + 1, sizeof(int));
379 if (conf->basic_rates == NULL)
380 goto out_free;
381 os_memcpy(conf->basic_rates, ssid->mesh_basic_rates,
382 rate_len * sizeof(int));
383 conf->basic_rates[rate_len] = -1;
384 }
385
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800386 if (wpa_drv_init_mesh(wpa_s)) {
387 wpa_msg(wpa_s, MSG_ERROR, "Failed to init mesh in driver");
388 return -1;
389 }
390
Hai Shalom74f70d42019-02-11 14:42:39 -0800391 if (hostapd_setup_interface(ifmsh)) {
392 wpa_printf(MSG_ERROR,
393 "Failed to initialize hostapd interface for mesh");
394 return -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800395 }
396
397 wpa_supplicant_conf_ap_ht(wpa_s, ssid, conf);
398
399 return 0;
400out_free:
401 wpa_supplicant_mesh_deinit(wpa_s);
402 return -ENOMEM;
403}
404
405
406void wpa_mesh_notify_peer(struct wpa_supplicant *wpa_s, const u8 *addr,
407 const u8 *ies, size_t ie_len)
408{
409 struct ieee802_11_elems elems;
410
411 wpa_msg(wpa_s, MSG_INFO,
412 "new peer notification for " MACSTR, MAC2STR(addr));
413
414 if (ieee802_11_parse_elems(ies, ie_len, &elems, 0) == ParseFailed) {
415 wpa_msg(wpa_s, MSG_INFO, "Could not parse beacon from " MACSTR,
416 MAC2STR(addr));
417 return;
418 }
419 wpa_mesh_new_mesh_peer(wpa_s, addr, &elems);
420}
421
422
423void wpa_supplicant_mesh_add_scan_ie(struct wpa_supplicant *wpa_s,
424 struct wpabuf **extra_ie)
425{
426 /* EID + 0-length (wildcard) mesh-id */
427 size_t ielen = 2;
428
429 if (wpabuf_resize(extra_ie, ielen) == 0) {
430 wpabuf_put_u8(*extra_ie, WLAN_EID_MESH_ID);
431 wpabuf_put_u8(*extra_ie, 0);
432 }
433}
434
435
436int wpa_supplicant_join_mesh(struct wpa_supplicant *wpa_s,
437 struct wpa_ssid *ssid)
438{
Hai Shalom74f70d42019-02-11 14:42:39 -0800439 struct wpa_driver_mesh_join_params *params = os_zalloc(sizeof(*params));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800440 int ret = 0;
441
Hai Shalom74f70d42019-02-11 14:42:39 -0800442 if (!ssid || !ssid->ssid || !ssid->ssid_len || !ssid->frequency ||
443 !params) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800444 ret = -ENOENT;
Hai Shalom74f70d42019-02-11 14:42:39 -0800445 os_free(params);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800446 goto out;
447 }
448
449 wpa_supplicant_mesh_deinit(wpa_s);
450
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700451 wpa_s->pairwise_cipher = WPA_CIPHER_NONE;
452 wpa_s->group_cipher = WPA_CIPHER_NONE;
453 wpa_s->mgmt_group_cipher = 0;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -0800454
Hai Shalom74f70d42019-02-11 14:42:39 -0800455 params->meshid = ssid->ssid;
456 params->meshid_len = ssid->ssid_len;
457 ibss_mesh_setup_freq(wpa_s, ssid, &params->freq);
458 wpa_s->mesh_ht_enabled = !!params->freq.ht_enabled;
459 wpa_s->mesh_vht_enabled = !!params->freq.vht_enabled;
460 if (params->freq.ht_enabled && params->freq.sec_channel_offset)
461 ssid->ht40 = params->freq.sec_channel_offset;
462
Dmitry Shmidt0e58d9b2015-12-22 10:59:44 -0800463 if (wpa_s->mesh_vht_enabled) {
464 ssid->vht = 1;
Hai Shalom74f70d42019-02-11 14:42:39 -0800465 ssid->vht_center_freq1 = params->freq.center_freq1;
466 switch (params->freq.bandwidth) {
Dmitry Shmidt0e58d9b2015-12-22 10:59:44 -0800467 case 80:
Hai Shalom74f70d42019-02-11 14:42:39 -0800468 if (params->freq.center_freq2) {
Dmitry Shmidt0e58d9b2015-12-22 10:59:44 -0800469 ssid->max_oper_chwidth = VHT_CHANWIDTH_80P80MHZ;
470 ssid->vht_center_freq2 =
Hai Shalom74f70d42019-02-11 14:42:39 -0800471 params->freq.center_freq2;
Dmitry Shmidt0e58d9b2015-12-22 10:59:44 -0800472 } else {
473 ssid->max_oper_chwidth = VHT_CHANWIDTH_80MHZ;
474 }
475 break;
476 case 160:
477 ssid->max_oper_chwidth = VHT_CHANWIDTH_160MHZ;
478 break;
479 default:
480 ssid->max_oper_chwidth = VHT_CHANWIDTH_USE_HT;
481 break;
482 }
483 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800484 if (ssid->beacon_int > 0)
Hai Shalom74f70d42019-02-11 14:42:39 -0800485 params->beacon_int = ssid->beacon_int;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800486 else if (wpa_s->conf->beacon_int > 0)
Hai Shalom74f70d42019-02-11 14:42:39 -0800487 params->beacon_int = wpa_s->conf->beacon_int;
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -0700488 if (ssid->dtim_period > 0)
Hai Shalom74f70d42019-02-11 14:42:39 -0800489 params->dtim_period = ssid->dtim_period;
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -0700490 else if (wpa_s->conf->dtim_period > 0)
Hai Shalom74f70d42019-02-11 14:42:39 -0800491 params->dtim_period = wpa_s->conf->dtim_period;
492 params->conf.max_peer_links = wpa_s->conf->max_peer_links;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700493 if (ssid->mesh_rssi_threshold < DEFAULT_MESH_RSSI_THRESHOLD) {
Hai Shalom74f70d42019-02-11 14:42:39 -0800494 params->conf.rssi_threshold = ssid->mesh_rssi_threshold;
495 params->conf.flags |= WPA_DRIVER_MESH_CONF_FLAG_RSSI_THRESHOLD;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700496 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800497
498 if (ssid->key_mgmt & WPA_KEY_MGMT_SAE) {
Hai Shalom74f70d42019-02-11 14:42:39 -0800499 params->flags |= WPA_DRIVER_MESH_FLAG_SAE_AUTH;
500 params->flags |= WPA_DRIVER_MESH_FLAG_AMPE;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800501 wpa_s->conf->user_mpm = 1;
502 }
503
504 if (wpa_s->conf->user_mpm) {
Hai Shalom74f70d42019-02-11 14:42:39 -0800505 params->flags |= WPA_DRIVER_MESH_FLAG_USER_MPM;
506 params->conf.auto_plinks = 0;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800507 } else {
Hai Shalom74f70d42019-02-11 14:42:39 -0800508 params->flags |= WPA_DRIVER_MESH_FLAG_DRIVER_MPM;
509 params->conf.auto_plinks = 1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800510 }
Hai Shalom74f70d42019-02-11 14:42:39 -0800511 params->conf.peer_link_timeout = wpa_s->conf->mesh_max_inactivity;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800512
Hai Shalom74f70d42019-02-11 14:42:39 -0800513 os_free(wpa_s->mesh_params);
514 wpa_s->mesh_params = params;
515 if (wpa_supplicant_mesh_init(wpa_s, ssid, &params->freq)) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800516 wpa_msg(wpa_s, MSG_ERROR, "Failed to init mesh");
Dmitry Shmidt4dd28dc2015-03-10 11:21:43 -0700517 wpa_drv_leave_mesh(wpa_s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800518 ret = -1;
519 goto out;
520 }
521
Hai Shalom74f70d42019-02-11 14:42:39 -0800522 ret = wpas_mesh_complete(wpa_s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800523out:
524 return ret;
525}
526
527
528int wpa_supplicant_leave_mesh(struct wpa_supplicant *wpa_s)
529{
530 int ret = 0;
531
532 wpa_msg(wpa_s, MSG_INFO, "leaving mesh");
533
534 /* Need to send peering close messages first */
535 wpa_supplicant_mesh_deinit(wpa_s);
536
537 ret = wpa_drv_leave_mesh(wpa_s);
538 if (ret)
539 wpa_msg(wpa_s, MSG_ERROR, "mesh leave error=%d", ret);
540
541 wpa_drv_set_operstate(wpa_s, 1);
542
543 return ret;
544}
545
546
547static int mesh_attr_text(const u8 *ies, size_t ies_len, char *buf, char *end)
548{
549 struct ieee802_11_elems elems;
550 char *mesh_id, *pos = buf;
551 u8 *bss_basic_rate_set;
552 int bss_basic_rate_set_len, ret, i;
553
554 if (ieee802_11_parse_elems(ies, ies_len, &elems, 0) == ParseFailed)
555 return -1;
556
557 if (elems.mesh_id_len < 1)
558 return 0;
559
560 mesh_id = os_malloc(elems.mesh_id_len + 1);
561 if (mesh_id == NULL)
562 return -1;
563
564 os_memcpy(mesh_id, elems.mesh_id, elems.mesh_id_len);
565 mesh_id[elems.mesh_id_len] = '\0';
566 ret = os_snprintf(pos, end - pos, "mesh_id=%s\n", mesh_id);
567 os_free(mesh_id);
568 if (os_snprintf_error(end - pos, ret))
569 return pos - buf;
570 pos += ret;
571
572 if (elems.mesh_config_len > 6) {
573 ret = os_snprintf(pos, end - pos,
574 "active_path_selection_protocol_id=0x%02x\n"
575 "active_path_selection_metric_id=0x%02x\n"
576 "congestion_control_mode_id=0x%02x\n"
577 "synchronization_method_id=0x%02x\n"
578 "authentication_protocol_id=0x%02x\n"
579 "mesh_formation_info=0x%02x\n"
580 "mesh_capability=0x%02x\n",
581 elems.mesh_config[0], elems.mesh_config[1],
582 elems.mesh_config[2], elems.mesh_config[3],
583 elems.mesh_config[4], elems.mesh_config[5],
584 elems.mesh_config[6]);
585 if (os_snprintf_error(end - pos, ret))
586 return pos - buf;
587 pos += ret;
588 }
589
590 bss_basic_rate_set = os_malloc(elems.supp_rates_len +
591 elems.ext_supp_rates_len);
592 if (bss_basic_rate_set == NULL)
593 return -1;
594
595 bss_basic_rate_set_len = 0;
596 for (i = 0; i < elems.supp_rates_len; i++) {
597 if (elems.supp_rates[i] & 0x80) {
598 bss_basic_rate_set[bss_basic_rate_set_len++] =
599 (elems.supp_rates[i] & 0x7f) * 5;
600 }
601 }
602 for (i = 0; i < elems.ext_supp_rates_len; i++) {
603 if (elems.ext_supp_rates[i] & 0x80) {
604 bss_basic_rate_set[bss_basic_rate_set_len++] =
605 (elems.ext_supp_rates[i] & 0x7f) * 5;
606 }
607 }
608 if (bss_basic_rate_set_len > 0) {
609 ret = os_snprintf(pos, end - pos, "bss_basic_rate_set=%d",
610 bss_basic_rate_set[0]);
611 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700612 goto fail;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800613 pos += ret;
614
615 for (i = 1; i < bss_basic_rate_set_len; i++) {
616 ret = os_snprintf(pos, end - pos, " %d",
617 bss_basic_rate_set[i]);
618 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700619 goto fail;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800620 pos += ret;
621 }
622
623 ret = os_snprintf(pos, end - pos, "\n");
624 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700625 goto fail;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800626 pos += ret;
627 }
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700628fail:
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800629 os_free(bss_basic_rate_set);
630
631 return pos - buf;
632}
633
634
635int wpas_mesh_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
636 char *end)
637{
638 return mesh_attr_text(ies, ies_len, buf, end);
639}
640
641
642static int wpas_mesh_get_ifname(struct wpa_supplicant *wpa_s, char *ifname,
643 size_t len)
644{
645 char *ifname_ptr = wpa_s->ifname;
646 int res;
647
648 res = os_snprintf(ifname, len, "mesh-%s-%d", ifname_ptr,
649 wpa_s->mesh_if_idx);
650 if (os_snprintf_error(len, res) ||
651 (os_strlen(ifname) >= IFNAMSIZ &&
652 os_strlen(wpa_s->ifname) < IFNAMSIZ)) {
653 /* Try to avoid going over the IFNAMSIZ length limit */
654 res = os_snprintf(ifname, len, "mesh-%d", wpa_s->mesh_if_idx);
655 if (os_snprintf_error(len, res))
656 return -1;
657 }
658 wpa_s->mesh_if_idx++;
659 return 0;
660}
661
662
663int wpas_mesh_add_interface(struct wpa_supplicant *wpa_s, char *ifname,
664 size_t len)
665{
666 struct wpa_interface iface;
667 struct wpa_supplicant *mesh_wpa_s;
668 u8 addr[ETH_ALEN];
669
670 if (ifname[0] == '\0' && wpas_mesh_get_ifname(wpa_s, ifname, len) < 0)
671 return -1;
672
673 if (wpa_drv_if_add(wpa_s, WPA_IF_MESH, ifname, NULL, NULL, NULL, addr,
674 NULL) < 0) {
675 wpa_printf(MSG_ERROR,
676 "mesh: Failed to create new mesh interface");
677 return -1;
678 }
679 wpa_printf(MSG_INFO, "mesh: Created virtual interface %s addr "
680 MACSTR, ifname, MAC2STR(addr));
681
682 os_memset(&iface, 0, sizeof(iface));
683 iface.ifname = ifname;
684 iface.driver = wpa_s->driver->name;
685 iface.driver_param = wpa_s->conf->driver_param;
686 iface.ctrl_interface = wpa_s->conf->ctrl_interface;
687
Dmitry Shmidt203eadb2015-03-05 14:16:04 -0800688 mesh_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface, wpa_s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800689 if (!mesh_wpa_s) {
690 wpa_printf(MSG_ERROR,
691 "mesh: Failed to create new wpa_supplicant interface");
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700692 wpa_drv_if_remove(wpa_s, WPA_IF_MESH, ifname);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800693 return -1;
694 }
695 mesh_wpa_s->mesh_if_created = 1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800696 return 0;
697}
Dmitry Shmidte4663042016-04-04 10:07:49 -0700698
699
700int wpas_mesh_peer_remove(struct wpa_supplicant *wpa_s, const u8 *addr)
701{
702 return mesh_mpm_close_peer(wpa_s, addr);
703}
704
705
706int wpas_mesh_peer_add(struct wpa_supplicant *wpa_s, const u8 *addr,
707 int duration)
708{
709 return mesh_mpm_connect_peer(wpa_s, addr, duration);
710}