blob: cc2a63bd233f5f12ea21312ae49be0d3fd0f9d3a [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.
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +01003 * Authors: Luis Carlos Cobo <luisca@cozybit.com>
4 * Javier Cardona <javier@cozybit.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Luis Carlos Cobo51cedda2008-04-23 12:15:29 -070012#include <asm/unaligned.h>
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010013#include "ieee80211_i.h"
14#include "mesh.h"
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -070015#include "driver-ops.h"
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010016
Johannes Bergbf7cd942013-02-15 14:40:31 +010017static int mesh_allocated;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010018static struct kmem_cache *rm_cache;
19
Thomas Pedersen25d49e42011-08-11 19:35:15 -070020bool mesh_action_is_path_sel(struct ieee80211_mgmt *mgmt)
21{
22 return (mgmt->u.action.u.mesh_action.action_code ==
23 WLAN_MESH_ACTION_HWMP_PATH_SELECTION);
24}
Thomas Pedersen25d49e42011-08-11 19:35:15 -070025
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010026void ieee80211s_init(void)
27{
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010028 mesh_allocated = 1;
29 rm_cache = kmem_cache_create("mesh_rmc", sizeof(struct rmc_entry),
30 0, 0, NULL);
31}
32
33void ieee80211s_stop(void)
34{
Johannes Bergbf7cd942013-02-15 14:40:31 +010035 if (!mesh_allocated)
36 return;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010037 kmem_cache_destroy(rm_cache);
38}
39
Johannes Berg472dbc42008-09-11 00:01:49 +020040static void ieee80211_mesh_housekeeping_timer(unsigned long data)
41{
42 struct ieee80211_sub_if_data *sdata = (void *) data;
43 struct ieee80211_local *local = sdata->local;
44 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
45
Rui Paulo6b9ac442009-10-20 21:21:48 +010046 set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
Johannes Berg5bb644a2009-05-17 11:40:42 +020047
Johannes Berg64592c82010-06-10 10:21:31 +020048 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg472dbc42008-09-11 00:01:49 +020049}
50
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010051/**
52 * mesh_matches_local - check if the config of a mesh point matches ours
53 *
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120054 * @sdata: local mesh subif
Thomas Pedersenf743ff42012-04-18 19:23:43 -070055 * @ie: information elements of a management frame from the mesh peer
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010056 *
57 * This function checks if the mesh configuration of a mesh point matches the
58 * local mesh configuration, i.e. if both nodes belong to the same mesh network.
59 */
Thomas Pedersenf743ff42012-04-18 19:23:43 -070060bool mesh_matches_local(struct ieee80211_sub_if_data *sdata,
61 struct ieee802_11_elems *ie)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010062{
Johannes Berg472dbc42008-09-11 00:01:49 +020063 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Thomas Pedersenf743ff42012-04-18 19:23:43 -070064 u32 basic_rates = 0;
Johannes Berg4bf88532012-11-09 11:39:59 +010065 struct cfg80211_chan_def sta_chan_def;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010066
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010067 /*
68 * As support for each feature is added, check for matching
69 * - On mesh config capabilities
70 * - Power Save Support En
71 * - Sync support enabled
72 * - Sync support active
73 * - Sync support required from peer
74 * - MDA enabled
75 * - Power management control on fc
76 */
Thomas Pedersen739522b2011-10-26 14:47:28 -070077 if (!(ifmsh->mesh_id_len == ie->mesh_id_len &&
78 memcmp(ifmsh->mesh_id, ie->mesh_id, ie->mesh_id_len) == 0 &&
79 (ifmsh->mesh_pp_id == ie->mesh_config->meshconf_psel) &&
80 (ifmsh->mesh_pm_id == ie->mesh_config->meshconf_pmetric) &&
81 (ifmsh->mesh_cc_id == ie->mesh_config->meshconf_congest) &&
82 (ifmsh->mesh_sp_id == ie->mesh_config->meshconf_synch) &&
83 (ifmsh->mesh_auth_id == ie->mesh_config->meshconf_auth)))
Johannes Bergbf7cd942013-02-15 14:40:31 +010084 return false;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010085
Simon Wunderlich2103dec2013-07-08 16:55:53 +020086 ieee80211_sta_get_rates(sdata, ie, ieee80211_get_sdata_band(sdata),
Thomas Pedersenf743ff42012-04-18 19:23:43 -070087 &basic_rates);
88
Ashok Nagarajanfe40cb62012-04-02 21:21:22 -070089 if (sdata->vif.bss_conf.basic_rates != basic_rates)
Johannes Bergbf7cd942013-02-15 14:40:31 +010090 return false;
Ashok Nagarajanfe40cb62012-04-02 21:21:22 -070091
Johannes Berg8ac3c7042015-12-18 15:08:34 +010092 cfg80211_chandef_create(&sta_chan_def, sdata->vif.bss_conf.chandef.chan,
93 NL80211_CHAN_NO_HT);
94 ieee80211_chandef_ht_oper(ie->ht_operation, &sta_chan_def);
95 ieee80211_chandef_vht_oper(ie->vht_operation, &sta_chan_def);
Bob Copelandc85fb532015-08-27 09:00:18 -040096
Johannes Berg4bf88532012-11-09 11:39:59 +010097 if (!cfg80211_chandef_compatible(&sdata->vif.bss_conf.chandef,
98 &sta_chan_def))
Johannes Bergbf7cd942013-02-15 14:40:31 +010099 return false;
Thomas Pedersen739522b2011-10-26 14:47:28 -0700100
101 return true;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100102}
103
104/**
105 * mesh_peer_accepts_plinks - check if an mp is willing to establish peer links
106 *
107 * @ie: information elements of a management frame from the mesh peer
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100108 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200109bool mesh_peer_accepts_plinks(struct ieee802_11_elems *ie)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100110{
Rui Paulo136cfa22009-11-18 18:40:00 +0000111 return (ie->mesh_config->meshconf_cap &
Johannes Bergbf7cd942013-02-15 14:40:31 +0100112 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS) != 0;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100113}
114
115/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000116 * mesh_accept_plinks_update - update accepting_plink in local mesh beacons
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100117 *
Johannes Bergd0709a62008-02-25 16:27:46 +0100118 * @sdata: mesh interface in which mesh beacons are going to be updated
Marco Porschdf323812012-08-08 07:58:43 +0200119 *
120 * Returns: beacon changed flag if the beacon content changed.
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100121 */
Marco Porschdf323812012-08-08 07:58:43 +0200122u32 mesh_accept_plinks_update(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100123{
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100124 bool free_plinks;
Marco Porschdf323812012-08-08 07:58:43 +0200125 u32 changed = 0;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100126
127 /* In case mesh_plink_free_count > 0 and mesh_plinktbl_capacity == 0,
128 * the mesh interface might be able to establish plinks with peers that
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800129 * are already on the table but are not on PLINK_ESTAB state. However,
130 * in general the mesh interface is not accepting peer link requests
131 * from new peers, and that must be reflected in the beacon
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100132 */
133 free_plinks = mesh_plink_availables(sdata);
134
Marco Porschdf323812012-08-08 07:58:43 +0200135 if (free_plinks != sdata->u.mesh.accepting_plinks) {
136 sdata->u.mesh.accepting_plinks = free_plinks;
137 changed = BSS_CHANGED_BEACON;
138 }
139
140 return changed;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100141}
142
Thomas Pedersen45b50282013-02-06 10:17:21 -0800143/*
144 * mesh_sta_cleanup - clean up any mesh sta state
145 *
146 * @sta: mesh sta to clean up.
147 */
148void mesh_sta_cleanup(struct sta_info *sta)
149{
150 struct ieee80211_sub_if_data *sdata = sta->sdata;
Bob Copelandefc401f2016-06-25 19:14:16 -0400151 u32 changed = mesh_plink_deactivate(sta);
Bob Copelandfe7a7c52016-05-15 13:19:16 -0400152
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700153 if (changed)
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800154 ieee80211_mbss_info_change_notify(sdata, changed);
Thomas Pedersen45b50282013-02-06 10:17:21 -0800155}
156
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200157int mesh_rmc_init(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100158{
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100159 int i;
160
Johannes Berg472dbc42008-09-11 00:01:49 +0200161 sdata->u.mesh.rmc = kmalloc(sizeof(struct mesh_rmc), GFP_KERNEL);
162 if (!sdata->u.mesh.rmc)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100163 return -ENOMEM;
Johannes Berg472dbc42008-09-11 00:01:49 +0200164 sdata->u.mesh.rmc->idx_mask = RMC_BUCKETS - 1;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100165 for (i = 0; i < RMC_BUCKETS; i++)
Bob Copeland47a04892016-03-18 22:11:29 -0400166 INIT_HLIST_HEAD(&sdata->u.mesh.rmc->bucket[i]);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100167 return 0;
168}
169
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200170void mesh_rmc_free(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100171{
Johannes Berg472dbc42008-09-11 00:01:49 +0200172 struct mesh_rmc *rmc = sdata->u.mesh.rmc;
Bob Copeland47a04892016-03-18 22:11:29 -0400173 struct rmc_entry *p;
174 struct hlist_node *n;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100175 int i;
176
Johannes Berg472dbc42008-09-11 00:01:49 +0200177 if (!sdata->u.mesh.rmc)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100178 return;
179
Johannes Bergbf7cd942013-02-15 14:40:31 +0100180 for (i = 0; i < RMC_BUCKETS; i++) {
Bob Copeland47a04892016-03-18 22:11:29 -0400181 hlist_for_each_entry_safe(p, n, &rmc->bucket[i], list) {
182 hlist_del(&p->list);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100183 kmem_cache_free(rm_cache, p);
184 }
Johannes Bergbf7cd942013-02-15 14:40:31 +0100185 }
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100186
187 kfree(rmc);
Johannes Berg472dbc42008-09-11 00:01:49 +0200188 sdata->u.mesh.rmc = NULL;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100189}
190
191/**
192 * mesh_rmc_check - Check frame in recent multicast cache and add if absent.
193 *
Johannes Bergbf7cd942013-02-15 14:40:31 +0100194 * @sdata: interface
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100195 * @sa: source address
196 * @mesh_hdr: mesh_header
197 *
198 * Returns: 0 if the frame is not in the cache, nonzero otherwise.
199 *
200 * Checks using the source address and the mesh sequence number if we have
201 * received this frame lately. If the frame is not in the cache, it is added to
202 * it.
203 */
Johannes Bergbf7cd942013-02-15 14:40:31 +0100204int mesh_rmc_check(struct ieee80211_sub_if_data *sdata,
205 const u8 *sa, struct ieee80211s_hdr *mesh_hdr)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100206{
Johannes Berg472dbc42008-09-11 00:01:49 +0200207 struct mesh_rmc *rmc = sdata->u.mesh.rmc;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100208 u32 seqnum = 0;
209 int entries = 0;
210 u8 idx;
Bob Copeland47a04892016-03-18 22:11:29 -0400211 struct rmc_entry *p;
212 struct hlist_node *n;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100213
Bob Copeland0aa7fab2016-03-18 22:11:28 -0400214 if (!rmc)
215 return -1;
216
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100217 /* Don't care about endianness since only match matters */
Luis Carlos Cobo51cedda2008-04-23 12:15:29 -0700218 memcpy(&seqnum, &mesh_hdr->seqnum, sizeof(mesh_hdr->seqnum));
219 idx = le32_to_cpu(mesh_hdr->seqnum) & rmc->idx_mask;
Bob Copeland47a04892016-03-18 22:11:29 -0400220 hlist_for_each_entry_safe(p, n, &rmc->bucket[idx], list) {
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100221 ++entries;
222 if (time_after(jiffies, p->exp_time) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100223 entries == RMC_QUEUE_MAX_LEN) {
Bob Copeland47a04892016-03-18 22:11:29 -0400224 hlist_del(&p->list);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100225 kmem_cache_free(rm_cache, p);
226 --entries;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100227 } else if ((seqnum == p->seqnum) && ether_addr_equal(sa, p->sa))
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100228 return -1;
229 }
230
231 p = kmem_cache_alloc(rm_cache, GFP_ATOMIC);
Joe Perchesd15b8452011-08-29 14:17:31 -0700232 if (!p)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100233 return 0;
Joe Perchesd15b8452011-08-29 14:17:31 -0700234
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100235 p->seqnum = seqnum;
236 p->exp_time = jiffies + RMC_TIMEOUT;
237 memcpy(p->sa, sa, ETH_ALEN);
Bob Copeland47a04892016-03-18 22:11:29 -0400238 hlist_add_head(&p->list, &rmc->bucket[idx]);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100239 return 0;
240}
241
Johannes Bergbf7cd942013-02-15 14:40:31 +0100242int mesh_add_meshconf_ie(struct ieee80211_sub_if_data *sdata,
243 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700244{
245 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
246 u8 *pos, neighbors;
247 u8 meshconf_len = sizeof(struct ieee80211_meshconf_ie);
248
249 if (skb_tailroom(skb) < 2 + meshconf_len)
250 return -ENOMEM;
251
252 pos = skb_put(skb, 2 + meshconf_len);
253 *pos++ = WLAN_EID_MESH_CONFIG;
254 *pos++ = meshconf_len;
255
Thomas Pedersen43552be2013-12-15 13:14:16 -0800256 /* save a pointer for quick updates in pre-tbtt */
257 ifmsh->meshconf_offset = pos - skb->data;
258
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700259 /* Active path selection protocol ID */
260 *pos++ = ifmsh->mesh_pp_id;
261 /* Active path selection metric ID */
262 *pos++ = ifmsh->mesh_pm_id;
263 /* Congestion control mode identifier */
264 *pos++ = ifmsh->mesh_cc_id;
265 /* Synchronization protocol identifier */
266 *pos++ = ifmsh->mesh_sp_id;
267 /* Authentication Protocol identifier */
268 *pos++ = ifmsh->mesh_auth_id;
269 /* Mesh Formation Info - number of neighbors */
Ashok Nagarajan1258d972012-10-09 13:27:47 -0700270 neighbors = atomic_read(&ifmsh->estab_plinks);
Jacob Minshalle05eccc2013-05-29 14:32:36 -0700271 neighbors = min_t(int, neighbors, IEEE80211_MAX_MESH_PEERINGS);
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700272 *pos++ = neighbors << 1;
273 /* Mesh capability */
Chun-Yeow Yeohb60e5272013-07-12 18:55:22 +0800274 *pos = 0x00;
275 *pos |= ifmsh->mshcfg.dot11MeshForwarding ?
276 IEEE80211_MESHCONF_CAPAB_FORWARDING : 0x00;
Javier Cardonadbf498f2012-03-31 11:31:32 -0700277 *pos |= ifmsh->accepting_plinks ?
Johannes Bergbf7cd942013-02-15 14:40:31 +0100278 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS : 0x00;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100279 /* Mesh PS mode. See IEEE802.11-2012 8.4.2.100.8 */
280 *pos |= ifmsh->ps_peers_deep_sleep ?
Johannes Bergbf7cd942013-02-15 14:40:31 +0100281 IEEE80211_MESHCONF_CAPAB_POWER_SAVE_LEVEL : 0x00;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700282 *pos++ = 0x00;
283
284 return 0;
285}
286
Johannes Bergbf7cd942013-02-15 14:40:31 +0100287int mesh_add_meshid_ie(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700288{
289 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
290 u8 *pos;
291
292 if (skb_tailroom(skb) < 2 + ifmsh->mesh_id_len)
293 return -ENOMEM;
294
295 pos = skb_put(skb, 2 + ifmsh->mesh_id_len);
296 *pos++ = WLAN_EID_MESH_ID;
297 *pos++ = ifmsh->mesh_id_len;
298 if (ifmsh->mesh_id_len)
299 memcpy(pos, ifmsh->mesh_id, ifmsh->mesh_id_len);
300
301 return 0;
302}
303
Johannes Bergbf7cd942013-02-15 14:40:31 +0100304static int mesh_add_awake_window_ie(struct ieee80211_sub_if_data *sdata,
305 struct sk_buff *skb)
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100306{
307 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
308 u8 *pos;
309
310 /* see IEEE802.11-2012 13.14.6 */
311 if (ifmsh->ps_peers_light_sleep == 0 &&
312 ifmsh->ps_peers_deep_sleep == 0 &&
313 ifmsh->nonpeer_pm == NL80211_MESH_POWER_ACTIVE)
314 return 0;
315
316 if (skb_tailroom(skb) < 4)
317 return -ENOMEM;
318
319 pos = skb_put(skb, 2 + 2);
320 *pos++ = WLAN_EID_MESH_AWAKE_WINDOW;
321 *pos++ = 2;
322 put_unaligned_le16(ifmsh->mshcfg.dot11MeshAwakeWindowDuration, pos);
323
324 return 0;
325}
326
Johannes Bergbf7cd942013-02-15 14:40:31 +0100327int mesh_add_vendor_ies(struct ieee80211_sub_if_data *sdata,
328 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700329{
330 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
331 u8 offset, len;
332 const u8 *data;
333
334 if (!ifmsh->ie || !ifmsh->ie_len)
335 return 0;
336
337 /* fast-forward to vendor IEs */
338 offset = ieee80211_ie_split_vendor(ifmsh->ie, ifmsh->ie_len, 0);
339
340 if (offset) {
341 len = ifmsh->ie_len - offset;
342 data = ifmsh->ie + offset;
343 if (skb_tailroom(skb) < len)
344 return -ENOMEM;
345 memcpy(skb_put(skb, len), data, len);
346 }
347
348 return 0;
349}
350
Johannes Bergbf7cd942013-02-15 14:40:31 +0100351int mesh_add_rsn_ie(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700352{
353 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
354 u8 len = 0;
355 const u8 *data;
356
357 if (!ifmsh->ie || !ifmsh->ie_len)
358 return 0;
359
360 /* find RSN IE */
Bob Copelanda40a8c12014-04-15 10:43:07 -0400361 data = cfg80211_find_ie(WLAN_EID_RSN, ifmsh->ie, ifmsh->ie_len);
362 if (!data)
363 return 0;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700364
Bob Copelanda40a8c12014-04-15 10:43:07 -0400365 len = data[1] + 2;
366
367 if (skb_tailroom(skb) < len)
368 return -ENOMEM;
369 memcpy(skb_put(skb, len), data, len);
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700370
371 return 0;
372}
373
Johannes Bergbf7cd942013-02-15 14:40:31 +0100374static int mesh_add_ds_params_ie(struct ieee80211_sub_if_data *sdata,
375 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700376{
Johannes Berg55de9082012-07-26 17:24:39 +0200377 struct ieee80211_chanctx_conf *chanctx_conf;
378 struct ieee80211_channel *chan;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700379 u8 *pos;
380
381 if (skb_tailroom(skb) < 3)
382 return -ENOMEM;
383
Johannes Berg55de9082012-07-26 17:24:39 +0200384 rcu_read_lock();
385 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
386 if (WARN_ON(!chanctx_conf)) {
387 rcu_read_unlock();
388 return -EINVAL;
389 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100390 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200391 rcu_read_unlock();
392
Emanuel Taube601513a2013-02-06 14:17:17 +0100393 pos = skb_put(skb, 2 + 1);
394 *pos++ = WLAN_EID_DS_PARAMS;
395 *pos++ = 1;
396 *pos++ = ieee80211_frequency_to_channel(chan->center_freq);
Rui Paulobe125c62009-11-09 23:46:54 +0000397
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700398 return 0;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100399}
400
Johannes Bergbf7cd942013-02-15 14:40:31 +0100401int mesh_add_ht_cap_ie(struct ieee80211_sub_if_data *sdata,
402 struct sk_buff *skb)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700403{
404 struct ieee80211_local *local = sdata->local;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200405 enum nl80211_band band = ieee80211_get_sdata_band(sdata);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700406 struct ieee80211_supported_band *sband;
407 u8 *pos;
408
Johannes Berg55de9082012-07-26 17:24:39 +0200409 sband = local->hw.wiphy->bands[band];
Thomas Pedersen176f3602011-10-26 14:47:27 -0700410 if (!sband->ht_cap.ht_supported ||
Simon Wunderlich0418a442013-05-16 13:00:31 +0200411 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
412 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
413 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700414 return 0;
415
416 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_cap))
417 return -ENOMEM;
418
419 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_cap));
Ben Greearef96a8422011-11-18 11:32:00 -0800420 ieee80211_ie_build_ht_cap(pos, &sband->ht_cap, sband->ht_cap.cap);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700421
422 return 0;
423}
424
Johannes Bergbf7cd942013-02-15 14:40:31 +0100425int mesh_add_ht_oper_ie(struct ieee80211_sub_if_data *sdata,
426 struct sk_buff *skb)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700427{
428 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +0200429 struct ieee80211_chanctx_conf *chanctx_conf;
430 struct ieee80211_channel *channel;
Johannes Berg55de9082012-07-26 17:24:39 +0200431 struct ieee80211_supported_band *sband;
432 struct ieee80211_sta_ht_cap *ht_cap;
Thomas Pedersen176f3602011-10-26 14:47:27 -0700433 u8 *pos;
434
Johannes Berg55de9082012-07-26 17:24:39 +0200435 rcu_read_lock();
436 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
437 if (WARN_ON(!chanctx_conf)) {
438 rcu_read_unlock();
439 return -EINVAL;
440 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100441 channel = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200442 rcu_read_unlock();
443
444 sband = local->hw.wiphy->bands[channel->band];
445 ht_cap = &sband->ht_cap;
446
Bob Copelandc85fb532015-08-27 09:00:18 -0400447 if (!ht_cap->ht_supported ||
448 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
449 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
450 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700451 return 0;
452
Johannes Berg074d46d2012-03-15 19:45:16 +0100453 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_operation))
Thomas Pedersen176f3602011-10-26 14:47:27 -0700454 return -ENOMEM;
455
Johannes Berg074d46d2012-03-15 19:45:16 +0100456 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_operation));
Johannes Berg4bf88532012-11-09 11:39:59 +0100457 ieee80211_ie_build_ht_oper(pos, ht_cap, &sdata->vif.bss_conf.chandef,
Arik Nemtsov57f255f2015-10-25 10:59:34 +0200458 sdata->vif.bss_conf.ht_operation_mode,
459 false);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700460
461 return 0;
462}
Johannes Bergbf7cd942013-02-15 14:40:31 +0100463
Bob Copelandc85fb532015-08-27 09:00:18 -0400464int mesh_add_vht_cap_ie(struct ieee80211_sub_if_data *sdata,
465 struct sk_buff *skb)
466{
467 struct ieee80211_local *local = sdata->local;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200468 enum nl80211_band band = ieee80211_get_sdata_band(sdata);
Bob Copelandc85fb532015-08-27 09:00:18 -0400469 struct ieee80211_supported_band *sband;
470 u8 *pos;
471
472 sband = local->hw.wiphy->bands[band];
473 if (!sband->vht_cap.vht_supported ||
474 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
475 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
476 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
477 return 0;
478
479 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_vht_cap))
480 return -ENOMEM;
481
482 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_cap));
483 ieee80211_ie_build_vht_cap(pos, &sband->vht_cap, sband->vht_cap.cap);
484
485 return 0;
486}
487
488int mesh_add_vht_oper_ie(struct ieee80211_sub_if_data *sdata,
489 struct sk_buff *skb)
490{
491 struct ieee80211_local *local = sdata->local;
492 struct ieee80211_chanctx_conf *chanctx_conf;
493 struct ieee80211_channel *channel;
494 struct ieee80211_supported_band *sband;
495 struct ieee80211_sta_vht_cap *vht_cap;
496 u8 *pos;
497
498 rcu_read_lock();
499 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
500 if (WARN_ON(!chanctx_conf)) {
501 rcu_read_unlock();
502 return -EINVAL;
503 }
504 channel = chanctx_conf->def.chan;
505 rcu_read_unlock();
506
507 sband = local->hw.wiphy->bands[channel->band];
508 vht_cap = &sband->vht_cap;
509
510 if (!vht_cap->vht_supported ||
511 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
512 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
513 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
514 return 0;
515
516 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_vht_operation))
517 return -ENOMEM;
518
519 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_operation));
520 ieee80211_ie_build_vht_oper(pos, vht_cap,
521 &sdata->vif.bss_conf.chandef);
522
523 return 0;
524}
525
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100526static void ieee80211_mesh_path_timer(unsigned long data)
527{
528 struct ieee80211_sub_if_data *sdata =
529 (struct ieee80211_sub_if_data *) data;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100530
Stanislaw Gruszka690205f2013-02-28 10:55:29 +0100531 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100532}
533
Rui Pauloe304bfd2009-11-09 23:46:56 +0000534static void ieee80211_mesh_path_root_timer(unsigned long data)
535{
536 struct ieee80211_sub_if_data *sdata =
537 (struct ieee80211_sub_if_data *) data;
538 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Rui Pauloe304bfd2009-11-09 23:46:56 +0000539
540 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
541
Stanislaw Gruszka690205f2013-02-28 10:55:29 +0100542 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000543}
544
Rui Paulo63c57232009-11-09 23:46:57 +0000545void ieee80211_mesh_root_setup(struct ieee80211_if_mesh *ifmsh)
546{
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +0800547 if (ifmsh->mshcfg.dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)
Rui Paulo63c57232009-11-09 23:46:57 +0000548 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
549 else {
550 clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
551 /* stop running timer */
552 del_timer_sync(&ifmsh->mesh_path_root_timer);
553 }
554}
555
Johannes Berg902acc72008-02-23 15:17:19 +0100556/**
Javier Cardona3c5772a2009-08-10 12:15:48 -0700557 * ieee80211_fill_mesh_addresses - fill addresses of a locally originated mesh frame
Johannes Bergbf7cd942013-02-15 14:40:31 +0100558 * @hdr: 802.11 frame header
Javier Cardona3c5772a2009-08-10 12:15:48 -0700559 * @fc: frame control field
560 * @meshda: destination address in the mesh
561 * @meshsa: source address address in the mesh. Same as TA, as frame is
562 * locally originated.
563 *
564 * Return the length of the 802.11 (does not include a mesh control header)
565 */
Johannes Berg15ff6362009-11-17 13:34:04 +0100566int ieee80211_fill_mesh_addresses(struct ieee80211_hdr *hdr, __le16 *fc,
567 const u8 *meshda, const u8 *meshsa)
568{
Javier Cardona3c5772a2009-08-10 12:15:48 -0700569 if (is_multicast_ether_addr(meshda)) {
570 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
571 /* DA TA SA */
572 memcpy(hdr->addr1, meshda, ETH_ALEN);
573 memcpy(hdr->addr2, meshsa, ETH_ALEN);
574 memcpy(hdr->addr3, meshsa, ETH_ALEN);
575 return 24;
576 } else {
Javier Cardona2154c812011-09-07 17:49:53 -0700577 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Javier Cardona3c5772a2009-08-10 12:15:48 -0700578 /* RA TA DA SA */
Joe Perchesc84a67a2015-03-02 19:54:57 -0800579 eth_zero_addr(hdr->addr1); /* RA is resolved later */
Javier Cardona3c5772a2009-08-10 12:15:48 -0700580 memcpy(hdr->addr2, meshsa, ETH_ALEN);
581 memcpy(hdr->addr3, meshda, ETH_ALEN);
582 memcpy(hdr->addr4, meshsa, ETH_ALEN);
583 return 30;
584 }
585}
586
587/**
Johannes Berg902acc72008-02-23 15:17:19 +0100588 * ieee80211_new_mesh_header - create a new mesh header
Johannes Berg902acc72008-02-23 15:17:19 +0100589 * @sdata: mesh interface to be used
Johannes Bergbf7cd942013-02-15 14:40:31 +0100590 * @meshhdr: uninitialized mesh header
Javier Cardona61ad5392010-12-16 17:23:34 -0800591 * @addr4or5: 1st address in the ae header, which may correspond to address 4
592 * (if addr6 is NULL) or address 5 (if addr6 is present). It may
593 * be NULL.
594 * @addr6: 2nd address in the ae header, which corresponds to addr6 of the
595 * mesh frame
Johannes Berg902acc72008-02-23 15:17:19 +0100596 *
597 * Return the header length.
598 */
Andrzej Hajda5edfcee2015-09-25 08:42:00 +0200599unsigned int ieee80211_new_mesh_header(struct ieee80211_sub_if_data *sdata,
600 struct ieee80211s_hdr *meshhdr,
601 const char *addr4or5, const char *addr6)
Johannes Berg902acc72008-02-23 15:17:19 +0100602{
Johannes Bergbf7cd942013-02-15 14:40:31 +0100603 if (WARN_ON(!addr4or5 && addr6))
604 return 0;
605
Julia Lawall0c3cee72009-12-09 20:25:59 +0100606 memset(meshhdr, 0, sizeof(*meshhdr));
Johannes Bergbf7cd942013-02-15 14:40:31 +0100607
Johannes Berg472dbc42008-09-11 00:01:49 +0200608 meshhdr->ttl = sdata->u.mesh.mshcfg.dot11MeshTTL;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100609
610 /* FIXME: racy -- TX on multiple queues can be concurrent */
Johannes Berg472dbc42008-09-11 00:01:49 +0200611 put_unaligned(cpu_to_le32(sdata->u.mesh.mesh_seqnum), &meshhdr->seqnum);
612 sdata->u.mesh.mesh_seqnum++;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100613
Javier Cardona61ad5392010-12-16 17:23:34 -0800614 if (addr4or5 && !addr6) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700615 meshhdr->flags |= MESH_FLAGS_AE_A4;
Javier Cardona61ad5392010-12-16 17:23:34 -0800616 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +0100617 return 2 * ETH_ALEN;
Javier Cardona61ad5392010-12-16 17:23:34 -0800618 } else if (addr4or5 && addr6) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700619 meshhdr->flags |= MESH_FLAGS_AE_A5_A6;
Javier Cardona61ad5392010-12-16 17:23:34 -0800620 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
621 memcpy(meshhdr->eaddr2, addr6, ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +0100622 return 3 * ETH_ALEN;
Javier Cardona3c5772a2009-08-10 12:15:48 -0700623 }
Johannes Bergbf7cd942013-02-15 14:40:31 +0100624
625 return ETH_ALEN;
Johannes Berg902acc72008-02-23 15:17:19 +0100626}
627
Johannes Bergbf7cd942013-02-15 14:40:31 +0100628static void ieee80211_mesh_housekeeping(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +0200629{
Johannes Bergbf7cd942013-02-15 14:40:31 +0100630 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Marco Porschdf323812012-08-08 07:58:43 +0200631 u32 changed;
Johannes Berg472dbc42008-09-11 00:01:49 +0200632
Masashi Honma31f909a2015-02-24 22:42:16 +0900633 if (ifmsh->mshcfg.plink_timeout > 0)
634 ieee80211_sta_expire(sdata, ifmsh->mshcfg.plink_timeout * HZ);
Johannes Berg472dbc42008-09-11 00:01:49 +0200635 mesh_path_expire(sdata);
636
Marco Porschdf323812012-08-08 07:58:43 +0200637 changed = mesh_accept_plinks_update(sdata);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800638 ieee80211_mbss_info_change_notify(sdata, changed);
Johannes Berg472dbc42008-09-11 00:01:49 +0200639
Johannes Berg472dbc42008-09-11 00:01:49 +0200640 mod_timer(&ifmsh->housekeeping_timer,
Johannes Bergbf7cd942013-02-15 14:40:31 +0100641 round_jiffies(jiffies +
642 IEEE80211_MESH_HOUSEKEEPING_INTERVAL));
Johannes Berg472dbc42008-09-11 00:01:49 +0200643}
644
Rui Pauloe304bfd2009-11-09 23:46:56 +0000645static void ieee80211_mesh_rootpath(struct ieee80211_sub_if_data *sdata)
646{
647 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800648 u32 interval;
Rui Pauloe304bfd2009-11-09 23:46:56 +0000649
650 mesh_path_tx_root_frame(sdata);
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800651
652 if (ifmsh->mshcfg.dot11MeshHWMPRootMode == IEEE80211_PROACTIVE_RANN)
653 interval = ifmsh->mshcfg.dot11MeshHWMPRannInterval;
654 else
655 interval = ifmsh->mshcfg.dot11MeshHWMProotInterval;
656
Rui Pauloe304bfd2009-11-09 23:46:56 +0000657 mod_timer(&ifmsh->mesh_path_root_timer,
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800658 round_jiffies(TU_TO_EXP_TIME(interval)));
Rui Pauloe304bfd2009-11-09 23:46:56 +0000659}
660
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800661static int
662ieee80211_mesh_build_beacon(struct ieee80211_if_mesh *ifmsh)
663{
664 struct beacon_data *bcn;
665 int head_len, tail_len;
666 struct sk_buff *skb;
667 struct ieee80211_mgmt *mgmt;
668 struct ieee80211_chanctx_conf *chanctx_conf;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700669 struct mesh_csa_settings *csa;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200670 enum nl80211_band band;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800671 u8 *pos;
672 struct ieee80211_sub_if_data *sdata;
673 int hdr_len = offsetof(struct ieee80211_mgmt, u.beacon) +
674 sizeof(mgmt->u.beacon);
675
676 sdata = container_of(ifmsh, struct ieee80211_sub_if_data, u.mesh);
677 rcu_read_lock();
678 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
679 band = chanctx_conf->def.chan->band;
680 rcu_read_unlock();
681
682 head_len = hdr_len +
683 2 + /* NULL SSID */
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700684 /* Channel Switch Announcement */
685 2 + sizeof(struct ieee80211_channel_sw_ie) +
686 /* Mesh Channel Swith Parameters */
687 2 + sizeof(struct ieee80211_mesh_chansw_params_ie) +
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800688 2 + 8 + /* supported rates */
689 2 + 3; /* DS params */
690 tail_len = 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
691 2 + sizeof(struct ieee80211_ht_cap) +
692 2 + sizeof(struct ieee80211_ht_operation) +
693 2 + ifmsh->mesh_id_len +
694 2 + sizeof(struct ieee80211_meshconf_ie) +
695 2 + sizeof(__le16) + /* awake window */
Bob Copelandc85fb532015-08-27 09:00:18 -0400696 2 + sizeof(struct ieee80211_vht_cap) +
697 2 + sizeof(struct ieee80211_vht_operation) +
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800698 ifmsh->ie_len;
699
700 bcn = kzalloc(sizeof(*bcn) + head_len + tail_len, GFP_KERNEL);
701 /* need an skb for IE builders to operate on */
702 skb = dev_alloc_skb(max(head_len, tail_len));
703
704 if (!bcn || !skb)
705 goto out_free;
706
707 /*
708 * pointers go into the block we allocated,
709 * memory is | beacon_data | head | tail |
710 */
711 bcn->head = ((u8 *) bcn) + sizeof(*bcn);
712
713 /* fill in the head */
714 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
715 memset(mgmt, 0, hdr_len);
716 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
717 IEEE80211_STYPE_BEACON);
718 eth_broadcast_addr(mgmt->da);
719 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
720 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
721 ieee80211_mps_set_frame_flags(sdata, NULL, (void *) mgmt);
722 mgmt->u.beacon.beacon_int =
723 cpu_to_le16(sdata->vif.bss_conf.beacon_int);
724 mgmt->u.beacon.capab_info |= cpu_to_le16(
725 sdata->u.mesh.security ? WLAN_CAPABILITY_PRIVACY : 0);
726
727 pos = skb_put(skb, 2);
728 *pos++ = WLAN_EID_SSID;
729 *pos++ = 0x0;
730
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700731 rcu_read_lock();
732 csa = rcu_dereference(ifmsh->csa);
733 if (csa) {
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700734 pos = skb_put(skb, 13);
735 memset(pos, 0, 13);
736 *pos++ = WLAN_EID_CHANNEL_SWITCH;
737 *pos++ = 3;
738 *pos++ = 0x0;
739 *pos++ = ieee80211_frequency_to_channel(
740 csa->settings.chandef.chan->center_freq);
Chun-Yeow Yeoh8df734e2015-06-09 13:35:33 +0800741 bcn->csa_current_counter = csa->settings.count;
Michal Kazioraf296bd2014-06-05 14:21:36 +0200742 bcn->csa_counter_offsets[0] = hdr_len + 6;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700743 *pos++ = csa->settings.count;
744 *pos++ = WLAN_EID_CHAN_SWITCH_PARAM;
745 *pos++ = 6;
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200746 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT) {
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700747 *pos++ = ifmsh->mshcfg.dot11MeshTTL;
748 *pos |= WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
749 } else {
750 *pos++ = ifmsh->chsw_ttl;
751 }
752 *pos++ |= csa->settings.block_tx ?
753 WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT : 0x00;
754 put_unaligned_le16(WLAN_REASON_MESH_CHAN, pos);
755 pos += 2;
Chun-Yeow Yeohca91dc92013-11-12 10:31:48 +0800756 put_unaligned_le16(ifmsh->pre_value, pos);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700757 pos += 2;
758 }
759 rcu_read_unlock();
760
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800761 if (ieee80211_add_srates_ie(sdata, skb, true, band) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100762 mesh_add_ds_params_ie(sdata, skb))
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800763 goto out_free;
764
765 bcn->head_len = skb->len;
766 memcpy(bcn->head, skb->data, bcn->head_len);
767
768 /* now the tail */
769 skb_trim(skb, 0);
770 bcn->tail = bcn->head + bcn->head_len;
771
772 if (ieee80211_add_ext_srates_ie(sdata, skb, true, band) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100773 mesh_add_rsn_ie(sdata, skb) ||
774 mesh_add_ht_cap_ie(sdata, skb) ||
775 mesh_add_ht_oper_ie(sdata, skb) ||
776 mesh_add_meshid_ie(sdata, skb) ||
777 mesh_add_meshconf_ie(sdata, skb) ||
778 mesh_add_awake_window_ie(sdata, skb) ||
Bob Copelandc85fb532015-08-27 09:00:18 -0400779 mesh_add_vht_cap_ie(sdata, skb) ||
780 mesh_add_vht_oper_ie(sdata, skb) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100781 mesh_add_vendor_ies(sdata, skb))
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800782 goto out_free;
783
784 bcn->tail_len = skb->len;
785 memcpy(bcn->tail, skb->data, bcn->tail_len);
Thomas Pedersen43552be2013-12-15 13:14:16 -0800786 bcn->meshconf = (struct ieee80211_meshconf_ie *)
787 (bcn->tail + ifmsh->meshconf_offset);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800788
789 dev_kfree_skb(skb);
790 rcu_assign_pointer(ifmsh->beacon, bcn);
791 return 0;
792out_free:
793 kfree(bcn);
794 dev_kfree_skb(skb);
795 return -ENOMEM;
796}
797
798static int
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200799ieee80211_mesh_rebuild_beacon(struct ieee80211_sub_if_data *sdata)
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800800{
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800801 struct beacon_data *old_bcn;
802 int ret;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800803
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200804 old_bcn = rcu_dereference_protected(sdata->u.mesh.beacon,
805 lockdep_is_held(&sdata->wdev.mtx));
806 ret = ieee80211_mesh_build_beacon(&sdata->u.mesh);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800807 if (ret)
808 /* just reuse old beacon */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200809 return ret;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800810
811 if (old_bcn)
812 kfree_rcu(old_bcn, rcu_head);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200813 return 0;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800814}
815
816void ieee80211_mbss_info_change_notify(struct ieee80211_sub_if_data *sdata,
817 u32 changed)
818{
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700819 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
820 unsigned long bits = changed;
821 u32 bit;
822
823 if (!bits)
824 return;
825
826 /* if we race with running work, worst case this work becomes a noop */
827 for_each_set_bit(bit, &bits, sizeof(changed) * BITS_PER_BYTE)
828 set_bit(bit, &ifmsh->mbss_changed);
829 set_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags);
830 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800831}
832
833int ieee80211_start_mesh(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +0200834{
835 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
836 struct ieee80211_local *local = sdata->local;
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800837 u32 changed = BSS_CHANGED_BEACON |
838 BSS_CHANGED_BEACON_ENABLED |
839 BSS_CHANGED_HT |
840 BSS_CHANGED_BASIC_RATES |
841 BSS_CHANGED_BEACON_INT;
Johannes Berg472dbc42008-09-11 00:01:49 +0200842
Johannes Berg09b17472010-12-03 09:20:41 +0100843 local->fif_other_bss++;
844 /* mesh ifaces must set allmulti to forward mcast traffic */
845 atomic_inc(&local->iff_allmultis);
846 ieee80211_configure_filter(local);
847
Javier Cardonac7108a72010-12-16 17:37:50 -0800848 ifmsh->mesh_cc_id = 0; /* Disabled */
Javier Cardonadbf498f2012-03-31 11:31:32 -0700849 /* register sync ops from extensible synchronization framework */
850 ifmsh->sync_ops = ieee80211_mesh_sync_ops_get(ifmsh->mesh_sp_id);
Javier Cardonadbf498f2012-03-31 11:31:32 -0700851 ifmsh->sync_offset_clockdrift_max = 0;
Rui Paulo6b9ac442009-10-20 21:21:48 +0100852 set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
Rui Paulo63c57232009-11-09 23:46:57 +0000853 ieee80211_mesh_root_setup(ifmsh);
Johannes Berg64592c82010-06-10 10:21:31 +0200854 ieee80211_queue_work(&local->hw, &sdata->work);
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -0700855 sdata->vif.bss_conf.ht_operation_mode =
856 ifmsh->mshcfg.ht_opmode;
Johannes Bergd6a83222012-12-14 14:06:28 +0100857 sdata->vif.bss_conf.enable_beacon = true;
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800858
Thomas Pedersen39886b62013-02-13 12:14:19 -0800859 changed |= ieee80211_mps_local_status_update(sdata);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100860
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800861 if (ieee80211_mesh_build_beacon(ifmsh)) {
862 ieee80211_stop_mesh(sdata);
863 return -ENOMEM;
864 }
865
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800866 ieee80211_recalc_dtim(local, sdata);
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800867 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Bergc405c622012-07-30 19:44:12 +0200868
869 netif_carrier_on(sdata->dev);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800870 return 0;
Johannes Berg472dbc42008-09-11 00:01:49 +0200871}
872
873void ieee80211_stop_mesh(struct ieee80211_sub_if_data *sdata)
874{
Johannes Berg09b17472010-12-03 09:20:41 +0100875 struct ieee80211_local *local = sdata->local;
Johannes Berg29cbe682010-12-03 09:20:44 +0100876 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800877 struct beacon_data *bcn;
Johannes Berg29cbe682010-12-03 09:20:44 +0100878
Johannes Bergc405c622012-07-30 19:44:12 +0200879 netif_carrier_off(sdata->dev);
880
Maital Hahnc37a54a2016-07-13 14:44:41 +0300881 /* flush STAs and mpaths on this iface */
882 sta_info_flush(sdata);
883 mesh_path_flush_by_iface(sdata);
884
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700885 /* stop the beacon */
Johannes Berg29cbe682010-12-03 09:20:44 +0100886 ifmsh->mesh_id_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +0100887 sdata->vif.bss_conf.enable_beacon = false;
888 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg29cbe682010-12-03 09:20:44 +0100889 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Maital Hahnc37a54a2016-07-13 14:44:41 +0300890
891 /* remove beacon */
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800892 bcn = rcu_dereference_protected(ifmsh->beacon,
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200893 lockdep_is_held(&sdata->wdev.mtx));
Monam Agarwal0c2bef462014-03-24 00:51:43 +0530894 RCU_INIT_POINTER(ifmsh->beacon, NULL);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800895 kfree_rcu(bcn, rcu_head);
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700896
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100897 /* free all potentially still buffered group-addressed frames */
898 local->total_ps_buffered -= skb_queue_len(&ifmsh->ps.bc_buf);
899 skb_queue_purge(&ifmsh->ps.bc_buf);
900
Johannes Berg472dbc42008-09-11 00:01:49 +0200901 del_timer_sync(&sdata->u.mesh.housekeeping_timer);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000902 del_timer_sync(&sdata->u.mesh.mesh_path_root_timer);
Johannes Bergdd4c9262012-08-01 21:03:21 +0200903 del_timer_sync(&sdata->u.mesh.mesh_path_timer);
Johannes Berg09b17472010-12-03 09:20:41 +0100904
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700905 /* clear any mesh work (for next join) we may have accrued */
906 ifmsh->wrkq_flags = 0;
907 ifmsh->mbss_changed = 0;
908
Johannes Berg09b17472010-12-03 09:20:41 +0100909 local->fif_other_bss--;
910 atomic_dec(&local->iff_allmultis);
911 ieee80211_configure_filter(local);
Johannes Berg472dbc42008-09-11 00:01:49 +0200912}
913
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700914static bool
915ieee80211_mesh_process_chnswitch(struct ieee80211_sub_if_data *sdata,
916 struct ieee802_11_elems *elems, bool beacon)
917{
918 struct cfg80211_csa_settings params;
919 struct ieee80211_csa_ie csa_ie;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700920 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200921 enum nl80211_band band = ieee80211_get_sdata_band(sdata);
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200922 int err;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700923 u32 sta_flags;
924
Michal Kaziordbd72852014-01-29 07:56:21 +0100925 sdata_assert_lock(sdata);
926
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700927 sta_flags = IEEE80211_STA_DISABLE_VHT;
928 switch (sdata->vif.bss_conf.chandef.width) {
929 case NL80211_CHAN_WIDTH_20_NOHT:
930 sta_flags |= IEEE80211_STA_DISABLE_HT;
931 case NL80211_CHAN_WIDTH_20:
932 sta_flags |= IEEE80211_STA_DISABLE_40MHZ;
933 break;
934 default:
935 break;
936 }
937
938 memset(&params, 0, sizeof(params));
939 memset(&csa_ie, 0, sizeof(csa_ie));
Luciano Coelho84469a42014-10-28 13:33:04 +0200940 err = ieee80211_parse_ch_switch_ie(sdata, elems, band,
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700941 sta_flags, sdata->vif.addr,
942 &csa_ie);
943 if (err < 0)
944 return false;
945 if (err)
946 return false;
947
948 params.chandef = csa_ie.chandef;
949 params.count = csa_ie.count;
950
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700951 if (!cfg80211_chandef_usable(sdata->local->hw.wiphy, &params.chandef,
952 IEEE80211_CHAN_DISABLED)) {
953 sdata_info(sdata,
954 "mesh STA %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), aborting\n",
955 sdata->vif.addr,
956 params.chandef.chan->center_freq,
957 params.chandef.width,
958 params.chandef.center_freq1,
959 params.chandef.center_freq2);
960 return false;
961 }
962
963 err = cfg80211_chandef_dfs_required(sdata->local->hw.wiphy,
Luciano Coelho2beb6dab2014-02-18 11:40:36 +0200964 &params.chandef,
965 NL80211_IFTYPE_MESH_POINT);
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700966 if (err < 0)
967 return false;
Luciano Coelho2beb6dab2014-02-18 11:40:36 +0200968 if (err > 0)
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700969 /* TODO: DFS not (yet) supported */
970 return false;
Luciano Coelho2beb6dab2014-02-18 11:40:36 +0200971
972 params.radar_required = err;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700973
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200974 if (cfg80211_chandef_identical(&params.chandef,
975 &sdata->vif.bss_conf.chandef)) {
976 mcsa_dbg(sdata,
977 "received csa with an identical chandef, ignoring\n");
978 return true;
979 }
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700980
981 mcsa_dbg(sdata,
982 "received channel switch announcement to go to channel %d MHz\n",
983 params.chandef.chan->center_freq);
984
985 params.block_tx = csa_ie.mode & WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +0800986 if (beacon) {
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700987 ifmsh->chsw_ttl = csa_ie.ttl - 1;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +0800988 if (ifmsh->pre_value >= csa_ie.pre_value)
989 return false;
990 ifmsh->pre_value = csa_ie.pre_value;
991 }
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700992
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200993 if (ifmsh->chsw_ttl >= ifmsh->mshcfg.dot11MeshTTL)
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +0800994 return false;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700995
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200996 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_REPEATER;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700997
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200998 if (ieee80211_channel_switch(sdata->local->hw.wiphy, sdata->dev,
999 &params) < 0)
1000 return false;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001001
1002 return true;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001003}
1004
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001005static void
1006ieee80211_mesh_rx_probe_req(struct ieee80211_sub_if_data *sdata,
1007 struct ieee80211_mgmt *mgmt, size_t len)
1008{
1009 struct ieee80211_local *local = sdata->local;
1010 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1011 struct sk_buff *presp;
1012 struct beacon_data *bcn;
1013 struct ieee80211_mgmt *hdr;
1014 struct ieee802_11_elems elems;
1015 size_t baselen;
Johannes Berg511044e2013-03-07 22:47:00 +01001016 u8 *pos;
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001017
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001018 pos = mgmt->u.probe_req.variable;
1019 baselen = (u8 *) pos - (u8 *) mgmt;
1020 if (baselen > len)
1021 return;
1022
Johannes Bergb2e506b2013-03-26 14:54:16 +01001023 ieee802_11_parse_elems(pos, len - baselen, false, &elems);
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001024
Chun-Yeow Yeoha4ef66a2013-08-22 10:28:58 -07001025 if (!elems.mesh_id)
1026 return;
1027
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001028 /* 802.11-2012 10.1.4.3.2 */
1029 if ((!ether_addr_equal(mgmt->da, sdata->vif.addr) &&
1030 !is_broadcast_ether_addr(mgmt->da)) ||
1031 elems.ssid_len != 0)
1032 return;
1033
1034 if (elems.mesh_id_len != 0 &&
1035 (elems.mesh_id_len != ifmsh->mesh_id_len ||
1036 memcmp(elems.mesh_id, ifmsh->mesh_id, ifmsh->mesh_id_len)))
1037 return;
1038
1039 rcu_read_lock();
1040 bcn = rcu_dereference(ifmsh->beacon);
1041
1042 if (!bcn)
1043 goto out;
1044
1045 presp = dev_alloc_skb(local->tx_headroom +
1046 bcn->head_len + bcn->tail_len);
1047 if (!presp)
1048 goto out;
1049
1050 skb_reserve(presp, local->tx_headroom);
1051 memcpy(skb_put(presp, bcn->head_len), bcn->head, bcn->head_len);
1052 memcpy(skb_put(presp, bcn->tail_len), bcn->tail, bcn->tail_len);
1053 hdr = (struct ieee80211_mgmt *) presp->data;
1054 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1055 IEEE80211_STYPE_PROBE_RESP);
1056 memcpy(hdr->da, mgmt->sa, ETH_ALEN);
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001057 IEEE80211_SKB_CB(presp)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
1058 ieee80211_tx_skb(sdata, presp);
1059out:
1060 rcu_read_unlock();
1061}
1062
Johannes Berg472dbc42008-09-11 00:01:49 +02001063static void ieee80211_mesh_rx_bcn_presp(struct ieee80211_sub_if_data *sdata,
1064 u16 stype,
1065 struct ieee80211_mgmt *mgmt,
1066 size_t len,
1067 struct ieee80211_rx_status *rx_status)
1068{
Johannes Bergc6a1fa12008-10-07 12:04:32 +02001069 struct ieee80211_local *local = sdata->local;
Javier Cardonadbf498f2012-03-31 11:31:32 -07001070 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02001071 struct ieee802_11_elems elems;
1072 struct ieee80211_channel *channel;
Johannes Berg472dbc42008-09-11 00:01:49 +02001073 size_t baselen;
1074 int freq;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001075 enum nl80211_band band = rx_status->band;
Johannes Berg472dbc42008-09-11 00:01:49 +02001076
1077 /* ignore ProbeResp to foreign address */
1078 if (stype == IEEE80211_STYPE_PROBE_RESP &&
Joe Perchesb203ca32012-05-08 18:56:52 +00001079 !ether_addr_equal(mgmt->da, sdata->vif.addr))
Johannes Berg472dbc42008-09-11 00:01:49 +02001080 return;
1081
1082 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1083 if (baselen > len)
1084 return;
1085
1086 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01001087 false, &elems);
Johannes Berg472dbc42008-09-11 00:01:49 +02001088
Thomas Pedersen9a90bc82012-10-20 19:03:10 -07001089 /* ignore non-mesh or secure / unsecure mismatch */
1090 if ((!elems.mesh_id || !elems.mesh_config) ||
1091 (elems.rsn && sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) ||
1092 (!elems.rsn && sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE))
Javier Cardona5cff5e02011-04-07 15:08:29 -07001093 return;
1094
Johannes Berg1cd8e882013-03-27 14:30:12 +01001095 if (elems.ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001096 freq = ieee80211_channel_to_frequency(elems.ds_params[0], band);
Johannes Berg472dbc42008-09-11 00:01:49 +02001097 else
1098 freq = rx_status->freq;
1099
1100 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1101
1102 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1103 return;
1104
Thomas Pedersen9a90bc82012-10-20 19:03:10 -07001105 if (mesh_matches_local(sdata, &elems))
Thomas Pedersenf743ff42012-04-18 19:23:43 -07001106 mesh_neighbour_update(sdata, mgmt->sa, &elems);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001107
1108 if (ifmsh->sync_ops)
1109 ifmsh->sync_ops->rx_bcn_presp(sdata,
1110 stype, mgmt, &elems, rx_status);
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001111
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001112 if (ifmsh->csa_role != IEEE80211_MESH_CSA_ROLE_INIT &&
1113 !sdata->vif.csa_active)
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001114 ieee80211_mesh_process_chnswitch(sdata, &elems, true);
Johannes Berg472dbc42008-09-11 00:01:49 +02001115}
1116
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001117int ieee80211_mesh_finish_csa(struct ieee80211_sub_if_data *sdata)
1118{
1119 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1120 struct mesh_csa_settings *tmp_csa_settings;
1121 int ret = 0;
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001122 int changed = 0;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001123
1124 /* Reset the TTL value and Initiator flag */
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001125 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001126 ifmsh->chsw_ttl = 0;
1127
1128 /* Remove the CSA and MCSP elements from the beacon */
1129 tmp_csa_settings = rcu_dereference(ifmsh->csa);
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301130 RCU_INIT_POINTER(ifmsh->csa, NULL);
Luciano Coelho66e01cf2014-01-13 19:43:00 +02001131 if (tmp_csa_settings)
1132 kfree_rcu(tmp_csa_settings, rcu_head);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001133 ret = ieee80211_mesh_rebuild_beacon(sdata);
1134 if (ret)
1135 return -EINVAL;
1136
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001137 changed |= BSS_CHANGED_BEACON;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001138
1139 mcsa_dbg(sdata, "complete switching to center freq %d MHz",
1140 sdata->vif.bss_conf.chandef.chan->center_freq);
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001141 return changed;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001142}
1143
1144int ieee80211_mesh_csa_beacon(struct ieee80211_sub_if_data *sdata,
Luciano Coelho66e01cf2014-01-13 19:43:00 +02001145 struct cfg80211_csa_settings *csa_settings)
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001146{
1147 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1148 struct mesh_csa_settings *tmp_csa_settings;
1149 int ret = 0;
1150
1151 tmp_csa_settings = kmalloc(sizeof(*tmp_csa_settings),
1152 GFP_ATOMIC);
1153 if (!tmp_csa_settings)
1154 return -ENOMEM;
1155
1156 memcpy(&tmp_csa_settings->settings, csa_settings,
1157 sizeof(struct cfg80211_csa_settings));
1158
1159 rcu_assign_pointer(ifmsh->csa, tmp_csa_settings);
1160
1161 ret = ieee80211_mesh_rebuild_beacon(sdata);
1162 if (ret) {
1163 tmp_csa_settings = rcu_dereference(ifmsh->csa);
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301164 RCU_INIT_POINTER(ifmsh->csa, NULL);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001165 kfree_rcu(tmp_csa_settings, rcu_head);
1166 return ret;
1167 }
1168
Luciano Coelhob58e81e2014-01-13 19:42:59 +02001169 return BSS_CHANGED_BEACON;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001170}
1171
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001172static int mesh_fwd_csa_frame(struct ieee80211_sub_if_data *sdata,
1173 struct ieee80211_mgmt *mgmt, size_t len)
1174{
1175 struct ieee80211_mgmt *mgmt_fwd;
1176 struct sk_buff *skb;
1177 struct ieee80211_local *local = sdata->local;
1178 u8 *pos = mgmt->u.action.u.chan_switch.variable;
1179 size_t offset_ttl;
1180
1181 skb = dev_alloc_skb(local->tx_headroom + len);
1182 if (!skb)
1183 return -ENOMEM;
1184 skb_reserve(skb, local->tx_headroom);
1185 mgmt_fwd = (struct ieee80211_mgmt *) skb_put(skb, len);
1186
1187 /* offset_ttl is based on whether the secondary channel
Antonio Ospiteb314c662014-06-04 14:03:49 +02001188 * offset is available or not. Subtract 1 from the mesh TTL
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001189 * and disable the initiator flag before forwarding.
1190 */
1191 offset_ttl = (len < 42) ? 7 : 10;
1192 *(pos + offset_ttl) -= 1;
1193 *(pos + offset_ttl + 1) &= ~WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
1194
1195 memcpy(mgmt_fwd, mgmt, len);
1196 eth_broadcast_addr(mgmt_fwd->da);
1197 memcpy(mgmt_fwd->sa, sdata->vif.addr, ETH_ALEN);
1198 memcpy(mgmt_fwd->bssid, sdata->vif.addr, ETH_ALEN);
1199
1200 ieee80211_tx_skb(sdata, skb);
1201 return 0;
1202}
1203
1204static void mesh_rx_csa_frame(struct ieee80211_sub_if_data *sdata,
1205 struct ieee80211_mgmt *mgmt, size_t len)
1206{
1207 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1208 struct ieee802_11_elems elems;
1209 u16 pre_value;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001210 bool fwd_csa = true;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001211 size_t baselen;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001212 u8 *pos;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001213
1214 if (mgmt->u.action.u.measurement.action_code !=
1215 WLAN_ACTION_SPCT_CHL_SWITCH)
1216 return;
1217
1218 pos = mgmt->u.action.u.chan_switch.variable;
1219 baselen = offsetof(struct ieee80211_mgmt,
1220 u.action.u.chan_switch.variable);
1221 ieee802_11_parse_elems(pos, len - baselen, false, &elems);
1222
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001223 ifmsh->chsw_ttl = elems.mesh_chansw_params_ie->mesh_ttl;
1224 if (!--ifmsh->chsw_ttl)
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001225 fwd_csa = false;
1226
1227 pre_value = le16_to_cpu(elems.mesh_chansw_params_ie->mesh_pre_value);
1228 if (ifmsh->pre_value >= pre_value)
1229 return;
1230
1231 ifmsh->pre_value = pre_value;
1232
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001233 if (!sdata->vif.csa_active &&
1234 !ieee80211_mesh_process_chnswitch(sdata, &elems, false)) {
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001235 mcsa_dbg(sdata, "Failed to process CSA action frame");
1236 return;
1237 }
1238
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001239 /* forward or re-broadcast the CSA frame */
1240 if (fwd_csa) {
1241 if (mesh_fwd_csa_frame(sdata, mgmt, len) < 0)
1242 mcsa_dbg(sdata, "Failed to forward the CSA frame");
1243 }
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001244}
1245
Johannes Berg472dbc42008-09-11 00:01:49 +02001246static void ieee80211_mesh_rx_mgmt_action(struct ieee80211_sub_if_data *sdata,
1247 struct ieee80211_mgmt *mgmt,
1248 size_t len,
1249 struct ieee80211_rx_status *rx_status)
1250{
1251 switch (mgmt->u.action.category) {
Thomas Pedersen8db09852011-08-12 20:01:00 -07001252 case WLAN_CATEGORY_SELF_PROTECTED:
1253 switch (mgmt->u.action.u.self_prot.action_code) {
1254 case WLAN_SP_MESH_PEERING_OPEN:
1255 case WLAN_SP_MESH_PEERING_CLOSE:
1256 case WLAN_SP_MESH_PEERING_CONFIRM:
1257 mesh_rx_plink_frame(sdata, mgmt, len, rx_status);
1258 break;
1259 }
Johannes Berg472dbc42008-09-11 00:01:49 +02001260 break;
Thomas Pedersen25d49e42011-08-11 19:35:15 -07001261 case WLAN_CATEGORY_MESH_ACTION:
1262 if (mesh_action_is_path_sel(mgmt))
1263 mesh_rx_path_sel_frame(sdata, mgmt, len);
Johannes Berg472dbc42008-09-11 00:01:49 +02001264 break;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001265 case WLAN_CATEGORY_SPECTRUM_MGMT:
1266 mesh_rx_csa_frame(sdata, mgmt, len);
1267 break;
Johannes Berg472dbc42008-09-11 00:01:49 +02001268 }
1269}
1270
Johannes Berg1fa57d02010-06-10 10:21:32 +02001271void ieee80211_mesh_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
1272 struct sk_buff *skb)
Johannes Berg472dbc42008-09-11 00:01:49 +02001273{
1274 struct ieee80211_rx_status *rx_status;
Johannes Berg472dbc42008-09-11 00:01:49 +02001275 struct ieee80211_mgmt *mgmt;
1276 u16 stype;
1277
Thomas Pedersenecccd072013-06-10 13:17:21 -07001278 sdata_lock(sdata);
1279
1280 /* mesh already went down */
Johannes Berg1693d342014-01-22 10:08:57 +01001281 if (!sdata->u.mesh.mesh_id_len)
Thomas Pedersenecccd072013-06-10 13:17:21 -07001282 goto out;
1283
Johannes Bergf1d58c22009-06-17 13:13:00 +02001284 rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Berg472dbc42008-09-11 00:01:49 +02001285 mgmt = (struct ieee80211_mgmt *) skb->data;
1286 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
1287
1288 switch (stype) {
1289 case IEEE80211_STYPE_PROBE_RESP:
1290 case IEEE80211_STYPE_BEACON:
1291 ieee80211_mesh_rx_bcn_presp(sdata, stype, mgmt, skb->len,
1292 rx_status);
1293 break;
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001294 case IEEE80211_STYPE_PROBE_REQ:
1295 ieee80211_mesh_rx_probe_req(sdata, mgmt, skb->len);
1296 break;
Johannes Berg472dbc42008-09-11 00:01:49 +02001297 case IEEE80211_STYPE_ACTION:
1298 ieee80211_mesh_rx_mgmt_action(sdata, mgmt, skb->len, rx_status);
1299 break;
1300 }
Thomas Pedersenecccd072013-06-10 13:17:21 -07001301out:
1302 sdata_unlock(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001303}
1304
Thomas Pedersenf81a9de2013-06-13 15:54:41 -07001305static void mesh_bss_info_changed(struct ieee80211_sub_if_data *sdata)
1306{
1307 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1308 u32 bit, changed = 0;
1309
1310 for_each_set_bit(bit, &ifmsh->mbss_changed,
1311 sizeof(changed) * BITS_PER_BYTE) {
1312 clear_bit(bit, &ifmsh->mbss_changed);
1313 changed |= BIT(bit);
1314 }
1315
1316 if (sdata->vif.bss_conf.enable_beacon &&
1317 (changed & (BSS_CHANGED_BEACON |
1318 BSS_CHANGED_HT |
1319 BSS_CHANGED_BASIC_RATES |
1320 BSS_CHANGED_BEACON_INT)))
1321 if (ieee80211_mesh_rebuild_beacon(sdata))
1322 return;
1323
1324 ieee80211_bss_info_change_notify(sdata, changed);
1325}
1326
Johannes Berg1fa57d02010-06-10 10:21:32 +02001327void ieee80211_mesh_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +02001328{
Johannes Berg472dbc42008-09-11 00:01:49 +02001329 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02001330
Thomas Pedersenecccd072013-06-10 13:17:21 -07001331 sdata_lock(sdata);
1332
1333 /* mesh already went down */
Johannes Berg1693d342014-01-22 10:08:57 +01001334 if (!sdata->u.mesh.mesh_id_len)
Thomas Pedersenecccd072013-06-10 13:17:21 -07001335 goto out;
1336
Johannes Berg472dbc42008-09-11 00:01:49 +02001337 if (ifmsh->preq_queue_len &&
1338 time_after(jiffies,
1339 ifmsh->last_preq + msecs_to_jiffies(ifmsh->mshcfg.dot11MeshHWMPpreqMinInterval)))
1340 mesh_path_start_discovery(sdata);
1341
Javier Cardona18889232009-08-10 12:15:52 -07001342 if (test_and_clear_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags))
Johannes Bergbf7cd942013-02-15 14:40:31 +01001343 ieee80211_mesh_housekeeping(sdata);
Rui Pauloe304bfd2009-11-09 23:46:56 +00001344
1345 if (test_and_clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags))
1346 ieee80211_mesh_rootpath(sdata);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001347
1348 if (test_and_clear_bit(MESH_WORK_DRIFT_ADJUST, &ifmsh->wrkq_flags))
Masashi Honma445cd452016-12-08 10:15:51 +09001349 mesh_sync_adjust_tsf(sdata);
Thomas Pedersenecccd072013-06-10 13:17:21 -07001350
Thomas Pedersenf81a9de2013-06-13 15:54:41 -07001351 if (test_and_clear_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags))
1352 mesh_bss_info_changed(sdata);
Thomas Pedersenecccd072013-06-10 13:17:21 -07001353out:
1354 sdata_unlock(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001355}
1356
Johannes Berg472dbc42008-09-11 00:01:49 +02001357
Johannes Berg902acc72008-02-23 15:17:19 +01001358void ieee80211_mesh_init_sdata(struct ieee80211_sub_if_data *sdata)
1359{
Johannes Berg472dbc42008-09-11 00:01:49 +02001360 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Bergad2d2232012-12-14 14:34:25 +01001361 static u8 zero_addr[ETH_ALEN] = {};
Johannes Berg902acc72008-02-23 15:17:19 +01001362
Johannes Berg472dbc42008-09-11 00:01:49 +02001363 setup_timer(&ifmsh->housekeeping_timer,
1364 ieee80211_mesh_housekeeping_timer,
1365 (unsigned long) sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001366
Johannes Berg472dbc42008-09-11 00:01:49 +02001367 ifmsh->accepting_plinks = true;
Johannes Berg472dbc42008-09-11 00:01:49 +02001368 atomic_set(&ifmsh->mpaths, 0);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001369 mesh_rmc_init(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001370 ifmsh->last_preq = jiffies;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001371 ifmsh->next_perr = jiffies;
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001372 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
Johannes Berg902acc72008-02-23 15:17:19 +01001373 /* Allocate all mesh structures when creating the first mesh interface. */
1374 if (!mesh_allocated)
1375 ieee80211s_init();
Bob Copeland2bdaf382016-02-28 20:03:56 -05001376
1377 mesh_pathtbl_init(sdata);
1378
Johannes Berg472dbc42008-09-11 00:01:49 +02001379 setup_timer(&ifmsh->mesh_path_timer,
Johannes Berg902acc72008-02-23 15:17:19 +01001380 ieee80211_mesh_path_timer,
1381 (unsigned long) sdata);
Rui Pauloe304bfd2009-11-09 23:46:56 +00001382 setup_timer(&ifmsh->mesh_path_root_timer,
1383 ieee80211_mesh_path_root_timer,
1384 (unsigned long) sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001385 INIT_LIST_HEAD(&ifmsh->preq_queue.list);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001386 skb_queue_head_init(&ifmsh->ps.bc_buf);
Johannes Berg472dbc42008-09-11 00:01:49 +02001387 spin_lock_init(&ifmsh->mesh_preq_queue_lock);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001388 spin_lock_init(&ifmsh->sync_offset_lock);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001389 RCU_INIT_POINTER(ifmsh->beacon, NULL);
Johannes Bergad2d2232012-12-14 14:34:25 +01001390
1391 sdata->vif.bss_conf.bssid = zero_addr;
Johannes Berg472dbc42008-09-11 00:01:49 +02001392}
Bob Copeland0371a082016-03-26 11:27:18 -04001393
1394void ieee80211_mesh_teardown_sdata(struct ieee80211_sub_if_data *sdata)
1395{
1396 mesh_rmc_free(sdata);
1397 mesh_pathtbl_unregister(sdata);
1398}