blob: 6a1603bcdcedbccd99627d09d2b0367b361e1454 [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;
Jouni Malinen126e7552016-06-19 23:51:02 +0300151 u32 changed = 0;
Thomas Pedersen45b50282013-02-06 10:17:21 -0800152
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 */
Jouni Malinen126e7552016-06-19 23:51:02 +0300158 if (sdata->u.mesh.user_mpm &&
159 sta->mesh->plink_state == NL80211_PLINK_ESTAB)
160 changed |= mesh_plink_dec_estab_count(sdata);
161 changed |= mesh_accept_plinks_update(sdata);
Thomas Pedersena6dad6a2013-03-04 13:06:12 -0800162 if (!sdata->u.mesh.user_mpm) {
Thomas Pedersen45b50282013-02-06 10:17:21 -0800163 changed |= mesh_plink_deactivate(sta);
Johannes Berg433f5bc2015-06-17 10:31:00 +0200164 del_timer_sync(&sta->mesh->plink_timer);
Thomas Pedersen45b50282013-02-06 10:17:21 -0800165 }
166
Bob Copelandfe7a7c52016-05-15 13:19:16 -0400167 /* make sure no readers can access nexthop sta from here on */
168 mesh_path_flush_by_nexthop(sta);
169 synchronize_net();
170
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700171 if (changed)
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800172 ieee80211_mbss_info_change_notify(sdata, changed);
Thomas Pedersen45b50282013-02-06 10:17:21 -0800173}
174
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200175int mesh_rmc_init(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100176{
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100177 int i;
178
Johannes Berg472dbc42008-09-11 00:01:49 +0200179 sdata->u.mesh.rmc = kmalloc(sizeof(struct mesh_rmc), GFP_KERNEL);
180 if (!sdata->u.mesh.rmc)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100181 return -ENOMEM;
Johannes Berg472dbc42008-09-11 00:01:49 +0200182 sdata->u.mesh.rmc->idx_mask = RMC_BUCKETS - 1;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100183 for (i = 0; i < RMC_BUCKETS; i++)
Bob Copeland47a04892016-03-18 22:11:29 -0400184 INIT_HLIST_HEAD(&sdata->u.mesh.rmc->bucket[i]);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100185 return 0;
186}
187
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200188void mesh_rmc_free(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100189{
Johannes Berg472dbc42008-09-11 00:01:49 +0200190 struct mesh_rmc *rmc = sdata->u.mesh.rmc;
Bob Copeland47a04892016-03-18 22:11:29 -0400191 struct rmc_entry *p;
192 struct hlist_node *n;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100193 int i;
194
Johannes Berg472dbc42008-09-11 00:01:49 +0200195 if (!sdata->u.mesh.rmc)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100196 return;
197
Johannes Bergbf7cd942013-02-15 14:40:31 +0100198 for (i = 0; i < RMC_BUCKETS; i++) {
Bob Copeland47a04892016-03-18 22:11:29 -0400199 hlist_for_each_entry_safe(p, n, &rmc->bucket[i], list) {
200 hlist_del(&p->list);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100201 kmem_cache_free(rm_cache, p);
202 }
Johannes Bergbf7cd942013-02-15 14:40:31 +0100203 }
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100204
205 kfree(rmc);
Johannes Berg472dbc42008-09-11 00:01:49 +0200206 sdata->u.mesh.rmc = NULL;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100207}
208
209/**
210 * mesh_rmc_check - Check frame in recent multicast cache and add if absent.
211 *
Johannes Bergbf7cd942013-02-15 14:40:31 +0100212 * @sdata: interface
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100213 * @sa: source address
214 * @mesh_hdr: mesh_header
215 *
216 * Returns: 0 if the frame is not in the cache, nonzero otherwise.
217 *
218 * Checks using the source address and the mesh sequence number if we have
219 * received this frame lately. If the frame is not in the cache, it is added to
220 * it.
221 */
Johannes Bergbf7cd942013-02-15 14:40:31 +0100222int mesh_rmc_check(struct ieee80211_sub_if_data *sdata,
223 const u8 *sa, struct ieee80211s_hdr *mesh_hdr)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100224{
Johannes Berg472dbc42008-09-11 00:01:49 +0200225 struct mesh_rmc *rmc = sdata->u.mesh.rmc;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100226 u32 seqnum = 0;
227 int entries = 0;
228 u8 idx;
Bob Copeland47a04892016-03-18 22:11:29 -0400229 struct rmc_entry *p;
230 struct hlist_node *n;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100231
Bob Copeland0aa7fab2016-03-18 22:11:28 -0400232 if (!rmc)
233 return -1;
234
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100235 /* Don't care about endianness since only match matters */
Luis Carlos Cobo51cedda2008-04-23 12:15:29 -0700236 memcpy(&seqnum, &mesh_hdr->seqnum, sizeof(mesh_hdr->seqnum));
237 idx = le32_to_cpu(mesh_hdr->seqnum) & rmc->idx_mask;
Bob Copeland47a04892016-03-18 22:11:29 -0400238 hlist_for_each_entry_safe(p, n, &rmc->bucket[idx], list) {
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100239 ++entries;
240 if (time_after(jiffies, p->exp_time) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100241 entries == RMC_QUEUE_MAX_LEN) {
Bob Copeland47a04892016-03-18 22:11:29 -0400242 hlist_del(&p->list);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100243 kmem_cache_free(rm_cache, p);
244 --entries;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100245 } else if ((seqnum == p->seqnum) && ether_addr_equal(sa, p->sa))
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100246 return -1;
247 }
248
249 p = kmem_cache_alloc(rm_cache, GFP_ATOMIC);
Joe Perchesd15b8452011-08-29 14:17:31 -0700250 if (!p)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100251 return 0;
Joe Perchesd15b8452011-08-29 14:17:31 -0700252
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100253 p->seqnum = seqnum;
254 p->exp_time = jiffies + RMC_TIMEOUT;
255 memcpy(p->sa, sa, ETH_ALEN);
Bob Copeland47a04892016-03-18 22:11:29 -0400256 hlist_add_head(&p->list, &rmc->bucket[idx]);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100257 return 0;
258}
259
Johannes Bergbf7cd942013-02-15 14:40:31 +0100260int mesh_add_meshconf_ie(struct ieee80211_sub_if_data *sdata,
261 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700262{
263 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
264 u8 *pos, neighbors;
265 u8 meshconf_len = sizeof(struct ieee80211_meshconf_ie);
266
267 if (skb_tailroom(skb) < 2 + meshconf_len)
268 return -ENOMEM;
269
270 pos = skb_put(skb, 2 + meshconf_len);
271 *pos++ = WLAN_EID_MESH_CONFIG;
272 *pos++ = meshconf_len;
273
Thomas Pedersen43552be2013-12-15 13:14:16 -0800274 /* save a pointer for quick updates in pre-tbtt */
275 ifmsh->meshconf_offset = pos - skb->data;
276
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700277 /* Active path selection protocol ID */
278 *pos++ = ifmsh->mesh_pp_id;
279 /* Active path selection metric ID */
280 *pos++ = ifmsh->mesh_pm_id;
281 /* Congestion control mode identifier */
282 *pos++ = ifmsh->mesh_cc_id;
283 /* Synchronization protocol identifier */
284 *pos++ = ifmsh->mesh_sp_id;
285 /* Authentication Protocol identifier */
286 *pos++ = ifmsh->mesh_auth_id;
287 /* Mesh Formation Info - number of neighbors */
Ashok Nagarajan1258d972012-10-09 13:27:47 -0700288 neighbors = atomic_read(&ifmsh->estab_plinks);
Jacob Minshalle05eccc2013-05-29 14:32:36 -0700289 neighbors = min_t(int, neighbors, IEEE80211_MAX_MESH_PEERINGS);
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700290 *pos++ = neighbors << 1;
291 /* Mesh capability */
Chun-Yeow Yeohb60e5272013-07-12 18:55:22 +0800292 *pos = 0x00;
293 *pos |= ifmsh->mshcfg.dot11MeshForwarding ?
294 IEEE80211_MESHCONF_CAPAB_FORWARDING : 0x00;
Javier Cardonadbf498f2012-03-31 11:31:32 -0700295 *pos |= ifmsh->accepting_plinks ?
Johannes Bergbf7cd942013-02-15 14:40:31 +0100296 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS : 0x00;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100297 /* Mesh PS mode. See IEEE802.11-2012 8.4.2.100.8 */
298 *pos |= ifmsh->ps_peers_deep_sleep ?
Johannes Bergbf7cd942013-02-15 14:40:31 +0100299 IEEE80211_MESHCONF_CAPAB_POWER_SAVE_LEVEL : 0x00;
Javier Cardonadbf498f2012-03-31 11:31:32 -0700300 *pos++ |= ifmsh->adjusting_tbtt ?
Johannes Bergbf7cd942013-02-15 14:40:31 +0100301 IEEE80211_MESHCONF_CAPAB_TBTT_ADJUSTING : 0x00;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700302 *pos++ = 0x00;
303
304 return 0;
305}
306
Johannes Bergbf7cd942013-02-15 14:40:31 +0100307int mesh_add_meshid_ie(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700308{
309 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
310 u8 *pos;
311
312 if (skb_tailroom(skb) < 2 + ifmsh->mesh_id_len)
313 return -ENOMEM;
314
315 pos = skb_put(skb, 2 + ifmsh->mesh_id_len);
316 *pos++ = WLAN_EID_MESH_ID;
317 *pos++ = ifmsh->mesh_id_len;
318 if (ifmsh->mesh_id_len)
319 memcpy(pos, ifmsh->mesh_id, ifmsh->mesh_id_len);
320
321 return 0;
322}
323
Johannes Bergbf7cd942013-02-15 14:40:31 +0100324static int mesh_add_awake_window_ie(struct ieee80211_sub_if_data *sdata,
325 struct sk_buff *skb)
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100326{
327 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
328 u8 *pos;
329
330 /* see IEEE802.11-2012 13.14.6 */
331 if (ifmsh->ps_peers_light_sleep == 0 &&
332 ifmsh->ps_peers_deep_sleep == 0 &&
333 ifmsh->nonpeer_pm == NL80211_MESH_POWER_ACTIVE)
334 return 0;
335
336 if (skb_tailroom(skb) < 4)
337 return -ENOMEM;
338
339 pos = skb_put(skb, 2 + 2);
340 *pos++ = WLAN_EID_MESH_AWAKE_WINDOW;
341 *pos++ = 2;
342 put_unaligned_le16(ifmsh->mshcfg.dot11MeshAwakeWindowDuration, pos);
343
344 return 0;
345}
346
Johannes Bergbf7cd942013-02-15 14:40:31 +0100347int mesh_add_vendor_ies(struct ieee80211_sub_if_data *sdata,
348 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700349{
350 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
351 u8 offset, len;
352 const u8 *data;
353
354 if (!ifmsh->ie || !ifmsh->ie_len)
355 return 0;
356
357 /* fast-forward to vendor IEs */
358 offset = ieee80211_ie_split_vendor(ifmsh->ie, ifmsh->ie_len, 0);
359
360 if (offset) {
361 len = ifmsh->ie_len - offset;
362 data = ifmsh->ie + offset;
363 if (skb_tailroom(skb) < len)
364 return -ENOMEM;
365 memcpy(skb_put(skb, len), data, len);
366 }
367
368 return 0;
369}
370
Johannes Bergbf7cd942013-02-15 14:40:31 +0100371int mesh_add_rsn_ie(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700372{
373 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
374 u8 len = 0;
375 const u8 *data;
376
377 if (!ifmsh->ie || !ifmsh->ie_len)
378 return 0;
379
380 /* find RSN IE */
Bob Copelanda40a8c12014-04-15 10:43:07 -0400381 data = cfg80211_find_ie(WLAN_EID_RSN, ifmsh->ie, ifmsh->ie_len);
382 if (!data)
383 return 0;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700384
Bob Copelanda40a8c12014-04-15 10:43:07 -0400385 len = data[1] + 2;
386
387 if (skb_tailroom(skb) < len)
388 return -ENOMEM;
389 memcpy(skb_put(skb, len), data, len);
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700390
391 return 0;
392}
393
Johannes Bergbf7cd942013-02-15 14:40:31 +0100394static int mesh_add_ds_params_ie(struct ieee80211_sub_if_data *sdata,
395 struct sk_buff *skb)
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700396{
Johannes Berg55de9082012-07-26 17:24:39 +0200397 struct ieee80211_chanctx_conf *chanctx_conf;
398 struct ieee80211_channel *chan;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700399 u8 *pos;
400
401 if (skb_tailroom(skb) < 3)
402 return -ENOMEM;
403
Johannes Berg55de9082012-07-26 17:24:39 +0200404 rcu_read_lock();
405 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
406 if (WARN_ON(!chanctx_conf)) {
407 rcu_read_unlock();
408 return -EINVAL;
409 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100410 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200411 rcu_read_unlock();
412
Emanuel Taube601513a2013-02-06 14:17:17 +0100413 pos = skb_put(skb, 2 + 1);
414 *pos++ = WLAN_EID_DS_PARAMS;
415 *pos++ = 1;
416 *pos++ = ieee80211_frequency_to_channel(chan->center_freq);
Rui Paulobe125c62009-11-09 23:46:54 +0000417
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700418 return 0;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100419}
420
Johannes Bergbf7cd942013-02-15 14:40:31 +0100421int mesh_add_ht_cap_ie(struct ieee80211_sub_if_data *sdata,
422 struct sk_buff *skb)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700423{
424 struct ieee80211_local *local = sdata->local;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200425 enum nl80211_band band = ieee80211_get_sdata_band(sdata);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700426 struct ieee80211_supported_band *sband;
427 u8 *pos;
428
Johannes Berg55de9082012-07-26 17:24:39 +0200429 sband = local->hw.wiphy->bands[band];
Thomas Pedersen176f3602011-10-26 14:47:27 -0700430 if (!sband->ht_cap.ht_supported ||
Simon Wunderlich0418a442013-05-16 13:00:31 +0200431 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
432 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
433 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700434 return 0;
435
436 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_cap))
437 return -ENOMEM;
438
439 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_cap));
Ben Greearef96a8422011-11-18 11:32:00 -0800440 ieee80211_ie_build_ht_cap(pos, &sband->ht_cap, sband->ht_cap.cap);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700441
442 return 0;
443}
444
Johannes Bergbf7cd942013-02-15 14:40:31 +0100445int mesh_add_ht_oper_ie(struct ieee80211_sub_if_data *sdata,
446 struct sk_buff *skb)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700447{
448 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +0200449 struct ieee80211_chanctx_conf *chanctx_conf;
450 struct ieee80211_channel *channel;
Johannes Berg55de9082012-07-26 17:24:39 +0200451 struct ieee80211_supported_band *sband;
452 struct ieee80211_sta_ht_cap *ht_cap;
Thomas Pedersen176f3602011-10-26 14:47:27 -0700453 u8 *pos;
454
Johannes Berg55de9082012-07-26 17:24:39 +0200455 rcu_read_lock();
456 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
457 if (WARN_ON(!chanctx_conf)) {
458 rcu_read_unlock();
459 return -EINVAL;
460 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100461 channel = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200462 rcu_read_unlock();
463
464 sband = local->hw.wiphy->bands[channel->band];
465 ht_cap = &sband->ht_cap;
466
Bob Copelandc85fb532015-08-27 09:00:18 -0400467 if (!ht_cap->ht_supported ||
468 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
469 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
470 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700471 return 0;
472
Johannes Berg074d46d2012-03-15 19:45:16 +0100473 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_operation))
Thomas Pedersen176f3602011-10-26 14:47:27 -0700474 return -ENOMEM;
475
Johannes Berg074d46d2012-03-15 19:45:16 +0100476 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_operation));
Johannes Berg4bf88532012-11-09 11:39:59 +0100477 ieee80211_ie_build_ht_oper(pos, ht_cap, &sdata->vif.bss_conf.chandef,
Arik Nemtsov57f255f2015-10-25 10:59:34 +0200478 sdata->vif.bss_conf.ht_operation_mode,
479 false);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700480
481 return 0;
482}
Johannes Bergbf7cd942013-02-15 14:40:31 +0100483
Bob Copelandc85fb532015-08-27 09:00:18 -0400484int mesh_add_vht_cap_ie(struct ieee80211_sub_if_data *sdata,
485 struct sk_buff *skb)
486{
487 struct ieee80211_local *local = sdata->local;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200488 enum nl80211_band band = ieee80211_get_sdata_band(sdata);
Bob Copelandc85fb532015-08-27 09:00:18 -0400489 struct ieee80211_supported_band *sband;
490 u8 *pos;
491
492 sband = local->hw.wiphy->bands[band];
493 if (!sband->vht_cap.vht_supported ||
494 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
495 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
496 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
497 return 0;
498
499 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_vht_cap))
500 return -ENOMEM;
501
502 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_cap));
503 ieee80211_ie_build_vht_cap(pos, &sband->vht_cap, sband->vht_cap.cap);
504
505 return 0;
506}
507
508int mesh_add_vht_oper_ie(struct ieee80211_sub_if_data *sdata,
509 struct sk_buff *skb)
510{
511 struct ieee80211_local *local = sdata->local;
512 struct ieee80211_chanctx_conf *chanctx_conf;
513 struct ieee80211_channel *channel;
514 struct ieee80211_supported_band *sband;
515 struct ieee80211_sta_vht_cap *vht_cap;
516 u8 *pos;
517
518 rcu_read_lock();
519 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
520 if (WARN_ON(!chanctx_conf)) {
521 rcu_read_unlock();
522 return -EINVAL;
523 }
524 channel = chanctx_conf->def.chan;
525 rcu_read_unlock();
526
527 sband = local->hw.wiphy->bands[channel->band];
528 vht_cap = &sband->vht_cap;
529
530 if (!vht_cap->vht_supported ||
531 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
532 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
533 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
534 return 0;
535
536 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_vht_operation))
537 return -ENOMEM;
538
539 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_operation));
540 ieee80211_ie_build_vht_oper(pos, vht_cap,
541 &sdata->vif.bss_conf.chandef);
542
543 return 0;
544}
545
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100546static void ieee80211_mesh_path_timer(unsigned long data)
547{
548 struct ieee80211_sub_if_data *sdata =
549 (struct ieee80211_sub_if_data *) data;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100550
Stanislaw Gruszka690205f2013-02-28 10:55:29 +0100551 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100552}
553
Rui Pauloe304bfd2009-11-09 23:46:56 +0000554static void ieee80211_mesh_path_root_timer(unsigned long data)
555{
556 struct ieee80211_sub_if_data *sdata =
557 (struct ieee80211_sub_if_data *) data;
558 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Rui Pauloe304bfd2009-11-09 23:46:56 +0000559
560 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
561
Stanislaw Gruszka690205f2013-02-28 10:55:29 +0100562 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000563}
564
Rui Paulo63c57232009-11-09 23:46:57 +0000565void ieee80211_mesh_root_setup(struct ieee80211_if_mesh *ifmsh)
566{
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +0800567 if (ifmsh->mshcfg.dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)
Rui Paulo63c57232009-11-09 23:46:57 +0000568 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
569 else {
570 clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
571 /* stop running timer */
572 del_timer_sync(&ifmsh->mesh_path_root_timer);
573 }
574}
575
Johannes Berg902acc72008-02-23 15:17:19 +0100576/**
Javier Cardona3c5772a2009-08-10 12:15:48 -0700577 * ieee80211_fill_mesh_addresses - fill addresses of a locally originated mesh frame
Johannes Bergbf7cd942013-02-15 14:40:31 +0100578 * @hdr: 802.11 frame header
Javier Cardona3c5772a2009-08-10 12:15:48 -0700579 * @fc: frame control field
580 * @meshda: destination address in the mesh
581 * @meshsa: source address address in the mesh. Same as TA, as frame is
582 * locally originated.
583 *
584 * Return the length of the 802.11 (does not include a mesh control header)
585 */
Johannes Berg15ff6362009-11-17 13:34:04 +0100586int ieee80211_fill_mesh_addresses(struct ieee80211_hdr *hdr, __le16 *fc,
587 const u8 *meshda, const u8 *meshsa)
588{
Javier Cardona3c5772a2009-08-10 12:15:48 -0700589 if (is_multicast_ether_addr(meshda)) {
590 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
591 /* DA TA SA */
592 memcpy(hdr->addr1, meshda, ETH_ALEN);
593 memcpy(hdr->addr2, meshsa, ETH_ALEN);
594 memcpy(hdr->addr3, meshsa, ETH_ALEN);
595 return 24;
596 } else {
Javier Cardona2154c81c2011-09-07 17:49:53 -0700597 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Javier Cardona3c5772a2009-08-10 12:15:48 -0700598 /* RA TA DA SA */
Joe Perchesc84a67a2015-03-02 19:54:57 -0800599 eth_zero_addr(hdr->addr1); /* RA is resolved later */
Javier Cardona3c5772a2009-08-10 12:15:48 -0700600 memcpy(hdr->addr2, meshsa, ETH_ALEN);
601 memcpy(hdr->addr3, meshda, ETH_ALEN);
602 memcpy(hdr->addr4, meshsa, ETH_ALEN);
603 return 30;
604 }
605}
606
607/**
Johannes Berg902acc72008-02-23 15:17:19 +0100608 * ieee80211_new_mesh_header - create a new mesh header
Johannes Berg902acc72008-02-23 15:17:19 +0100609 * @sdata: mesh interface to be used
Johannes Bergbf7cd942013-02-15 14:40:31 +0100610 * @meshhdr: uninitialized mesh header
Javier Cardona61ad5392010-12-16 17:23:34 -0800611 * @addr4or5: 1st address in the ae header, which may correspond to address 4
612 * (if addr6 is NULL) or address 5 (if addr6 is present). It may
613 * be NULL.
614 * @addr6: 2nd address in the ae header, which corresponds to addr6 of the
615 * mesh frame
Johannes Berg902acc72008-02-23 15:17:19 +0100616 *
617 * Return the header length.
618 */
Andrzej Hajda5edfcee2015-09-25 08:42:00 +0200619unsigned int ieee80211_new_mesh_header(struct ieee80211_sub_if_data *sdata,
620 struct ieee80211s_hdr *meshhdr,
621 const char *addr4or5, const char *addr6)
Johannes Berg902acc72008-02-23 15:17:19 +0100622{
Johannes Bergbf7cd942013-02-15 14:40:31 +0100623 if (WARN_ON(!addr4or5 && addr6))
624 return 0;
625
Julia Lawall0c3cee72009-12-09 20:25:59 +0100626 memset(meshhdr, 0, sizeof(*meshhdr));
Johannes Bergbf7cd942013-02-15 14:40:31 +0100627
Johannes Berg472dbc42008-09-11 00:01:49 +0200628 meshhdr->ttl = sdata->u.mesh.mshcfg.dot11MeshTTL;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100629
630 /* FIXME: racy -- TX on multiple queues can be concurrent */
Johannes Berg472dbc42008-09-11 00:01:49 +0200631 put_unaligned(cpu_to_le32(sdata->u.mesh.mesh_seqnum), &meshhdr->seqnum);
632 sdata->u.mesh.mesh_seqnum++;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100633
Javier Cardona61ad5392010-12-16 17:23:34 -0800634 if (addr4or5 && !addr6) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700635 meshhdr->flags |= MESH_FLAGS_AE_A4;
Javier Cardona61ad5392010-12-16 17:23:34 -0800636 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +0100637 return 2 * ETH_ALEN;
Javier Cardona61ad5392010-12-16 17:23:34 -0800638 } else if (addr4or5 && addr6) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700639 meshhdr->flags |= MESH_FLAGS_AE_A5_A6;
Javier Cardona61ad5392010-12-16 17:23:34 -0800640 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
641 memcpy(meshhdr->eaddr2, addr6, ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +0100642 return 3 * ETH_ALEN;
Javier Cardona3c5772a2009-08-10 12:15:48 -0700643 }
Johannes Bergbf7cd942013-02-15 14:40:31 +0100644
645 return ETH_ALEN;
Johannes Berg902acc72008-02-23 15:17:19 +0100646}
647
Johannes Bergbf7cd942013-02-15 14:40:31 +0100648static void ieee80211_mesh_housekeeping(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +0200649{
Johannes Bergbf7cd942013-02-15 14:40:31 +0100650 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Marco Porschdf323812012-08-08 07:58:43 +0200651 u32 changed;
Johannes Berg472dbc42008-09-11 00:01:49 +0200652
Masashi Honma31f909a2015-02-24 22:42:16 +0900653 if (ifmsh->mshcfg.plink_timeout > 0)
654 ieee80211_sta_expire(sdata, ifmsh->mshcfg.plink_timeout * HZ);
Johannes Berg472dbc42008-09-11 00:01:49 +0200655 mesh_path_expire(sdata);
656
Marco Porschdf323812012-08-08 07:58:43 +0200657 changed = mesh_accept_plinks_update(sdata);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800658 ieee80211_mbss_info_change_notify(sdata, changed);
Johannes Berg472dbc42008-09-11 00:01:49 +0200659
Johannes Berg472dbc42008-09-11 00:01:49 +0200660 mod_timer(&ifmsh->housekeeping_timer,
Johannes Bergbf7cd942013-02-15 14:40:31 +0100661 round_jiffies(jiffies +
662 IEEE80211_MESH_HOUSEKEEPING_INTERVAL));
Johannes Berg472dbc42008-09-11 00:01:49 +0200663}
664
Rui Pauloe304bfd2009-11-09 23:46:56 +0000665static void ieee80211_mesh_rootpath(struct ieee80211_sub_if_data *sdata)
666{
667 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800668 u32 interval;
Rui Pauloe304bfd2009-11-09 23:46:56 +0000669
670 mesh_path_tx_root_frame(sdata);
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800671
672 if (ifmsh->mshcfg.dot11MeshHWMPRootMode == IEEE80211_PROACTIVE_RANN)
673 interval = ifmsh->mshcfg.dot11MeshHWMPRannInterval;
674 else
675 interval = ifmsh->mshcfg.dot11MeshHWMProotInterval;
676
Rui Pauloe304bfd2009-11-09 23:46:56 +0000677 mod_timer(&ifmsh->mesh_path_root_timer,
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800678 round_jiffies(TU_TO_EXP_TIME(interval)));
Rui Pauloe304bfd2009-11-09 23:46:56 +0000679}
680
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800681static int
682ieee80211_mesh_build_beacon(struct ieee80211_if_mesh *ifmsh)
683{
684 struct beacon_data *bcn;
685 int head_len, tail_len;
686 struct sk_buff *skb;
687 struct ieee80211_mgmt *mgmt;
688 struct ieee80211_chanctx_conf *chanctx_conf;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700689 struct mesh_csa_settings *csa;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200690 enum nl80211_band band;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800691 u8 *pos;
692 struct ieee80211_sub_if_data *sdata;
693 int hdr_len = offsetof(struct ieee80211_mgmt, u.beacon) +
694 sizeof(mgmt->u.beacon);
695
696 sdata = container_of(ifmsh, struct ieee80211_sub_if_data, u.mesh);
697 rcu_read_lock();
698 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
699 band = chanctx_conf->def.chan->band;
700 rcu_read_unlock();
701
702 head_len = hdr_len +
703 2 + /* NULL SSID */
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700704 /* Channel Switch Announcement */
705 2 + sizeof(struct ieee80211_channel_sw_ie) +
706 /* Mesh Channel Swith Parameters */
707 2 + sizeof(struct ieee80211_mesh_chansw_params_ie) +
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800708 2 + 8 + /* supported rates */
709 2 + 3; /* DS params */
710 tail_len = 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
711 2 + sizeof(struct ieee80211_ht_cap) +
712 2 + sizeof(struct ieee80211_ht_operation) +
713 2 + ifmsh->mesh_id_len +
714 2 + sizeof(struct ieee80211_meshconf_ie) +
715 2 + sizeof(__le16) + /* awake window */
Bob Copelandc85fb532015-08-27 09:00:18 -0400716 2 + sizeof(struct ieee80211_vht_cap) +
717 2 + sizeof(struct ieee80211_vht_operation) +
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800718 ifmsh->ie_len;
719
720 bcn = kzalloc(sizeof(*bcn) + head_len + tail_len, GFP_KERNEL);
721 /* need an skb for IE builders to operate on */
722 skb = dev_alloc_skb(max(head_len, tail_len));
723
724 if (!bcn || !skb)
725 goto out_free;
726
727 /*
728 * pointers go into the block we allocated,
729 * memory is | beacon_data | head | tail |
730 */
731 bcn->head = ((u8 *) bcn) + sizeof(*bcn);
732
733 /* fill in the head */
734 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
735 memset(mgmt, 0, hdr_len);
736 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
737 IEEE80211_STYPE_BEACON);
738 eth_broadcast_addr(mgmt->da);
739 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
740 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
741 ieee80211_mps_set_frame_flags(sdata, NULL, (void *) mgmt);
742 mgmt->u.beacon.beacon_int =
743 cpu_to_le16(sdata->vif.bss_conf.beacon_int);
744 mgmt->u.beacon.capab_info |= cpu_to_le16(
745 sdata->u.mesh.security ? WLAN_CAPABILITY_PRIVACY : 0);
746
747 pos = skb_put(skb, 2);
748 *pos++ = WLAN_EID_SSID;
749 *pos++ = 0x0;
750
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700751 rcu_read_lock();
752 csa = rcu_dereference(ifmsh->csa);
753 if (csa) {
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700754 pos = skb_put(skb, 13);
755 memset(pos, 0, 13);
756 *pos++ = WLAN_EID_CHANNEL_SWITCH;
757 *pos++ = 3;
758 *pos++ = 0x0;
759 *pos++ = ieee80211_frequency_to_channel(
760 csa->settings.chandef.chan->center_freq);
Chun-Yeow Yeoh8df734e2015-06-09 13:35:33 +0800761 bcn->csa_current_counter = csa->settings.count;
Michal Kazioraf296bd2014-06-05 14:21:36 +0200762 bcn->csa_counter_offsets[0] = hdr_len + 6;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700763 *pos++ = csa->settings.count;
764 *pos++ = WLAN_EID_CHAN_SWITCH_PARAM;
765 *pos++ = 6;
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200766 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT) {
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700767 *pos++ = ifmsh->mshcfg.dot11MeshTTL;
768 *pos |= WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
769 } else {
770 *pos++ = ifmsh->chsw_ttl;
771 }
772 *pos++ |= csa->settings.block_tx ?
773 WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT : 0x00;
774 put_unaligned_le16(WLAN_REASON_MESH_CHAN, pos);
775 pos += 2;
Chun-Yeow Yeohca91dc92013-11-12 10:31:48 +0800776 put_unaligned_le16(ifmsh->pre_value, pos);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -0700777 pos += 2;
778 }
779 rcu_read_unlock();
780
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800781 if (ieee80211_add_srates_ie(sdata, skb, true, band) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100782 mesh_add_ds_params_ie(sdata, skb))
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800783 goto out_free;
784
785 bcn->head_len = skb->len;
786 memcpy(bcn->head, skb->data, bcn->head_len);
787
788 /* now the tail */
789 skb_trim(skb, 0);
790 bcn->tail = bcn->head + bcn->head_len;
791
792 if (ieee80211_add_ext_srates_ie(sdata, skb, true, band) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100793 mesh_add_rsn_ie(sdata, skb) ||
794 mesh_add_ht_cap_ie(sdata, skb) ||
795 mesh_add_ht_oper_ie(sdata, skb) ||
796 mesh_add_meshid_ie(sdata, skb) ||
797 mesh_add_meshconf_ie(sdata, skb) ||
798 mesh_add_awake_window_ie(sdata, skb) ||
Bob Copelandc85fb532015-08-27 09:00:18 -0400799 mesh_add_vht_cap_ie(sdata, skb) ||
800 mesh_add_vht_oper_ie(sdata, skb) ||
Johannes Bergbf7cd942013-02-15 14:40:31 +0100801 mesh_add_vendor_ies(sdata, skb))
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800802 goto out_free;
803
804 bcn->tail_len = skb->len;
805 memcpy(bcn->tail, skb->data, bcn->tail_len);
Thomas Pedersen43552be2013-12-15 13:14:16 -0800806 bcn->meshconf = (struct ieee80211_meshconf_ie *)
807 (bcn->tail + ifmsh->meshconf_offset);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800808
809 dev_kfree_skb(skb);
810 rcu_assign_pointer(ifmsh->beacon, bcn);
811 return 0;
812out_free:
813 kfree(bcn);
814 dev_kfree_skb(skb);
815 return -ENOMEM;
816}
817
818static int
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200819ieee80211_mesh_rebuild_beacon(struct ieee80211_sub_if_data *sdata)
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800820{
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800821 struct beacon_data *old_bcn;
822 int ret;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800823
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200824 old_bcn = rcu_dereference_protected(sdata->u.mesh.beacon,
825 lockdep_is_held(&sdata->wdev.mtx));
826 ret = ieee80211_mesh_build_beacon(&sdata->u.mesh);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800827 if (ret)
828 /* just reuse old beacon */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200829 return ret;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800830
831 if (old_bcn)
832 kfree_rcu(old_bcn, rcu_head);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200833 return 0;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800834}
835
836void ieee80211_mbss_info_change_notify(struct ieee80211_sub_if_data *sdata,
837 u32 changed)
838{
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700839 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
840 unsigned long bits = changed;
841 u32 bit;
842
843 if (!bits)
844 return;
845
846 /* if we race with running work, worst case this work becomes a noop */
847 for_each_set_bit(bit, &bits, sizeof(changed) * BITS_PER_BYTE)
848 set_bit(bit, &ifmsh->mbss_changed);
849 set_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags);
850 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800851}
852
853int ieee80211_start_mesh(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +0200854{
855 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
856 struct ieee80211_local *local = sdata->local;
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800857 u32 changed = BSS_CHANGED_BEACON |
858 BSS_CHANGED_BEACON_ENABLED |
859 BSS_CHANGED_HT |
860 BSS_CHANGED_BASIC_RATES |
861 BSS_CHANGED_BEACON_INT;
Johannes Berg472dbc42008-09-11 00:01:49 +0200862
Johannes Berg09b17472010-12-03 09:20:41 +0100863 local->fif_other_bss++;
864 /* mesh ifaces must set allmulti to forward mcast traffic */
865 atomic_inc(&local->iff_allmultis);
866 ieee80211_configure_filter(local);
867
Javier Cardonac7108a72010-12-16 17:37:50 -0800868 ifmsh->mesh_cc_id = 0; /* Disabled */
Javier Cardonadbf498f2012-03-31 11:31:32 -0700869 /* register sync ops from extensible synchronization framework */
870 ifmsh->sync_ops = ieee80211_mesh_sync_ops_get(ifmsh->mesh_sp_id);
871 ifmsh->adjusting_tbtt = false;
872 ifmsh->sync_offset_clockdrift_max = 0;
Rui Paulo6b9ac442009-10-20 21:21:48 +0100873 set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
Rui Paulo63c57232009-11-09 23:46:57 +0000874 ieee80211_mesh_root_setup(ifmsh);
Johannes Berg64592c82010-06-10 10:21:31 +0200875 ieee80211_queue_work(&local->hw, &sdata->work);
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -0700876 sdata->vif.bss_conf.ht_operation_mode =
877 ifmsh->mshcfg.ht_opmode;
Johannes Bergd6a83222012-12-14 14:06:28 +0100878 sdata->vif.bss_conf.enable_beacon = true;
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800879
Thomas Pedersen39886b62013-02-13 12:14:19 -0800880 changed |= ieee80211_mps_local_status_update(sdata);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100881
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800882 if (ieee80211_mesh_build_beacon(ifmsh)) {
883 ieee80211_stop_mesh(sdata);
884 return -ENOMEM;
885 }
886
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800887 ieee80211_recalc_dtim(local, sdata);
Chun-Yeow Yeohf4eabc92012-12-13 18:59:57 +0800888 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Bergc405c622012-07-30 19:44:12 +0200889
890 netif_carrier_on(sdata->dev);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800891 return 0;
Johannes Berg472dbc42008-09-11 00:01:49 +0200892}
893
894void ieee80211_stop_mesh(struct ieee80211_sub_if_data *sdata)
895{
Johannes Berg09b17472010-12-03 09:20:41 +0100896 struct ieee80211_local *local = sdata->local;
Johannes Berg29cbe682010-12-03 09:20:44 +0100897 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800898 struct beacon_data *bcn;
Johannes Berg29cbe682010-12-03 09:20:44 +0100899
Johannes Bergc405c622012-07-30 19:44:12 +0200900 netif_carrier_off(sdata->dev);
901
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700902 /* stop the beacon */
Johannes Berg29cbe682010-12-03 09:20:44 +0100903 ifmsh->mesh_id_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +0100904 sdata->vif.bss_conf.enable_beacon = false;
905 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg29cbe682010-12-03 09:20:44 +0100906 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800907 bcn = rcu_dereference_protected(ifmsh->beacon,
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200908 lockdep_is_held(&sdata->wdev.mtx));
Monam Agarwal0c2bef462014-03-24 00:51:43 +0530909 RCU_INIT_POINTER(ifmsh->beacon, NULL);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -0800910 kfree_rcu(bcn, rcu_head);
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700911
912 /* flush STAs and mpaths on this iface */
Johannes Bergb998e8b2012-12-13 23:07:46 +0100913 sta_info_flush(sdata);
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700914 mesh_path_flush_by_iface(sdata);
Johannes Berg09b17472010-12-03 09:20:41 +0100915
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100916 /* free all potentially still buffered group-addressed frames */
917 local->total_ps_buffered -= skb_queue_len(&ifmsh->ps.bc_buf);
918 skb_queue_purge(&ifmsh->ps.bc_buf);
919
Johannes Berg472dbc42008-09-11 00:01:49 +0200920 del_timer_sync(&sdata->u.mesh.housekeeping_timer);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000921 del_timer_sync(&sdata->u.mesh.mesh_path_root_timer);
Johannes Bergdd4c9262012-08-01 21:03:21 +0200922 del_timer_sync(&sdata->u.mesh.mesh_path_timer);
Johannes Berg09b17472010-12-03 09:20:41 +0100923
Thomas Pedersenf81a9de2013-06-13 15:54:41 -0700924 /* clear any mesh work (for next join) we may have accrued */
925 ifmsh->wrkq_flags = 0;
926 ifmsh->mbss_changed = 0;
927
Johannes Berg09b17472010-12-03 09:20:41 +0100928 local->fif_other_bss--;
929 atomic_dec(&local->iff_allmultis);
930 ieee80211_configure_filter(local);
Johannes Berg472dbc42008-09-11 00:01:49 +0200931}
932
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700933static bool
934ieee80211_mesh_process_chnswitch(struct ieee80211_sub_if_data *sdata,
935 struct ieee802_11_elems *elems, bool beacon)
936{
937 struct cfg80211_csa_settings params;
938 struct ieee80211_csa_ie csa_ie;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700939 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200940 enum nl80211_band band = ieee80211_get_sdata_band(sdata);
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200941 int err;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700942 u32 sta_flags;
943
Michal Kaziordbd72852014-01-29 07:56:21 +0100944 sdata_assert_lock(sdata);
945
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700946 sta_flags = IEEE80211_STA_DISABLE_VHT;
947 switch (sdata->vif.bss_conf.chandef.width) {
948 case NL80211_CHAN_WIDTH_20_NOHT:
949 sta_flags |= IEEE80211_STA_DISABLE_HT;
950 case NL80211_CHAN_WIDTH_20:
951 sta_flags |= IEEE80211_STA_DISABLE_40MHZ;
952 break;
953 default:
954 break;
955 }
956
957 memset(&params, 0, sizeof(params));
958 memset(&csa_ie, 0, sizeof(csa_ie));
Luciano Coelho84469a42014-10-28 13:33:04 +0200959 err = ieee80211_parse_ch_switch_ie(sdata, elems, band,
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700960 sta_flags, sdata->vif.addr,
961 &csa_ie);
962 if (err < 0)
963 return false;
964 if (err)
965 return false;
966
967 params.chandef = csa_ie.chandef;
968 params.count = csa_ie.count;
969
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700970 if (!cfg80211_chandef_usable(sdata->local->hw.wiphy, &params.chandef,
971 IEEE80211_CHAN_DISABLED)) {
972 sdata_info(sdata,
973 "mesh STA %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), aborting\n",
974 sdata->vif.addr,
975 params.chandef.chan->center_freq,
976 params.chandef.width,
977 params.chandef.center_freq1,
978 params.chandef.center_freq2);
979 return false;
980 }
981
982 err = cfg80211_chandef_dfs_required(sdata->local->hw.wiphy,
Luciano Coelho2beb6dab2014-02-18 11:40:36 +0200983 &params.chandef,
984 NL80211_IFTYPE_MESH_POINT);
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700985 if (err < 0)
986 return false;
Luciano Coelho2beb6dab2014-02-18 11:40:36 +0200987 if (err > 0)
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700988 /* TODO: DFS not (yet) supported */
989 return false;
Luciano Coelho2beb6dab2014-02-18 11:40:36 +0200990
991 params.radar_required = err;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700992
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +0200993 if (cfg80211_chandef_identical(&params.chandef,
994 &sdata->vif.bss_conf.chandef)) {
995 mcsa_dbg(sdata,
996 "received csa with an identical chandef, ignoring\n");
997 return true;
998 }
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -0700999
1000 mcsa_dbg(sdata,
1001 "received channel switch announcement to go to channel %d MHz\n",
1002 params.chandef.chan->center_freq);
1003
1004 params.block_tx = csa_ie.mode & WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001005 if (beacon) {
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001006 ifmsh->chsw_ttl = csa_ie.ttl - 1;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001007 if (ifmsh->pre_value >= csa_ie.pre_value)
1008 return false;
1009 ifmsh->pre_value = csa_ie.pre_value;
1010 }
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001011
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001012 if (ifmsh->chsw_ttl >= ifmsh->mshcfg.dot11MeshTTL)
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001013 return false;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001014
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001015 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_REPEATER;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001016
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001017 if (ieee80211_channel_switch(sdata->local->hw.wiphy, sdata->dev,
1018 &params) < 0)
1019 return false;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001020
1021 return true;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001022}
1023
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001024static void
1025ieee80211_mesh_rx_probe_req(struct ieee80211_sub_if_data *sdata,
1026 struct ieee80211_mgmt *mgmt, size_t len)
1027{
1028 struct ieee80211_local *local = sdata->local;
1029 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1030 struct sk_buff *presp;
1031 struct beacon_data *bcn;
1032 struct ieee80211_mgmt *hdr;
1033 struct ieee802_11_elems elems;
1034 size_t baselen;
Johannes Berg511044e2013-03-07 22:47:00 +01001035 u8 *pos;
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001036
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001037 pos = mgmt->u.probe_req.variable;
1038 baselen = (u8 *) pos - (u8 *) mgmt;
1039 if (baselen > len)
1040 return;
1041
Johannes Bergb2e506b2013-03-26 14:54:16 +01001042 ieee802_11_parse_elems(pos, len - baselen, false, &elems);
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001043
Chun-Yeow Yeoha4ef66a2013-08-22 10:28:58 -07001044 if (!elems.mesh_id)
1045 return;
1046
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001047 /* 802.11-2012 10.1.4.3.2 */
1048 if ((!ether_addr_equal(mgmt->da, sdata->vif.addr) &&
1049 !is_broadcast_ether_addr(mgmt->da)) ||
1050 elems.ssid_len != 0)
1051 return;
1052
1053 if (elems.mesh_id_len != 0 &&
1054 (elems.mesh_id_len != ifmsh->mesh_id_len ||
1055 memcmp(elems.mesh_id, ifmsh->mesh_id, ifmsh->mesh_id_len)))
1056 return;
1057
1058 rcu_read_lock();
1059 bcn = rcu_dereference(ifmsh->beacon);
1060
1061 if (!bcn)
1062 goto out;
1063
1064 presp = dev_alloc_skb(local->tx_headroom +
1065 bcn->head_len + bcn->tail_len);
1066 if (!presp)
1067 goto out;
1068
1069 skb_reserve(presp, local->tx_headroom);
1070 memcpy(skb_put(presp, bcn->head_len), bcn->head, bcn->head_len);
1071 memcpy(skb_put(presp, bcn->tail_len), bcn->tail, bcn->tail_len);
1072 hdr = (struct ieee80211_mgmt *) presp->data;
1073 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1074 IEEE80211_STYPE_PROBE_RESP);
1075 memcpy(hdr->da, mgmt->sa, ETH_ALEN);
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001076 IEEE80211_SKB_CB(presp)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
1077 ieee80211_tx_skb(sdata, presp);
1078out:
1079 rcu_read_unlock();
1080}
1081
Johannes Berg472dbc42008-09-11 00:01:49 +02001082static void ieee80211_mesh_rx_bcn_presp(struct ieee80211_sub_if_data *sdata,
1083 u16 stype,
1084 struct ieee80211_mgmt *mgmt,
1085 size_t len,
1086 struct ieee80211_rx_status *rx_status)
1087{
Johannes Bergc6a1fa12008-10-07 12:04:32 +02001088 struct ieee80211_local *local = sdata->local;
Javier Cardonadbf498f2012-03-31 11:31:32 -07001089 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02001090 struct ieee802_11_elems elems;
1091 struct ieee80211_channel *channel;
Johannes Berg472dbc42008-09-11 00:01:49 +02001092 size_t baselen;
1093 int freq;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001094 enum nl80211_band band = rx_status->band;
Johannes Berg472dbc42008-09-11 00:01:49 +02001095
1096 /* ignore ProbeResp to foreign address */
1097 if (stype == IEEE80211_STYPE_PROBE_RESP &&
Joe Perchesb203ca32012-05-08 18:56:52 +00001098 !ether_addr_equal(mgmt->da, sdata->vif.addr))
Johannes Berg472dbc42008-09-11 00:01:49 +02001099 return;
1100
1101 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1102 if (baselen > len)
1103 return;
1104
1105 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01001106 false, &elems);
Johannes Berg472dbc42008-09-11 00:01:49 +02001107
Thomas Pedersen9a90bc82012-10-20 19:03:10 -07001108 /* ignore non-mesh or secure / unsecure mismatch */
1109 if ((!elems.mesh_id || !elems.mesh_config) ||
1110 (elems.rsn && sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) ||
1111 (!elems.rsn && sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE))
Javier Cardona5cff5e02011-04-07 15:08:29 -07001112 return;
1113
Johannes Berg1cd8e882013-03-27 14:30:12 +01001114 if (elems.ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001115 freq = ieee80211_channel_to_frequency(elems.ds_params[0], band);
Johannes Berg472dbc42008-09-11 00:01:49 +02001116 else
1117 freq = rx_status->freq;
1118
1119 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1120
1121 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1122 return;
1123
Thomas Pedersen9a90bc82012-10-20 19:03:10 -07001124 if (mesh_matches_local(sdata, &elems))
Thomas Pedersenf743ff42012-04-18 19:23:43 -07001125 mesh_neighbour_update(sdata, mgmt->sa, &elems);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001126
1127 if (ifmsh->sync_ops)
1128 ifmsh->sync_ops->rx_bcn_presp(sdata,
1129 stype, mgmt, &elems, rx_status);
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001130
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001131 if (ifmsh->csa_role != IEEE80211_MESH_CSA_ROLE_INIT &&
1132 !sdata->vif.csa_active)
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001133 ieee80211_mesh_process_chnswitch(sdata, &elems, true);
Johannes Berg472dbc42008-09-11 00:01:49 +02001134}
1135
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001136int ieee80211_mesh_finish_csa(struct ieee80211_sub_if_data *sdata)
1137{
1138 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1139 struct mesh_csa_settings *tmp_csa_settings;
1140 int ret = 0;
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001141 int changed = 0;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001142
1143 /* Reset the TTL value and Initiator flag */
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001144 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001145 ifmsh->chsw_ttl = 0;
1146
1147 /* Remove the CSA and MCSP elements from the beacon */
1148 tmp_csa_settings = rcu_dereference(ifmsh->csa);
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301149 RCU_INIT_POINTER(ifmsh->csa, NULL);
Luciano Coelho66e01cf2014-01-13 19:43:00 +02001150 if (tmp_csa_settings)
1151 kfree_rcu(tmp_csa_settings, rcu_head);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001152 ret = ieee80211_mesh_rebuild_beacon(sdata);
1153 if (ret)
1154 return -EINVAL;
1155
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001156 changed |= BSS_CHANGED_BEACON;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001157
1158 mcsa_dbg(sdata, "complete switching to center freq %d MHz",
1159 sdata->vif.bss_conf.chandef.chan->center_freq);
Michal Kaziorfaf046e2014-01-29 07:56:17 +01001160 return changed;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001161}
1162
1163int ieee80211_mesh_csa_beacon(struct ieee80211_sub_if_data *sdata,
Luciano Coelho66e01cf2014-01-13 19:43:00 +02001164 struct cfg80211_csa_settings *csa_settings)
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001165{
1166 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1167 struct mesh_csa_settings *tmp_csa_settings;
1168 int ret = 0;
1169
1170 tmp_csa_settings = kmalloc(sizeof(*tmp_csa_settings),
1171 GFP_ATOMIC);
1172 if (!tmp_csa_settings)
1173 return -ENOMEM;
1174
1175 memcpy(&tmp_csa_settings->settings, csa_settings,
1176 sizeof(struct cfg80211_csa_settings));
1177
1178 rcu_assign_pointer(ifmsh->csa, tmp_csa_settings);
1179
1180 ret = ieee80211_mesh_rebuild_beacon(sdata);
1181 if (ret) {
1182 tmp_csa_settings = rcu_dereference(ifmsh->csa);
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301183 RCU_INIT_POINTER(ifmsh->csa, NULL);
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001184 kfree_rcu(tmp_csa_settings, rcu_head);
1185 return ret;
1186 }
1187
Luciano Coelhob58e81e2014-01-13 19:42:59 +02001188 return BSS_CHANGED_BEACON;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07001189}
1190
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001191static int mesh_fwd_csa_frame(struct ieee80211_sub_if_data *sdata,
1192 struct ieee80211_mgmt *mgmt, size_t len)
1193{
1194 struct ieee80211_mgmt *mgmt_fwd;
1195 struct sk_buff *skb;
1196 struct ieee80211_local *local = sdata->local;
1197 u8 *pos = mgmt->u.action.u.chan_switch.variable;
1198 size_t offset_ttl;
1199
1200 skb = dev_alloc_skb(local->tx_headroom + len);
1201 if (!skb)
1202 return -ENOMEM;
1203 skb_reserve(skb, local->tx_headroom);
1204 mgmt_fwd = (struct ieee80211_mgmt *) skb_put(skb, len);
1205
1206 /* offset_ttl is based on whether the secondary channel
Antonio Ospiteb314c662014-06-04 14:03:49 +02001207 * offset is available or not. Subtract 1 from the mesh TTL
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001208 * and disable the initiator flag before forwarding.
1209 */
1210 offset_ttl = (len < 42) ? 7 : 10;
1211 *(pos + offset_ttl) -= 1;
1212 *(pos + offset_ttl + 1) &= ~WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
1213
1214 memcpy(mgmt_fwd, mgmt, len);
1215 eth_broadcast_addr(mgmt_fwd->da);
1216 memcpy(mgmt_fwd->sa, sdata->vif.addr, ETH_ALEN);
1217 memcpy(mgmt_fwd->bssid, sdata->vif.addr, ETH_ALEN);
1218
1219 ieee80211_tx_skb(sdata, skb);
1220 return 0;
1221}
1222
1223static void mesh_rx_csa_frame(struct ieee80211_sub_if_data *sdata,
1224 struct ieee80211_mgmt *mgmt, size_t len)
1225{
1226 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1227 struct ieee802_11_elems elems;
1228 u16 pre_value;
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001229 bool fwd_csa = true;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001230 size_t baselen;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001231 u8 *pos;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001232
1233 if (mgmt->u.action.u.measurement.action_code !=
1234 WLAN_ACTION_SPCT_CHL_SWITCH)
1235 return;
1236
1237 pos = mgmt->u.action.u.chan_switch.variable;
1238 baselen = offsetof(struct ieee80211_mgmt,
1239 u.action.u.chan_switch.variable);
1240 ieee802_11_parse_elems(pos, len - baselen, false, &elems);
1241
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08001242 ifmsh->chsw_ttl = elems.mesh_chansw_params_ie->mesh_ttl;
1243 if (!--ifmsh->chsw_ttl)
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001244 fwd_csa = false;
1245
1246 pre_value = le16_to_cpu(elems.mesh_chansw_params_ie->mesh_pre_value);
1247 if (ifmsh->pre_value >= pre_value)
1248 return;
1249
1250 ifmsh->pre_value = pre_value;
1251
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001252 if (!sdata->vif.csa_active &&
1253 !ieee80211_mesh_process_chnswitch(sdata, &elems, false)) {
Chun-Yeow Yeoh33a45862013-10-17 15:55:18 -07001254 mcsa_dbg(sdata, "Failed to process CSA action frame");
1255 return;
1256 }
1257
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001258 /* forward or re-broadcast the CSA frame */
1259 if (fwd_csa) {
1260 if (mesh_fwd_csa_frame(sdata, mgmt, len) < 0)
1261 mcsa_dbg(sdata, "Failed to forward the CSA frame");
1262 }
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001263}
1264
Johannes Berg472dbc42008-09-11 00:01:49 +02001265static void ieee80211_mesh_rx_mgmt_action(struct ieee80211_sub_if_data *sdata,
1266 struct ieee80211_mgmt *mgmt,
1267 size_t len,
1268 struct ieee80211_rx_status *rx_status)
1269{
1270 switch (mgmt->u.action.category) {
Thomas Pedersen8db09852011-08-12 20:01:00 -07001271 case WLAN_CATEGORY_SELF_PROTECTED:
1272 switch (mgmt->u.action.u.self_prot.action_code) {
1273 case WLAN_SP_MESH_PEERING_OPEN:
1274 case WLAN_SP_MESH_PEERING_CLOSE:
1275 case WLAN_SP_MESH_PEERING_CONFIRM:
1276 mesh_rx_plink_frame(sdata, mgmt, len, rx_status);
1277 break;
1278 }
Johannes Berg472dbc42008-09-11 00:01:49 +02001279 break;
Thomas Pedersen25d49e42011-08-11 19:35:15 -07001280 case WLAN_CATEGORY_MESH_ACTION:
1281 if (mesh_action_is_path_sel(mgmt))
1282 mesh_rx_path_sel_frame(sdata, mgmt, len);
Johannes Berg472dbc42008-09-11 00:01:49 +02001283 break;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001284 case WLAN_CATEGORY_SPECTRUM_MGMT:
1285 mesh_rx_csa_frame(sdata, mgmt, len);
1286 break;
Johannes Berg472dbc42008-09-11 00:01:49 +02001287 }
1288}
1289
Johannes Berg1fa57d02010-06-10 10:21:32 +02001290void ieee80211_mesh_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
1291 struct sk_buff *skb)
Johannes Berg472dbc42008-09-11 00:01:49 +02001292{
1293 struct ieee80211_rx_status *rx_status;
Johannes Berg472dbc42008-09-11 00:01:49 +02001294 struct ieee80211_mgmt *mgmt;
1295 u16 stype;
1296
Thomas Pedersenecccd072013-06-10 13:17:21 -07001297 sdata_lock(sdata);
1298
1299 /* mesh already went down */
Johannes Berg1693d342014-01-22 10:08:57 +01001300 if (!sdata->u.mesh.mesh_id_len)
Thomas Pedersenecccd072013-06-10 13:17:21 -07001301 goto out;
1302
Johannes Bergf1d58c22009-06-17 13:13:00 +02001303 rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Berg472dbc42008-09-11 00:01:49 +02001304 mgmt = (struct ieee80211_mgmt *) skb->data;
1305 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
1306
1307 switch (stype) {
1308 case IEEE80211_STYPE_PROBE_RESP:
1309 case IEEE80211_STYPE_BEACON:
1310 ieee80211_mesh_rx_bcn_presp(sdata, stype, mgmt, skb->len,
1311 rx_status);
1312 break;
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08001313 case IEEE80211_STYPE_PROBE_REQ:
1314 ieee80211_mesh_rx_probe_req(sdata, mgmt, skb->len);
1315 break;
Johannes Berg472dbc42008-09-11 00:01:49 +02001316 case IEEE80211_STYPE_ACTION:
1317 ieee80211_mesh_rx_mgmt_action(sdata, mgmt, skb->len, rx_status);
1318 break;
1319 }
Thomas Pedersenecccd072013-06-10 13:17:21 -07001320out:
1321 sdata_unlock(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001322}
1323
Thomas Pedersenf81a9de2013-06-13 15:54:41 -07001324static void mesh_bss_info_changed(struct ieee80211_sub_if_data *sdata)
1325{
1326 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1327 u32 bit, changed = 0;
1328
1329 for_each_set_bit(bit, &ifmsh->mbss_changed,
1330 sizeof(changed) * BITS_PER_BYTE) {
1331 clear_bit(bit, &ifmsh->mbss_changed);
1332 changed |= BIT(bit);
1333 }
1334
1335 if (sdata->vif.bss_conf.enable_beacon &&
1336 (changed & (BSS_CHANGED_BEACON |
1337 BSS_CHANGED_HT |
1338 BSS_CHANGED_BASIC_RATES |
1339 BSS_CHANGED_BEACON_INT)))
1340 if (ieee80211_mesh_rebuild_beacon(sdata))
1341 return;
1342
1343 ieee80211_bss_info_change_notify(sdata, changed);
1344}
1345
Johannes Berg1fa57d02010-06-10 10:21:32 +02001346void ieee80211_mesh_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +02001347{
Johannes Berg472dbc42008-09-11 00:01:49 +02001348 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02001349
Thomas Pedersenecccd072013-06-10 13:17:21 -07001350 sdata_lock(sdata);
1351
1352 /* mesh already went down */
Johannes Berg1693d342014-01-22 10:08:57 +01001353 if (!sdata->u.mesh.mesh_id_len)
Thomas Pedersenecccd072013-06-10 13:17:21 -07001354 goto out;
1355
Johannes Berg472dbc42008-09-11 00:01:49 +02001356 if (ifmsh->preq_queue_len &&
1357 time_after(jiffies,
1358 ifmsh->last_preq + msecs_to_jiffies(ifmsh->mshcfg.dot11MeshHWMPpreqMinInterval)))
1359 mesh_path_start_discovery(sdata);
1360
Javier Cardona18889232009-08-10 12:15:52 -07001361 if (test_and_clear_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags))
Johannes Bergbf7cd942013-02-15 14:40:31 +01001362 ieee80211_mesh_housekeeping(sdata);
Rui Pauloe304bfd2009-11-09 23:46:56 +00001363
1364 if (test_and_clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags))
1365 ieee80211_mesh_rootpath(sdata);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001366
1367 if (test_and_clear_bit(MESH_WORK_DRIFT_ADJUST, &ifmsh->wrkq_flags))
1368 mesh_sync_adjust_tbtt(sdata);
Thomas Pedersenecccd072013-06-10 13:17:21 -07001369
Thomas Pedersenf81a9de2013-06-13 15:54:41 -07001370 if (test_and_clear_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags))
1371 mesh_bss_info_changed(sdata);
Thomas Pedersenecccd072013-06-10 13:17:21 -07001372out:
1373 sdata_unlock(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001374}
1375
Johannes Berg472dbc42008-09-11 00:01:49 +02001376
Johannes Berg902acc72008-02-23 15:17:19 +01001377void ieee80211_mesh_init_sdata(struct ieee80211_sub_if_data *sdata)
1378{
Johannes Berg472dbc42008-09-11 00:01:49 +02001379 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Bergad2d2232012-12-14 14:34:25 +01001380 static u8 zero_addr[ETH_ALEN] = {};
Johannes Berg902acc72008-02-23 15:17:19 +01001381
Johannes Berg472dbc42008-09-11 00:01:49 +02001382 setup_timer(&ifmsh->housekeeping_timer,
1383 ieee80211_mesh_housekeeping_timer,
1384 (unsigned long) sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001385
Johannes Berg472dbc42008-09-11 00:01:49 +02001386 ifmsh->accepting_plinks = true;
Johannes Berg472dbc42008-09-11 00:01:49 +02001387 atomic_set(&ifmsh->mpaths, 0);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001388 mesh_rmc_init(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001389 ifmsh->last_preq = jiffies;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001390 ifmsh->next_perr = jiffies;
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02001391 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
Johannes Berg902acc72008-02-23 15:17:19 +01001392 /* Allocate all mesh structures when creating the first mesh interface. */
1393 if (!mesh_allocated)
1394 ieee80211s_init();
Bob Copeland2bdaf382016-02-28 20:03:56 -05001395
1396 mesh_pathtbl_init(sdata);
1397
Johannes Berg472dbc42008-09-11 00:01:49 +02001398 setup_timer(&ifmsh->mesh_path_timer,
Johannes Berg902acc72008-02-23 15:17:19 +01001399 ieee80211_mesh_path_timer,
1400 (unsigned long) sdata);
Rui Pauloe304bfd2009-11-09 23:46:56 +00001401 setup_timer(&ifmsh->mesh_path_root_timer,
1402 ieee80211_mesh_path_root_timer,
1403 (unsigned long) sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001404 INIT_LIST_HEAD(&ifmsh->preq_queue.list);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001405 skb_queue_head_init(&ifmsh->ps.bc_buf);
Johannes Berg472dbc42008-09-11 00:01:49 +02001406 spin_lock_init(&ifmsh->mesh_preq_queue_lock);
Javier Cardonadbf498f2012-03-31 11:31:32 -07001407 spin_lock_init(&ifmsh->sync_offset_lock);
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001408 RCU_INIT_POINTER(ifmsh->beacon, NULL);
Johannes Bergad2d2232012-12-14 14:34:25 +01001409
1410 sdata->vif.bss_conf.bssid = zero_addr;
Johannes Berg472dbc42008-09-11 00:01:49 +02001411}
Bob Copeland0371a082016-03-26 11:27:18 -04001412
1413void ieee80211_mesh_teardown_sdata(struct ieee80211_sub_if_data *sdata)
1414{
1415 mesh_rmc_free(sdata);
1416 mesh_pathtbl_unregister(sdata);
1417}