blob: 6e7b6a07b7d536a64f7e9ec296adf2bbba8d961c [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 return 0;
283}
284
Johannes Bergbf7cd942013-02-15 14:40:31 +0100285int mesh_add_meshid_ie(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700286{
287 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
288 u8 *pos;
289
290 if (skb_tailroom(skb) < 2 + ifmsh->mesh_id_len)
291 return -ENOMEM;
292
293 pos = skb_put(skb, 2 + ifmsh->mesh_id_len);
294 *pos++ = WLAN_EID_MESH_ID;
295 *pos++ = ifmsh->mesh_id_len;
296 if (ifmsh->mesh_id_len)
297 memcpy(pos, ifmsh->mesh_id, ifmsh->mesh_id_len);
298
299 return 0;
300}
301
Johannes Bergbf7cd942013-02-15 14:40:31 +0100302static int mesh_add_awake_window_ie(struct ieee80211_sub_if_data *sdata,
303 struct sk_buff *skb)
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100304{
305 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
306 u8 *pos;
307
308 /* see IEEE802.11-2012 13.14.6 */
309 if (ifmsh->ps_peers_light_sleep == 0 &&
310 ifmsh->ps_peers_deep_sleep == 0 &&
311 ifmsh->nonpeer_pm == NL80211_MESH_POWER_ACTIVE)
312 return 0;
313
314 if (skb_tailroom(skb) < 4)
315 return -ENOMEM;
316
317 pos = skb_put(skb, 2 + 2);
318 *pos++ = WLAN_EID_MESH_AWAKE_WINDOW;
319 *pos++ = 2;
320 put_unaligned_le16(ifmsh->mshcfg.dot11MeshAwakeWindowDuration, pos);
321
322 return 0;
323}
324
Johannes Bergbf7cd942013-02-15 14:40:31 +0100325int mesh_add_vendor_ies(struct ieee80211_sub_if_data *sdata,
326 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700327{
328 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
329 u8 offset, len;
330 const u8 *data;
331
332 if (!ifmsh->ie || !ifmsh->ie_len)
333 return 0;
334
335 /* fast-forward to vendor IEs */
336 offset = ieee80211_ie_split_vendor(ifmsh->ie, ifmsh->ie_len, 0);
337
Thorsten Horstmannda7061c2017-02-03 14:38:29 +0100338 if (offset < ifmsh->ie_len) {
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700339 len = ifmsh->ie_len - offset;
340 data = ifmsh->ie + offset;
341 if (skb_tailroom(skb) < len)
342 return -ENOMEM;
343 memcpy(skb_put(skb, len), data, len);
344 }
345
346 return 0;
347}
348
Johannes Bergbf7cd942013-02-15 14:40:31 +0100349int mesh_add_rsn_ie(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700350{
351 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
352 u8 len = 0;
353 const u8 *data;
354
355 if (!ifmsh->ie || !ifmsh->ie_len)
356 return 0;
357
358 /* find RSN IE */
Bob Copelanda40a8c12014-04-15 10:43:07 -0400359 data = cfg80211_find_ie(WLAN_EID_RSN, ifmsh->ie, ifmsh->ie_len);
360 if (!data)
361 return 0;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700362
Bob Copelanda40a8c12014-04-15 10:43:07 -0400363 len = data[1] + 2;
364
365 if (skb_tailroom(skb) < len)
366 return -ENOMEM;
367 memcpy(skb_put(skb, len), data, len);
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700368
369 return 0;
370}
371
Johannes Bergbf7cd942013-02-15 14:40:31 +0100372static int mesh_add_ds_params_ie(struct ieee80211_sub_if_data *sdata,
373 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700374{
Johannes Berg55de9082012-07-26 17:24:39 +0200375 struct ieee80211_chanctx_conf *chanctx_conf;
376 struct ieee80211_channel *chan;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700377 u8 *pos;
378
379 if (skb_tailroom(skb) < 3)
380 return -ENOMEM;
381
Johannes Berg55de9082012-07-26 17:24:39 +0200382 rcu_read_lock();
383 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
384 if (WARN_ON(!chanctx_conf)) {
385 rcu_read_unlock();
386 return -EINVAL;
387 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100388 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200389 rcu_read_unlock();
390
Emanuel Taube601513a2013-02-06 14:17:17 +0100391 pos = skb_put(skb, 2 + 1);
392 *pos++ = WLAN_EID_DS_PARAMS;
393 *pos++ = 1;
394 *pos++ = ieee80211_frequency_to_channel(chan->center_freq);
Rui Paulobe125c62009-11-09 23:46:54 +0000395
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700396 return 0;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100397}
398
Johannes Bergbf7cd942013-02-15 14:40:31 +0100399int mesh_add_ht_cap_ie(struct ieee80211_sub_if_data *sdata,
400 struct sk_buff *skb)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700401{
402 struct ieee80211_local *local = sdata->local;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200403 enum nl80211_band band = ieee80211_get_sdata_band(sdata);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700404 struct ieee80211_supported_band *sband;
405 u8 *pos;
406
Johannes Berg55de9082012-07-26 17:24:39 +0200407 sband = local->hw.wiphy->bands[band];
Thomas Pedersen176f3602011-10-26 14:47:27 -0700408 if (!sband->ht_cap.ht_supported ||
Simon Wunderlich0418a442013-05-16 13:00:31 +0200409 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
410 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
411 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700412 return 0;
413
414 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_cap))
415 return -ENOMEM;
416
417 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_cap));
Ben Greearef96a8422011-11-18 11:32:00 -0800418 ieee80211_ie_build_ht_cap(pos, &sband->ht_cap, sband->ht_cap.cap);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700419
420 return 0;
421}
422
Johannes Bergbf7cd942013-02-15 14:40:31 +0100423int mesh_add_ht_oper_ie(struct ieee80211_sub_if_data *sdata,
424 struct sk_buff *skb)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700425{
426 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +0200427 struct ieee80211_chanctx_conf *chanctx_conf;
428 struct ieee80211_channel *channel;
Johannes Berg55de9082012-07-26 17:24:39 +0200429 struct ieee80211_supported_band *sband;
430 struct ieee80211_sta_ht_cap *ht_cap;
Thomas Pedersen176f3602011-10-26 14:47:27 -0700431 u8 *pos;
432
Johannes Berg55de9082012-07-26 17:24:39 +0200433 rcu_read_lock();
434 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
435 if (WARN_ON(!chanctx_conf)) {
436 rcu_read_unlock();
437 return -EINVAL;
438 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100439 channel = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200440 rcu_read_unlock();
441
442 sband = local->hw.wiphy->bands[channel->band];
443 ht_cap = &sband->ht_cap;
444
Bob Copelandc85fb532015-08-27 09:00:18 -0400445 if (!ht_cap->ht_supported ||
446 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
447 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
448 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700449 return 0;
450
Johannes Berg074d46d2012-03-15 19:45:16 +0100451 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_operation))
Thomas Pedersen176f3602011-10-26 14:47:27 -0700452 return -ENOMEM;
453
Johannes Berg074d46d2012-03-15 19:45:16 +0100454 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_operation));
Johannes Berg4bf88532012-11-09 11:39:59 +0100455 ieee80211_ie_build_ht_oper(pos, ht_cap, &sdata->vif.bss_conf.chandef,
Arik Nemtsov57f255f2015-10-25 10:59:34 +0200456 sdata->vif.bss_conf.ht_operation_mode,
457 false);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700458
459 return 0;
460}
Johannes Bergbf7cd942013-02-15 14:40:31 +0100461
Bob Copelandc85fb532015-08-27 09:00:18 -0400462int mesh_add_vht_cap_ie(struct ieee80211_sub_if_data *sdata,
463 struct sk_buff *skb)
464{
465 struct ieee80211_local *local = sdata->local;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200466 enum nl80211_band band = ieee80211_get_sdata_band(sdata);
Bob Copelandc85fb532015-08-27 09:00:18 -0400467 struct ieee80211_supported_band *sband;
468 u8 *pos;
469
470 sband = local->hw.wiphy->bands[band];
471 if (!sband->vht_cap.vht_supported ||
472 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
473 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
474 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
475 return 0;
476
477 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_vht_cap))
478 return -ENOMEM;
479
480 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_cap));
481 ieee80211_ie_build_vht_cap(pos, &sband->vht_cap, sband->vht_cap.cap);
482
483 return 0;
484}
485
486int mesh_add_vht_oper_ie(struct ieee80211_sub_if_data *sdata,
487 struct sk_buff *skb)
488{
489 struct ieee80211_local *local = sdata->local;
490 struct ieee80211_chanctx_conf *chanctx_conf;
491 struct ieee80211_channel *channel;
492 struct ieee80211_supported_band *sband;
493 struct ieee80211_sta_vht_cap *vht_cap;
494 u8 *pos;
495
496 rcu_read_lock();
497 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
498 if (WARN_ON(!chanctx_conf)) {
499 rcu_read_unlock();
500 return -EINVAL;
501 }
502 channel = chanctx_conf->def.chan;
503 rcu_read_unlock();
504
505 sband = local->hw.wiphy->bands[channel->band];
506 vht_cap = &sband->vht_cap;
507
508 if (!vht_cap->vht_supported ||
509 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
510 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
511 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
512 return 0;
513
514 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_vht_operation))
515 return -ENOMEM;
516
517 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_operation));
518 ieee80211_ie_build_vht_oper(pos, vht_cap,
519 &sdata->vif.bss_conf.chandef);
520
521 return 0;
522}
523
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100524static void ieee80211_mesh_path_timer(unsigned long data)
525{
526 struct ieee80211_sub_if_data *sdata =
527 (struct ieee80211_sub_if_data *) data;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100528
Stanislaw Gruszka690205f2013-02-28 10:55:29 +0100529 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100530}
531
Rui Pauloe304bfd2009-11-09 23:46:56 +0000532static void ieee80211_mesh_path_root_timer(unsigned long data)
533{
534 struct ieee80211_sub_if_data *sdata =
535 (struct ieee80211_sub_if_data *) data;
536 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Rui Pauloe304bfd2009-11-09 23:46:56 +0000537
538 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
539
Stanislaw Gruszka690205f2013-02-28 10:55:29 +0100540 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000541}
542
Rui Paulo63c57232009-11-09 23:46:57 +0000543void ieee80211_mesh_root_setup(struct ieee80211_if_mesh *ifmsh)
544{
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +0800545 if (ifmsh->mshcfg.dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)
Rui Paulo63c57232009-11-09 23:46:57 +0000546 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
547 else {
548 clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
549 /* stop running timer */
550 del_timer_sync(&ifmsh->mesh_path_root_timer);
551 }
552}
553
Johannes Berg902acc72008-02-23 15:17:19 +0100554/**
Javier Cardona3c5772a2009-08-10 12:15:48 -0700555 * ieee80211_fill_mesh_addresses - fill addresses of a locally originated mesh frame
Johannes Bergbf7cd942013-02-15 14:40:31 +0100556 * @hdr: 802.11 frame header
Javier Cardona3c5772a2009-08-10 12:15:48 -0700557 * @fc: frame control field
558 * @meshda: destination address in the mesh
559 * @meshsa: source address address in the mesh. Same as TA, as frame is
560 * locally originated.
561 *
562 * Return the length of the 802.11 (does not include a mesh control header)
563 */
Johannes Berg15ff6362009-11-17 13:34:04 +0100564int ieee80211_fill_mesh_addresses(struct ieee80211_hdr *hdr, __le16 *fc,
565 const u8 *meshda, const u8 *meshsa)
566{
Javier Cardona3c5772a2009-08-10 12:15:48 -0700567 if (is_multicast_ether_addr(meshda)) {
568 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
569 /* DA TA SA */
570 memcpy(hdr->addr1, meshda, ETH_ALEN);
571 memcpy(hdr->addr2, meshsa, ETH_ALEN);
572 memcpy(hdr->addr3, meshsa, ETH_ALEN);
573 return 24;
574 } else {
Javier Cardona2154c81c2011-09-07 17:49:53 -0700575 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Javier Cardona3c5772a2009-08-10 12:15:48 -0700576 /* RA TA DA SA */
Joe Perchesc84a67a2015-03-02 19:54:57 -0800577 eth_zero_addr(hdr->addr1); /* RA is resolved later */
Javier Cardona3c5772a2009-08-10 12:15:48 -0700578 memcpy(hdr->addr2, meshsa, ETH_ALEN);
579 memcpy(hdr->addr3, meshda, ETH_ALEN);
580 memcpy(hdr->addr4, meshsa, ETH_ALEN);
581 return 30;
582 }
583}
584
585/**
Johannes Berg902acc72008-02-23 15:17:19 +0100586 * ieee80211_new_mesh_header - create a new mesh header
Johannes Berg902acc72008-02-23 15:17:19 +0100587 * @sdata: mesh interface to be used
Johannes Bergbf7cd942013-02-15 14:40:31 +0100588 * @meshhdr: uninitialized mesh header
Javier Cardona61ad5392010-12-16 17:23:34 -0800589 * @addr4or5: 1st address in the ae header, which may correspond to address 4
590 * (if addr6 is NULL) or address 5 (if addr6 is present). It may
591 * be NULL.
592 * @addr6: 2nd address in the ae header, which corresponds to addr6 of the
593 * mesh frame
Johannes Berg902acc72008-02-23 15:17:19 +0100594 *
595 * Return the header length.
596 */
Andrzej Hajda5edfcee2015-09-25 08:42:00 +0200597unsigned int ieee80211_new_mesh_header(struct ieee80211_sub_if_data *sdata,
598 struct ieee80211s_hdr *meshhdr,
599 const char *addr4or5, const char *addr6)
Johannes Berg902acc72008-02-23 15:17:19 +0100600{
Johannes Bergbf7cd942013-02-15 14:40:31 +0100601 if (WARN_ON(!addr4or5 && addr6))
602 return 0;
603
Julia Lawall0c3cee72009-12-09 20:25:59 +0100604 memset(meshhdr, 0, sizeof(*meshhdr));
Johannes Bergbf7cd942013-02-15 14:40:31 +0100605
Johannes Berg472dbc42008-09-11 00:01:49 +0200606 meshhdr->ttl = sdata->u.mesh.mshcfg.dot11MeshTTL;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100607
608 /* FIXME: racy -- TX on multiple queues can be concurrent */
Johannes Berg472dbc42008-09-11 00:01:49 +0200609 put_unaligned(cpu_to_le32(sdata->u.mesh.mesh_seqnum), &meshhdr->seqnum);
610 sdata->u.mesh.mesh_seqnum++;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100611
Javier Cardona61ad5392010-12-16 17:23:34 -0800612 if (addr4or5 && !addr6) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700613 meshhdr->flags |= MESH_FLAGS_AE_A4;
Javier Cardona61ad5392010-12-16 17:23:34 -0800614 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +0100615 return 2 * ETH_ALEN;
Javier Cardona61ad5392010-12-16 17:23:34 -0800616 } else if (addr4or5 && addr6) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700617 meshhdr->flags |= MESH_FLAGS_AE_A5_A6;
Javier Cardona61ad5392010-12-16 17:23:34 -0800618 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
619 memcpy(meshhdr->eaddr2, addr6, ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +0100620 return 3 * ETH_ALEN;
Javier Cardona3c5772a2009-08-10 12:15:48 -0700621 }
Johannes Bergbf7cd942013-02-15 14:40:31 +0100622
623 return ETH_ALEN;
Johannes Berg902acc72008-02-23 15:17:19 +0100624}
625
Johannes Bergbf7cd942013-02-15 14:40:31 +0100626static void ieee80211_mesh_housekeeping(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +0200627{
Johannes Bergbf7cd942013-02-15 14:40:31 +0100628 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Marco Porschdf323812012-08-08 07:58:43 +0200629 u32 changed;
Johannes Berg472dbc42008-09-11 00:01:49 +0200630
Masashi Honma31f909a2015-02-24 22:42:16 +0900631 if (ifmsh->mshcfg.plink_timeout > 0)
632 ieee80211_sta_expire(sdata, ifmsh->mshcfg.plink_timeout * HZ);
Johannes Berg472dbc42008-09-11 00:01:49 +0200633 mesh_path_expire(sdata);
634
Marco Porschdf323812012-08-08 07:58:43 +0200635 changed = mesh_accept_plinks_update(sdata);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800636 ieee80211_mbss_info_change_notify(sdata, changed);
Johannes Berg472dbc42008-09-11 00:01:49 +0200637
Johannes Berg472dbc42008-09-11 00:01:49 +0200638 mod_timer(&ifmsh->housekeeping_timer,
Johannes Bergbf7cd942013-02-15 14:40:31 +0100639 round_jiffies(jiffies +
640 IEEE80211_MESH_HOUSEKEEPING_INTERVAL));
Johannes Berg472dbc42008-09-11 00:01:49 +0200641}
642
Rui Pauloe304bfd2009-11-09 23:46:56 +0000643static void ieee80211_mesh_rootpath(struct ieee80211_sub_if_data *sdata)
644{
645 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800646 u32 interval;
Rui Pauloe304bfd2009-11-09 23:46:56 +0000647
648 mesh_path_tx_root_frame(sdata);
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800649
650 if (ifmsh->mshcfg.dot11MeshHWMPRootMode == IEEE80211_PROACTIVE_RANN)
651 interval = ifmsh->mshcfg.dot11MeshHWMPRannInterval;
652 else
653 interval = ifmsh->mshcfg.dot11MeshHWMProotInterval;
654
Rui Pauloe304bfd2009-11-09 23:46:56 +0000655 mod_timer(&ifmsh->mesh_path_root_timer,
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800656 round_jiffies(TU_TO_EXP_TIME(interval)));
Rui Pauloe304bfd2009-11-09 23:46:56 +0000657}
658
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800659static int
660ieee80211_mesh_build_beacon(struct ieee80211_if_mesh *ifmsh)
661{
662 struct beacon_data *bcn;
663 int head_len, tail_len;
664 struct sk_buff *skb;
665 struct ieee80211_mgmt *mgmt;
666 struct ieee80211_chanctx_conf *chanctx_conf;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700667 struct mesh_csa_settings *csa;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200668 enum nl80211_band band;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800669 u8 *pos;
670 struct ieee80211_sub_if_data *sdata;
671 int hdr_len = offsetof(struct ieee80211_mgmt, u.beacon) +
672 sizeof(mgmt->u.beacon);
673
674 sdata = container_of(ifmsh, struct ieee80211_sub_if_data, u.mesh);
675 rcu_read_lock();
676 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
677 band = chanctx_conf->def.chan->band;
678 rcu_read_unlock();
679
680 head_len = hdr_len +
681 2 + /* NULL SSID */
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700682 /* Channel Switch Announcement */
683 2 + sizeof(struct ieee80211_channel_sw_ie) +
Masahiro Yamada08a7e622017-02-27 14:28:41 -0800684 /* Mesh Channel Switch Parameters */
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700685 2 + sizeof(struct ieee80211_mesh_chansw_params_ie) +
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800686 2 + 8 + /* supported rates */
687 2 + 3; /* DS params */
688 tail_len = 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
689 2 + sizeof(struct ieee80211_ht_cap) +
690 2 + sizeof(struct ieee80211_ht_operation) +
691 2 + ifmsh->mesh_id_len +
692 2 + sizeof(struct ieee80211_meshconf_ie) +
693 2 + sizeof(__le16) + /* awake window */
Bob Copelandc85fb532015-08-27 09:00:18 -0400694 2 + sizeof(struct ieee80211_vht_cap) +
695 2 + sizeof(struct ieee80211_vht_operation) +
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800696 ifmsh->ie_len;
697
698 bcn = kzalloc(sizeof(*bcn) + head_len + tail_len, GFP_KERNEL);
699 /* need an skb for IE builders to operate on */
700 skb = dev_alloc_skb(max(head_len, tail_len));
701
702 if (!bcn || !skb)
703 goto out_free;
704
705 /*
706 * pointers go into the block we allocated,
707 * memory is | beacon_data | head | tail |
708 */
709 bcn->head = ((u8 *) bcn) + sizeof(*bcn);
710
711 /* fill in the head */
712 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
713 memset(mgmt, 0, hdr_len);
714 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
715 IEEE80211_STYPE_BEACON);
716 eth_broadcast_addr(mgmt->da);
717 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
718 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
719 ieee80211_mps_set_frame_flags(sdata, NULL, (void *) mgmt);
720 mgmt->u.beacon.beacon_int =
721 cpu_to_le16(sdata->vif.bss_conf.beacon_int);
722 mgmt->u.beacon.capab_info |= cpu_to_le16(
723 sdata->u.mesh.security ? WLAN_CAPABILITY_PRIVACY : 0);
724
725 pos = skb_put(skb, 2);
726 *pos++ = WLAN_EID_SSID;
727 *pos++ = 0x0;
728
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700729 rcu_read_lock();
730 csa = rcu_dereference(ifmsh->csa);
731 if (csa) {
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700732 pos = skb_put(skb, 13);
733 memset(pos, 0, 13);
734 *pos++ = WLAN_EID_CHANNEL_SWITCH;
735 *pos++ = 3;
736 *pos++ = 0x0;
737 *pos++ = ieee80211_frequency_to_channel(
738 csa->settings.chandef.chan->center_freq);
Chun-Yeow Yeoh8df734e2015-06-09 13:35:33 +0800739 bcn->csa_current_counter = csa->settings.count;
Michal Kazioraf296bd2014-06-05 14:21:36 +0200740 bcn->csa_counter_offsets[0] = hdr_len + 6;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700741 *pos++ = csa->settings.count;
742 *pos++ = WLAN_EID_CHAN_SWITCH_PARAM;
743 *pos++ = 6;
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200744 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT) {
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700745 *pos++ = ifmsh->mshcfg.dot11MeshTTL;
746 *pos |= WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
747 } else {
748 *pos++ = ifmsh->chsw_ttl;
749 }
750 *pos++ |= csa->settings.block_tx ?
751 WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT : 0x00;
752 put_unaligned_le16(WLAN_REASON_MESH_CHAN, pos);
753 pos += 2;
Chun-Yeow Yeohca91dc92013-11-12 10:31:48 +0800754 put_unaligned_le16(ifmsh->pre_value, pos);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700755 pos += 2;
756 }
757 rcu_read_unlock();
758
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800759 if (ieee80211_add_srates_ie(sdata, skb, true, band) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100760 mesh_add_ds_params_ie(sdata, skb))
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800761 goto out_free;
762
763 bcn->head_len = skb->len;
764 memcpy(bcn->head, skb->data, bcn->head_len);
765
766 /* now the tail */
767 skb_trim(skb, 0);
768 bcn->tail = bcn->head + bcn->head_len;
769
770 if (ieee80211_add_ext_srates_ie(sdata, skb, true, band) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100771 mesh_add_rsn_ie(sdata, skb) ||
772 mesh_add_ht_cap_ie(sdata, skb) ||
773 mesh_add_ht_oper_ie(sdata, skb) ||
774 mesh_add_meshid_ie(sdata, skb) ||
775 mesh_add_meshconf_ie(sdata, skb) ||
776 mesh_add_awake_window_ie(sdata, skb) ||
Bob Copelandc85fb532015-08-27 09:00:18 -0400777 mesh_add_vht_cap_ie(sdata, skb) ||
778 mesh_add_vht_oper_ie(sdata, skb) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100779 mesh_add_vendor_ies(sdata, skb))
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800780 goto out_free;
781
782 bcn->tail_len = skb->len;
783 memcpy(bcn->tail, skb->data, bcn->tail_len);
Thomas Pedersen43552be2013-12-15 13:14:16 -0800784 bcn->meshconf = (struct ieee80211_meshconf_ie *)
785 (bcn->tail + ifmsh->meshconf_offset);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800786
787 dev_kfree_skb(skb);
788 rcu_assign_pointer(ifmsh->beacon, bcn);
789 return 0;
790out_free:
791 kfree(bcn);
792 dev_kfree_skb(skb);
793 return -ENOMEM;
794}
795
796static int
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200797ieee80211_mesh_rebuild_beacon(struct ieee80211_sub_if_data *sdata)
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800798{
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800799 struct beacon_data *old_bcn;
800 int ret;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800801
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200802 old_bcn = rcu_dereference_protected(sdata->u.mesh.beacon,
803 lockdep_is_held(&sdata->wdev.mtx));
804 ret = ieee80211_mesh_build_beacon(&sdata->u.mesh);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800805 if (ret)
806 /* just reuse old beacon */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200807 return ret;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800808
809 if (old_bcn)
810 kfree_rcu(old_bcn, rcu_head);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200811 return 0;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800812}
813
814void ieee80211_mbss_info_change_notify(struct ieee80211_sub_if_data *sdata,
815 u32 changed)
816{
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700817 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
818 unsigned long bits = changed;
819 u32 bit;
820
821 if (!bits)
822 return;
823
824 /* if we race with running work, worst case this work becomes a noop */
825 for_each_set_bit(bit, &bits, sizeof(changed) * BITS_PER_BYTE)
826 set_bit(bit, &ifmsh->mbss_changed);
827 set_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags);
828 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800829}
830
831int ieee80211_start_mesh(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +0200832{
833 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
834 struct ieee80211_local *local = sdata->local;
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800835 u32 changed = BSS_CHANGED_BEACON |
836 BSS_CHANGED_BEACON_ENABLED |
837 BSS_CHANGED_HT |
838 BSS_CHANGED_BASIC_RATES |
839 BSS_CHANGED_BEACON_INT;
Johannes Berg472dbc42008-09-11 00:01:49 +0200840
Johannes Berg09b17472010-12-03 09:20:41 +0100841 local->fif_other_bss++;
842 /* mesh ifaces must set allmulti to forward mcast traffic */
843 atomic_inc(&local->iff_allmultis);
844 ieee80211_configure_filter(local);
845
Javier Cardonac7108a72010-12-16 17:37:50 -0800846 ifmsh->mesh_cc_id = 0; /* Disabled */
Javier Cardonadbf498f2012-03-31 11:31:32 -0700847 /* register sync ops from extensible synchronization framework */
848 ifmsh->sync_ops = ieee80211_mesh_sync_ops_get(ifmsh->mesh_sp_id);
Javier Cardonadbf498f2012-03-31 11:31:32 -0700849 ifmsh->sync_offset_clockdrift_max = 0;
Rui Paulo6b9ac442009-10-20 21:21:48 +0100850 set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
Rui Paulo63c57232009-11-09 23:46:57 +0000851 ieee80211_mesh_root_setup(ifmsh);
Johannes Berg64592c82010-06-10 10:21:31 +0200852 ieee80211_queue_work(&local->hw, &sdata->work);
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -0700853 sdata->vif.bss_conf.ht_operation_mode =
854 ifmsh->mshcfg.ht_opmode;
Johannes Bergd6a83222012-12-14 14:06:28 +0100855 sdata->vif.bss_conf.enable_beacon = true;
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800856
Thomas Pedersen39886b62013-02-13 12:14:19 -0800857 changed |= ieee80211_mps_local_status_update(sdata);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100858
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800859 if (ieee80211_mesh_build_beacon(ifmsh)) {
860 ieee80211_stop_mesh(sdata);
861 return -ENOMEM;
862 }
863
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800864 ieee80211_recalc_dtim(local, sdata);
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800865 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Bergc405c622012-07-30 19:44:12 +0200866
867 netif_carrier_on(sdata->dev);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800868 return 0;
Johannes Berg472dbc42008-09-11 00:01:49 +0200869}
870
871void ieee80211_stop_mesh(struct ieee80211_sub_if_data *sdata)
872{
Johannes Berg09b17472010-12-03 09:20:41 +0100873 struct ieee80211_local *local = sdata->local;
Johannes Berg29cbe682010-12-03 09:20:44 +0100874 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800875 struct beacon_data *bcn;
Johannes Berg29cbe682010-12-03 09:20:44 +0100876
Johannes Bergc405c622012-07-30 19:44:12 +0200877 netif_carrier_off(sdata->dev);
878
Maital Hahnc37a54a2016-07-13 14:44:41 +0300879 /* flush STAs and mpaths on this iface */
880 sta_info_flush(sdata);
881 mesh_path_flush_by_iface(sdata);
882
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700883 /* stop the beacon */
Johannes Berg29cbe682010-12-03 09:20:44 +0100884 ifmsh->mesh_id_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +0100885 sdata->vif.bss_conf.enable_beacon = false;
886 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg29cbe682010-12-03 09:20:44 +0100887 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Maital Hahnc37a54a2016-07-13 14:44:41 +0300888
889 /* remove beacon */
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800890 bcn = rcu_dereference_protected(ifmsh->beacon,
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200891 lockdep_is_held(&sdata->wdev.mtx));
Monam Agarwal0c2bef462014-03-24 00:51:43 +0530892 RCU_INIT_POINTER(ifmsh->beacon, NULL);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800893 kfree_rcu(bcn, rcu_head);
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700894
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100895 /* free all potentially still buffered group-addressed frames */
896 local->total_ps_buffered -= skb_queue_len(&ifmsh->ps.bc_buf);
897 skb_queue_purge(&ifmsh->ps.bc_buf);
898
Johannes Berg472dbc42008-09-11 00:01:49 +0200899 del_timer_sync(&sdata->u.mesh.housekeeping_timer);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000900 del_timer_sync(&sdata->u.mesh.mesh_path_root_timer);
Johannes Bergdd4c9262012-08-01 21:03:21 +0200901 del_timer_sync(&sdata->u.mesh.mesh_path_timer);
Johannes Berg09b17472010-12-03 09:20:41 +0100902
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700903 /* clear any mesh work (for next join) we may have accrued */
904 ifmsh->wrkq_flags = 0;
905 ifmsh->mbss_changed = 0;
906
Johannes Berg09b17472010-12-03 09:20:41 +0100907 local->fif_other_bss--;
908 atomic_dec(&local->iff_allmultis);
909 ieee80211_configure_filter(local);
Johannes Berg472dbc42008-09-11 00:01:49 +0200910}
911
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700912static bool
913ieee80211_mesh_process_chnswitch(struct ieee80211_sub_if_data *sdata,
914 struct ieee802_11_elems *elems, bool beacon)
915{
916 struct cfg80211_csa_settings params;
917 struct ieee80211_csa_ie csa_ie;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700918 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200919 enum nl80211_band band = ieee80211_get_sdata_band(sdata);
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200920 int err;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700921 u32 sta_flags;
922
Michal Kaziordbd72852014-01-29 07:56:21 +0100923 sdata_assert_lock(sdata);
924
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700925 sta_flags = IEEE80211_STA_DISABLE_VHT;
926 switch (sdata->vif.bss_conf.chandef.width) {
927 case NL80211_CHAN_WIDTH_20_NOHT:
928 sta_flags |= IEEE80211_STA_DISABLE_HT;
929 case NL80211_CHAN_WIDTH_20:
930 sta_flags |= IEEE80211_STA_DISABLE_40MHZ;
931 break;
932 default:
933 break;
934 }
935
936 memset(&params, 0, sizeof(params));
937 memset(&csa_ie, 0, sizeof(csa_ie));
Luciano Coelho84469a42014-10-28 13:33:04 +0200938 err = ieee80211_parse_ch_switch_ie(sdata, elems, band,
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700939 sta_flags, sdata->vif.addr,
940 &csa_ie);
941 if (err < 0)
942 return false;
943 if (err)
944 return false;
945
946 params.chandef = csa_ie.chandef;
947 params.count = csa_ie.count;
948
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700949 if (!cfg80211_chandef_usable(sdata->local->hw.wiphy, &params.chandef,
950 IEEE80211_CHAN_DISABLED)) {
951 sdata_info(sdata,
952 "mesh STA %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), aborting\n",
953 sdata->vif.addr,
954 params.chandef.chan->center_freq,
955 params.chandef.width,
956 params.chandef.center_freq1,
957 params.chandef.center_freq2);
958 return false;
959 }
960
961 err = cfg80211_chandef_dfs_required(sdata->local->hw.wiphy,
Luciano Coelho2beb6dab2014-02-18 11:40:36 +0200962 &params.chandef,
963 NL80211_IFTYPE_MESH_POINT);
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700964 if (err < 0)
965 return false;
Luciano Coelho2beb6dab2014-02-18 11:40:36 +0200966 if (err > 0)
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700967 /* TODO: DFS not (yet) supported */
968 return false;
Luciano Coelho2beb6dab2014-02-18 11:40:36 +0200969
970 params.radar_required = err;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700971
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200972 if (cfg80211_chandef_identical(&params.chandef,
973 &sdata->vif.bss_conf.chandef)) {
974 mcsa_dbg(sdata,
975 "received csa with an identical chandef, ignoring\n");
976 return true;
977 }
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700978
979 mcsa_dbg(sdata,
980 "received channel switch announcement to go to channel %d MHz\n",
981 params.chandef.chan->center_freq);
982
983 params.block_tx = csa_ie.mode & WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +0800984 if (beacon) {
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700985 ifmsh->chsw_ttl = csa_ie.ttl - 1;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +0800986 if (ifmsh->pre_value >= csa_ie.pre_value)
987 return false;
988 ifmsh->pre_value = csa_ie.pre_value;
989 }
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700990
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200991 if (ifmsh->chsw_ttl >= ifmsh->mshcfg.dot11MeshTTL)
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +0800992 return false;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700993
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200994 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_REPEATER;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700995
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200996 if (ieee80211_channel_switch(sdata->local->hw.wiphy, sdata->dev,
997 &params) < 0)
998 return false;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700999
1000 return true;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001001}
1002
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001003static void
1004ieee80211_mesh_rx_probe_req(struct ieee80211_sub_if_data *sdata,
1005 struct ieee80211_mgmt *mgmt, size_t len)
1006{
1007 struct ieee80211_local *local = sdata->local;
1008 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1009 struct sk_buff *presp;
1010 struct beacon_data *bcn;
1011 struct ieee80211_mgmt *hdr;
1012 struct ieee802_11_elems elems;
1013 size_t baselen;
Johannes Berg511044e2013-03-07 22:47:00 +01001014 u8 *pos;
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001015
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001016 pos = mgmt->u.probe_req.variable;
1017 baselen = (u8 *) pos - (u8 *) mgmt;
1018 if (baselen > len)
1019 return;
1020
Johannes Bergb2e506b2013-03-26 14:54:16 +01001021 ieee802_11_parse_elems(pos, len - baselen, false, &elems);
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001022
Chun-Yeow Yeoha4ef66a2013-08-22 10:28:58 -07001023 if (!elems.mesh_id)
1024 return;
1025
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001026 /* 802.11-2012 10.1.4.3.2 */
1027 if ((!ether_addr_equal(mgmt->da, sdata->vif.addr) &&
1028 !is_broadcast_ether_addr(mgmt->da)) ||
1029 elems.ssid_len != 0)
1030 return;
1031
1032 if (elems.mesh_id_len != 0 &&
1033 (elems.mesh_id_len != ifmsh->mesh_id_len ||
1034 memcmp(elems.mesh_id, ifmsh->mesh_id, ifmsh->mesh_id_len)))
1035 return;
1036
1037 rcu_read_lock();
1038 bcn = rcu_dereference(ifmsh->beacon);
1039
1040 if (!bcn)
1041 goto out;
1042
1043 presp = dev_alloc_skb(local->tx_headroom +
1044 bcn->head_len + bcn->tail_len);
1045 if (!presp)
1046 goto out;
1047
1048 skb_reserve(presp, local->tx_headroom);
1049 memcpy(skb_put(presp, bcn->head_len), bcn->head, bcn->head_len);
1050 memcpy(skb_put(presp, bcn->tail_len), bcn->tail, bcn->tail_len);
1051 hdr = (struct ieee80211_mgmt *) presp->data;
1052 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1053 IEEE80211_STYPE_PROBE_RESP);
1054 memcpy(hdr->da, mgmt->sa, ETH_ALEN);
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001055 IEEE80211_SKB_CB(presp)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
1056 ieee80211_tx_skb(sdata, presp);
1057out:
1058 rcu_read_unlock();
1059}
1060
Johannes Berg472dbc42008-09-11 00:01:49 +02001061static void ieee80211_mesh_rx_bcn_presp(struct ieee80211_sub_if_data *sdata,
1062 u16 stype,
1063 struct ieee80211_mgmt *mgmt,
1064 size_t len,
1065 struct ieee80211_rx_status *rx_status)
1066{
Johannes Bergc6a1fa12008-10-07 12:04:32 +02001067 struct ieee80211_local *local = sdata->local;
Javier Cardonadbf498f2012-03-31 11:31:32 -07001068 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02001069 struct ieee802_11_elems elems;
1070 struct ieee80211_channel *channel;
Johannes Berg472dbc42008-09-11 00:01:49 +02001071 size_t baselen;
1072 int freq;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001073 enum nl80211_band band = rx_status->band;
Johannes Berg472dbc42008-09-11 00:01:49 +02001074
1075 /* ignore ProbeResp to foreign address */
1076 if (stype == IEEE80211_STYPE_PROBE_RESP &&
Joe Perchesb203ca32012-05-08 18:56:52 +00001077 !ether_addr_equal(mgmt->da, sdata->vif.addr))
Johannes Berg472dbc42008-09-11 00:01:49 +02001078 return;
1079
1080 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1081 if (baselen > len)
1082 return;
1083
1084 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01001085 false, &elems);
Johannes Berg472dbc42008-09-11 00:01:49 +02001086
Thomas Pedersen9a90bc82012-10-20 19:03:10 -07001087 /* ignore non-mesh or secure / unsecure mismatch */
1088 if ((!elems.mesh_id || !elems.mesh_config) ||
1089 (elems.rsn && sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) ||
1090 (!elems.rsn && sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE))
Javier Cardona5cff5e02011-04-07 15:08:29 -07001091 return;
1092
Johannes Berg1cd8e882013-03-27 14:30:12 +01001093 if (elems.ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001094 freq = ieee80211_channel_to_frequency(elems.ds_params[0], band);
Johannes Berg472dbc42008-09-11 00:01:49 +02001095 else
1096 freq = rx_status->freq;
1097
1098 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1099
1100 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1101 return;
1102
Thomas Pedersen9a90bc82012-10-20 19:03:10 -07001103 if (mesh_matches_local(sdata, &elems))
Thomas Pedersenf743ff42012-04-18 19:23:43 -07001104 mesh_neighbour_update(sdata, mgmt->sa, &elems);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001105
1106 if (ifmsh->sync_ops)
1107 ifmsh->sync_ops->rx_bcn_presp(sdata,
1108 stype, mgmt, &elems, rx_status);
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001109
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001110 if (ifmsh->csa_role != IEEE80211_MESH_CSA_ROLE_INIT &&
1111 !sdata->vif.csa_active)
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001112 ieee80211_mesh_process_chnswitch(sdata, &elems, true);
Johannes Berg472dbc42008-09-11 00:01:49 +02001113}
1114
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001115int ieee80211_mesh_finish_csa(struct ieee80211_sub_if_data *sdata)
1116{
1117 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1118 struct mesh_csa_settings *tmp_csa_settings;
1119 int ret = 0;
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001120 int changed = 0;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001121
1122 /* Reset the TTL value and Initiator flag */
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001123 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001124 ifmsh->chsw_ttl = 0;
1125
1126 /* Remove the CSA and MCSP elements from the beacon */
1127 tmp_csa_settings = rcu_dereference(ifmsh->csa);
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301128 RCU_INIT_POINTER(ifmsh->csa, NULL);
Luciano Coelho66e01cf2014-01-13 19:43:00 +02001129 if (tmp_csa_settings)
1130 kfree_rcu(tmp_csa_settings, rcu_head);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001131 ret = ieee80211_mesh_rebuild_beacon(sdata);
1132 if (ret)
1133 return -EINVAL;
1134
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001135 changed |= BSS_CHANGED_BEACON;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001136
1137 mcsa_dbg(sdata, "complete switching to center freq %d MHz",
1138 sdata->vif.bss_conf.chandef.chan->center_freq);
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001139 return changed;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001140}
1141
1142int ieee80211_mesh_csa_beacon(struct ieee80211_sub_if_data *sdata,
Luciano Coelho66e01cf2014-01-13 19:43:00 +02001143 struct cfg80211_csa_settings *csa_settings)
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001144{
1145 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1146 struct mesh_csa_settings *tmp_csa_settings;
1147 int ret = 0;
1148
1149 tmp_csa_settings = kmalloc(sizeof(*tmp_csa_settings),
1150 GFP_ATOMIC);
1151 if (!tmp_csa_settings)
1152 return -ENOMEM;
1153
1154 memcpy(&tmp_csa_settings->settings, csa_settings,
1155 sizeof(struct cfg80211_csa_settings));
1156
1157 rcu_assign_pointer(ifmsh->csa, tmp_csa_settings);
1158
1159 ret = ieee80211_mesh_rebuild_beacon(sdata);
1160 if (ret) {
1161 tmp_csa_settings = rcu_dereference(ifmsh->csa);
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301162 RCU_INIT_POINTER(ifmsh->csa, NULL);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001163 kfree_rcu(tmp_csa_settings, rcu_head);
1164 return ret;
1165 }
1166
Luciano Coelhob58e81e2014-01-13 19:42:59 +02001167 return BSS_CHANGED_BEACON;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001168}
1169
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001170static int mesh_fwd_csa_frame(struct ieee80211_sub_if_data *sdata,
1171 struct ieee80211_mgmt *mgmt, size_t len)
1172{
1173 struct ieee80211_mgmt *mgmt_fwd;
1174 struct sk_buff *skb;
1175 struct ieee80211_local *local = sdata->local;
1176 u8 *pos = mgmt->u.action.u.chan_switch.variable;
1177 size_t offset_ttl;
1178
1179 skb = dev_alloc_skb(local->tx_headroom + len);
1180 if (!skb)
1181 return -ENOMEM;
1182 skb_reserve(skb, local->tx_headroom);
1183 mgmt_fwd = (struct ieee80211_mgmt *) skb_put(skb, len);
1184
1185 /* offset_ttl is based on whether the secondary channel
Antonio Ospiteb314c662014-06-04 14:03:49 +02001186 * offset is available or not. Subtract 1 from the mesh TTL
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001187 * and disable the initiator flag before forwarding.
1188 */
1189 offset_ttl = (len < 42) ? 7 : 10;
1190 *(pos + offset_ttl) -= 1;
1191 *(pos + offset_ttl + 1) &= ~WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
1192
1193 memcpy(mgmt_fwd, mgmt, len);
1194 eth_broadcast_addr(mgmt_fwd->da);
1195 memcpy(mgmt_fwd->sa, sdata->vif.addr, ETH_ALEN);
1196 memcpy(mgmt_fwd->bssid, sdata->vif.addr, ETH_ALEN);
1197
1198 ieee80211_tx_skb(sdata, skb);
1199 return 0;
1200}
1201
1202static void mesh_rx_csa_frame(struct ieee80211_sub_if_data *sdata,
1203 struct ieee80211_mgmt *mgmt, size_t len)
1204{
1205 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1206 struct ieee802_11_elems elems;
1207 u16 pre_value;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001208 bool fwd_csa = true;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001209 size_t baselen;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001210 u8 *pos;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001211
1212 if (mgmt->u.action.u.measurement.action_code !=
1213 WLAN_ACTION_SPCT_CHL_SWITCH)
1214 return;
1215
1216 pos = mgmt->u.action.u.chan_switch.variable;
1217 baselen = offsetof(struct ieee80211_mgmt,
1218 u.action.u.chan_switch.variable);
1219 ieee802_11_parse_elems(pos, len - baselen, false, &elems);
1220
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001221 ifmsh->chsw_ttl = elems.mesh_chansw_params_ie->mesh_ttl;
1222 if (!--ifmsh->chsw_ttl)
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001223 fwd_csa = false;
1224
1225 pre_value = le16_to_cpu(elems.mesh_chansw_params_ie->mesh_pre_value);
1226 if (ifmsh->pre_value >= pre_value)
1227 return;
1228
1229 ifmsh->pre_value = pre_value;
1230
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001231 if (!sdata->vif.csa_active &&
1232 !ieee80211_mesh_process_chnswitch(sdata, &elems, false)) {
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001233 mcsa_dbg(sdata, "Failed to process CSA action frame");
1234 return;
1235 }
1236
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001237 /* forward or re-broadcast the CSA frame */
1238 if (fwd_csa) {
1239 if (mesh_fwd_csa_frame(sdata, mgmt, len) < 0)
1240 mcsa_dbg(sdata, "Failed to forward the CSA frame");
1241 }
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001242}
1243
Johannes Berg472dbc42008-09-11 00:01:49 +02001244static void ieee80211_mesh_rx_mgmt_action(struct ieee80211_sub_if_data *sdata,
1245 struct ieee80211_mgmt *mgmt,
1246 size_t len,
1247 struct ieee80211_rx_status *rx_status)
1248{
1249 switch (mgmt->u.action.category) {
Thomas Pedersen8db09852011-08-12 20:01:00 -07001250 case WLAN_CATEGORY_SELF_PROTECTED:
1251 switch (mgmt->u.action.u.self_prot.action_code) {
1252 case WLAN_SP_MESH_PEERING_OPEN:
1253 case WLAN_SP_MESH_PEERING_CLOSE:
1254 case WLAN_SP_MESH_PEERING_CONFIRM:
1255 mesh_rx_plink_frame(sdata, mgmt, len, rx_status);
1256 break;
1257 }
Johannes Berg472dbc42008-09-11 00:01:49 +02001258 break;
Thomas Pedersen25d49e42011-08-11 19:35:15 -07001259 case WLAN_CATEGORY_MESH_ACTION:
1260 if (mesh_action_is_path_sel(mgmt))
1261 mesh_rx_path_sel_frame(sdata, mgmt, len);
Johannes Berg472dbc42008-09-11 00:01:49 +02001262 break;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001263 case WLAN_CATEGORY_SPECTRUM_MGMT:
1264 mesh_rx_csa_frame(sdata, mgmt, len);
1265 break;
Johannes Berg472dbc42008-09-11 00:01:49 +02001266 }
1267}
1268
Johannes Berg1fa57d02010-06-10 10:21:32 +02001269void ieee80211_mesh_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
1270 struct sk_buff *skb)
Johannes Berg472dbc42008-09-11 00:01:49 +02001271{
1272 struct ieee80211_rx_status *rx_status;
Johannes Berg472dbc42008-09-11 00:01:49 +02001273 struct ieee80211_mgmt *mgmt;
1274 u16 stype;
1275
Thomas Pedersenecccd072013-06-10 13:17:21 -07001276 sdata_lock(sdata);
1277
1278 /* mesh already went down */
Johannes Berg1693d342014-01-22 10:08:57 +01001279 if (!sdata->u.mesh.mesh_id_len)
Thomas Pedersenecccd072013-06-10 13:17:21 -07001280 goto out;
1281
Johannes Bergf1d58c22009-06-17 13:13:00 +02001282 rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Berg472dbc42008-09-11 00:01:49 +02001283 mgmt = (struct ieee80211_mgmt *) skb->data;
1284 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
1285
1286 switch (stype) {
1287 case IEEE80211_STYPE_PROBE_RESP:
1288 case IEEE80211_STYPE_BEACON:
1289 ieee80211_mesh_rx_bcn_presp(sdata, stype, mgmt, skb->len,
1290 rx_status);
1291 break;
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001292 case IEEE80211_STYPE_PROBE_REQ:
1293 ieee80211_mesh_rx_probe_req(sdata, mgmt, skb->len);
1294 break;
Johannes Berg472dbc42008-09-11 00:01:49 +02001295 case IEEE80211_STYPE_ACTION:
1296 ieee80211_mesh_rx_mgmt_action(sdata, mgmt, skb->len, rx_status);
1297 break;
1298 }
Thomas Pedersenecccd072013-06-10 13:17:21 -07001299out:
1300 sdata_unlock(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001301}
1302
Thomas Pedersenf81a9de2013-06-13 15:54:41 -07001303static void mesh_bss_info_changed(struct ieee80211_sub_if_data *sdata)
1304{
1305 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1306 u32 bit, changed = 0;
1307
1308 for_each_set_bit(bit, &ifmsh->mbss_changed,
1309 sizeof(changed) * BITS_PER_BYTE) {
1310 clear_bit(bit, &ifmsh->mbss_changed);
1311 changed |= BIT(bit);
1312 }
1313
1314 if (sdata->vif.bss_conf.enable_beacon &&
1315 (changed & (BSS_CHANGED_BEACON |
1316 BSS_CHANGED_HT |
1317 BSS_CHANGED_BASIC_RATES |
1318 BSS_CHANGED_BEACON_INT)))
1319 if (ieee80211_mesh_rebuild_beacon(sdata))
1320 return;
1321
1322 ieee80211_bss_info_change_notify(sdata, changed);
1323}
1324
Johannes Berg1fa57d02010-06-10 10:21:32 +02001325void ieee80211_mesh_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +02001326{
Johannes Berg472dbc42008-09-11 00:01:49 +02001327 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02001328
Thomas Pedersenecccd072013-06-10 13:17:21 -07001329 sdata_lock(sdata);
1330
1331 /* mesh already went down */
Johannes Berg1693d342014-01-22 10:08:57 +01001332 if (!sdata->u.mesh.mesh_id_len)
Thomas Pedersenecccd072013-06-10 13:17:21 -07001333 goto out;
1334
Johannes Berg472dbc42008-09-11 00:01:49 +02001335 if (ifmsh->preq_queue_len &&
1336 time_after(jiffies,
1337 ifmsh->last_preq + msecs_to_jiffies(ifmsh->mshcfg.dot11MeshHWMPpreqMinInterval)))
1338 mesh_path_start_discovery(sdata);
1339
Javier Cardona18889232009-08-10 12:15:52 -07001340 if (test_and_clear_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags))
Johannes Bergbf7cd942013-02-15 14:40:31 +01001341 ieee80211_mesh_housekeeping(sdata);
Rui Pauloe304bfd2009-11-09 23:46:56 +00001342
1343 if (test_and_clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags))
1344 ieee80211_mesh_rootpath(sdata);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001345
1346 if (test_and_clear_bit(MESH_WORK_DRIFT_ADJUST, &ifmsh->wrkq_flags))
Masashi Honma445cd452016-12-08 10:15:51 +09001347 mesh_sync_adjust_tsf(sdata);
Thomas Pedersenecccd072013-06-10 13:17:21 -07001348
Thomas Pedersenf81a9de2013-06-13 15:54:41 -07001349 if (test_and_clear_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags))
1350 mesh_bss_info_changed(sdata);
Thomas Pedersenecccd072013-06-10 13:17:21 -07001351out:
1352 sdata_unlock(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001353}
1354
Johannes Berg472dbc42008-09-11 00:01:49 +02001355
Johannes Berg902acc72008-02-23 15:17:19 +01001356void ieee80211_mesh_init_sdata(struct ieee80211_sub_if_data *sdata)
1357{
Johannes Berg472dbc42008-09-11 00:01:49 +02001358 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Bergad2d2232012-12-14 14:34:25 +01001359 static u8 zero_addr[ETH_ALEN] = {};
Johannes Berg902acc72008-02-23 15:17:19 +01001360
Johannes Berg472dbc42008-09-11 00:01:49 +02001361 setup_timer(&ifmsh->housekeeping_timer,
1362 ieee80211_mesh_housekeeping_timer,
1363 (unsigned long) sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001364
Johannes Berg472dbc42008-09-11 00:01:49 +02001365 ifmsh->accepting_plinks = true;
Johannes Berg472dbc42008-09-11 00:01:49 +02001366 atomic_set(&ifmsh->mpaths, 0);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001367 mesh_rmc_init(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001368 ifmsh->last_preq = jiffies;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001369 ifmsh->next_perr = jiffies;
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001370 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
Johannes Berg902acc72008-02-23 15:17:19 +01001371 /* Allocate all mesh structures when creating the first mesh interface. */
1372 if (!mesh_allocated)
1373 ieee80211s_init();
Bob Copeland2bdaf382016-02-28 20:03:56 -05001374
1375 mesh_pathtbl_init(sdata);
1376
Johannes Berg472dbc42008-09-11 00:01:49 +02001377 setup_timer(&ifmsh->mesh_path_timer,
Johannes Berg902acc72008-02-23 15:17:19 +01001378 ieee80211_mesh_path_timer,
1379 (unsigned long) sdata);
Rui Pauloe304bfd2009-11-09 23:46:56 +00001380 setup_timer(&ifmsh->mesh_path_root_timer,
1381 ieee80211_mesh_path_root_timer,
1382 (unsigned long) sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001383 INIT_LIST_HEAD(&ifmsh->preq_queue.list);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001384 skb_queue_head_init(&ifmsh->ps.bc_buf);
Johannes Berg472dbc42008-09-11 00:01:49 +02001385 spin_lock_init(&ifmsh->mesh_preq_queue_lock);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001386 spin_lock_init(&ifmsh->sync_offset_lock);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001387 RCU_INIT_POINTER(ifmsh->beacon, NULL);
Johannes Bergad2d2232012-12-14 14:34:25 +01001388
1389 sdata->vif.bss_conf.bssid = zero_addr;
Johannes Berg472dbc42008-09-11 00:01:49 +02001390}
Bob Copeland0371a082016-03-26 11:27:18 -04001391
1392void ieee80211_mesh_teardown_sdata(struct ieee80211_sub_if_data *sdata)
1393{
1394 mesh_rmc_free(sdata);
1395 mesh_pathtbl_unregister(sdata);
1396}