blob: 19205c821dee151d955283e296dedac26a6fa582 [file] [log] [blame]
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +01001/*
Rui Paulo264d9b72009-11-09 23:46:58 +00002 * Copyright (c) 2008, 2009 open80211s Ltd.
Johannes Berg7eb26df2018-08-31 11:31:18 +03003 * Copyright (C) 2018 Intel Corporation
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +01004 * Authors: Luis Carlos Cobo <luisca@cozybit.com>
5 * Javier Cardona <javier@cozybit.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Luis Carlos Cobo51cedda2008-04-23 12:15:29 -070013#include <asm/unaligned.h>
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010014#include "ieee80211_i.h"
15#include "mesh.h"
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -070016#include "driver-ops.h"
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010017
Johannes Bergbf7cd942013-02-15 14:40:31 +010018static int mesh_allocated;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010019static struct kmem_cache *rm_cache;
20
Thomas Pedersen25d49e42011-08-11 19:35:15 -070021bool mesh_action_is_path_sel(struct ieee80211_mgmt *mgmt)
22{
23 return (mgmt->u.action.u.mesh_action.action_code ==
24 WLAN_MESH_ACTION_HWMP_PATH_SELECTION);
25}
Thomas Pedersen25d49e42011-08-11 19:35:15 -070026
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010027void ieee80211s_init(void)
28{
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010029 mesh_allocated = 1;
30 rm_cache = kmem_cache_create("mesh_rmc", sizeof(struct rmc_entry),
31 0, 0, NULL);
32}
33
34void ieee80211s_stop(void)
35{
Johannes Bergbf7cd942013-02-15 14:40:31 +010036 if (!mesh_allocated)
37 return;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010038 kmem_cache_destroy(rm_cache);
39}
40
Kees Cook34f11cd32017-10-16 16:35:49 -070041static void ieee80211_mesh_housekeeping_timer(struct timer_list *t)
Johannes Berg472dbc42008-09-11 00:01:49 +020042{
Kees Cook34f11cd32017-10-16 16:35:49 -070043 struct ieee80211_sub_if_data *sdata =
44 from_timer(sdata, t, u.mesh.housekeeping_timer);
Johannes Berg472dbc42008-09-11 00:01:49 +020045 struct ieee80211_local *local = sdata->local;
46 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
47
Rui Paulo6b9ac442009-10-20 21:21:48 +010048 set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
Johannes Berg5bb644a2009-05-17 11:40:42 +020049
Johannes Berg64592c82010-06-10 10:21:31 +020050 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg472dbc42008-09-11 00:01:49 +020051}
52
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010053/**
54 * mesh_matches_local - check if the config of a mesh point matches ours
55 *
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120056 * @sdata: local mesh subif
Thomas Pedersenf743ff42012-04-18 19:23:43 -070057 * @ie: information elements of a management frame from the mesh peer
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010058 *
59 * This function checks if the mesh configuration of a mesh point matches the
60 * local mesh configuration, i.e. if both nodes belong to the same mesh network.
61 */
Thomas Pedersenf743ff42012-04-18 19:23:43 -070062bool mesh_matches_local(struct ieee80211_sub_if_data *sdata,
63 struct ieee802_11_elems *ie)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010064{
Johannes Berg472dbc42008-09-11 00:01:49 +020065 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Thomas Pedersenf743ff42012-04-18 19:23:43 -070066 u32 basic_rates = 0;
Johannes Berg4bf88532012-11-09 11:39:59 +010067 struct cfg80211_chan_def sta_chan_def;
Mohammed Shafi Shajakhan21a8e9d2017-04-27 12:45:38 +053068 struct ieee80211_supported_band *sband;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010069
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010070 /*
71 * As support for each feature is added, check for matching
72 * - On mesh config capabilities
73 * - Power Save Support En
74 * - Sync support enabled
75 * - Sync support active
76 * - Sync support required from peer
77 * - MDA enabled
78 * - Power management control on fc
79 */
Thomas Pedersen739522b2011-10-26 14:47:28 -070080 if (!(ifmsh->mesh_id_len == ie->mesh_id_len &&
81 memcmp(ifmsh->mesh_id, ie->mesh_id, ie->mesh_id_len) == 0 &&
82 (ifmsh->mesh_pp_id == ie->mesh_config->meshconf_psel) &&
83 (ifmsh->mesh_pm_id == ie->mesh_config->meshconf_pmetric) &&
84 (ifmsh->mesh_cc_id == ie->mesh_config->meshconf_congest) &&
85 (ifmsh->mesh_sp_id == ie->mesh_config->meshconf_synch) &&
86 (ifmsh->mesh_auth_id == ie->mesh_config->meshconf_auth)))
Johannes Bergbf7cd942013-02-15 14:40:31 +010087 return false;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010088
Mohammed Shafi Shajakhan21a8e9d2017-04-27 12:45:38 +053089 sband = ieee80211_get_sband(sdata);
90 if (!sband)
91 return false;
92
93 ieee80211_sta_get_rates(sdata, ie, sband->band,
Thomas Pedersenf743ff42012-04-18 19:23:43 -070094 &basic_rates);
95
Ashok Nagarajanfe40cb62012-04-02 21:21:22 -070096 if (sdata->vif.bss_conf.basic_rates != basic_rates)
Johannes Bergbf7cd942013-02-15 14:40:31 +010097 return false;
Ashok Nagarajanfe40cb62012-04-02 21:21:22 -070098
Johannes Berg8ac3c7042015-12-18 15:08:34 +010099 cfg80211_chandef_create(&sta_chan_def, sdata->vif.bss_conf.chandef.chan,
100 NL80211_CHAN_NO_HT);
101 ieee80211_chandef_ht_oper(ie->ht_operation, &sta_chan_def);
Johannes Berg7eb26df2018-08-31 11:31:18 +0300102 ieee80211_chandef_vht_oper(&sdata->local->hw,
103 ie->vht_operation, ie->ht_operation,
104 &sta_chan_def);
Bob Copelandc85fb532015-08-27 09:00:18 -0400105
Johannes Berg4bf88532012-11-09 11:39:59 +0100106 if (!cfg80211_chandef_compatible(&sdata->vif.bss_conf.chandef,
107 &sta_chan_def))
Johannes Bergbf7cd942013-02-15 14:40:31 +0100108 return false;
Thomas Pedersen739522b2011-10-26 14:47:28 -0700109
110 return true;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100111}
112
113/**
114 * mesh_peer_accepts_plinks - check if an mp is willing to establish peer links
115 *
116 * @ie: information elements of a management frame from the mesh peer
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100117 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200118bool mesh_peer_accepts_plinks(struct ieee802_11_elems *ie)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100119{
Rui Paulo136cfa22009-11-18 18:40:00 +0000120 return (ie->mesh_config->meshconf_cap &
Johannes Bergbf7cd942013-02-15 14:40:31 +0100121 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS) != 0;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100122}
123
124/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000125 * mesh_accept_plinks_update - update accepting_plink in local mesh beacons
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100126 *
Johannes Bergd0709a62008-02-25 16:27:46 +0100127 * @sdata: mesh interface in which mesh beacons are going to be updated
Marco Porschdf323812012-08-08 07:58:43 +0200128 *
129 * Returns: beacon changed flag if the beacon content changed.
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100130 */
Marco Porschdf323812012-08-08 07:58:43 +0200131u32 mesh_accept_plinks_update(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100132{
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100133 bool free_plinks;
Marco Porschdf323812012-08-08 07:58:43 +0200134 u32 changed = 0;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100135
136 /* In case mesh_plink_free_count > 0 and mesh_plinktbl_capacity == 0,
137 * the mesh interface might be able to establish plinks with peers that
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800138 * are already on the table but are not on PLINK_ESTAB state. However,
139 * in general the mesh interface is not accepting peer link requests
140 * from new peers, and that must be reflected in the beacon
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100141 */
142 free_plinks = mesh_plink_availables(sdata);
143
Marco Porschdf323812012-08-08 07:58:43 +0200144 if (free_plinks != sdata->u.mesh.accepting_plinks) {
145 sdata->u.mesh.accepting_plinks = free_plinks;
146 changed = BSS_CHANGED_BEACON;
147 }
148
149 return changed;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100150}
151
Thomas Pedersen45b50282013-02-06 10:17:21 -0800152/*
153 * mesh_sta_cleanup - clean up any mesh sta state
154 *
155 * @sta: mesh sta to clean up.
156 */
157void mesh_sta_cleanup(struct sta_info *sta)
158{
159 struct ieee80211_sub_if_data *sdata = sta->sdata;
Bob Copelandefc401f2016-06-25 19:14:16 -0400160 u32 changed = mesh_plink_deactivate(sta);
Bob Copelandfe7a7c52016-05-15 13:19:16 -0400161
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700162 if (changed)
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800163 ieee80211_mbss_info_change_notify(sdata, changed);
Thomas Pedersen45b50282013-02-06 10:17:21 -0800164}
165
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200166int mesh_rmc_init(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100167{
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100168 int i;
169
Johannes Berg472dbc42008-09-11 00:01:49 +0200170 sdata->u.mesh.rmc = kmalloc(sizeof(struct mesh_rmc), GFP_KERNEL);
171 if (!sdata->u.mesh.rmc)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100172 return -ENOMEM;
Johannes Berg472dbc42008-09-11 00:01:49 +0200173 sdata->u.mesh.rmc->idx_mask = RMC_BUCKETS - 1;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100174 for (i = 0; i < RMC_BUCKETS; i++)
Bob Copeland47a04892016-03-18 22:11:29 -0400175 INIT_HLIST_HEAD(&sdata->u.mesh.rmc->bucket[i]);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100176 return 0;
177}
178
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200179void mesh_rmc_free(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100180{
Johannes Berg472dbc42008-09-11 00:01:49 +0200181 struct mesh_rmc *rmc = sdata->u.mesh.rmc;
Bob Copeland47a04892016-03-18 22:11:29 -0400182 struct rmc_entry *p;
183 struct hlist_node *n;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100184 int i;
185
Johannes Berg472dbc42008-09-11 00:01:49 +0200186 if (!sdata->u.mesh.rmc)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100187 return;
188
Johannes Bergbf7cd942013-02-15 14:40:31 +0100189 for (i = 0; i < RMC_BUCKETS; i++) {
Bob Copeland47a04892016-03-18 22:11:29 -0400190 hlist_for_each_entry_safe(p, n, &rmc->bucket[i], list) {
191 hlist_del(&p->list);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100192 kmem_cache_free(rm_cache, p);
193 }
Johannes Bergbf7cd942013-02-15 14:40:31 +0100194 }
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100195
196 kfree(rmc);
Johannes Berg472dbc42008-09-11 00:01:49 +0200197 sdata->u.mesh.rmc = NULL;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100198}
199
200/**
201 * mesh_rmc_check - Check frame in recent multicast cache and add if absent.
202 *
Johannes Bergbf7cd942013-02-15 14:40:31 +0100203 * @sdata: interface
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100204 * @sa: source address
205 * @mesh_hdr: mesh_header
206 *
207 * Returns: 0 if the frame is not in the cache, nonzero otherwise.
208 *
209 * Checks using the source address and the mesh sequence number if we have
210 * received this frame lately. If the frame is not in the cache, it is added to
211 * it.
212 */
Johannes Bergbf7cd942013-02-15 14:40:31 +0100213int mesh_rmc_check(struct ieee80211_sub_if_data *sdata,
214 const u8 *sa, struct ieee80211s_hdr *mesh_hdr)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100215{
Johannes Berg472dbc42008-09-11 00:01:49 +0200216 struct mesh_rmc *rmc = sdata->u.mesh.rmc;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100217 u32 seqnum = 0;
218 int entries = 0;
219 u8 idx;
Bob Copeland47a04892016-03-18 22:11:29 -0400220 struct rmc_entry *p;
221 struct hlist_node *n;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100222
Bob Copeland0aa7fab2016-03-18 22:11:28 -0400223 if (!rmc)
224 return -1;
225
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100226 /* Don't care about endianness since only match matters */
Luis Carlos Cobo51cedda2008-04-23 12:15:29 -0700227 memcpy(&seqnum, &mesh_hdr->seqnum, sizeof(mesh_hdr->seqnum));
228 idx = le32_to_cpu(mesh_hdr->seqnum) & rmc->idx_mask;
Bob Copeland47a04892016-03-18 22:11:29 -0400229 hlist_for_each_entry_safe(p, n, &rmc->bucket[idx], list) {
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100230 ++entries;
231 if (time_after(jiffies, p->exp_time) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100232 entries == RMC_QUEUE_MAX_LEN) {
Bob Copeland47a04892016-03-18 22:11:29 -0400233 hlist_del(&p->list);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100234 kmem_cache_free(rm_cache, p);
235 --entries;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100236 } else if ((seqnum == p->seqnum) && ether_addr_equal(sa, p->sa))
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100237 return -1;
238 }
239
240 p = kmem_cache_alloc(rm_cache, GFP_ATOMIC);
Joe Perchesd15b8452011-08-29 14:17:31 -0700241 if (!p)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100242 return 0;
Joe Perchesd15b8452011-08-29 14:17:31 -0700243
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100244 p->seqnum = seqnum;
245 p->exp_time = jiffies + RMC_TIMEOUT;
246 memcpy(p->sa, sa, ETH_ALEN);
Bob Copeland47a04892016-03-18 22:11:29 -0400247 hlist_add_head(&p->list, &rmc->bucket[idx]);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100248 return 0;
249}
250
Johannes Bergbf7cd942013-02-15 14:40:31 +0100251int mesh_add_meshconf_ie(struct ieee80211_sub_if_data *sdata,
252 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700253{
254 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
255 u8 *pos, neighbors;
256 u8 meshconf_len = sizeof(struct ieee80211_meshconf_ie);
Bob Copeland4a6ecd32018-10-25 15:48:52 -0400257 bool is_connected_to_gate = ifmsh->num_gates > 0 ||
258 ifmsh->mshcfg.dot11MeshGateAnnouncementProtocol;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700259
260 if (skb_tailroom(skb) < 2 + meshconf_len)
261 return -ENOMEM;
262
263 pos = skb_put(skb, 2 + meshconf_len);
264 *pos++ = WLAN_EID_MESH_CONFIG;
265 *pos++ = meshconf_len;
266
Thomas Pedersen43552be2013-12-15 13:14:16 -0800267 /* save a pointer for quick updates in pre-tbtt */
268 ifmsh->meshconf_offset = pos - skb->data;
269
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700270 /* Active path selection protocol ID */
271 *pos++ = ifmsh->mesh_pp_id;
272 /* Active path selection metric ID */
273 *pos++ = ifmsh->mesh_pm_id;
274 /* Congestion control mode identifier */
275 *pos++ = ifmsh->mesh_cc_id;
276 /* Synchronization protocol identifier */
277 *pos++ = ifmsh->mesh_sp_id;
278 /* Authentication Protocol identifier */
279 *pos++ = ifmsh->mesh_auth_id;
280 /* Mesh Formation Info - number of neighbors */
Ashok Nagarajan1258d972012-10-09 13:27:47 -0700281 neighbors = atomic_read(&ifmsh->estab_plinks);
Jacob Minshalle05eccc2013-05-29 14:32:36 -0700282 neighbors = min_t(int, neighbors, IEEE80211_MAX_MESH_PEERINGS);
Bob Copeland4a6ecd32018-10-25 15:48:52 -0400283 *pos++ = (neighbors << 1) | is_connected_to_gate;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700284 /* Mesh capability */
Chun-Yeow Yeohb60e5272013-07-12 18:55:22 +0800285 *pos = 0x00;
286 *pos |= ifmsh->mshcfg.dot11MeshForwarding ?
287 IEEE80211_MESHCONF_CAPAB_FORWARDING : 0x00;
Javier Cardonadbf498f2012-03-31 11:31:32 -0700288 *pos |= ifmsh->accepting_plinks ?
Johannes Bergbf7cd942013-02-15 14:40:31 +0100289 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS : 0x00;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100290 /* Mesh PS mode. See IEEE802.11-2012 8.4.2.100.8 */
291 *pos |= ifmsh->ps_peers_deep_sleep ?
Johannes Bergbf7cd942013-02-15 14:40:31 +0100292 IEEE80211_MESHCONF_CAPAB_POWER_SAVE_LEVEL : 0x00;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700293 return 0;
294}
295
Johannes Bergbf7cd942013-02-15 14:40:31 +0100296int mesh_add_meshid_ie(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700297{
298 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
299 u8 *pos;
300
301 if (skb_tailroom(skb) < 2 + ifmsh->mesh_id_len)
302 return -ENOMEM;
303
304 pos = skb_put(skb, 2 + ifmsh->mesh_id_len);
305 *pos++ = WLAN_EID_MESH_ID;
306 *pos++ = ifmsh->mesh_id_len;
307 if (ifmsh->mesh_id_len)
308 memcpy(pos, ifmsh->mesh_id, ifmsh->mesh_id_len);
309
310 return 0;
311}
312
Johannes Bergbf7cd942013-02-15 14:40:31 +0100313static int mesh_add_awake_window_ie(struct ieee80211_sub_if_data *sdata,
314 struct sk_buff *skb)
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100315{
316 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
317 u8 *pos;
318
319 /* see IEEE802.11-2012 13.14.6 */
320 if (ifmsh->ps_peers_light_sleep == 0 &&
321 ifmsh->ps_peers_deep_sleep == 0 &&
322 ifmsh->nonpeer_pm == NL80211_MESH_POWER_ACTIVE)
323 return 0;
324
325 if (skb_tailroom(skb) < 4)
326 return -ENOMEM;
327
328 pos = skb_put(skb, 2 + 2);
329 *pos++ = WLAN_EID_MESH_AWAKE_WINDOW;
330 *pos++ = 2;
331 put_unaligned_le16(ifmsh->mshcfg.dot11MeshAwakeWindowDuration, pos);
332
333 return 0;
334}
335
Johannes Bergbf7cd942013-02-15 14:40:31 +0100336int mesh_add_vendor_ies(struct ieee80211_sub_if_data *sdata,
337 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700338{
339 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
340 u8 offset, len;
341 const u8 *data;
342
343 if (!ifmsh->ie || !ifmsh->ie_len)
344 return 0;
345
346 /* fast-forward to vendor IEs */
347 offset = ieee80211_ie_split_vendor(ifmsh->ie, ifmsh->ie_len, 0);
348
Thorsten Horstmannda7061c2017-02-03 14:38:29 +0100349 if (offset < ifmsh->ie_len) {
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700350 len = ifmsh->ie_len - offset;
351 data = ifmsh->ie + offset;
352 if (skb_tailroom(skb) < len)
353 return -ENOMEM;
Johannes Berg59ae1d12017-06-16 14:29:20 +0200354 skb_put_data(skb, data, len);
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700355 }
356
357 return 0;
358}
359
Johannes Bergbf7cd942013-02-15 14:40:31 +0100360int mesh_add_rsn_ie(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700361{
362 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
363 u8 len = 0;
364 const u8 *data;
365
366 if (!ifmsh->ie || !ifmsh->ie_len)
367 return 0;
368
369 /* find RSN IE */
Bob Copelanda40a8c12014-04-15 10:43:07 -0400370 data = cfg80211_find_ie(WLAN_EID_RSN, ifmsh->ie, ifmsh->ie_len);
371 if (!data)
372 return 0;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700373
Bob Copelanda40a8c12014-04-15 10:43:07 -0400374 len = data[1] + 2;
375
376 if (skb_tailroom(skb) < len)
377 return -ENOMEM;
Johannes Berg59ae1d12017-06-16 14:29:20 +0200378 skb_put_data(skb, data, len);
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700379
380 return 0;
381}
382
Johannes Bergbf7cd942013-02-15 14:40:31 +0100383static int mesh_add_ds_params_ie(struct ieee80211_sub_if_data *sdata,
384 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700385{
Johannes Berg55de9082012-07-26 17:24:39 +0200386 struct ieee80211_chanctx_conf *chanctx_conf;
387 struct ieee80211_channel *chan;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700388 u8 *pos;
389
390 if (skb_tailroom(skb) < 3)
391 return -ENOMEM;
392
Johannes Berg55de9082012-07-26 17:24:39 +0200393 rcu_read_lock();
394 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
395 if (WARN_ON(!chanctx_conf)) {
396 rcu_read_unlock();
397 return -EINVAL;
398 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100399 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200400 rcu_read_unlock();
401
Emanuel Taube601513a2013-02-06 14:17:17 +0100402 pos = skb_put(skb, 2 + 1);
403 *pos++ = WLAN_EID_DS_PARAMS;
404 *pos++ = 1;
405 *pos++ = ieee80211_frequency_to_channel(chan->center_freq);
Rui Paulobe125c62009-11-09 23:46:54 +0000406
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700407 return 0;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100408}
409
Johannes Bergbf7cd942013-02-15 14:40:31 +0100410int mesh_add_ht_cap_ie(struct ieee80211_sub_if_data *sdata,
411 struct sk_buff *skb)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700412{
Thomas Pedersen176f3602011-10-26 14:47:27 -0700413 struct ieee80211_supported_band *sband;
414 u8 *pos;
415
Mohammed Shafi Shajakhan21a8e9d2017-04-27 12:45:38 +0530416 sband = ieee80211_get_sband(sdata);
417 if (!sband)
418 return -EINVAL;
419
Thomas Pedersen176f3602011-10-26 14:47:27 -0700420 if (!sband->ht_cap.ht_supported ||
Simon Wunderlich0418a442013-05-16 13:00:31 +0200421 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
422 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
423 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700424 return 0;
425
426 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_cap))
427 return -ENOMEM;
428
429 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_cap));
Ben Greearef96a8422011-11-18 11:32:00 -0800430 ieee80211_ie_build_ht_cap(pos, &sband->ht_cap, sband->ht_cap.cap);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700431
432 return 0;
433}
434
Johannes Bergbf7cd942013-02-15 14:40:31 +0100435int mesh_add_ht_oper_ie(struct ieee80211_sub_if_data *sdata,
436 struct sk_buff *skb)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700437{
438 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +0200439 struct ieee80211_chanctx_conf *chanctx_conf;
440 struct ieee80211_channel *channel;
Johannes Berg55de9082012-07-26 17:24:39 +0200441 struct ieee80211_supported_band *sband;
442 struct ieee80211_sta_ht_cap *ht_cap;
Thomas Pedersen176f3602011-10-26 14:47:27 -0700443 u8 *pos;
444
Johannes Berg55de9082012-07-26 17:24:39 +0200445 rcu_read_lock();
446 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
447 if (WARN_ON(!chanctx_conf)) {
448 rcu_read_unlock();
449 return -EINVAL;
450 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100451 channel = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200452 rcu_read_unlock();
453
454 sband = local->hw.wiphy->bands[channel->band];
455 ht_cap = &sband->ht_cap;
456
Bob Copelandc85fb532015-08-27 09:00:18 -0400457 if (!ht_cap->ht_supported ||
458 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
459 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
460 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700461 return 0;
462
Johannes Berg074d46d2012-03-15 19:45:16 +0100463 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_operation))
Thomas Pedersen176f3602011-10-26 14:47:27 -0700464 return -ENOMEM;
465
Johannes Berg074d46d2012-03-15 19:45:16 +0100466 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_operation));
Johannes Berg4bf88532012-11-09 11:39:59 +0100467 ieee80211_ie_build_ht_oper(pos, ht_cap, &sdata->vif.bss_conf.chandef,
Arik Nemtsov57f255f2015-10-25 10:59:34 +0200468 sdata->vif.bss_conf.ht_operation_mode,
469 false);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700470
471 return 0;
472}
Johannes Bergbf7cd942013-02-15 14:40:31 +0100473
Bob Copelandc85fb532015-08-27 09:00:18 -0400474int mesh_add_vht_cap_ie(struct ieee80211_sub_if_data *sdata,
475 struct sk_buff *skb)
476{
Bob Copelandc85fb532015-08-27 09:00:18 -0400477 struct ieee80211_supported_band *sband;
478 u8 *pos;
479
Mohammed Shafi Shajakhan21a8e9d2017-04-27 12:45:38 +0530480 sband = ieee80211_get_sband(sdata);
481 if (!sband)
482 return -EINVAL;
483
Bob Copelandc85fb532015-08-27 09:00:18 -0400484 if (!sband->vht_cap.vht_supported ||
485 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
486 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
487 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
488 return 0;
489
490 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_vht_cap))
491 return -ENOMEM;
492
493 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_cap));
494 ieee80211_ie_build_vht_cap(pos, &sband->vht_cap, sband->vht_cap.cap);
495
496 return 0;
497}
498
499int mesh_add_vht_oper_ie(struct ieee80211_sub_if_data *sdata,
500 struct sk_buff *skb)
501{
502 struct ieee80211_local *local = sdata->local;
503 struct ieee80211_chanctx_conf *chanctx_conf;
504 struct ieee80211_channel *channel;
505 struct ieee80211_supported_band *sband;
506 struct ieee80211_sta_vht_cap *vht_cap;
507 u8 *pos;
508
509 rcu_read_lock();
510 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
511 if (WARN_ON(!chanctx_conf)) {
512 rcu_read_unlock();
513 return -EINVAL;
514 }
515 channel = chanctx_conf->def.chan;
516 rcu_read_unlock();
517
518 sband = local->hw.wiphy->bands[channel->band];
519 vht_cap = &sband->vht_cap;
520
521 if (!vht_cap->vht_supported ||
522 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
523 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
524 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
525 return 0;
526
527 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_vht_operation))
528 return -ENOMEM;
529
530 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_operation));
531 ieee80211_ie_build_vht_oper(pos, vht_cap,
532 &sdata->vif.bss_conf.chandef);
533
534 return 0;
535}
536
Kees Cook34f11cd32017-10-16 16:35:49 -0700537static void ieee80211_mesh_path_timer(struct timer_list *t)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100538{
539 struct ieee80211_sub_if_data *sdata =
Kees Cook34f11cd32017-10-16 16:35:49 -0700540 from_timer(sdata, t, u.mesh.mesh_path_timer);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100541
Stanislaw Gruszka690205f2013-02-28 10:55:29 +0100542 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100543}
544
Kees Cook34f11cd32017-10-16 16:35:49 -0700545static void ieee80211_mesh_path_root_timer(struct timer_list *t)
Rui Pauloe304bfd2009-11-09 23:46:56 +0000546{
547 struct ieee80211_sub_if_data *sdata =
Kees Cook34f11cd32017-10-16 16:35:49 -0700548 from_timer(sdata, t, u.mesh.mesh_path_root_timer);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000549 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Rui Pauloe304bfd2009-11-09 23:46:56 +0000550
551 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
552
Stanislaw Gruszka690205f2013-02-28 10:55:29 +0100553 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000554}
555
Rui Paulo63c57232009-11-09 23:46:57 +0000556void ieee80211_mesh_root_setup(struct ieee80211_if_mesh *ifmsh)
557{
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +0800558 if (ifmsh->mshcfg.dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)
Rui Paulo63c57232009-11-09 23:46:57 +0000559 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
560 else {
561 clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
562 /* stop running timer */
563 del_timer_sync(&ifmsh->mesh_path_root_timer);
564 }
565}
566
Johannes Berg902acc72008-02-23 15:17:19 +0100567/**
Javier Cardona3c5772a2009-08-10 12:15:48 -0700568 * ieee80211_fill_mesh_addresses - fill addresses of a locally originated mesh frame
Johannes Bergbf7cd942013-02-15 14:40:31 +0100569 * @hdr: 802.11 frame header
Javier Cardona3c5772a2009-08-10 12:15:48 -0700570 * @fc: frame control field
571 * @meshda: destination address in the mesh
572 * @meshsa: source address address in the mesh. Same as TA, as frame is
573 * locally originated.
574 *
575 * Return the length of the 802.11 (does not include a mesh control header)
576 */
Johannes Berg15ff6362009-11-17 13:34:04 +0100577int ieee80211_fill_mesh_addresses(struct ieee80211_hdr *hdr, __le16 *fc,
578 const u8 *meshda, const u8 *meshsa)
579{
Javier Cardona3c5772a2009-08-10 12:15:48 -0700580 if (is_multicast_ether_addr(meshda)) {
581 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
582 /* DA TA SA */
583 memcpy(hdr->addr1, meshda, ETH_ALEN);
584 memcpy(hdr->addr2, meshsa, ETH_ALEN);
585 memcpy(hdr->addr3, meshsa, ETH_ALEN);
586 return 24;
587 } else {
Javier Cardona2154c81c2011-09-07 17:49:53 -0700588 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Javier Cardona3c5772a2009-08-10 12:15:48 -0700589 /* RA TA DA SA */
Joe Perchesc84a67a2015-03-02 19:54:57 -0800590 eth_zero_addr(hdr->addr1); /* RA is resolved later */
Javier Cardona3c5772a2009-08-10 12:15:48 -0700591 memcpy(hdr->addr2, meshsa, ETH_ALEN);
592 memcpy(hdr->addr3, meshda, ETH_ALEN);
593 memcpy(hdr->addr4, meshsa, ETH_ALEN);
594 return 30;
595 }
596}
597
598/**
Johannes Berg902acc72008-02-23 15:17:19 +0100599 * ieee80211_new_mesh_header - create a new mesh header
Johannes Berg902acc72008-02-23 15:17:19 +0100600 * @sdata: mesh interface to be used
Johannes Bergbf7cd942013-02-15 14:40:31 +0100601 * @meshhdr: uninitialized mesh header
Javier Cardona61ad5392010-12-16 17:23:34 -0800602 * @addr4or5: 1st address in the ae header, which may correspond to address 4
603 * (if addr6 is NULL) or address 5 (if addr6 is present). It may
604 * be NULL.
605 * @addr6: 2nd address in the ae header, which corresponds to addr6 of the
606 * mesh frame
Johannes Berg902acc72008-02-23 15:17:19 +0100607 *
608 * Return the header length.
609 */
Andrzej Hajda5edfcee2015-09-25 08:42:00 +0200610unsigned int ieee80211_new_mesh_header(struct ieee80211_sub_if_data *sdata,
611 struct ieee80211s_hdr *meshhdr,
612 const char *addr4or5, const char *addr6)
Johannes Berg902acc72008-02-23 15:17:19 +0100613{
Johannes Bergbf7cd942013-02-15 14:40:31 +0100614 if (WARN_ON(!addr4or5 && addr6))
615 return 0;
616
Julia Lawall0c3cee72009-12-09 20:25:59 +0100617 memset(meshhdr, 0, sizeof(*meshhdr));
Johannes Bergbf7cd942013-02-15 14:40:31 +0100618
Johannes Berg472dbc42008-09-11 00:01:49 +0200619 meshhdr->ttl = sdata->u.mesh.mshcfg.dot11MeshTTL;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100620
621 /* FIXME: racy -- TX on multiple queues can be concurrent */
Johannes Berg472dbc42008-09-11 00:01:49 +0200622 put_unaligned(cpu_to_le32(sdata->u.mesh.mesh_seqnum), &meshhdr->seqnum);
623 sdata->u.mesh.mesh_seqnum++;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100624
Javier Cardona61ad5392010-12-16 17:23:34 -0800625 if (addr4or5 && !addr6) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700626 meshhdr->flags |= MESH_FLAGS_AE_A4;
Javier Cardona61ad5392010-12-16 17:23:34 -0800627 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +0100628 return 2 * ETH_ALEN;
Javier Cardona61ad5392010-12-16 17:23:34 -0800629 } else if (addr4or5 && addr6) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700630 meshhdr->flags |= MESH_FLAGS_AE_A5_A6;
Javier Cardona61ad5392010-12-16 17:23:34 -0800631 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
632 memcpy(meshhdr->eaddr2, addr6, ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +0100633 return 3 * ETH_ALEN;
Javier Cardona3c5772a2009-08-10 12:15:48 -0700634 }
Johannes Bergbf7cd942013-02-15 14:40:31 +0100635
636 return ETH_ALEN;
Johannes Berg902acc72008-02-23 15:17:19 +0100637}
638
Johannes Bergbf7cd942013-02-15 14:40:31 +0100639static void ieee80211_mesh_housekeeping(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +0200640{
Johannes Bergbf7cd942013-02-15 14:40:31 +0100641 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Marco Porschdf323812012-08-08 07:58:43 +0200642 u32 changed;
Johannes Berg472dbc42008-09-11 00:01:49 +0200643
Masashi Honma31f909a2015-02-24 22:42:16 +0900644 if (ifmsh->mshcfg.plink_timeout > 0)
645 ieee80211_sta_expire(sdata, ifmsh->mshcfg.plink_timeout * HZ);
Johannes Berg472dbc42008-09-11 00:01:49 +0200646 mesh_path_expire(sdata);
647
Marco Porschdf323812012-08-08 07:58:43 +0200648 changed = mesh_accept_plinks_update(sdata);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800649 ieee80211_mbss_info_change_notify(sdata, changed);
Johannes Berg472dbc42008-09-11 00:01:49 +0200650
Johannes Berg472dbc42008-09-11 00:01:49 +0200651 mod_timer(&ifmsh->housekeeping_timer,
Johannes Bergbf7cd942013-02-15 14:40:31 +0100652 round_jiffies(jiffies +
653 IEEE80211_MESH_HOUSEKEEPING_INTERVAL));
Johannes Berg472dbc42008-09-11 00:01:49 +0200654}
655
Rui Pauloe304bfd2009-11-09 23:46:56 +0000656static void ieee80211_mesh_rootpath(struct ieee80211_sub_if_data *sdata)
657{
658 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800659 u32 interval;
Rui Pauloe304bfd2009-11-09 23:46:56 +0000660
661 mesh_path_tx_root_frame(sdata);
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800662
663 if (ifmsh->mshcfg.dot11MeshHWMPRootMode == IEEE80211_PROACTIVE_RANN)
664 interval = ifmsh->mshcfg.dot11MeshHWMPRannInterval;
665 else
666 interval = ifmsh->mshcfg.dot11MeshHWMProotInterval;
667
Rui Pauloe304bfd2009-11-09 23:46:56 +0000668 mod_timer(&ifmsh->mesh_path_root_timer,
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800669 round_jiffies(TU_TO_EXP_TIME(interval)));
Rui Pauloe304bfd2009-11-09 23:46:56 +0000670}
671
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800672static int
673ieee80211_mesh_build_beacon(struct ieee80211_if_mesh *ifmsh)
674{
675 struct beacon_data *bcn;
676 int head_len, tail_len;
677 struct sk_buff *skb;
678 struct ieee80211_mgmt *mgmt;
679 struct ieee80211_chanctx_conf *chanctx_conf;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700680 struct mesh_csa_settings *csa;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200681 enum nl80211_band band;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800682 u8 *pos;
683 struct ieee80211_sub_if_data *sdata;
Johannes Berg4c121fd62017-09-08 11:54:46 +0200684 int hdr_len = offsetofend(struct ieee80211_mgmt, u.beacon);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800685
686 sdata = container_of(ifmsh, struct ieee80211_sub_if_data, u.mesh);
687 rcu_read_lock();
688 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
689 band = chanctx_conf->def.chan->band;
690 rcu_read_unlock();
691
692 head_len = hdr_len +
693 2 + /* NULL SSID */
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700694 /* Channel Switch Announcement */
695 2 + sizeof(struct ieee80211_channel_sw_ie) +
Masahiro Yamada08a7e622017-02-27 14:28:41 -0800696 /* Mesh Channel Switch Parameters */
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700697 2 + sizeof(struct ieee80211_mesh_chansw_params_ie) +
Simon Wunderlich75d627d2017-05-23 17:00:42 +0200698 /* Channel Switch Wrapper + Wide Bandwidth CSA IE */
699 2 + 2 + sizeof(struct ieee80211_wide_bw_chansw_ie) +
700 2 + sizeof(struct ieee80211_sec_chan_offs_ie) +
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800701 2 + 8 + /* supported rates */
702 2 + 3; /* DS params */
703 tail_len = 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
704 2 + sizeof(struct ieee80211_ht_cap) +
705 2 + sizeof(struct ieee80211_ht_operation) +
706 2 + ifmsh->mesh_id_len +
707 2 + sizeof(struct ieee80211_meshconf_ie) +
708 2 + sizeof(__le16) + /* awake window */
Bob Copelandc85fb532015-08-27 09:00:18 -0400709 2 + sizeof(struct ieee80211_vht_cap) +
710 2 + sizeof(struct ieee80211_vht_operation) +
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800711 ifmsh->ie_len;
712
713 bcn = kzalloc(sizeof(*bcn) + head_len + tail_len, GFP_KERNEL);
714 /* need an skb for IE builders to operate on */
715 skb = dev_alloc_skb(max(head_len, tail_len));
716
717 if (!bcn || !skb)
718 goto out_free;
719
720 /*
721 * pointers go into the block we allocated,
722 * memory is | beacon_data | head | tail |
723 */
724 bcn->head = ((u8 *) bcn) + sizeof(*bcn);
725
726 /* fill in the head */
Johannes Bergb080db52017-06-16 14:29:19 +0200727 mgmt = skb_put_zero(skb, hdr_len);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800728 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
729 IEEE80211_STYPE_BEACON);
730 eth_broadcast_addr(mgmt->da);
731 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
732 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
733 ieee80211_mps_set_frame_flags(sdata, NULL, (void *) mgmt);
734 mgmt->u.beacon.beacon_int =
735 cpu_to_le16(sdata->vif.bss_conf.beacon_int);
736 mgmt->u.beacon.capab_info |= cpu_to_le16(
737 sdata->u.mesh.security ? WLAN_CAPABILITY_PRIVACY : 0);
738
739 pos = skb_put(skb, 2);
740 *pos++ = WLAN_EID_SSID;
741 *pos++ = 0x0;
742
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700743 rcu_read_lock();
744 csa = rcu_dereference(ifmsh->csa);
745 if (csa) {
Simon Wunderlich75d627d2017-05-23 17:00:42 +0200746 enum nl80211_channel_type ct;
747 struct cfg80211_chan_def *chandef;
748 int ie_len = 2 + sizeof(struct ieee80211_channel_sw_ie) +
749 2 + sizeof(struct ieee80211_mesh_chansw_params_ie);
750
Johannes Berge45a79d2017-05-24 09:07:47 +0200751 pos = skb_put_zero(skb, ie_len);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700752 *pos++ = WLAN_EID_CHANNEL_SWITCH;
753 *pos++ = 3;
754 *pos++ = 0x0;
755 *pos++ = ieee80211_frequency_to_channel(
756 csa->settings.chandef.chan->center_freq);
Chun-Yeow Yeoh8df734e2015-06-09 13:35:33 +0800757 bcn->csa_current_counter = csa->settings.count;
Michal Kazioraf296bd2014-06-05 14:21:36 +0200758 bcn->csa_counter_offsets[0] = hdr_len + 6;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700759 *pos++ = csa->settings.count;
760 *pos++ = WLAN_EID_CHAN_SWITCH_PARAM;
761 *pos++ = 6;
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200762 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT) {
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700763 *pos++ = ifmsh->mshcfg.dot11MeshTTL;
764 *pos |= WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
765 } else {
766 *pos++ = ifmsh->chsw_ttl;
767 }
768 *pos++ |= csa->settings.block_tx ?
769 WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT : 0x00;
770 put_unaligned_le16(WLAN_REASON_MESH_CHAN, pos);
771 pos += 2;
Chun-Yeow Yeohca91dc92013-11-12 10:31:48 +0800772 put_unaligned_le16(ifmsh->pre_value, pos);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700773 pos += 2;
Simon Wunderlich75d627d2017-05-23 17:00:42 +0200774
775 switch (csa->settings.chandef.width) {
776 case NL80211_CHAN_WIDTH_40:
777 ie_len = 2 + sizeof(struct ieee80211_sec_chan_offs_ie);
Johannes Berge45a79d2017-05-24 09:07:47 +0200778 pos = skb_put_zero(skb, ie_len);
Simon Wunderlich75d627d2017-05-23 17:00:42 +0200779
780 *pos++ = WLAN_EID_SECONDARY_CHANNEL_OFFSET; /* EID */
781 *pos++ = 1; /* len */
782 ct = cfg80211_get_chandef_type(&csa->settings.chandef);
783 if (ct == NL80211_CHAN_HT40PLUS)
784 *pos++ = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
785 else
786 *pos++ = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
787 break;
788 case NL80211_CHAN_WIDTH_80:
789 case NL80211_CHAN_WIDTH_80P80:
790 case NL80211_CHAN_WIDTH_160:
791 /* Channel Switch Wrapper + Wide Bandwidth CSA IE */
792 ie_len = 2 + 2 +
793 sizeof(struct ieee80211_wide_bw_chansw_ie);
Johannes Berge45a79d2017-05-24 09:07:47 +0200794 pos = skb_put_zero(skb, ie_len);
Simon Wunderlich75d627d2017-05-23 17:00:42 +0200795
796 *pos++ = WLAN_EID_CHANNEL_SWITCH_WRAPPER; /* EID */
797 *pos++ = 5; /* len */
798 /* put sub IE */
799 chandef = &csa->settings.chandef;
800 ieee80211_ie_build_wide_bw_cs(pos, chandef);
801 break;
802 default:
803 break;
804 }
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700805 }
806 rcu_read_unlock();
807
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800808 if (ieee80211_add_srates_ie(sdata, skb, true, band) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100809 mesh_add_ds_params_ie(sdata, skb))
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800810 goto out_free;
811
812 bcn->head_len = skb->len;
813 memcpy(bcn->head, skb->data, bcn->head_len);
814
815 /* now the tail */
816 skb_trim(skb, 0);
817 bcn->tail = bcn->head + bcn->head_len;
818
819 if (ieee80211_add_ext_srates_ie(sdata, skb, true, band) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100820 mesh_add_rsn_ie(sdata, skb) ||
821 mesh_add_ht_cap_ie(sdata, skb) ||
822 mesh_add_ht_oper_ie(sdata, skb) ||
823 mesh_add_meshid_ie(sdata, skb) ||
824 mesh_add_meshconf_ie(sdata, skb) ||
825 mesh_add_awake_window_ie(sdata, skb) ||
Bob Copelandc85fb532015-08-27 09:00:18 -0400826 mesh_add_vht_cap_ie(sdata, skb) ||
827 mesh_add_vht_oper_ie(sdata, skb) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100828 mesh_add_vendor_ies(sdata, skb))
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800829 goto out_free;
830
831 bcn->tail_len = skb->len;
832 memcpy(bcn->tail, skb->data, bcn->tail_len);
Thomas Pedersen43552be2013-12-15 13:14:16 -0800833 bcn->meshconf = (struct ieee80211_meshconf_ie *)
834 (bcn->tail + ifmsh->meshconf_offset);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800835
836 dev_kfree_skb(skb);
837 rcu_assign_pointer(ifmsh->beacon, bcn);
838 return 0;
839out_free:
840 kfree(bcn);
841 dev_kfree_skb(skb);
842 return -ENOMEM;
843}
844
845static int
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200846ieee80211_mesh_rebuild_beacon(struct ieee80211_sub_if_data *sdata)
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800847{
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800848 struct beacon_data *old_bcn;
849 int ret;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800850
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200851 old_bcn = rcu_dereference_protected(sdata->u.mesh.beacon,
852 lockdep_is_held(&sdata->wdev.mtx));
853 ret = ieee80211_mesh_build_beacon(&sdata->u.mesh);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800854 if (ret)
855 /* just reuse old beacon */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200856 return ret;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800857
858 if (old_bcn)
859 kfree_rcu(old_bcn, rcu_head);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200860 return 0;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800861}
862
863void ieee80211_mbss_info_change_notify(struct ieee80211_sub_if_data *sdata,
864 u32 changed)
865{
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700866 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
867 unsigned long bits = changed;
868 u32 bit;
869
870 if (!bits)
871 return;
872
873 /* if we race with running work, worst case this work becomes a noop */
874 for_each_set_bit(bit, &bits, sizeof(changed) * BITS_PER_BYTE)
875 set_bit(bit, &ifmsh->mbss_changed);
876 set_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags);
877 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800878}
879
880int ieee80211_start_mesh(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +0200881{
882 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
883 struct ieee80211_local *local = sdata->local;
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800884 u32 changed = BSS_CHANGED_BEACON |
885 BSS_CHANGED_BEACON_ENABLED |
886 BSS_CHANGED_HT |
887 BSS_CHANGED_BASIC_RATES |
Pradeep Kumar Chitrapudcbe73c2018-03-22 12:18:03 -0700888 BSS_CHANGED_BEACON_INT |
889 BSS_CHANGED_MCAST_RATE;
Johannes Berg472dbc42008-09-11 00:01:49 +0200890
Johannes Berg09b17472010-12-03 09:20:41 +0100891 local->fif_other_bss++;
892 /* mesh ifaces must set allmulti to forward mcast traffic */
893 atomic_inc(&local->iff_allmultis);
894 ieee80211_configure_filter(local);
895
Javier Cardonac7108a72010-12-16 17:37:50 -0800896 ifmsh->mesh_cc_id = 0; /* Disabled */
Javier Cardonadbf498f2012-03-31 11:31:32 -0700897 /* register sync ops from extensible synchronization framework */
898 ifmsh->sync_ops = ieee80211_mesh_sync_ops_get(ifmsh->mesh_sp_id);
Javier Cardonadbf498f2012-03-31 11:31:32 -0700899 ifmsh->sync_offset_clockdrift_max = 0;
Rui Paulo6b9ac442009-10-20 21:21:48 +0100900 set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
Rui Paulo63c57232009-11-09 23:46:57 +0000901 ieee80211_mesh_root_setup(ifmsh);
Johannes Berg64592c82010-06-10 10:21:31 +0200902 ieee80211_queue_work(&local->hw, &sdata->work);
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -0700903 sdata->vif.bss_conf.ht_operation_mode =
904 ifmsh->mshcfg.ht_opmode;
Johannes Bergd6a83222012-12-14 14:06:28 +0100905 sdata->vif.bss_conf.enable_beacon = true;
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800906
Thomas Pedersen39886b62013-02-13 12:14:19 -0800907 changed |= ieee80211_mps_local_status_update(sdata);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100908
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800909 if (ieee80211_mesh_build_beacon(ifmsh)) {
910 ieee80211_stop_mesh(sdata);
911 return -ENOMEM;
912 }
913
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800914 ieee80211_recalc_dtim(local, sdata);
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800915 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Bergc405c622012-07-30 19:44:12 +0200916
917 netif_carrier_on(sdata->dev);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800918 return 0;
Johannes Berg472dbc42008-09-11 00:01:49 +0200919}
920
921void ieee80211_stop_mesh(struct ieee80211_sub_if_data *sdata)
922{
Johannes Berg09b17472010-12-03 09:20:41 +0100923 struct ieee80211_local *local = sdata->local;
Johannes Berg29cbe682010-12-03 09:20:44 +0100924 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800925 struct beacon_data *bcn;
Johannes Berg29cbe682010-12-03 09:20:44 +0100926
Johannes Bergc405c622012-07-30 19:44:12 +0200927 netif_carrier_off(sdata->dev);
928
Maital Hahnc37a54a2016-07-13 14:44:41 +0300929 /* flush STAs and mpaths on this iface */
930 sta_info_flush(sdata);
931 mesh_path_flush_by_iface(sdata);
932
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700933 /* stop the beacon */
Johannes Berg29cbe682010-12-03 09:20:44 +0100934 ifmsh->mesh_id_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +0100935 sdata->vif.bss_conf.enable_beacon = false;
936 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg29cbe682010-12-03 09:20:44 +0100937 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Maital Hahnc37a54a2016-07-13 14:44:41 +0300938
939 /* remove beacon */
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800940 bcn = rcu_dereference_protected(ifmsh->beacon,
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200941 lockdep_is_held(&sdata->wdev.mtx));
Monam Agarwal0c2bef462014-03-24 00:51:43 +0530942 RCU_INIT_POINTER(ifmsh->beacon, NULL);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800943 kfree_rcu(bcn, rcu_head);
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700944
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100945 /* free all potentially still buffered group-addressed frames */
946 local->total_ps_buffered -= skb_queue_len(&ifmsh->ps.bc_buf);
947 skb_queue_purge(&ifmsh->ps.bc_buf);
948
Johannes Berg472dbc42008-09-11 00:01:49 +0200949 del_timer_sync(&sdata->u.mesh.housekeeping_timer);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000950 del_timer_sync(&sdata->u.mesh.mesh_path_root_timer);
Johannes Bergdd4c9262012-08-01 21:03:21 +0200951 del_timer_sync(&sdata->u.mesh.mesh_path_timer);
Johannes Berg09b17472010-12-03 09:20:41 +0100952
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700953 /* clear any mesh work (for next join) we may have accrued */
954 ifmsh->wrkq_flags = 0;
955 ifmsh->mbss_changed = 0;
956
Johannes Berg09b17472010-12-03 09:20:41 +0100957 local->fif_other_bss--;
958 atomic_dec(&local->iff_allmultis);
959 ieee80211_configure_filter(local);
Johannes Berg472dbc42008-09-11 00:01:49 +0200960}
961
Benjamin Berg5d553712017-05-16 11:23:10 +0200962static void ieee80211_mesh_csa_mark_radar(struct ieee80211_sub_if_data *sdata)
963{
964 int err;
965
966 /* if the current channel is a DFS channel, mark the channel as
967 * unavailable.
968 */
969 err = cfg80211_chandef_dfs_required(sdata->local->hw.wiphy,
970 &sdata->vif.bss_conf.chandef,
971 NL80211_IFTYPE_MESH_POINT);
972 if (err > 0)
973 cfg80211_radar_event(sdata->local->hw.wiphy,
974 &sdata->vif.bss_conf.chandef, GFP_ATOMIC);
975}
976
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700977static bool
978ieee80211_mesh_process_chnswitch(struct ieee80211_sub_if_data *sdata,
979 struct ieee802_11_elems *elems, bool beacon)
980{
981 struct cfg80211_csa_settings params;
982 struct ieee80211_csa_ie csa_ie;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700983 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Mohammed Shafi Shajakhan21a8e9d2017-04-27 12:45:38 +0530984 struct ieee80211_supported_band *sband;
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200985 int err;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700986 u32 sta_flags;
987
Michal Kaziordbd72852014-01-29 07:56:21 +0100988 sdata_assert_lock(sdata);
989
Mohammed Shafi Shajakhan21a8e9d2017-04-27 12:45:38 +0530990 sband = ieee80211_get_sband(sdata);
991 if (!sband)
992 return false;
993
Simon Wunderlich71ec2892017-05-23 17:00:43 +0200994 sta_flags = 0;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700995 switch (sdata->vif.bss_conf.chandef.width) {
996 case NL80211_CHAN_WIDTH_20_NOHT:
997 sta_flags |= IEEE80211_STA_DISABLE_HT;
Gustavo A. R. Silva02049ce2017-10-17 18:14:50 -0500998 /* fall through */
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700999 case NL80211_CHAN_WIDTH_20:
1000 sta_flags |= IEEE80211_STA_DISABLE_40MHZ;
Gustavo A. R. Silva02049ce2017-10-17 18:14:50 -05001001 /* fall through */
Simon Wunderlich71ec2892017-05-23 17:00:43 +02001002 case NL80211_CHAN_WIDTH_40:
1003 sta_flags |= IEEE80211_STA_DISABLE_VHT;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001004 break;
1005 default:
1006 break;
1007 }
1008
1009 memset(&params, 0, sizeof(params));
Mohammed Shafi Shajakhan21a8e9d2017-04-27 12:45:38 +05301010 err = ieee80211_parse_ch_switch_ie(sdata, elems, sband->band,
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001011 sta_flags, sdata->vif.addr,
1012 &csa_ie);
1013 if (err < 0)
1014 return false;
1015 if (err)
1016 return false;
1017
Benjamin Berg5d553712017-05-16 11:23:10 +02001018 /* Mark the channel unavailable if the reason for the switch is
1019 * regulatory.
1020 */
1021 if (csa_ie.reason_code == WLAN_REASON_MESH_CHAN_REGULATORY)
1022 ieee80211_mesh_csa_mark_radar(sdata);
1023
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001024 params.chandef = csa_ie.chandef;
1025 params.count = csa_ie.count;
1026
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001027 if (!cfg80211_chandef_usable(sdata->local->hw.wiphy, &params.chandef,
Benjamin Berg0ab2e55d2017-05-16 11:23:13 +02001028 IEEE80211_CHAN_DISABLED) ||
1029 !cfg80211_reg_can_beacon(sdata->local->hw.wiphy, &params.chandef,
1030 NL80211_IFTYPE_MESH_POINT)) {
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001031 sdata_info(sdata,
1032 "mesh STA %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), aborting\n",
1033 sdata->vif.addr,
1034 params.chandef.chan->center_freq,
1035 params.chandef.width,
1036 params.chandef.center_freq1,
1037 params.chandef.center_freq2);
1038 return false;
1039 }
1040
1041 err = cfg80211_chandef_dfs_required(sdata->local->hw.wiphy,
Luciano Coelho2beb6dab2014-02-18 11:40:36 +02001042 &params.chandef,
1043 NL80211_IFTYPE_MESH_POINT);
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001044 if (err < 0)
1045 return false;
Benjamin Berg0ab2e55d2017-05-16 11:23:13 +02001046 if (err > 0 && !ifmsh->userspace_handles_dfs) {
1047 sdata_info(sdata,
1048 "mesh STA %pM switches to channel requiring DFS (%d MHz, width:%d, CF1/2: %d/%d MHz), aborting\n",
1049 sdata->vif.addr,
1050 params.chandef.chan->center_freq,
1051 params.chandef.width,
1052 params.chandef.center_freq1,
1053 params.chandef.center_freq2);
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001054 return false;
Benjamin Berg0ab2e55d2017-05-16 11:23:13 +02001055 }
Luciano Coelho2beb6dab2014-02-18 11:40:36 +02001056
1057 params.radar_required = err;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001058
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001059 if (cfg80211_chandef_identical(&params.chandef,
1060 &sdata->vif.bss_conf.chandef)) {
1061 mcsa_dbg(sdata,
1062 "received csa with an identical chandef, ignoring\n");
1063 return true;
1064 }
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001065
1066 mcsa_dbg(sdata,
1067 "received channel switch announcement to go to channel %d MHz\n",
1068 params.chandef.chan->center_freq);
1069
1070 params.block_tx = csa_ie.mode & WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001071 if (beacon) {
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001072 ifmsh->chsw_ttl = csa_ie.ttl - 1;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001073 if (ifmsh->pre_value >= csa_ie.pre_value)
1074 return false;
1075 ifmsh->pre_value = csa_ie.pre_value;
1076 }
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001077
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001078 if (ifmsh->chsw_ttl >= ifmsh->mshcfg.dot11MeshTTL)
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001079 return false;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001080
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001081 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_REPEATER;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001082
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001083 if (ieee80211_channel_switch(sdata->local->hw.wiphy, sdata->dev,
1084 &params) < 0)
1085 return false;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001086
1087 return true;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001088}
1089
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001090static void
1091ieee80211_mesh_rx_probe_req(struct ieee80211_sub_if_data *sdata,
1092 struct ieee80211_mgmt *mgmt, size_t len)
1093{
1094 struct ieee80211_local *local = sdata->local;
1095 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1096 struct sk_buff *presp;
1097 struct beacon_data *bcn;
1098 struct ieee80211_mgmt *hdr;
1099 struct ieee802_11_elems elems;
1100 size_t baselen;
Johannes Berg511044e2013-03-07 22:47:00 +01001101 u8 *pos;
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001102
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001103 pos = mgmt->u.probe_req.variable;
1104 baselen = (u8 *) pos - (u8 *) mgmt;
1105 if (baselen > len)
1106 return;
1107
Johannes Bergb2e506b2013-03-26 14:54:16 +01001108 ieee802_11_parse_elems(pos, len - baselen, false, &elems);
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001109
Chun-Yeow Yeoha4ef66a2013-08-22 10:28:58 -07001110 if (!elems.mesh_id)
1111 return;
1112
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001113 /* 802.11-2012 10.1.4.3.2 */
1114 if ((!ether_addr_equal(mgmt->da, sdata->vif.addr) &&
1115 !is_broadcast_ether_addr(mgmt->da)) ||
1116 elems.ssid_len != 0)
1117 return;
1118
1119 if (elems.mesh_id_len != 0 &&
1120 (elems.mesh_id_len != ifmsh->mesh_id_len ||
1121 memcmp(elems.mesh_id, ifmsh->mesh_id, ifmsh->mesh_id_len)))
1122 return;
1123
1124 rcu_read_lock();
1125 bcn = rcu_dereference(ifmsh->beacon);
1126
1127 if (!bcn)
1128 goto out;
1129
1130 presp = dev_alloc_skb(local->tx_headroom +
1131 bcn->head_len + bcn->tail_len);
1132 if (!presp)
1133 goto out;
1134
1135 skb_reserve(presp, local->tx_headroom);
Johannes Berg59ae1d12017-06-16 14:29:20 +02001136 skb_put_data(presp, bcn->head, bcn->head_len);
1137 skb_put_data(presp, bcn->tail, bcn->tail_len);
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001138 hdr = (struct ieee80211_mgmt *) presp->data;
1139 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1140 IEEE80211_STYPE_PROBE_RESP);
1141 memcpy(hdr->da, mgmt->sa, ETH_ALEN);
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001142 IEEE80211_SKB_CB(presp)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
1143 ieee80211_tx_skb(sdata, presp);
1144out:
1145 rcu_read_unlock();
1146}
1147
Johannes Berg472dbc42008-09-11 00:01:49 +02001148static void ieee80211_mesh_rx_bcn_presp(struct ieee80211_sub_if_data *sdata,
1149 u16 stype,
1150 struct ieee80211_mgmt *mgmt,
1151 size_t len,
1152 struct ieee80211_rx_status *rx_status)
1153{
Johannes Bergc6a1fa12008-10-07 12:04:32 +02001154 struct ieee80211_local *local = sdata->local;
Javier Cardonadbf498f2012-03-31 11:31:32 -07001155 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02001156 struct ieee802_11_elems elems;
1157 struct ieee80211_channel *channel;
Johannes Berg472dbc42008-09-11 00:01:49 +02001158 size_t baselen;
1159 int freq;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001160 enum nl80211_band band = rx_status->band;
Johannes Berg472dbc42008-09-11 00:01:49 +02001161
1162 /* ignore ProbeResp to foreign address */
1163 if (stype == IEEE80211_STYPE_PROBE_RESP &&
Joe Perchesb203ca32012-05-08 18:56:52 +00001164 !ether_addr_equal(mgmt->da, sdata->vif.addr))
Johannes Berg472dbc42008-09-11 00:01:49 +02001165 return;
1166
1167 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1168 if (baselen > len)
1169 return;
1170
1171 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01001172 false, &elems);
Johannes Berg472dbc42008-09-11 00:01:49 +02001173
Thomas Pedersen9a90bc82012-10-20 19:03:10 -07001174 /* ignore non-mesh or secure / unsecure mismatch */
1175 if ((!elems.mesh_id || !elems.mesh_config) ||
1176 (elems.rsn && sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) ||
1177 (!elems.rsn && sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE))
Javier Cardona5cff5e02011-04-07 15:08:29 -07001178 return;
1179
Johannes Berg1cd8e882013-03-27 14:30:12 +01001180 if (elems.ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001181 freq = ieee80211_channel_to_frequency(elems.ds_params[0], band);
Johannes Berg472dbc42008-09-11 00:01:49 +02001182 else
1183 freq = rx_status->freq;
1184
1185 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1186
1187 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1188 return;
1189
Masashi Honmaed92a9b2017-03-16 10:57:18 +09001190 if (mesh_matches_local(sdata, &elems)) {
1191 mpl_dbg(sdata, "rssi_threshold=%d,rx_status->signal=%d\n",
1192 sdata->u.mesh.mshcfg.rssi_threshold, rx_status->signal);
1193 if (!sdata->u.mesh.user_mpm ||
1194 sdata->u.mesh.mshcfg.rssi_threshold == 0 ||
1195 sdata->u.mesh.mshcfg.rssi_threshold < rx_status->signal)
1196 mesh_neighbour_update(sdata, mgmt->sa, &elems);
1197 }
Javier Cardonadbf498f2012-03-31 11:31:32 -07001198
1199 if (ifmsh->sync_ops)
1200 ifmsh->sync_ops->rx_bcn_presp(sdata,
1201 stype, mgmt, &elems, rx_status);
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001202
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001203 if (ifmsh->csa_role != IEEE80211_MESH_CSA_ROLE_INIT &&
1204 !sdata->vif.csa_active)
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001205 ieee80211_mesh_process_chnswitch(sdata, &elems, true);
Johannes Berg472dbc42008-09-11 00:01:49 +02001206}
1207
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001208int ieee80211_mesh_finish_csa(struct ieee80211_sub_if_data *sdata)
1209{
1210 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1211 struct mesh_csa_settings *tmp_csa_settings;
1212 int ret = 0;
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001213 int changed = 0;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001214
1215 /* Reset the TTL value and Initiator flag */
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001216 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001217 ifmsh->chsw_ttl = 0;
1218
1219 /* Remove the CSA and MCSP elements from the beacon */
1220 tmp_csa_settings = rcu_dereference(ifmsh->csa);
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301221 RCU_INIT_POINTER(ifmsh->csa, NULL);
Luciano Coelho66e01cf2014-01-13 19:43:00 +02001222 if (tmp_csa_settings)
1223 kfree_rcu(tmp_csa_settings, rcu_head);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001224 ret = ieee80211_mesh_rebuild_beacon(sdata);
1225 if (ret)
1226 return -EINVAL;
1227
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001228 changed |= BSS_CHANGED_BEACON;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001229
1230 mcsa_dbg(sdata, "complete switching to center freq %d MHz",
1231 sdata->vif.bss_conf.chandef.chan->center_freq);
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001232 return changed;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001233}
1234
1235int ieee80211_mesh_csa_beacon(struct ieee80211_sub_if_data *sdata,
Luciano Coelho66e01cf2014-01-13 19:43:00 +02001236 struct cfg80211_csa_settings *csa_settings)
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001237{
1238 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1239 struct mesh_csa_settings *tmp_csa_settings;
1240 int ret = 0;
1241
1242 tmp_csa_settings = kmalloc(sizeof(*tmp_csa_settings),
1243 GFP_ATOMIC);
1244 if (!tmp_csa_settings)
1245 return -ENOMEM;
1246
1247 memcpy(&tmp_csa_settings->settings, csa_settings,
1248 sizeof(struct cfg80211_csa_settings));
1249
1250 rcu_assign_pointer(ifmsh->csa, tmp_csa_settings);
1251
1252 ret = ieee80211_mesh_rebuild_beacon(sdata);
1253 if (ret) {
1254 tmp_csa_settings = rcu_dereference(ifmsh->csa);
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301255 RCU_INIT_POINTER(ifmsh->csa, NULL);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001256 kfree_rcu(tmp_csa_settings, rcu_head);
1257 return ret;
1258 }
1259
Luciano Coelhob58e81e2014-01-13 19:42:59 +02001260 return BSS_CHANGED_BEACON;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001261}
1262
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001263static int mesh_fwd_csa_frame(struct ieee80211_sub_if_data *sdata,
Peter Ohc4de37e2018-01-26 14:02:37 -08001264 struct ieee80211_mgmt *mgmt, size_t len,
1265 struct ieee802_11_elems *elems)
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001266{
1267 struct ieee80211_mgmt *mgmt_fwd;
1268 struct sk_buff *skb;
1269 struct ieee80211_local *local = sdata->local;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001270
1271 skb = dev_alloc_skb(local->tx_headroom + len);
1272 if (!skb)
1273 return -ENOMEM;
1274 skb_reserve(skb, local->tx_headroom);
Johannes Berg4df864c2017-06-16 14:29:21 +02001275 mgmt_fwd = skb_put(skb, len);
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001276
Peter Ohc4de37e2018-01-26 14:02:37 -08001277 elems->mesh_chansw_params_ie->mesh_ttl--;
1278 elems->mesh_chansw_params_ie->mesh_flags &=
1279 ~WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001280
1281 memcpy(mgmt_fwd, mgmt, len);
1282 eth_broadcast_addr(mgmt_fwd->da);
1283 memcpy(mgmt_fwd->sa, sdata->vif.addr, ETH_ALEN);
1284 memcpy(mgmt_fwd->bssid, sdata->vif.addr, ETH_ALEN);
1285
1286 ieee80211_tx_skb(sdata, skb);
1287 return 0;
1288}
1289
1290static void mesh_rx_csa_frame(struct ieee80211_sub_if_data *sdata,
1291 struct ieee80211_mgmt *mgmt, size_t len)
1292{
1293 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1294 struct ieee802_11_elems elems;
1295 u16 pre_value;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001296 bool fwd_csa = true;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001297 size_t baselen;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001298 u8 *pos;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001299
1300 if (mgmt->u.action.u.measurement.action_code !=
1301 WLAN_ACTION_SPCT_CHL_SWITCH)
1302 return;
1303
1304 pos = mgmt->u.action.u.chan_switch.variable;
1305 baselen = offsetof(struct ieee80211_mgmt,
1306 u.action.u.chan_switch.variable);
Simon Wunderlich3b237822017-05-16 11:23:16 +02001307 ieee802_11_parse_elems(pos, len - baselen, true, &elems);
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001308
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001309 ifmsh->chsw_ttl = elems.mesh_chansw_params_ie->mesh_ttl;
1310 if (!--ifmsh->chsw_ttl)
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001311 fwd_csa = false;
1312
1313 pre_value = le16_to_cpu(elems.mesh_chansw_params_ie->mesh_pre_value);
1314 if (ifmsh->pre_value >= pre_value)
1315 return;
1316
1317 ifmsh->pre_value = pre_value;
1318
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001319 if (!sdata->vif.csa_active &&
1320 !ieee80211_mesh_process_chnswitch(sdata, &elems, false)) {
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001321 mcsa_dbg(sdata, "Failed to process CSA action frame");
1322 return;
1323 }
1324
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001325 /* forward or re-broadcast the CSA frame */
1326 if (fwd_csa) {
Peter Ohc4de37e2018-01-26 14:02:37 -08001327 if (mesh_fwd_csa_frame(sdata, mgmt, len, &elems) < 0)
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001328 mcsa_dbg(sdata, "Failed to forward the CSA frame");
1329 }
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001330}
1331
Johannes Berg472dbc42008-09-11 00:01:49 +02001332static void ieee80211_mesh_rx_mgmt_action(struct ieee80211_sub_if_data *sdata,
1333 struct ieee80211_mgmt *mgmt,
1334 size_t len,
1335 struct ieee80211_rx_status *rx_status)
1336{
1337 switch (mgmt->u.action.category) {
Thomas Pedersen8db09852011-08-12 20:01:00 -07001338 case WLAN_CATEGORY_SELF_PROTECTED:
1339 switch (mgmt->u.action.u.self_prot.action_code) {
1340 case WLAN_SP_MESH_PEERING_OPEN:
1341 case WLAN_SP_MESH_PEERING_CLOSE:
1342 case WLAN_SP_MESH_PEERING_CONFIRM:
1343 mesh_rx_plink_frame(sdata, mgmt, len, rx_status);
1344 break;
1345 }
Johannes Berg472dbc42008-09-11 00:01:49 +02001346 break;
Thomas Pedersen25d49e42011-08-11 19:35:15 -07001347 case WLAN_CATEGORY_MESH_ACTION:
1348 if (mesh_action_is_path_sel(mgmt))
1349 mesh_rx_path_sel_frame(sdata, mgmt, len);
Johannes Berg472dbc42008-09-11 00:01:49 +02001350 break;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001351 case WLAN_CATEGORY_SPECTRUM_MGMT:
1352 mesh_rx_csa_frame(sdata, mgmt, len);
1353 break;
Johannes Berg472dbc42008-09-11 00:01:49 +02001354 }
1355}
1356
Johannes Berg1fa57d02010-06-10 10:21:32 +02001357void ieee80211_mesh_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
1358 struct sk_buff *skb)
Johannes Berg472dbc42008-09-11 00:01:49 +02001359{
1360 struct ieee80211_rx_status *rx_status;
Johannes Berg472dbc42008-09-11 00:01:49 +02001361 struct ieee80211_mgmt *mgmt;
1362 u16 stype;
1363
Thomas Pedersenecccd072013-06-10 13:17:21 -07001364 sdata_lock(sdata);
1365
1366 /* mesh already went down */
Johannes Berg1693d342014-01-22 10:08:57 +01001367 if (!sdata->u.mesh.mesh_id_len)
Thomas Pedersenecccd072013-06-10 13:17:21 -07001368 goto out;
1369
Johannes Bergf1d58c22009-06-17 13:13:00 +02001370 rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Berg472dbc42008-09-11 00:01:49 +02001371 mgmt = (struct ieee80211_mgmt *) skb->data;
1372 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
1373
1374 switch (stype) {
1375 case IEEE80211_STYPE_PROBE_RESP:
1376 case IEEE80211_STYPE_BEACON:
1377 ieee80211_mesh_rx_bcn_presp(sdata, stype, mgmt, skb->len,
1378 rx_status);
1379 break;
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001380 case IEEE80211_STYPE_PROBE_REQ:
1381 ieee80211_mesh_rx_probe_req(sdata, mgmt, skb->len);
1382 break;
Johannes Berg472dbc42008-09-11 00:01:49 +02001383 case IEEE80211_STYPE_ACTION:
1384 ieee80211_mesh_rx_mgmt_action(sdata, mgmt, skb->len, rx_status);
1385 break;
1386 }
Thomas Pedersenecccd072013-06-10 13:17:21 -07001387out:
1388 sdata_unlock(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001389}
1390
Thomas Pedersenf81a9de2013-06-13 15:54:41 -07001391static void mesh_bss_info_changed(struct ieee80211_sub_if_data *sdata)
1392{
1393 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1394 u32 bit, changed = 0;
1395
1396 for_each_set_bit(bit, &ifmsh->mbss_changed,
1397 sizeof(changed) * BITS_PER_BYTE) {
1398 clear_bit(bit, &ifmsh->mbss_changed);
1399 changed |= BIT(bit);
1400 }
1401
1402 if (sdata->vif.bss_conf.enable_beacon &&
1403 (changed & (BSS_CHANGED_BEACON |
1404 BSS_CHANGED_HT |
1405 BSS_CHANGED_BASIC_RATES |
1406 BSS_CHANGED_BEACON_INT)))
1407 if (ieee80211_mesh_rebuild_beacon(sdata))
1408 return;
1409
1410 ieee80211_bss_info_change_notify(sdata, changed);
1411}
1412
Johannes Berg1fa57d02010-06-10 10:21:32 +02001413void ieee80211_mesh_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +02001414{
Johannes Berg472dbc42008-09-11 00:01:49 +02001415 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02001416
Thomas Pedersenecccd072013-06-10 13:17:21 -07001417 sdata_lock(sdata);
1418
1419 /* mesh already went down */
Johannes Berg1693d342014-01-22 10:08:57 +01001420 if (!sdata->u.mesh.mesh_id_len)
Thomas Pedersenecccd072013-06-10 13:17:21 -07001421 goto out;
1422
Johannes Berg472dbc42008-09-11 00:01:49 +02001423 if (ifmsh->preq_queue_len &&
1424 time_after(jiffies,
1425 ifmsh->last_preq + msecs_to_jiffies(ifmsh->mshcfg.dot11MeshHWMPpreqMinInterval)))
1426 mesh_path_start_discovery(sdata);
1427
Javier Cardona18889232009-08-10 12:15:52 -07001428 if (test_and_clear_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags))
Johannes Bergbf7cd942013-02-15 14:40:31 +01001429 ieee80211_mesh_housekeeping(sdata);
Rui Pauloe304bfd2009-11-09 23:46:56 +00001430
1431 if (test_and_clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags))
1432 ieee80211_mesh_rootpath(sdata);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001433
1434 if (test_and_clear_bit(MESH_WORK_DRIFT_ADJUST, &ifmsh->wrkq_flags))
Masashi Honma445cd452016-12-08 10:15:51 +09001435 mesh_sync_adjust_tsf(sdata);
Thomas Pedersenecccd072013-06-10 13:17:21 -07001436
Thomas Pedersenf81a9de2013-06-13 15:54:41 -07001437 if (test_and_clear_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags))
1438 mesh_bss_info_changed(sdata);
Thomas Pedersenecccd072013-06-10 13:17:21 -07001439out:
1440 sdata_unlock(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001441}
1442
Johannes Berg472dbc42008-09-11 00:01:49 +02001443
Johannes Berg902acc72008-02-23 15:17:19 +01001444void ieee80211_mesh_init_sdata(struct ieee80211_sub_if_data *sdata)
1445{
Johannes Berg472dbc42008-09-11 00:01:49 +02001446 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Bergad2d2232012-12-14 14:34:25 +01001447 static u8 zero_addr[ETH_ALEN] = {};
Johannes Berg902acc72008-02-23 15:17:19 +01001448
Kees Cook34f11cd32017-10-16 16:35:49 -07001449 timer_setup(&ifmsh->housekeeping_timer,
1450 ieee80211_mesh_housekeeping_timer, 0);
Johannes Berg472dbc42008-09-11 00:01:49 +02001451
Johannes Berg472dbc42008-09-11 00:01:49 +02001452 ifmsh->accepting_plinks = true;
Johannes Berg472dbc42008-09-11 00:01:49 +02001453 atomic_set(&ifmsh->mpaths, 0);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001454 mesh_rmc_init(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001455 ifmsh->last_preq = jiffies;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001456 ifmsh->next_perr = jiffies;
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001457 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
Johannes Berg902acc72008-02-23 15:17:19 +01001458 /* Allocate all mesh structures when creating the first mesh interface. */
1459 if (!mesh_allocated)
1460 ieee80211s_init();
Bob Copeland2bdaf382016-02-28 20:03:56 -05001461
1462 mesh_pathtbl_init(sdata);
1463
Kees Cook34f11cd32017-10-16 16:35:49 -07001464 timer_setup(&ifmsh->mesh_path_timer, ieee80211_mesh_path_timer, 0);
1465 timer_setup(&ifmsh->mesh_path_root_timer,
1466 ieee80211_mesh_path_root_timer, 0);
Johannes Berg472dbc42008-09-11 00:01:49 +02001467 INIT_LIST_HEAD(&ifmsh->preq_queue.list);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001468 skb_queue_head_init(&ifmsh->ps.bc_buf);
Johannes Berg472dbc42008-09-11 00:01:49 +02001469 spin_lock_init(&ifmsh->mesh_preq_queue_lock);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001470 spin_lock_init(&ifmsh->sync_offset_lock);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001471 RCU_INIT_POINTER(ifmsh->beacon, NULL);
Johannes Bergad2d2232012-12-14 14:34:25 +01001472
1473 sdata->vif.bss_conf.bssid = zero_addr;
Johannes Berg472dbc42008-09-11 00:01:49 +02001474}
Bob Copeland0371a082016-03-26 11:27:18 -04001475
1476void ieee80211_mesh_teardown_sdata(struct ieee80211_sub_if_data *sdata)
1477{
1478 mesh_rmc_free(sdata);
1479 mesh_pathtbl_unregister(sdata);
1480}