blob: 4c6404e1ad6e683da649f507829c19b232fcd417 [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;
151 u32 changed;
152
153 /*
154 * maybe userspace handles peer allocation and peering, but in either
155 * case the beacon is still generated by the kernel and we might need
156 * an update.
157 */
158 changed = mesh_accept_plinks_update(sdata);
Thomas Pedersena6dad6a2013-03-04 13:06:12 -0800159 if (!sdata->u.mesh.user_mpm) {
Thomas Pedersen45b50282013-02-06 10:17:21 -0800160 changed |= mesh_plink_deactivate(sta);
Johannes Berg433f5bc2015-06-17 10:31:00 +0200161 del_timer_sync(&sta->mesh->plink_timer);
Thomas Pedersen45b50282013-02-06 10:17:21 -0800162 }
163
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700164 if (changed)
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800165 ieee80211_mbss_info_change_notify(sdata, changed);
Thomas Pedersen45b50282013-02-06 10:17:21 -0800166}
167
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200168int mesh_rmc_init(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100169{
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100170 int i;
171
Johannes Berg472dbc42008-09-11 00:01:49 +0200172 sdata->u.mesh.rmc = kmalloc(sizeof(struct mesh_rmc), GFP_KERNEL);
173 if (!sdata->u.mesh.rmc)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100174 return -ENOMEM;
Johannes Berg472dbc42008-09-11 00:01:49 +0200175 sdata->u.mesh.rmc->idx_mask = RMC_BUCKETS - 1;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100176 for (i = 0; i < RMC_BUCKETS; i++)
Bob Copeland47a04892016-03-18 22:11:29 -0400177 INIT_HLIST_HEAD(&sdata->u.mesh.rmc->bucket[i]);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100178 return 0;
179}
180
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200181void mesh_rmc_free(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100182{
Johannes Berg472dbc42008-09-11 00:01:49 +0200183 struct mesh_rmc *rmc = sdata->u.mesh.rmc;
Bob Copeland47a04892016-03-18 22:11:29 -0400184 struct rmc_entry *p;
185 struct hlist_node *n;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100186 int i;
187
Johannes Berg472dbc42008-09-11 00:01:49 +0200188 if (!sdata->u.mesh.rmc)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100189 return;
190
Johannes Bergbf7cd942013-02-15 14:40:31 +0100191 for (i = 0; i < RMC_BUCKETS; i++) {
Bob Copeland47a04892016-03-18 22:11:29 -0400192 hlist_for_each_entry_safe(p, n, &rmc->bucket[i], list) {
193 hlist_del(&p->list);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100194 kmem_cache_free(rm_cache, p);
195 }
Johannes Bergbf7cd942013-02-15 14:40:31 +0100196 }
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100197
198 kfree(rmc);
Johannes Berg472dbc42008-09-11 00:01:49 +0200199 sdata->u.mesh.rmc = NULL;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100200}
201
202/**
203 * mesh_rmc_check - Check frame in recent multicast cache and add if absent.
204 *
Johannes Bergbf7cd942013-02-15 14:40:31 +0100205 * @sdata: interface
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100206 * @sa: source address
207 * @mesh_hdr: mesh_header
208 *
209 * Returns: 0 if the frame is not in the cache, nonzero otherwise.
210 *
211 * Checks using the source address and the mesh sequence number if we have
212 * received this frame lately. If the frame is not in the cache, it is added to
213 * it.
214 */
Johannes Bergbf7cd942013-02-15 14:40:31 +0100215int mesh_rmc_check(struct ieee80211_sub_if_data *sdata,
216 const u8 *sa, struct ieee80211s_hdr *mesh_hdr)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100217{
Johannes Berg472dbc42008-09-11 00:01:49 +0200218 struct mesh_rmc *rmc = sdata->u.mesh.rmc;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100219 u32 seqnum = 0;
220 int entries = 0;
221 u8 idx;
Bob Copeland47a04892016-03-18 22:11:29 -0400222 struct rmc_entry *p;
223 struct hlist_node *n;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100224
Bob Copeland0aa7fab2016-03-18 22:11:28 -0400225 if (!rmc)
226 return -1;
227
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100228 /* Don't care about endianness since only match matters */
Luis Carlos Cobo51cedda2008-04-23 12:15:29 -0700229 memcpy(&seqnum, &mesh_hdr->seqnum, sizeof(mesh_hdr->seqnum));
230 idx = le32_to_cpu(mesh_hdr->seqnum) & rmc->idx_mask;
Bob Copeland47a04892016-03-18 22:11:29 -0400231 hlist_for_each_entry_safe(p, n, &rmc->bucket[idx], list) {
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100232 ++entries;
233 if (time_after(jiffies, p->exp_time) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100234 entries == RMC_QUEUE_MAX_LEN) {
Bob Copeland47a04892016-03-18 22:11:29 -0400235 hlist_del(&p->list);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100236 kmem_cache_free(rm_cache, p);
237 --entries;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100238 } else if ((seqnum == p->seqnum) && ether_addr_equal(sa, p->sa))
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100239 return -1;
240 }
241
242 p = kmem_cache_alloc(rm_cache, GFP_ATOMIC);
Joe Perchesd15b8452011-08-29 14:17:31 -0700243 if (!p)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100244 return 0;
Joe Perchesd15b8452011-08-29 14:17:31 -0700245
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100246 p->seqnum = seqnum;
247 p->exp_time = jiffies + RMC_TIMEOUT;
248 memcpy(p->sa, sa, ETH_ALEN);
Bob Copeland47a04892016-03-18 22:11:29 -0400249 hlist_add_head(&p->list, &rmc->bucket[idx]);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100250 return 0;
251}
252
Johannes Bergbf7cd942013-02-15 14:40:31 +0100253int mesh_add_meshconf_ie(struct ieee80211_sub_if_data *sdata,
254 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700255{
256 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
257 u8 *pos, neighbors;
258 u8 meshconf_len = sizeof(struct ieee80211_meshconf_ie);
259
260 if (skb_tailroom(skb) < 2 + meshconf_len)
261 return -ENOMEM;
262
263 pos = skb_put(skb, 2 + meshconf_len);
264 *pos++ = WLAN_EID_MESH_CONFIG;
265 *pos++ = meshconf_len;
266
Thomas Pedersen43552be2013-12-15 13:14:16 -0800267 /* save a pointer for quick updates in pre-tbtt */
268 ifmsh->meshconf_offset = pos - skb->data;
269
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700270 /* Active path selection protocol ID */
271 *pos++ = ifmsh->mesh_pp_id;
272 /* Active path selection metric ID */
273 *pos++ = ifmsh->mesh_pm_id;
274 /* Congestion control mode identifier */
275 *pos++ = ifmsh->mesh_cc_id;
276 /* Synchronization protocol identifier */
277 *pos++ = ifmsh->mesh_sp_id;
278 /* Authentication Protocol identifier */
279 *pos++ = ifmsh->mesh_auth_id;
280 /* Mesh Formation Info - number of neighbors */
Ashok Nagarajan1258d972012-10-09 13:27:47 -0700281 neighbors = atomic_read(&ifmsh->estab_plinks);
Jacob Minshalle05eccc2013-05-29 14:32:36 -0700282 neighbors = min_t(int, neighbors, IEEE80211_MAX_MESH_PEERINGS);
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700283 *pos++ = neighbors << 1;
284 /* Mesh capability */
Chun-Yeow Yeohb60e5272013-07-12 18:55:22 +0800285 *pos = 0x00;
286 *pos |= ifmsh->mshcfg.dot11MeshForwarding ?
287 IEEE80211_MESHCONF_CAPAB_FORWARDING : 0x00;
Javier Cardonadbf498f2012-03-31 11:31:32 -0700288 *pos |= ifmsh->accepting_plinks ?
Johannes Bergbf7cd942013-02-15 14:40:31 +0100289 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS : 0x00;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100290 /* Mesh PS mode. See IEEE802.11-2012 8.4.2.100.8 */
291 *pos |= ifmsh->ps_peers_deep_sleep ?
Johannes Bergbf7cd942013-02-15 14:40:31 +0100292 IEEE80211_MESHCONF_CAPAB_POWER_SAVE_LEVEL : 0x00;
Javier Cardonadbf498f2012-03-31 11:31:32 -0700293 *pos++ |= ifmsh->adjusting_tbtt ?
Johannes Bergbf7cd942013-02-15 14:40:31 +0100294 IEEE80211_MESHCONF_CAPAB_TBTT_ADJUSTING : 0x00;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700295 *pos++ = 0x00;
296
297 return 0;
298}
299
Johannes Bergbf7cd942013-02-15 14:40:31 +0100300int mesh_add_meshid_ie(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700301{
302 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
303 u8 *pos;
304
305 if (skb_tailroom(skb) < 2 + ifmsh->mesh_id_len)
306 return -ENOMEM;
307
308 pos = skb_put(skb, 2 + ifmsh->mesh_id_len);
309 *pos++ = WLAN_EID_MESH_ID;
310 *pos++ = ifmsh->mesh_id_len;
311 if (ifmsh->mesh_id_len)
312 memcpy(pos, ifmsh->mesh_id, ifmsh->mesh_id_len);
313
314 return 0;
315}
316
Johannes Bergbf7cd942013-02-15 14:40:31 +0100317static int mesh_add_awake_window_ie(struct ieee80211_sub_if_data *sdata,
318 struct sk_buff *skb)
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100319{
320 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
321 u8 *pos;
322
323 /* see IEEE802.11-2012 13.14.6 */
324 if (ifmsh->ps_peers_light_sleep == 0 &&
325 ifmsh->ps_peers_deep_sleep == 0 &&
326 ifmsh->nonpeer_pm == NL80211_MESH_POWER_ACTIVE)
327 return 0;
328
329 if (skb_tailroom(skb) < 4)
330 return -ENOMEM;
331
332 pos = skb_put(skb, 2 + 2);
333 *pos++ = WLAN_EID_MESH_AWAKE_WINDOW;
334 *pos++ = 2;
335 put_unaligned_le16(ifmsh->mshcfg.dot11MeshAwakeWindowDuration, pos);
336
337 return 0;
338}
339
Johannes Bergbf7cd942013-02-15 14:40:31 +0100340int mesh_add_vendor_ies(struct ieee80211_sub_if_data *sdata,
341 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700342{
343 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
344 u8 offset, len;
345 const u8 *data;
346
347 if (!ifmsh->ie || !ifmsh->ie_len)
348 return 0;
349
350 /* fast-forward to vendor IEs */
351 offset = ieee80211_ie_split_vendor(ifmsh->ie, ifmsh->ie_len, 0);
352
353 if (offset) {
354 len = ifmsh->ie_len - offset;
355 data = ifmsh->ie + offset;
356 if (skb_tailroom(skb) < len)
357 return -ENOMEM;
358 memcpy(skb_put(skb, len), data, len);
359 }
360
361 return 0;
362}
363
Johannes Bergbf7cd942013-02-15 14:40:31 +0100364int mesh_add_rsn_ie(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700365{
366 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
367 u8 len = 0;
368 const u8 *data;
369
370 if (!ifmsh->ie || !ifmsh->ie_len)
371 return 0;
372
373 /* find RSN IE */
Bob Copelanda40a8c12014-04-15 10:43:07 -0400374 data = cfg80211_find_ie(WLAN_EID_RSN, ifmsh->ie, ifmsh->ie_len);
375 if (!data)
376 return 0;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700377
Bob Copelanda40a8c12014-04-15 10:43:07 -0400378 len = data[1] + 2;
379
380 if (skb_tailroom(skb) < len)
381 return -ENOMEM;
382 memcpy(skb_put(skb, len), data, len);
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700383
384 return 0;
385}
386
Johannes Bergbf7cd942013-02-15 14:40:31 +0100387static int mesh_add_ds_params_ie(struct ieee80211_sub_if_data *sdata,
388 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700389{
Johannes Berg55de9082012-07-26 17:24:39 +0200390 struct ieee80211_chanctx_conf *chanctx_conf;
391 struct ieee80211_channel *chan;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700392 u8 *pos;
393
394 if (skb_tailroom(skb) < 3)
395 return -ENOMEM;
396
Johannes Berg55de9082012-07-26 17:24:39 +0200397 rcu_read_lock();
398 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
399 if (WARN_ON(!chanctx_conf)) {
400 rcu_read_unlock();
401 return -EINVAL;
402 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100403 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200404 rcu_read_unlock();
405
Emanuel Taube601513a2013-02-06 14:17:17 +0100406 pos = skb_put(skb, 2 + 1);
407 *pos++ = WLAN_EID_DS_PARAMS;
408 *pos++ = 1;
409 *pos++ = ieee80211_frequency_to_channel(chan->center_freq);
Rui Paulobe125c62009-11-09 23:46:54 +0000410
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700411 return 0;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100412}
413
Johannes Bergbf7cd942013-02-15 14:40:31 +0100414int mesh_add_ht_cap_ie(struct ieee80211_sub_if_data *sdata,
415 struct sk_buff *skb)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700416{
417 struct ieee80211_local *local = sdata->local;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200418 enum nl80211_band band = ieee80211_get_sdata_band(sdata);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700419 struct ieee80211_supported_band *sband;
420 u8 *pos;
421
Johannes Berg55de9082012-07-26 17:24:39 +0200422 sband = local->hw.wiphy->bands[band];
Thomas Pedersen176f3602011-10-26 14:47:27 -0700423 if (!sband->ht_cap.ht_supported ||
Simon Wunderlich0418a442013-05-16 13:00:31 +0200424 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
425 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
426 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700427 return 0;
428
429 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_cap))
430 return -ENOMEM;
431
432 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_cap));
Ben Greearef96a8422011-11-18 11:32:00 -0800433 ieee80211_ie_build_ht_cap(pos, &sband->ht_cap, sband->ht_cap.cap);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700434
435 return 0;
436}
437
Johannes Bergbf7cd942013-02-15 14:40:31 +0100438int mesh_add_ht_oper_ie(struct ieee80211_sub_if_data *sdata,
439 struct sk_buff *skb)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700440{
441 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +0200442 struct ieee80211_chanctx_conf *chanctx_conf;
443 struct ieee80211_channel *channel;
Johannes Berg55de9082012-07-26 17:24:39 +0200444 struct ieee80211_supported_band *sband;
445 struct ieee80211_sta_ht_cap *ht_cap;
Thomas Pedersen176f3602011-10-26 14:47:27 -0700446 u8 *pos;
447
Johannes Berg55de9082012-07-26 17:24:39 +0200448 rcu_read_lock();
449 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
450 if (WARN_ON(!chanctx_conf)) {
451 rcu_read_unlock();
452 return -EINVAL;
453 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100454 channel = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200455 rcu_read_unlock();
456
457 sband = local->hw.wiphy->bands[channel->band];
458 ht_cap = &sband->ht_cap;
459
Bob Copelandc85fb532015-08-27 09:00:18 -0400460 if (!ht_cap->ht_supported ||
461 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
462 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
463 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700464 return 0;
465
Johannes Berg074d46d2012-03-15 19:45:16 +0100466 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_operation))
Thomas Pedersen176f3602011-10-26 14:47:27 -0700467 return -ENOMEM;
468
Johannes Berg074d46d2012-03-15 19:45:16 +0100469 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_operation));
Johannes Berg4bf88532012-11-09 11:39:59 +0100470 ieee80211_ie_build_ht_oper(pos, ht_cap, &sdata->vif.bss_conf.chandef,
Arik Nemtsov57f255f2015-10-25 10:59:34 +0200471 sdata->vif.bss_conf.ht_operation_mode,
472 false);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700473
474 return 0;
475}
Johannes Bergbf7cd942013-02-15 14:40:31 +0100476
Bob Copelandc85fb532015-08-27 09:00:18 -0400477int mesh_add_vht_cap_ie(struct ieee80211_sub_if_data *sdata,
478 struct sk_buff *skb)
479{
480 struct ieee80211_local *local = sdata->local;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200481 enum nl80211_band band = ieee80211_get_sdata_band(sdata);
Bob Copelandc85fb532015-08-27 09:00:18 -0400482 struct ieee80211_supported_band *sband;
483 u8 *pos;
484
485 sband = local->hw.wiphy->bands[band];
486 if (!sband->vht_cap.vht_supported ||
487 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
488 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
489 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
490 return 0;
491
492 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_vht_cap))
493 return -ENOMEM;
494
495 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_cap));
496 ieee80211_ie_build_vht_cap(pos, &sband->vht_cap, sband->vht_cap.cap);
497
498 return 0;
499}
500
501int mesh_add_vht_oper_ie(struct ieee80211_sub_if_data *sdata,
502 struct sk_buff *skb)
503{
504 struct ieee80211_local *local = sdata->local;
505 struct ieee80211_chanctx_conf *chanctx_conf;
506 struct ieee80211_channel *channel;
507 struct ieee80211_supported_band *sband;
508 struct ieee80211_sta_vht_cap *vht_cap;
509 u8 *pos;
510
511 rcu_read_lock();
512 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
513 if (WARN_ON(!chanctx_conf)) {
514 rcu_read_unlock();
515 return -EINVAL;
516 }
517 channel = chanctx_conf->def.chan;
518 rcu_read_unlock();
519
520 sband = local->hw.wiphy->bands[channel->band];
521 vht_cap = &sband->vht_cap;
522
523 if (!vht_cap->vht_supported ||
524 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
525 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
526 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
527 return 0;
528
529 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_vht_operation))
530 return -ENOMEM;
531
532 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_operation));
533 ieee80211_ie_build_vht_oper(pos, vht_cap,
534 &sdata->vif.bss_conf.chandef);
535
536 return 0;
537}
538
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100539static void ieee80211_mesh_path_timer(unsigned long data)
540{
541 struct ieee80211_sub_if_data *sdata =
542 (struct ieee80211_sub_if_data *) data;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100543
Stanislaw Gruszka690205f2013-02-28 10:55:29 +0100544 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100545}
546
Rui Pauloe304bfd2009-11-09 23:46:56 +0000547static void ieee80211_mesh_path_root_timer(unsigned long data)
548{
549 struct ieee80211_sub_if_data *sdata =
550 (struct ieee80211_sub_if_data *) data;
551 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Rui Pauloe304bfd2009-11-09 23:46:56 +0000552
553 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
554
Stanislaw Gruszka690205f2013-02-28 10:55:29 +0100555 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000556}
557
Rui Paulo63c57232009-11-09 23:46:57 +0000558void ieee80211_mesh_root_setup(struct ieee80211_if_mesh *ifmsh)
559{
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +0800560 if (ifmsh->mshcfg.dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)
Rui Paulo63c57232009-11-09 23:46:57 +0000561 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
562 else {
563 clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
564 /* stop running timer */
565 del_timer_sync(&ifmsh->mesh_path_root_timer);
566 }
567}
568
Johannes Berg902acc72008-02-23 15:17:19 +0100569/**
Javier Cardona3c5772a2009-08-10 12:15:48 -0700570 * ieee80211_fill_mesh_addresses - fill addresses of a locally originated mesh frame
Johannes Bergbf7cd942013-02-15 14:40:31 +0100571 * @hdr: 802.11 frame header
Javier Cardona3c5772a2009-08-10 12:15:48 -0700572 * @fc: frame control field
573 * @meshda: destination address in the mesh
574 * @meshsa: source address address in the mesh. Same as TA, as frame is
575 * locally originated.
576 *
577 * Return the length of the 802.11 (does not include a mesh control header)
578 */
Johannes Berg15ff6362009-11-17 13:34:04 +0100579int ieee80211_fill_mesh_addresses(struct ieee80211_hdr *hdr, __le16 *fc,
580 const u8 *meshda, const u8 *meshsa)
581{
Javier Cardona3c5772a2009-08-10 12:15:48 -0700582 if (is_multicast_ether_addr(meshda)) {
583 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
584 /* DA TA SA */
585 memcpy(hdr->addr1, meshda, ETH_ALEN);
586 memcpy(hdr->addr2, meshsa, ETH_ALEN);
587 memcpy(hdr->addr3, meshsa, ETH_ALEN);
588 return 24;
589 } else {
Javier Cardona2154c812011-09-07 17:49:53 -0700590 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Javier Cardona3c5772a2009-08-10 12:15:48 -0700591 /* RA TA DA SA */
Joe Perchesc84a67a2015-03-02 19:54:57 -0800592 eth_zero_addr(hdr->addr1); /* RA is resolved later */
Javier Cardona3c5772a2009-08-10 12:15:48 -0700593 memcpy(hdr->addr2, meshsa, ETH_ALEN);
594 memcpy(hdr->addr3, meshda, ETH_ALEN);
595 memcpy(hdr->addr4, meshsa, ETH_ALEN);
596 return 30;
597 }
598}
599
600/**
Johannes Berg902acc72008-02-23 15:17:19 +0100601 * ieee80211_new_mesh_header - create a new mesh header
Johannes Berg902acc72008-02-23 15:17:19 +0100602 * @sdata: mesh interface to be used
Johannes Bergbf7cd942013-02-15 14:40:31 +0100603 * @meshhdr: uninitialized mesh header
Javier Cardona61ad5392010-12-16 17:23:34 -0800604 * @addr4or5: 1st address in the ae header, which may correspond to address 4
605 * (if addr6 is NULL) or address 5 (if addr6 is present). It may
606 * be NULL.
607 * @addr6: 2nd address in the ae header, which corresponds to addr6 of the
608 * mesh frame
Johannes Berg902acc72008-02-23 15:17:19 +0100609 *
610 * Return the header length.
611 */
Andrzej Hajda5edfcee2015-09-25 08:42:00 +0200612unsigned int ieee80211_new_mesh_header(struct ieee80211_sub_if_data *sdata,
613 struct ieee80211s_hdr *meshhdr,
614 const char *addr4or5, const char *addr6)
Johannes Berg902acc72008-02-23 15:17:19 +0100615{
Johannes Bergbf7cd942013-02-15 14:40:31 +0100616 if (WARN_ON(!addr4or5 && addr6))
617 return 0;
618
Julia Lawall0c3cee72009-12-09 20:25:59 +0100619 memset(meshhdr, 0, sizeof(*meshhdr));
Johannes Bergbf7cd942013-02-15 14:40:31 +0100620
Johannes Berg472dbc42008-09-11 00:01:49 +0200621 meshhdr->ttl = sdata->u.mesh.mshcfg.dot11MeshTTL;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100622
623 /* FIXME: racy -- TX on multiple queues can be concurrent */
Johannes Berg472dbc42008-09-11 00:01:49 +0200624 put_unaligned(cpu_to_le32(sdata->u.mesh.mesh_seqnum), &meshhdr->seqnum);
625 sdata->u.mesh.mesh_seqnum++;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100626
Javier Cardona61ad5392010-12-16 17:23:34 -0800627 if (addr4or5 && !addr6) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700628 meshhdr->flags |= MESH_FLAGS_AE_A4;
Javier Cardona61ad5392010-12-16 17:23:34 -0800629 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +0100630 return 2 * ETH_ALEN;
Javier Cardona61ad5392010-12-16 17:23:34 -0800631 } else if (addr4or5 && addr6) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700632 meshhdr->flags |= MESH_FLAGS_AE_A5_A6;
Javier Cardona61ad5392010-12-16 17:23:34 -0800633 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
634 memcpy(meshhdr->eaddr2, addr6, ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +0100635 return 3 * ETH_ALEN;
Javier Cardona3c5772a2009-08-10 12:15:48 -0700636 }
Johannes Bergbf7cd942013-02-15 14:40:31 +0100637
638 return ETH_ALEN;
Johannes Berg902acc72008-02-23 15:17:19 +0100639}
640
Johannes Bergbf7cd942013-02-15 14:40:31 +0100641static void ieee80211_mesh_housekeeping(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +0200642{
Johannes Bergbf7cd942013-02-15 14:40:31 +0100643 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Marco Porschdf323812012-08-08 07:58:43 +0200644 u32 changed;
Johannes Berg472dbc42008-09-11 00:01:49 +0200645
Masashi Honma31f909a2015-02-24 22:42:16 +0900646 if (ifmsh->mshcfg.plink_timeout > 0)
647 ieee80211_sta_expire(sdata, ifmsh->mshcfg.plink_timeout * HZ);
Johannes Berg472dbc42008-09-11 00:01:49 +0200648 mesh_path_expire(sdata);
649
Marco Porschdf323812012-08-08 07:58:43 +0200650 changed = mesh_accept_plinks_update(sdata);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800651 ieee80211_mbss_info_change_notify(sdata, changed);
Johannes Berg472dbc42008-09-11 00:01:49 +0200652
Johannes Berg472dbc42008-09-11 00:01:49 +0200653 mod_timer(&ifmsh->housekeeping_timer,
Johannes Bergbf7cd942013-02-15 14:40:31 +0100654 round_jiffies(jiffies +
655 IEEE80211_MESH_HOUSEKEEPING_INTERVAL));
Johannes Berg472dbc42008-09-11 00:01:49 +0200656}
657
Rui Pauloe304bfd2009-11-09 23:46:56 +0000658static void ieee80211_mesh_rootpath(struct ieee80211_sub_if_data *sdata)
659{
660 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800661 u32 interval;
Rui Pauloe304bfd2009-11-09 23:46:56 +0000662
663 mesh_path_tx_root_frame(sdata);
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800664
665 if (ifmsh->mshcfg.dot11MeshHWMPRootMode == IEEE80211_PROACTIVE_RANN)
666 interval = ifmsh->mshcfg.dot11MeshHWMPRannInterval;
667 else
668 interval = ifmsh->mshcfg.dot11MeshHWMProotInterval;
669
Rui Pauloe304bfd2009-11-09 23:46:56 +0000670 mod_timer(&ifmsh->mesh_path_root_timer,
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800671 round_jiffies(TU_TO_EXP_TIME(interval)));
Rui Pauloe304bfd2009-11-09 23:46:56 +0000672}
673
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800674static int
675ieee80211_mesh_build_beacon(struct ieee80211_if_mesh *ifmsh)
676{
677 struct beacon_data *bcn;
678 int head_len, tail_len;
679 struct sk_buff *skb;
680 struct ieee80211_mgmt *mgmt;
681 struct ieee80211_chanctx_conf *chanctx_conf;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700682 struct mesh_csa_settings *csa;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200683 enum nl80211_band band;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800684 u8 *pos;
685 struct ieee80211_sub_if_data *sdata;
686 int hdr_len = offsetof(struct ieee80211_mgmt, u.beacon) +
687 sizeof(mgmt->u.beacon);
688
689 sdata = container_of(ifmsh, struct ieee80211_sub_if_data, u.mesh);
690 rcu_read_lock();
691 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
692 band = chanctx_conf->def.chan->band;
693 rcu_read_unlock();
694
695 head_len = hdr_len +
696 2 + /* NULL SSID */
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700697 /* Channel Switch Announcement */
698 2 + sizeof(struct ieee80211_channel_sw_ie) +
699 /* Mesh Channel Swith Parameters */
700 2 + sizeof(struct ieee80211_mesh_chansw_params_ie) +
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800701 2 + 8 + /* supported rates */
702 2 + 3; /* DS params */
703 tail_len = 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
704 2 + sizeof(struct ieee80211_ht_cap) +
705 2 + sizeof(struct ieee80211_ht_operation) +
706 2 + ifmsh->mesh_id_len +
707 2 + sizeof(struct ieee80211_meshconf_ie) +
708 2 + sizeof(__le16) + /* awake window */
Bob Copelandc85fb532015-08-27 09:00:18 -0400709 2 + sizeof(struct ieee80211_vht_cap) +
710 2 + sizeof(struct ieee80211_vht_operation) +
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800711 ifmsh->ie_len;
712
713 bcn = kzalloc(sizeof(*bcn) + head_len + tail_len, GFP_KERNEL);
714 /* need an skb for IE builders to operate on */
715 skb = dev_alloc_skb(max(head_len, tail_len));
716
717 if (!bcn || !skb)
718 goto out_free;
719
720 /*
721 * pointers go into the block we allocated,
722 * memory is | beacon_data | head | tail |
723 */
724 bcn->head = ((u8 *) bcn) + sizeof(*bcn);
725
726 /* fill in the head */
727 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
728 memset(mgmt, 0, hdr_len);
729 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
730 IEEE80211_STYPE_BEACON);
731 eth_broadcast_addr(mgmt->da);
732 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
733 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
734 ieee80211_mps_set_frame_flags(sdata, NULL, (void *) mgmt);
735 mgmt->u.beacon.beacon_int =
736 cpu_to_le16(sdata->vif.bss_conf.beacon_int);
737 mgmt->u.beacon.capab_info |= cpu_to_le16(
738 sdata->u.mesh.security ? WLAN_CAPABILITY_PRIVACY : 0);
739
740 pos = skb_put(skb, 2);
741 *pos++ = WLAN_EID_SSID;
742 *pos++ = 0x0;
743
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700744 rcu_read_lock();
745 csa = rcu_dereference(ifmsh->csa);
746 if (csa) {
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700747 pos = skb_put(skb, 13);
748 memset(pos, 0, 13);
749 *pos++ = WLAN_EID_CHANNEL_SWITCH;
750 *pos++ = 3;
751 *pos++ = 0x0;
752 *pos++ = ieee80211_frequency_to_channel(
753 csa->settings.chandef.chan->center_freq);
Chun-Yeow Yeoh8df734e2015-06-09 13:35:33 +0800754 bcn->csa_current_counter = csa->settings.count;
Michal Kazioraf296bd2014-06-05 14:21:36 +0200755 bcn->csa_counter_offsets[0] = hdr_len + 6;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700756 *pos++ = csa->settings.count;
757 *pos++ = WLAN_EID_CHAN_SWITCH_PARAM;
758 *pos++ = 6;
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200759 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT) {
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700760 *pos++ = ifmsh->mshcfg.dot11MeshTTL;
761 *pos |= WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
762 } else {
763 *pos++ = ifmsh->chsw_ttl;
764 }
765 *pos++ |= csa->settings.block_tx ?
766 WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT : 0x00;
767 put_unaligned_le16(WLAN_REASON_MESH_CHAN, pos);
768 pos += 2;
Chun-Yeow Yeohca91dc92013-11-12 10:31:48 +0800769 put_unaligned_le16(ifmsh->pre_value, pos);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700770 pos += 2;
771 }
772 rcu_read_unlock();
773
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800774 if (ieee80211_add_srates_ie(sdata, skb, true, band) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100775 mesh_add_ds_params_ie(sdata, skb))
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800776 goto out_free;
777
778 bcn->head_len = skb->len;
779 memcpy(bcn->head, skb->data, bcn->head_len);
780
781 /* now the tail */
782 skb_trim(skb, 0);
783 bcn->tail = bcn->head + bcn->head_len;
784
785 if (ieee80211_add_ext_srates_ie(sdata, skb, true, band) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100786 mesh_add_rsn_ie(sdata, skb) ||
787 mesh_add_ht_cap_ie(sdata, skb) ||
788 mesh_add_ht_oper_ie(sdata, skb) ||
789 mesh_add_meshid_ie(sdata, skb) ||
790 mesh_add_meshconf_ie(sdata, skb) ||
791 mesh_add_awake_window_ie(sdata, skb) ||
Bob Copelandc85fb532015-08-27 09:00:18 -0400792 mesh_add_vht_cap_ie(sdata, skb) ||
793 mesh_add_vht_oper_ie(sdata, skb) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100794 mesh_add_vendor_ies(sdata, skb))
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800795 goto out_free;
796
797 bcn->tail_len = skb->len;
798 memcpy(bcn->tail, skb->data, bcn->tail_len);
Thomas Pedersen43552be2013-12-15 13:14:16 -0800799 bcn->meshconf = (struct ieee80211_meshconf_ie *)
800 (bcn->tail + ifmsh->meshconf_offset);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800801
802 dev_kfree_skb(skb);
803 rcu_assign_pointer(ifmsh->beacon, bcn);
804 return 0;
805out_free:
806 kfree(bcn);
807 dev_kfree_skb(skb);
808 return -ENOMEM;
809}
810
811static int
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200812ieee80211_mesh_rebuild_beacon(struct ieee80211_sub_if_data *sdata)
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800813{
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800814 struct beacon_data *old_bcn;
815 int ret;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800816
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200817 old_bcn = rcu_dereference_protected(sdata->u.mesh.beacon,
818 lockdep_is_held(&sdata->wdev.mtx));
819 ret = ieee80211_mesh_build_beacon(&sdata->u.mesh);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800820 if (ret)
821 /* just reuse old beacon */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200822 return ret;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800823
824 if (old_bcn)
825 kfree_rcu(old_bcn, rcu_head);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200826 return 0;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800827}
828
829void ieee80211_mbss_info_change_notify(struct ieee80211_sub_if_data *sdata,
830 u32 changed)
831{
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700832 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
833 unsigned long bits = changed;
834 u32 bit;
835
836 if (!bits)
837 return;
838
839 /* if we race with running work, worst case this work becomes a noop */
840 for_each_set_bit(bit, &bits, sizeof(changed) * BITS_PER_BYTE)
841 set_bit(bit, &ifmsh->mbss_changed);
842 set_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags);
843 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800844}
845
846int ieee80211_start_mesh(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +0200847{
848 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
849 struct ieee80211_local *local = sdata->local;
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800850 u32 changed = BSS_CHANGED_BEACON |
851 BSS_CHANGED_BEACON_ENABLED |
852 BSS_CHANGED_HT |
853 BSS_CHANGED_BASIC_RATES |
854 BSS_CHANGED_BEACON_INT;
Johannes Berg472dbc42008-09-11 00:01:49 +0200855
Johannes Berg09b17472010-12-03 09:20:41 +0100856 local->fif_other_bss++;
857 /* mesh ifaces must set allmulti to forward mcast traffic */
858 atomic_inc(&local->iff_allmultis);
859 ieee80211_configure_filter(local);
860
Javier Cardonac7108a72010-12-16 17:37:50 -0800861 ifmsh->mesh_cc_id = 0; /* Disabled */
Javier Cardonadbf498f2012-03-31 11:31:32 -0700862 /* register sync ops from extensible synchronization framework */
863 ifmsh->sync_ops = ieee80211_mesh_sync_ops_get(ifmsh->mesh_sp_id);
864 ifmsh->adjusting_tbtt = false;
865 ifmsh->sync_offset_clockdrift_max = 0;
Rui Paulo6b9ac442009-10-20 21:21:48 +0100866 set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
Rui Paulo63c57232009-11-09 23:46:57 +0000867 ieee80211_mesh_root_setup(ifmsh);
Johannes Berg64592c82010-06-10 10:21:31 +0200868 ieee80211_queue_work(&local->hw, &sdata->work);
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -0700869 sdata->vif.bss_conf.ht_operation_mode =
870 ifmsh->mshcfg.ht_opmode;
Johannes Bergd6a83222012-12-14 14:06:28 +0100871 sdata->vif.bss_conf.enable_beacon = true;
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800872
Thomas Pedersen39886b62013-02-13 12:14:19 -0800873 changed |= ieee80211_mps_local_status_update(sdata);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100874
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800875 if (ieee80211_mesh_build_beacon(ifmsh)) {
876 ieee80211_stop_mesh(sdata);
877 return -ENOMEM;
878 }
879
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800880 ieee80211_recalc_dtim(local, sdata);
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800881 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Bergc405c622012-07-30 19:44:12 +0200882
883 netif_carrier_on(sdata->dev);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800884 return 0;
Johannes Berg472dbc42008-09-11 00:01:49 +0200885}
886
887void ieee80211_stop_mesh(struct ieee80211_sub_if_data *sdata)
888{
Johannes Berg09b17472010-12-03 09:20:41 +0100889 struct ieee80211_local *local = sdata->local;
Johannes Berg29cbe682010-12-03 09:20:44 +0100890 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800891 struct beacon_data *bcn;
Johannes Berg29cbe682010-12-03 09:20:44 +0100892
Johannes Bergc405c622012-07-30 19:44:12 +0200893 netif_carrier_off(sdata->dev);
894
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700895 /* stop the beacon */
Johannes Berg29cbe682010-12-03 09:20:44 +0100896 ifmsh->mesh_id_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +0100897 sdata->vif.bss_conf.enable_beacon = false;
898 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg29cbe682010-12-03 09:20:44 +0100899 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800900 bcn = rcu_dereference_protected(ifmsh->beacon,
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200901 lockdep_is_held(&sdata->wdev.mtx));
Monam Agarwal0c2bef462014-03-24 00:51:43 +0530902 RCU_INIT_POINTER(ifmsh->beacon, NULL);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800903 kfree_rcu(bcn, rcu_head);
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700904
905 /* flush STAs and mpaths on this iface */
Johannes Bergb998e8b2012-12-13 23:07:46 +0100906 sta_info_flush(sdata);
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700907 mesh_path_flush_by_iface(sdata);
Johannes Berg09b17472010-12-03 09:20:41 +0100908
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100909 /* free all potentially still buffered group-addressed frames */
910 local->total_ps_buffered -= skb_queue_len(&ifmsh->ps.bc_buf);
911 skb_queue_purge(&ifmsh->ps.bc_buf);
912
Johannes Berg472dbc42008-09-11 00:01:49 +0200913 del_timer_sync(&sdata->u.mesh.housekeeping_timer);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000914 del_timer_sync(&sdata->u.mesh.mesh_path_root_timer);
Johannes Bergdd4c9262012-08-01 21:03:21 +0200915 del_timer_sync(&sdata->u.mesh.mesh_path_timer);
Johannes Berg09b17472010-12-03 09:20:41 +0100916
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700917 /* clear any mesh work (for next join) we may have accrued */
918 ifmsh->wrkq_flags = 0;
919 ifmsh->mbss_changed = 0;
920
Johannes Berg09b17472010-12-03 09:20:41 +0100921 local->fif_other_bss--;
922 atomic_dec(&local->iff_allmultis);
923 ieee80211_configure_filter(local);
Johannes Berg472dbc42008-09-11 00:01:49 +0200924}
925
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700926static bool
927ieee80211_mesh_process_chnswitch(struct ieee80211_sub_if_data *sdata,
928 struct ieee802_11_elems *elems, bool beacon)
929{
930 struct cfg80211_csa_settings params;
931 struct ieee80211_csa_ie csa_ie;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700932 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200933 enum nl80211_band band = ieee80211_get_sdata_band(sdata);
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200934 int err;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700935 u32 sta_flags;
936
Michal Kaziordbd72852014-01-29 07:56:21 +0100937 sdata_assert_lock(sdata);
938
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700939 sta_flags = IEEE80211_STA_DISABLE_VHT;
940 switch (sdata->vif.bss_conf.chandef.width) {
941 case NL80211_CHAN_WIDTH_20_NOHT:
942 sta_flags |= IEEE80211_STA_DISABLE_HT;
943 case NL80211_CHAN_WIDTH_20:
944 sta_flags |= IEEE80211_STA_DISABLE_40MHZ;
945 break;
946 default:
947 break;
948 }
949
950 memset(&params, 0, sizeof(params));
951 memset(&csa_ie, 0, sizeof(csa_ie));
Luciano Coelho84469a42014-10-28 13:33:04 +0200952 err = ieee80211_parse_ch_switch_ie(sdata, elems, band,
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700953 sta_flags, sdata->vif.addr,
954 &csa_ie);
955 if (err < 0)
956 return false;
957 if (err)
958 return false;
959
960 params.chandef = csa_ie.chandef;
961 params.count = csa_ie.count;
962
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700963 if (!cfg80211_chandef_usable(sdata->local->hw.wiphy, &params.chandef,
964 IEEE80211_CHAN_DISABLED)) {
965 sdata_info(sdata,
966 "mesh STA %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), aborting\n",
967 sdata->vif.addr,
968 params.chandef.chan->center_freq,
969 params.chandef.width,
970 params.chandef.center_freq1,
971 params.chandef.center_freq2);
972 return false;
973 }
974
975 err = cfg80211_chandef_dfs_required(sdata->local->hw.wiphy,
Luciano Coelho2beb6dab2014-02-18 11:40:36 +0200976 &params.chandef,
977 NL80211_IFTYPE_MESH_POINT);
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700978 if (err < 0)
979 return false;
Luciano Coelho2beb6dab2014-02-18 11:40:36 +0200980 if (err > 0)
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700981 /* TODO: DFS not (yet) supported */
982 return false;
Luciano Coelho2beb6dab2014-02-18 11:40:36 +0200983
984 params.radar_required = err;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700985
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200986 if (cfg80211_chandef_identical(&params.chandef,
987 &sdata->vif.bss_conf.chandef)) {
988 mcsa_dbg(sdata,
989 "received csa with an identical chandef, ignoring\n");
990 return true;
991 }
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700992
993 mcsa_dbg(sdata,
994 "received channel switch announcement to go to channel %d MHz\n",
995 params.chandef.chan->center_freq);
996
997 params.block_tx = csa_ie.mode & WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +0800998 if (beacon) {
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700999 ifmsh->chsw_ttl = csa_ie.ttl - 1;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001000 if (ifmsh->pre_value >= csa_ie.pre_value)
1001 return false;
1002 ifmsh->pre_value = csa_ie.pre_value;
1003 }
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001004
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001005 if (ifmsh->chsw_ttl >= ifmsh->mshcfg.dot11MeshTTL)
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001006 return false;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001007
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001008 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_REPEATER;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001009
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001010 if (ieee80211_channel_switch(sdata->local->hw.wiphy, sdata->dev,
1011 &params) < 0)
1012 return false;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001013
1014 return true;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001015}
1016
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001017static void
1018ieee80211_mesh_rx_probe_req(struct ieee80211_sub_if_data *sdata,
1019 struct ieee80211_mgmt *mgmt, size_t len)
1020{
1021 struct ieee80211_local *local = sdata->local;
1022 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1023 struct sk_buff *presp;
1024 struct beacon_data *bcn;
1025 struct ieee80211_mgmt *hdr;
1026 struct ieee802_11_elems elems;
1027 size_t baselen;
Johannes Berg511044e2013-03-07 22:47:00 +01001028 u8 *pos;
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001029
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001030 pos = mgmt->u.probe_req.variable;
1031 baselen = (u8 *) pos - (u8 *) mgmt;
1032 if (baselen > len)
1033 return;
1034
Johannes Bergb2e506b2013-03-26 14:54:16 +01001035 ieee802_11_parse_elems(pos, len - baselen, false, &elems);
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001036
Chun-Yeow Yeoha4ef66a2013-08-22 10:28:58 -07001037 if (!elems.mesh_id)
1038 return;
1039
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001040 /* 802.11-2012 10.1.4.3.2 */
1041 if ((!ether_addr_equal(mgmt->da, sdata->vif.addr) &&
1042 !is_broadcast_ether_addr(mgmt->da)) ||
1043 elems.ssid_len != 0)
1044 return;
1045
1046 if (elems.mesh_id_len != 0 &&
1047 (elems.mesh_id_len != ifmsh->mesh_id_len ||
1048 memcmp(elems.mesh_id, ifmsh->mesh_id, ifmsh->mesh_id_len)))
1049 return;
1050
1051 rcu_read_lock();
1052 bcn = rcu_dereference(ifmsh->beacon);
1053
1054 if (!bcn)
1055 goto out;
1056
1057 presp = dev_alloc_skb(local->tx_headroom +
1058 bcn->head_len + bcn->tail_len);
1059 if (!presp)
1060 goto out;
1061
1062 skb_reserve(presp, local->tx_headroom);
1063 memcpy(skb_put(presp, bcn->head_len), bcn->head, bcn->head_len);
1064 memcpy(skb_put(presp, bcn->tail_len), bcn->tail, bcn->tail_len);
1065 hdr = (struct ieee80211_mgmt *) presp->data;
1066 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1067 IEEE80211_STYPE_PROBE_RESP);
1068 memcpy(hdr->da, mgmt->sa, ETH_ALEN);
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001069 IEEE80211_SKB_CB(presp)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
1070 ieee80211_tx_skb(sdata, presp);
1071out:
1072 rcu_read_unlock();
1073}
1074
Johannes Berg472dbc42008-09-11 00:01:49 +02001075static void ieee80211_mesh_rx_bcn_presp(struct ieee80211_sub_if_data *sdata,
1076 u16 stype,
1077 struct ieee80211_mgmt *mgmt,
1078 size_t len,
1079 struct ieee80211_rx_status *rx_status)
1080{
Johannes Bergc6a1fa12008-10-07 12:04:32 +02001081 struct ieee80211_local *local = sdata->local;
Javier Cardonadbf498f2012-03-31 11:31:32 -07001082 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02001083 struct ieee802_11_elems elems;
1084 struct ieee80211_channel *channel;
Johannes Berg472dbc42008-09-11 00:01:49 +02001085 size_t baselen;
1086 int freq;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001087 enum nl80211_band band = rx_status->band;
Johannes Berg472dbc42008-09-11 00:01:49 +02001088
1089 /* ignore ProbeResp to foreign address */
1090 if (stype == IEEE80211_STYPE_PROBE_RESP &&
Joe Perchesb203ca32012-05-08 18:56:52 +00001091 !ether_addr_equal(mgmt->da, sdata->vif.addr))
Johannes Berg472dbc42008-09-11 00:01:49 +02001092 return;
1093
1094 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1095 if (baselen > len)
1096 return;
1097
1098 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01001099 false, &elems);
Johannes Berg472dbc42008-09-11 00:01:49 +02001100
Thomas Pedersen9a90bc82012-10-20 19:03:10 -07001101 /* ignore non-mesh or secure / unsecure mismatch */
1102 if ((!elems.mesh_id || !elems.mesh_config) ||
1103 (elems.rsn && sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) ||
1104 (!elems.rsn && sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE))
Javier Cardona5cff5e02011-04-07 15:08:29 -07001105 return;
1106
Johannes Berg1cd8e882013-03-27 14:30:12 +01001107 if (elems.ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001108 freq = ieee80211_channel_to_frequency(elems.ds_params[0], band);
Johannes Berg472dbc42008-09-11 00:01:49 +02001109 else
1110 freq = rx_status->freq;
1111
1112 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1113
1114 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1115 return;
1116
Thomas Pedersen9a90bc82012-10-20 19:03:10 -07001117 if (mesh_matches_local(sdata, &elems))
Thomas Pedersenf743ff42012-04-18 19:23:43 -07001118 mesh_neighbour_update(sdata, mgmt->sa, &elems);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001119
1120 if (ifmsh->sync_ops)
1121 ifmsh->sync_ops->rx_bcn_presp(sdata,
1122 stype, mgmt, &elems, rx_status);
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001123
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001124 if (ifmsh->csa_role != IEEE80211_MESH_CSA_ROLE_INIT &&
1125 !sdata->vif.csa_active)
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001126 ieee80211_mesh_process_chnswitch(sdata, &elems, true);
Johannes Berg472dbc42008-09-11 00:01:49 +02001127}
1128
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001129int ieee80211_mesh_finish_csa(struct ieee80211_sub_if_data *sdata)
1130{
1131 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1132 struct mesh_csa_settings *tmp_csa_settings;
1133 int ret = 0;
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001134 int changed = 0;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001135
1136 /* Reset the TTL value and Initiator flag */
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001137 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001138 ifmsh->chsw_ttl = 0;
1139
1140 /* Remove the CSA and MCSP elements from the beacon */
1141 tmp_csa_settings = rcu_dereference(ifmsh->csa);
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301142 RCU_INIT_POINTER(ifmsh->csa, NULL);
Luciano Coelho66e01cf2014-01-13 19:43:00 +02001143 if (tmp_csa_settings)
1144 kfree_rcu(tmp_csa_settings, rcu_head);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001145 ret = ieee80211_mesh_rebuild_beacon(sdata);
1146 if (ret)
1147 return -EINVAL;
1148
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001149 changed |= BSS_CHANGED_BEACON;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001150
1151 mcsa_dbg(sdata, "complete switching to center freq %d MHz",
1152 sdata->vif.bss_conf.chandef.chan->center_freq);
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001153 return changed;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001154}
1155
1156int ieee80211_mesh_csa_beacon(struct ieee80211_sub_if_data *sdata,
Luciano Coelho66e01cf2014-01-13 19:43:00 +02001157 struct cfg80211_csa_settings *csa_settings)
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001158{
1159 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1160 struct mesh_csa_settings *tmp_csa_settings;
1161 int ret = 0;
1162
1163 tmp_csa_settings = kmalloc(sizeof(*tmp_csa_settings),
1164 GFP_ATOMIC);
1165 if (!tmp_csa_settings)
1166 return -ENOMEM;
1167
1168 memcpy(&tmp_csa_settings->settings, csa_settings,
1169 sizeof(struct cfg80211_csa_settings));
1170
1171 rcu_assign_pointer(ifmsh->csa, tmp_csa_settings);
1172
1173 ret = ieee80211_mesh_rebuild_beacon(sdata);
1174 if (ret) {
1175 tmp_csa_settings = rcu_dereference(ifmsh->csa);
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301176 RCU_INIT_POINTER(ifmsh->csa, NULL);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001177 kfree_rcu(tmp_csa_settings, rcu_head);
1178 return ret;
1179 }
1180
Luciano Coelhob58e81e2014-01-13 19:42:59 +02001181 return BSS_CHANGED_BEACON;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001182}
1183
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001184static int mesh_fwd_csa_frame(struct ieee80211_sub_if_data *sdata,
1185 struct ieee80211_mgmt *mgmt, size_t len)
1186{
1187 struct ieee80211_mgmt *mgmt_fwd;
1188 struct sk_buff *skb;
1189 struct ieee80211_local *local = sdata->local;
1190 u8 *pos = mgmt->u.action.u.chan_switch.variable;
1191 size_t offset_ttl;
1192
1193 skb = dev_alloc_skb(local->tx_headroom + len);
1194 if (!skb)
1195 return -ENOMEM;
1196 skb_reserve(skb, local->tx_headroom);
1197 mgmt_fwd = (struct ieee80211_mgmt *) skb_put(skb, len);
1198
1199 /* offset_ttl is based on whether the secondary channel
Antonio Ospiteb314c662014-06-04 14:03:49 +02001200 * offset is available or not. Subtract 1 from the mesh TTL
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001201 * and disable the initiator flag before forwarding.
1202 */
1203 offset_ttl = (len < 42) ? 7 : 10;
1204 *(pos + offset_ttl) -= 1;
1205 *(pos + offset_ttl + 1) &= ~WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
1206
1207 memcpy(mgmt_fwd, mgmt, len);
1208 eth_broadcast_addr(mgmt_fwd->da);
1209 memcpy(mgmt_fwd->sa, sdata->vif.addr, ETH_ALEN);
1210 memcpy(mgmt_fwd->bssid, sdata->vif.addr, ETH_ALEN);
1211
1212 ieee80211_tx_skb(sdata, skb);
1213 return 0;
1214}
1215
1216static void mesh_rx_csa_frame(struct ieee80211_sub_if_data *sdata,
1217 struct ieee80211_mgmt *mgmt, size_t len)
1218{
1219 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1220 struct ieee802_11_elems elems;
1221 u16 pre_value;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001222 bool fwd_csa = true;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001223 size_t baselen;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001224 u8 *pos;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001225
1226 if (mgmt->u.action.u.measurement.action_code !=
1227 WLAN_ACTION_SPCT_CHL_SWITCH)
1228 return;
1229
1230 pos = mgmt->u.action.u.chan_switch.variable;
1231 baselen = offsetof(struct ieee80211_mgmt,
1232 u.action.u.chan_switch.variable);
1233 ieee802_11_parse_elems(pos, len - baselen, false, &elems);
1234
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001235 ifmsh->chsw_ttl = elems.mesh_chansw_params_ie->mesh_ttl;
1236 if (!--ifmsh->chsw_ttl)
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001237 fwd_csa = false;
1238
1239 pre_value = le16_to_cpu(elems.mesh_chansw_params_ie->mesh_pre_value);
1240 if (ifmsh->pre_value >= pre_value)
1241 return;
1242
1243 ifmsh->pre_value = pre_value;
1244
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001245 if (!sdata->vif.csa_active &&
1246 !ieee80211_mesh_process_chnswitch(sdata, &elems, false)) {
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001247 mcsa_dbg(sdata, "Failed to process CSA action frame");
1248 return;
1249 }
1250
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001251 /* forward or re-broadcast the CSA frame */
1252 if (fwd_csa) {
1253 if (mesh_fwd_csa_frame(sdata, mgmt, len) < 0)
1254 mcsa_dbg(sdata, "Failed to forward the CSA frame");
1255 }
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001256}
1257
Johannes Berg472dbc42008-09-11 00:01:49 +02001258static void ieee80211_mesh_rx_mgmt_action(struct ieee80211_sub_if_data *sdata,
1259 struct ieee80211_mgmt *mgmt,
1260 size_t len,
1261 struct ieee80211_rx_status *rx_status)
1262{
1263 switch (mgmt->u.action.category) {
Thomas Pedersen8db09852011-08-12 20:01:00 -07001264 case WLAN_CATEGORY_SELF_PROTECTED:
1265 switch (mgmt->u.action.u.self_prot.action_code) {
1266 case WLAN_SP_MESH_PEERING_OPEN:
1267 case WLAN_SP_MESH_PEERING_CLOSE:
1268 case WLAN_SP_MESH_PEERING_CONFIRM:
1269 mesh_rx_plink_frame(sdata, mgmt, len, rx_status);
1270 break;
1271 }
Johannes Berg472dbc42008-09-11 00:01:49 +02001272 break;
Thomas Pedersen25d49e42011-08-11 19:35:15 -07001273 case WLAN_CATEGORY_MESH_ACTION:
1274 if (mesh_action_is_path_sel(mgmt))
1275 mesh_rx_path_sel_frame(sdata, mgmt, len);
Johannes Berg472dbc42008-09-11 00:01:49 +02001276 break;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001277 case WLAN_CATEGORY_SPECTRUM_MGMT:
1278 mesh_rx_csa_frame(sdata, mgmt, len);
1279 break;
Johannes Berg472dbc42008-09-11 00:01:49 +02001280 }
1281}
1282
Johannes Berg1fa57d02010-06-10 10:21:32 +02001283void ieee80211_mesh_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
1284 struct sk_buff *skb)
Johannes Berg472dbc42008-09-11 00:01:49 +02001285{
1286 struct ieee80211_rx_status *rx_status;
Johannes Berg472dbc42008-09-11 00:01:49 +02001287 struct ieee80211_mgmt *mgmt;
1288 u16 stype;
1289
Thomas Pedersenecccd072013-06-10 13:17:21 -07001290 sdata_lock(sdata);
1291
1292 /* mesh already went down */
Johannes Berg1693d342014-01-22 10:08:57 +01001293 if (!sdata->u.mesh.mesh_id_len)
Thomas Pedersenecccd072013-06-10 13:17:21 -07001294 goto out;
1295
Johannes Bergf1d58c22009-06-17 13:13:00 +02001296 rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Berg472dbc42008-09-11 00:01:49 +02001297 mgmt = (struct ieee80211_mgmt *) skb->data;
1298 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
1299
1300 switch (stype) {
1301 case IEEE80211_STYPE_PROBE_RESP:
1302 case IEEE80211_STYPE_BEACON:
1303 ieee80211_mesh_rx_bcn_presp(sdata, stype, mgmt, skb->len,
1304 rx_status);
1305 break;
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001306 case IEEE80211_STYPE_PROBE_REQ:
1307 ieee80211_mesh_rx_probe_req(sdata, mgmt, skb->len);
1308 break;
Johannes Berg472dbc42008-09-11 00:01:49 +02001309 case IEEE80211_STYPE_ACTION:
1310 ieee80211_mesh_rx_mgmt_action(sdata, mgmt, skb->len, rx_status);
1311 break;
1312 }
Thomas Pedersenecccd072013-06-10 13:17:21 -07001313out:
1314 sdata_unlock(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001315}
1316
Thomas Pedersenf81a9de2013-06-13 15:54:41 -07001317static void mesh_bss_info_changed(struct ieee80211_sub_if_data *sdata)
1318{
1319 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1320 u32 bit, changed = 0;
1321
1322 for_each_set_bit(bit, &ifmsh->mbss_changed,
1323 sizeof(changed) * BITS_PER_BYTE) {
1324 clear_bit(bit, &ifmsh->mbss_changed);
1325 changed |= BIT(bit);
1326 }
1327
1328 if (sdata->vif.bss_conf.enable_beacon &&
1329 (changed & (BSS_CHANGED_BEACON |
1330 BSS_CHANGED_HT |
1331 BSS_CHANGED_BASIC_RATES |
1332 BSS_CHANGED_BEACON_INT)))
1333 if (ieee80211_mesh_rebuild_beacon(sdata))
1334 return;
1335
1336 ieee80211_bss_info_change_notify(sdata, changed);
1337}
1338
Johannes Berg1fa57d02010-06-10 10:21:32 +02001339void ieee80211_mesh_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +02001340{
Johannes Berg472dbc42008-09-11 00:01:49 +02001341 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02001342
Thomas Pedersenecccd072013-06-10 13:17:21 -07001343 sdata_lock(sdata);
1344
1345 /* mesh already went down */
Johannes Berg1693d342014-01-22 10:08:57 +01001346 if (!sdata->u.mesh.mesh_id_len)
Thomas Pedersenecccd072013-06-10 13:17:21 -07001347 goto out;
1348
Johannes Berg472dbc42008-09-11 00:01:49 +02001349 if (ifmsh->preq_queue_len &&
1350 time_after(jiffies,
1351 ifmsh->last_preq + msecs_to_jiffies(ifmsh->mshcfg.dot11MeshHWMPpreqMinInterval)))
1352 mesh_path_start_discovery(sdata);
1353
Javier Cardona18889232009-08-10 12:15:52 -07001354 if (test_and_clear_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags))
Johannes Bergbf7cd942013-02-15 14:40:31 +01001355 ieee80211_mesh_housekeeping(sdata);
Rui Pauloe304bfd2009-11-09 23:46:56 +00001356
1357 if (test_and_clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags))
1358 ieee80211_mesh_rootpath(sdata);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001359
1360 if (test_and_clear_bit(MESH_WORK_DRIFT_ADJUST, &ifmsh->wrkq_flags))
1361 mesh_sync_adjust_tbtt(sdata);
Thomas Pedersenecccd072013-06-10 13:17:21 -07001362
Thomas Pedersenf81a9de2013-06-13 15:54:41 -07001363 if (test_and_clear_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags))
1364 mesh_bss_info_changed(sdata);
Thomas Pedersenecccd072013-06-10 13:17:21 -07001365out:
1366 sdata_unlock(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001367}
1368
Johannes Berg472dbc42008-09-11 00:01:49 +02001369
Johannes Berg902acc72008-02-23 15:17:19 +01001370void ieee80211_mesh_init_sdata(struct ieee80211_sub_if_data *sdata)
1371{
Johannes Berg472dbc42008-09-11 00:01:49 +02001372 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Bergad2d2232012-12-14 14:34:25 +01001373 static u8 zero_addr[ETH_ALEN] = {};
Johannes Berg902acc72008-02-23 15:17:19 +01001374
Johannes Berg472dbc42008-09-11 00:01:49 +02001375 setup_timer(&ifmsh->housekeeping_timer,
1376 ieee80211_mesh_housekeeping_timer,
1377 (unsigned long) sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001378
Johannes Berg472dbc42008-09-11 00:01:49 +02001379 ifmsh->accepting_plinks = true;
Johannes Berg472dbc42008-09-11 00:01:49 +02001380 atomic_set(&ifmsh->mpaths, 0);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001381 mesh_rmc_init(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001382 ifmsh->last_preq = jiffies;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001383 ifmsh->next_perr = jiffies;
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001384 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
Johannes Berg902acc72008-02-23 15:17:19 +01001385 /* Allocate all mesh structures when creating the first mesh interface. */
1386 if (!mesh_allocated)
1387 ieee80211s_init();
Bob Copeland2bdaf382016-02-28 20:03:56 -05001388
1389 mesh_pathtbl_init(sdata);
1390
Johannes Berg472dbc42008-09-11 00:01:49 +02001391 setup_timer(&ifmsh->mesh_path_timer,
Johannes Berg902acc72008-02-23 15:17:19 +01001392 ieee80211_mesh_path_timer,
1393 (unsigned long) sdata);
Rui Pauloe304bfd2009-11-09 23:46:56 +00001394 setup_timer(&ifmsh->mesh_path_root_timer,
1395 ieee80211_mesh_path_root_timer,
1396 (unsigned long) sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001397 INIT_LIST_HEAD(&ifmsh->preq_queue.list);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001398 skb_queue_head_init(&ifmsh->ps.bc_buf);
Johannes Berg472dbc42008-09-11 00:01:49 +02001399 spin_lock_init(&ifmsh->mesh_preq_queue_lock);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001400 spin_lock_init(&ifmsh->sync_offset_lock);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001401 RCU_INIT_POINTER(ifmsh->beacon, NULL);
Johannes Bergad2d2232012-12-14 14:34:25 +01001402
1403 sdata->vif.bss_conf.bssid = zero_addr;
Johannes Berg472dbc42008-09-11 00:01:49 +02001404}
Bob Copeland0371a082016-03-26 11:27:18 -04001405
1406void ieee80211_mesh_teardown_sdata(struct ieee80211_sub_if_data *sdata)
1407{
1408 mesh_rmc_free(sdata);
1409 mesh_pathtbl_unregister(sdata);
1410}