blob: 649ad513547f99728d43dbeeabcd2b58d7862c30 [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"
15
Johannes Berg5bb644a2009-05-17 11:40:42 +020016#define TMR_RUNNING_HK 0
17#define TMR_RUNNING_MP 1
Rui Pauloe304bfd2009-11-09 23:46:56 +000018#define TMR_RUNNING_MPR 2
Johannes Berg5bb644a2009-05-17 11:40:42 +020019
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010020int mesh_allocated;
21static struct kmem_cache *rm_cache;
22
Thomas Pedersen25d49e42011-08-11 19:35:15 -070023#ifdef CONFIG_MAC80211_MESH
24bool mesh_action_is_path_sel(struct ieee80211_mgmt *mgmt)
25{
26 return (mgmt->u.action.u.mesh_action.action_code ==
27 WLAN_MESH_ACTION_HWMP_PATH_SELECTION);
28}
29#else
30bool mesh_action_is_path_sel(struct ieee80211_mgmt *mgmt)
31{ return false; }
32#endif
33
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010034void ieee80211s_init(void)
35{
36 mesh_pathtbl_init();
37 mesh_allocated = 1;
38 rm_cache = kmem_cache_create("mesh_rmc", sizeof(struct rmc_entry),
39 0, 0, NULL);
40}
41
42void ieee80211s_stop(void)
43{
44 mesh_pathtbl_unregister();
45 kmem_cache_destroy(rm_cache);
46}
47
Johannes Berg472dbc42008-09-11 00:01:49 +020048static void ieee80211_mesh_housekeeping_timer(unsigned long data)
49{
50 struct ieee80211_sub_if_data *sdata = (void *) data;
51 struct ieee80211_local *local = sdata->local;
52 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
53
Rui Paulo6b9ac442009-10-20 21:21:48 +010054 set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
Johannes Berg5bb644a2009-05-17 11:40:42 +020055
56 if (local->quiescing) {
57 set_bit(TMR_RUNNING_HK, &ifmsh->timers_running);
58 return;
59 }
60
Johannes Berg64592c82010-06-10 10:21:31 +020061 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg472dbc42008-09-11 00:01:49 +020062}
63
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010064/**
65 * mesh_matches_local - check if the config of a mesh point matches ours
66 *
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120067 * @sdata: local mesh subif
Thomas Pedersenf743ff42012-04-18 19:23:43 -070068 * @ie: information elements of a management frame from the mesh peer
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010069 *
70 * This function checks if the mesh configuration of a mesh point matches the
71 * local mesh configuration, i.e. if both nodes belong to the same mesh network.
72 */
Thomas Pedersenf743ff42012-04-18 19:23:43 -070073bool mesh_matches_local(struct ieee80211_sub_if_data *sdata,
74 struct ieee802_11_elems *ie)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010075{
Johannes Berg472dbc42008-09-11 00:01:49 +020076 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Thomas Pedersen739522b2011-10-26 14:47:28 -070077 struct ieee80211_local *local = sdata->local;
Thomas Pedersenf743ff42012-04-18 19:23:43 -070078 u32 basic_rates = 0;
Johannes Berg4bf88532012-11-09 11:39:59 +010079 struct cfg80211_chan_def sta_chan_def;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010080
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010081 /*
82 * As support for each feature is added, check for matching
83 * - On mesh config capabilities
84 * - Power Save Support En
85 * - Sync support enabled
86 * - Sync support active
87 * - Sync support required from peer
88 * - MDA enabled
89 * - Power management control on fc
90 */
Thomas Pedersen739522b2011-10-26 14:47:28 -070091 if (!(ifmsh->mesh_id_len == ie->mesh_id_len &&
92 memcmp(ifmsh->mesh_id, ie->mesh_id, ie->mesh_id_len) == 0 &&
93 (ifmsh->mesh_pp_id == ie->mesh_config->meshconf_psel) &&
94 (ifmsh->mesh_pm_id == ie->mesh_config->meshconf_pmetric) &&
95 (ifmsh->mesh_cc_id == ie->mesh_config->meshconf_congest) &&
96 (ifmsh->mesh_sp_id == ie->mesh_config->meshconf_synch) &&
97 (ifmsh->mesh_auth_id == ie->mesh_config->meshconf_auth)))
98 goto mismatch;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +010099
Johannes Berg55de9082012-07-26 17:24:39 +0200100 ieee80211_sta_get_rates(local, ie, ieee80211_get_sdata_band(sdata),
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700101 &basic_rates);
102
Ashok Nagarajanfe40cb62012-04-02 21:21:22 -0700103 if (sdata->vif.bss_conf.basic_rates != basic_rates)
104 goto mismatch;
105
Johannes Berg4bf88532012-11-09 11:39:59 +0100106 ieee80211_ht_oper_to_chandef(sdata->vif.bss_conf.chandef.chan,
107 ie->ht_operation, &sta_chan_def);
Ashok Nagarajanb91e64a2012-04-30 14:20:31 -0700108
Johannes Berg4bf88532012-11-09 11:39:59 +0100109 if (!cfg80211_chandef_compatible(&sdata->vif.bss_conf.chandef,
110 &sta_chan_def))
Thomas Pedersen739522b2011-10-26 14:47:28 -0700111 goto mismatch;
112
113 return true;
114mismatch:
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100115 return false;
116}
117
118/**
119 * mesh_peer_accepts_plinks - check if an mp is willing to establish peer links
120 *
121 * @ie: information elements of a management frame from the mesh peer
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100122 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200123bool mesh_peer_accepts_plinks(struct ieee802_11_elems *ie)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100124{
Rui Paulo136cfa22009-11-18 18:40:00 +0000125 return (ie->mesh_config->meshconf_cap &
Marco Porsch65821632012-11-21 18:40:30 -0800126 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS) != 0;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100127}
128
129/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000130 * mesh_accept_plinks_update - update accepting_plink in local mesh beacons
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100131 *
Johannes Bergd0709a62008-02-25 16:27:46 +0100132 * @sdata: mesh interface in which mesh beacons are going to be updated
Marco Porschdf323812012-08-08 07:58:43 +0200133 *
134 * Returns: beacon changed flag if the beacon content changed.
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100135 */
Marco Porschdf323812012-08-08 07:58:43 +0200136u32 mesh_accept_plinks_update(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100137{
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100138 bool free_plinks;
Marco Porschdf323812012-08-08 07:58:43 +0200139 u32 changed = 0;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100140
141 /* In case mesh_plink_free_count > 0 and mesh_plinktbl_capacity == 0,
142 * the mesh interface might be able to establish plinks with peers that
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800143 * are already on the table but are not on PLINK_ESTAB state. However,
144 * in general the mesh interface is not accepting peer link requests
145 * from new peers, and that must be reflected in the beacon
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100146 */
147 free_plinks = mesh_plink_availables(sdata);
148
Marco Porschdf323812012-08-08 07:58:43 +0200149 if (free_plinks != sdata->u.mesh.accepting_plinks) {
150 sdata->u.mesh.accepting_plinks = free_plinks;
151 changed = BSS_CHANGED_BEACON;
152 }
153
154 return changed;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100155}
156
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200157int mesh_rmc_init(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100158{
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100159 int i;
160
Johannes Berg472dbc42008-09-11 00:01:49 +0200161 sdata->u.mesh.rmc = kmalloc(sizeof(struct mesh_rmc), GFP_KERNEL);
162 if (!sdata->u.mesh.rmc)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100163 return -ENOMEM;
Johannes Berg472dbc42008-09-11 00:01:49 +0200164 sdata->u.mesh.rmc->idx_mask = RMC_BUCKETS - 1;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100165 for (i = 0; i < RMC_BUCKETS; i++)
Thomas Pedersenb7cfcd12012-12-17 18:41:57 -0800166 INIT_LIST_HEAD(&sdata->u.mesh.rmc->bucket[i]);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100167 return 0;
168}
169
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200170void mesh_rmc_free(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100171{
Johannes Berg472dbc42008-09-11 00:01:49 +0200172 struct mesh_rmc *rmc = sdata->u.mesh.rmc;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100173 struct rmc_entry *p, *n;
174 int i;
175
Johannes Berg472dbc42008-09-11 00:01:49 +0200176 if (!sdata->u.mesh.rmc)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100177 return;
178
179 for (i = 0; i < RMC_BUCKETS; i++)
Thomas Pedersenb7cfcd12012-12-17 18:41:57 -0800180 list_for_each_entry_safe(p, n, &rmc->bucket[i], list) {
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100181 list_del(&p->list);
182 kmem_cache_free(rm_cache, p);
183 }
184
185 kfree(rmc);
Johannes Berg472dbc42008-09-11 00:01:49 +0200186 sdata->u.mesh.rmc = NULL;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100187}
188
189/**
190 * mesh_rmc_check - Check frame in recent multicast cache and add if absent.
191 *
192 * @sa: source address
193 * @mesh_hdr: mesh_header
194 *
195 * Returns: 0 if the frame is not in the cache, nonzero otherwise.
196 *
197 * Checks using the source address and the mesh sequence number if we have
198 * received this frame lately. If the frame is not in the cache, it is added to
199 * it.
200 */
201int mesh_rmc_check(u8 *sa, struct ieee80211s_hdr *mesh_hdr,
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200202 struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100203{
Johannes Berg472dbc42008-09-11 00:01:49 +0200204 struct mesh_rmc *rmc = sdata->u.mesh.rmc;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100205 u32 seqnum = 0;
206 int entries = 0;
207 u8 idx;
208 struct rmc_entry *p, *n;
209
210 /* Don't care about endianness since only match matters */
Luis Carlos Cobo51cedda2008-04-23 12:15:29 -0700211 memcpy(&seqnum, &mesh_hdr->seqnum, sizeof(mesh_hdr->seqnum));
212 idx = le32_to_cpu(mesh_hdr->seqnum) & rmc->idx_mask;
Thomas Pedersenb7cfcd12012-12-17 18:41:57 -0800213 list_for_each_entry_safe(p, n, &rmc->bucket[idx], list) {
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100214 ++entries;
215 if (time_after(jiffies, p->exp_time) ||
216 (entries == RMC_QUEUE_MAX_LEN)) {
217 list_del(&p->list);
218 kmem_cache_free(rm_cache, p);
219 --entries;
Joe Perchesf64f9e72009-11-29 16:55:45 -0800220 } else if ((seqnum == p->seqnum) &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000221 (ether_addr_equal(sa, p->sa)))
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100222 return -1;
223 }
224
225 p = kmem_cache_alloc(rm_cache, GFP_ATOMIC);
Joe Perchesd15b8452011-08-29 14:17:31 -0700226 if (!p)
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100227 return 0;
Joe Perchesd15b8452011-08-29 14:17:31 -0700228
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100229 p->seqnum = seqnum;
230 p->exp_time = jiffies + RMC_TIMEOUT;
231 memcpy(p->sa, sa, ETH_ALEN);
Thomas Pedersenb7cfcd12012-12-17 18:41:57 -0800232 list_add(&p->list, &rmc->bucket[idx]);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100233 return 0;
234}
235
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700236int
237mesh_add_meshconf_ie(struct sk_buff *skb, struct ieee80211_sub_if_data *sdata)
238{
239 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
240 u8 *pos, neighbors;
241 u8 meshconf_len = sizeof(struct ieee80211_meshconf_ie);
242
243 if (skb_tailroom(skb) < 2 + meshconf_len)
244 return -ENOMEM;
245
246 pos = skb_put(skb, 2 + meshconf_len);
247 *pos++ = WLAN_EID_MESH_CONFIG;
248 *pos++ = meshconf_len;
249
250 /* Active path selection protocol ID */
251 *pos++ = ifmsh->mesh_pp_id;
252 /* Active path selection metric ID */
253 *pos++ = ifmsh->mesh_pm_id;
254 /* Congestion control mode identifier */
255 *pos++ = ifmsh->mesh_cc_id;
256 /* Synchronization protocol identifier */
257 *pos++ = ifmsh->mesh_sp_id;
258 /* Authentication Protocol identifier */
259 *pos++ = ifmsh->mesh_auth_id;
260 /* Mesh Formation Info - number of neighbors */
Ashok Nagarajan1258d972012-10-09 13:27:47 -0700261 neighbors = atomic_read(&ifmsh->estab_plinks);
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700262 /* Number of neighbor mesh STAs or 15 whichever is smaller */
263 neighbors = (neighbors > 15) ? 15 : neighbors;
264 *pos++ = neighbors << 1;
265 /* Mesh capability */
Marco Porsch65821632012-11-21 18:40:30 -0800266 *pos = IEEE80211_MESHCONF_CAPAB_FORWARDING;
Javier Cardonadbf498f2012-03-31 11:31:32 -0700267 *pos |= ifmsh->accepting_plinks ?
Marco Porsch65821632012-11-21 18:40:30 -0800268 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS : 0x00;
Javier Cardonadbf498f2012-03-31 11:31:32 -0700269 *pos++ |= ifmsh->adjusting_tbtt ?
Marco Porsch65821632012-11-21 18:40:30 -0800270 IEEE80211_MESHCONF_CAPAB_TBTT_ADJUSTING : 0x00;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700271 *pos++ = 0x00;
272
273 return 0;
274}
275
276int
277mesh_add_meshid_ie(struct sk_buff *skb, struct ieee80211_sub_if_data *sdata)
278{
279 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
280 u8 *pos;
281
282 if (skb_tailroom(skb) < 2 + ifmsh->mesh_id_len)
283 return -ENOMEM;
284
285 pos = skb_put(skb, 2 + ifmsh->mesh_id_len);
286 *pos++ = WLAN_EID_MESH_ID;
287 *pos++ = ifmsh->mesh_id_len;
288 if (ifmsh->mesh_id_len)
289 memcpy(pos, ifmsh->mesh_id, ifmsh->mesh_id_len);
290
291 return 0;
292}
293
294int
295mesh_add_vendor_ies(struct sk_buff *skb, struct ieee80211_sub_if_data *sdata)
296{
297 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
298 u8 offset, len;
299 const u8 *data;
300
301 if (!ifmsh->ie || !ifmsh->ie_len)
302 return 0;
303
304 /* fast-forward to vendor IEs */
305 offset = ieee80211_ie_split_vendor(ifmsh->ie, ifmsh->ie_len, 0);
306
307 if (offset) {
308 len = ifmsh->ie_len - offset;
309 data = ifmsh->ie + offset;
310 if (skb_tailroom(skb) < len)
311 return -ENOMEM;
312 memcpy(skb_put(skb, len), data, len);
313 }
314
315 return 0;
316}
317
318int
319mesh_add_rsn_ie(struct sk_buff *skb, struct ieee80211_sub_if_data *sdata)
320{
321 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
322 u8 len = 0;
323 const u8 *data;
324
325 if (!ifmsh->ie || !ifmsh->ie_len)
326 return 0;
327
328 /* find RSN IE */
329 data = ifmsh->ie;
330 while (data < ifmsh->ie + ifmsh->ie_len) {
331 if (*data == WLAN_EID_RSN) {
332 len = data[1] + 2;
333 break;
334 }
335 data++;
336 }
337
338 if (len) {
339 if (skb_tailroom(skb) < len)
340 return -ENOMEM;
341 memcpy(skb_put(skb, len), data, len);
342 }
343
344 return 0;
345}
346
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700347int mesh_add_ds_params_ie(struct sk_buff *skb,
348 struct ieee80211_sub_if_data *sdata)
349{
350 struct ieee80211_local *local = sdata->local;
351 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200352 struct ieee80211_chanctx_conf *chanctx_conf;
353 struct ieee80211_channel *chan;
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700354 u8 *pos;
355
356 if (skb_tailroom(skb) < 3)
357 return -ENOMEM;
358
Johannes Berg55de9082012-07-26 17:24:39 +0200359 rcu_read_lock();
360 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
361 if (WARN_ON(!chanctx_conf)) {
362 rcu_read_unlock();
363 return -EINVAL;
364 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100365 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200366 rcu_read_unlock();
367
Johannes Berg6962d602012-07-23 14:29:21 +0200368 sband = local->hw.wiphy->bands[chan->band];
Rui Paulobe125c62009-11-09 23:46:54 +0000369 if (sband->band == IEEE80211_BAND_2GHZ) {
370 pos = skb_put(skb, 2 + 1);
371 *pos++ = WLAN_EID_DS_PARAMS;
372 *pos++ = 1;
Johannes Berg6962d602012-07-23 14:29:21 +0200373 *pos++ = ieee80211_frequency_to_channel(chan->center_freq);
Rui Paulobe125c62009-11-09 23:46:54 +0000374 }
375
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700376 return 0;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100377}
378
Thomas Pedersen176f3602011-10-26 14:47:27 -0700379int mesh_add_ht_cap_ie(struct sk_buff *skb,
380 struct ieee80211_sub_if_data *sdata)
381{
382 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +0200383 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700384 struct ieee80211_supported_band *sband;
385 u8 *pos;
386
Johannes Berg55de9082012-07-26 17:24:39 +0200387 sband = local->hw.wiphy->bands[band];
Thomas Pedersen176f3602011-10-26 14:47:27 -0700388 if (!sband->ht_cap.ht_supported ||
Johannes Berg4bf88532012-11-09 11:39:59 +0100389 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
Thomas Pedersen176f3602011-10-26 14:47:27 -0700390 return 0;
391
392 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_cap))
393 return -ENOMEM;
394
395 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_cap));
Ben Greearef96a8422011-11-18 11:32:00 -0800396 ieee80211_ie_build_ht_cap(pos, &sband->ht_cap, sband->ht_cap.cap);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700397
398 return 0;
399}
400
Johannes Berg074d46d2012-03-15 19:45:16 +0100401int mesh_add_ht_oper_ie(struct sk_buff *skb,
Thomas Pedersen176f3602011-10-26 14:47:27 -0700402 struct ieee80211_sub_if_data *sdata)
403{
404 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +0200405 struct ieee80211_chanctx_conf *chanctx_conf;
406 struct ieee80211_channel *channel;
Johannes Berg466f3102012-07-25 13:51:49 +0200407 enum nl80211_channel_type channel_type =
Johannes Berg4bf88532012-11-09 11:39:59 +0100408 cfg80211_get_chandef_type(&sdata->vif.bss_conf.chandef);
Johannes Berg55de9082012-07-26 17:24:39 +0200409 struct ieee80211_supported_band *sband;
410 struct ieee80211_sta_ht_cap *ht_cap;
Thomas Pedersen176f3602011-10-26 14:47:27 -0700411 u8 *pos;
412
Johannes Berg55de9082012-07-26 17:24:39 +0200413 rcu_read_lock();
414 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
415 if (WARN_ON(!chanctx_conf)) {
416 rcu_read_unlock();
417 return -EINVAL;
418 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100419 channel = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200420 rcu_read_unlock();
421
422 sband = local->hw.wiphy->bands[channel->band];
423 ht_cap = &sband->ht_cap;
424
Thomas Pedersen176f3602011-10-26 14:47:27 -0700425 if (!ht_cap->ht_supported || channel_type == NL80211_CHAN_NO_HT)
426 return 0;
427
Johannes Berg074d46d2012-03-15 19:45:16 +0100428 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_operation))
Thomas Pedersen176f3602011-10-26 14:47:27 -0700429 return -ENOMEM;
430
Johannes Berg074d46d2012-03-15 19:45:16 +0100431 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_operation));
Johannes Berg4bf88532012-11-09 11:39:59 +0100432 ieee80211_ie_build_ht_oper(pos, ht_cap, &sdata->vif.bss_conf.chandef,
Ashok Nagarajan431e3152012-04-30 14:20:29 -0700433 sdata->vif.bss_conf.ht_operation_mode);
Thomas Pedersen176f3602011-10-26 14:47:27 -0700434
435 return 0;
436}
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100437static void ieee80211_mesh_path_timer(unsigned long data)
438{
439 struct ieee80211_sub_if_data *sdata =
440 (struct ieee80211_sub_if_data *) data;
Johannes Berg472dbc42008-09-11 00:01:49 +0200441 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg133b8222008-09-16 14:18:59 +0200442 struct ieee80211_local *local = sdata->local;
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100443
Johannes Berg5bb644a2009-05-17 11:40:42 +0200444 if (local->quiescing) {
445 set_bit(TMR_RUNNING_MP, &ifmsh->timers_running);
446 return;
447 }
448
Johannes Berg64592c82010-06-10 10:21:31 +0200449 ieee80211_queue_work(&local->hw, &sdata->work);
Luis Carlos Cobo2e3c8732008-02-23 15:17:09 +0100450}
451
Rui Pauloe304bfd2009-11-09 23:46:56 +0000452static void ieee80211_mesh_path_root_timer(unsigned long data)
453{
454 struct ieee80211_sub_if_data *sdata =
455 (struct ieee80211_sub_if_data *) data;
456 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
457 struct ieee80211_local *local = sdata->local;
458
459 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
460
461 if (local->quiescing) {
462 set_bit(TMR_RUNNING_MPR, &ifmsh->timers_running);
463 return;
464 }
465
Johannes Berg64592c82010-06-10 10:21:31 +0200466 ieee80211_queue_work(&local->hw, &sdata->work);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000467}
468
Rui Paulo63c57232009-11-09 23:46:57 +0000469void ieee80211_mesh_root_setup(struct ieee80211_if_mesh *ifmsh)
470{
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +0800471 if (ifmsh->mshcfg.dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)
Rui Paulo63c57232009-11-09 23:46:57 +0000472 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
473 else {
474 clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
475 /* stop running timer */
476 del_timer_sync(&ifmsh->mesh_path_root_timer);
477 }
478}
479
Johannes Berg902acc72008-02-23 15:17:19 +0100480/**
Javier Cardona3c5772a2009-08-10 12:15:48 -0700481 * ieee80211_fill_mesh_addresses - fill addresses of a locally originated mesh frame
482 * @hdr: 802.11 frame header
483 * @fc: frame control field
484 * @meshda: destination address in the mesh
485 * @meshsa: source address address in the mesh. Same as TA, as frame is
486 * locally originated.
487 *
488 * Return the length of the 802.11 (does not include a mesh control header)
489 */
Johannes Berg15ff6362009-11-17 13:34:04 +0100490int ieee80211_fill_mesh_addresses(struct ieee80211_hdr *hdr, __le16 *fc,
491 const u8 *meshda, const u8 *meshsa)
492{
Javier Cardona3c5772a2009-08-10 12:15:48 -0700493 if (is_multicast_ether_addr(meshda)) {
494 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
495 /* DA TA SA */
496 memcpy(hdr->addr1, meshda, ETH_ALEN);
497 memcpy(hdr->addr2, meshsa, ETH_ALEN);
498 memcpy(hdr->addr3, meshsa, ETH_ALEN);
499 return 24;
500 } else {
Javier Cardona2154c81c2011-09-07 17:49:53 -0700501 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
Javier Cardona3c5772a2009-08-10 12:15:48 -0700502 /* RA TA DA SA */
503 memset(hdr->addr1, 0, ETH_ALEN); /* RA is resolved later */
504 memcpy(hdr->addr2, meshsa, ETH_ALEN);
505 memcpy(hdr->addr3, meshda, ETH_ALEN);
506 memcpy(hdr->addr4, meshsa, ETH_ALEN);
507 return 30;
508 }
509}
510
511/**
Johannes Berg902acc72008-02-23 15:17:19 +0100512 * ieee80211_new_mesh_header - create a new mesh header
513 * @meshhdr: uninitialized mesh header
514 * @sdata: mesh interface to be used
Javier Cardona61ad5392010-12-16 17:23:34 -0800515 * @addr4or5: 1st address in the ae header, which may correspond to address 4
516 * (if addr6 is NULL) or address 5 (if addr6 is present). It may
517 * be NULL.
518 * @addr6: 2nd address in the ae header, which corresponds to addr6 of the
519 * mesh frame
Johannes Berg902acc72008-02-23 15:17:19 +0100520 *
521 * Return the header length.
522 */
523int ieee80211_new_mesh_header(struct ieee80211s_hdr *meshhdr,
Javier Cardona61ad5392010-12-16 17:23:34 -0800524 struct ieee80211_sub_if_data *sdata, char *addr4or5,
525 char *addr6)
Johannes Berg902acc72008-02-23 15:17:19 +0100526{
Javier Cardona3c5772a2009-08-10 12:15:48 -0700527 int aelen = 0;
Javier Cardona61ad5392010-12-16 17:23:34 -0800528 BUG_ON(!addr4or5 && addr6);
Julia Lawall0c3cee72009-12-09 20:25:59 +0100529 memset(meshhdr, 0, sizeof(*meshhdr));
Johannes Berg472dbc42008-09-11 00:01:49 +0200530 meshhdr->ttl = sdata->u.mesh.mshcfg.dot11MeshTTL;
531 put_unaligned(cpu_to_le32(sdata->u.mesh.mesh_seqnum), &meshhdr->seqnum);
532 sdata->u.mesh.mesh_seqnum++;
Javier Cardona61ad5392010-12-16 17:23:34 -0800533 if (addr4or5 && !addr6) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700534 meshhdr->flags |= MESH_FLAGS_AE_A4;
535 aelen += ETH_ALEN;
Javier Cardona61ad5392010-12-16 17:23:34 -0800536 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
537 } else if (addr4or5 && addr6) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700538 meshhdr->flags |= MESH_FLAGS_AE_A5_A6;
539 aelen += 2 * ETH_ALEN;
Javier Cardona61ad5392010-12-16 17:23:34 -0800540 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
541 memcpy(meshhdr->eaddr2, addr6, ETH_ALEN);
Javier Cardona3c5772a2009-08-10 12:15:48 -0700542 }
543 return 6 + aelen;
Johannes Berg902acc72008-02-23 15:17:19 +0100544}
545
Johannes Berg472dbc42008-09-11 00:01:49 +0200546static void ieee80211_mesh_housekeeping(struct ieee80211_sub_if_data *sdata,
547 struct ieee80211_if_mesh *ifmsh)
548{
Marco Porschdf323812012-08-08 07:58:43 +0200549 u32 changed;
Johannes Berg472dbc42008-09-11 00:01:49 +0200550
Johannes Berg472dbc42008-09-11 00:01:49 +0200551 ieee80211_sta_expire(sdata, IEEE80211_MESH_PEER_INACTIVITY_LIMIT);
552 mesh_path_expire(sdata);
553
Marco Porschdf323812012-08-08 07:58:43 +0200554 changed = mesh_accept_plinks_update(sdata);
555 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Berg472dbc42008-09-11 00:01:49 +0200556
Johannes Berg472dbc42008-09-11 00:01:49 +0200557 mod_timer(&ifmsh->housekeeping_timer,
558 round_jiffies(jiffies + IEEE80211_MESH_HOUSEKEEPING_INTERVAL));
559}
560
Rui Pauloe304bfd2009-11-09 23:46:56 +0000561static void ieee80211_mesh_rootpath(struct ieee80211_sub_if_data *sdata)
562{
563 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800564 u32 interval;
Rui Pauloe304bfd2009-11-09 23:46:56 +0000565
566 mesh_path_tx_root_frame(sdata);
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800567
568 if (ifmsh->mshcfg.dot11MeshHWMPRootMode == IEEE80211_PROACTIVE_RANN)
569 interval = ifmsh->mshcfg.dot11MeshHWMPRannInterval;
570 else
571 interval = ifmsh->mshcfg.dot11MeshHWMProotInterval;
572
Rui Pauloe304bfd2009-11-09 23:46:56 +0000573 mod_timer(&ifmsh->mesh_path_root_timer,
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +0800574 round_jiffies(TU_TO_EXP_TIME(interval)));
Rui Pauloe304bfd2009-11-09 23:46:56 +0000575}
576
Johannes Berg5bb644a2009-05-17 11:40:42 +0200577#ifdef CONFIG_PM
578void ieee80211_mesh_quiesce(struct ieee80211_sub_if_data *sdata)
579{
580 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
581
Javier Cardona5ee68e52011-08-09 16:45:08 -0700582 /* use atomic bitops in case all timers fire at the same time */
Johannes Berg5bb644a2009-05-17 11:40:42 +0200583
584 if (del_timer_sync(&ifmsh->housekeeping_timer))
585 set_bit(TMR_RUNNING_HK, &ifmsh->timers_running);
586 if (del_timer_sync(&ifmsh->mesh_path_timer))
587 set_bit(TMR_RUNNING_MP, &ifmsh->timers_running);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000588 if (del_timer_sync(&ifmsh->mesh_path_root_timer))
589 set_bit(TMR_RUNNING_MPR, &ifmsh->timers_running);
Johannes Berg5bb644a2009-05-17 11:40:42 +0200590}
591
592void ieee80211_mesh_restart(struct ieee80211_sub_if_data *sdata)
593{
594 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
595
596 if (test_and_clear_bit(TMR_RUNNING_HK, &ifmsh->timers_running))
597 add_timer(&ifmsh->housekeeping_timer);
598 if (test_and_clear_bit(TMR_RUNNING_MP, &ifmsh->timers_running))
599 add_timer(&ifmsh->mesh_path_timer);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000600 if (test_and_clear_bit(TMR_RUNNING_MPR, &ifmsh->timers_running))
601 add_timer(&ifmsh->mesh_path_root_timer);
Rui Paulo63c57232009-11-09 23:46:57 +0000602 ieee80211_mesh_root_setup(ifmsh);
Johannes Berg5bb644a2009-05-17 11:40:42 +0200603}
604#endif
Johannes Berg472dbc42008-09-11 00:01:49 +0200605
606void ieee80211_start_mesh(struct ieee80211_sub_if_data *sdata)
607{
608 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
609 struct ieee80211_local *local = sdata->local;
610
Johannes Berg09b17472010-12-03 09:20:41 +0100611 local->fif_other_bss++;
612 /* mesh ifaces must set allmulti to forward mcast traffic */
613 atomic_inc(&local->iff_allmultis);
614 ieee80211_configure_filter(local);
615
Javier Cardonac7108a72010-12-16 17:37:50 -0800616 ifmsh->mesh_cc_id = 0; /* Disabled */
Javier Cardonac7108a72010-12-16 17:37:50 -0800617 ifmsh->mesh_auth_id = 0; /* Disabled */
Javier Cardonadbf498f2012-03-31 11:31:32 -0700618 /* register sync ops from extensible synchronization framework */
619 ifmsh->sync_ops = ieee80211_mesh_sync_ops_get(ifmsh->mesh_sp_id);
620 ifmsh->adjusting_tbtt = false;
621 ifmsh->sync_offset_clockdrift_max = 0;
Rui Paulo6b9ac442009-10-20 21:21:48 +0100622 set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
Rui Paulo63c57232009-11-09 23:46:57 +0000623 ieee80211_mesh_root_setup(ifmsh);
Johannes Berg64592c82010-06-10 10:21:31 +0200624 ieee80211_queue_work(&local->hw, &sdata->work);
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -0700625 sdata->vif.bss_conf.ht_operation_mode =
626 ifmsh->mshcfg.ht_opmode;
Javier Cardona5b365832009-08-10 12:15:51 -0700627 sdata->vif.bss_conf.beacon_int = MESH_DEFAULT_BEACON_INTERVAL;
Ashok Nagarajand934f7d2012-04-02 21:21:19 -0700628 sdata->vif.bss_conf.basic_rates =
629 ieee80211_mandatory_rates(sdata->local,
Johannes Berg55de9082012-07-26 17:24:39 +0200630 ieee80211_get_sdata_band(sdata));
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200631 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON |
Javier Cardona5b365832009-08-10 12:15:51 -0700632 BSS_CHANGED_BEACON_ENABLED |
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -0700633 BSS_CHANGED_HT |
Ashok Nagarajand934f7d2012-04-02 21:21:19 -0700634 BSS_CHANGED_BASIC_RATES |
Javier Cardona5b365832009-08-10 12:15:51 -0700635 BSS_CHANGED_BEACON_INT);
Johannes Bergc405c622012-07-30 19:44:12 +0200636
637 netif_carrier_on(sdata->dev);
Johannes Berg472dbc42008-09-11 00:01:49 +0200638}
639
640void ieee80211_stop_mesh(struct ieee80211_sub_if_data *sdata)
641{
Johannes Berg09b17472010-12-03 09:20:41 +0100642 struct ieee80211_local *local = sdata->local;
Johannes Berg29cbe682010-12-03 09:20:44 +0100643 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
644
Johannes Bergc405c622012-07-30 19:44:12 +0200645 netif_carrier_off(sdata->dev);
646
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700647 /* stop the beacon */
Johannes Berg29cbe682010-12-03 09:20:44 +0100648 ifmsh->mesh_id_len = 0;
649 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Thomas Pedersen0d466b9c2012-08-03 12:21:32 -0700650
651 /* flush STAs and mpaths on this iface */
652 sta_info_flush(sdata->local, sdata);
653 mesh_path_flush_by_iface(sdata);
Johannes Berg09b17472010-12-03 09:20:41 +0100654
Johannes Berg472dbc42008-09-11 00:01:49 +0200655 del_timer_sync(&sdata->u.mesh.housekeeping_timer);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000656 del_timer_sync(&sdata->u.mesh.mesh_path_root_timer);
Johannes Bergdd4c9262012-08-01 21:03:21 +0200657 del_timer_sync(&sdata->u.mesh.mesh_path_timer);
Johannes Berg472dbc42008-09-11 00:01:49 +0200658 /*
Johannes Bergb7413432008-09-11 00:01:50 +0200659 * If the timer fired while we waited for it, it will have
660 * requeued the work. Now the work will be running again
661 * but will not rearm the timer again because it checks
662 * whether the interface is running, which, at this point,
663 * it no longer is.
664 */
Johannes Berg64592c82010-06-10 10:21:31 +0200665 cancel_work_sync(&sdata->work);
Johannes Berg09b17472010-12-03 09:20:41 +0100666
667 local->fif_other_bss--;
668 atomic_dec(&local->iff_allmultis);
669 ieee80211_configure_filter(local);
Johannes Berg2d9957c2012-08-01 20:54:52 +0200670
671 sdata->u.mesh.timers_running = 0;
Johannes Berg472dbc42008-09-11 00:01:49 +0200672}
673
674static void ieee80211_mesh_rx_bcn_presp(struct ieee80211_sub_if_data *sdata,
675 u16 stype,
676 struct ieee80211_mgmt *mgmt,
677 size_t len,
678 struct ieee80211_rx_status *rx_status)
679{
Johannes Bergc6a1fa12008-10-07 12:04:32 +0200680 struct ieee80211_local *local = sdata->local;
Javier Cardonadbf498f2012-03-31 11:31:32 -0700681 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +0200682 struct ieee802_11_elems elems;
683 struct ieee80211_channel *channel;
Johannes Berg472dbc42008-09-11 00:01:49 +0200684 size_t baselen;
685 int freq;
686 enum ieee80211_band band = rx_status->band;
687
688 /* ignore ProbeResp to foreign address */
689 if (stype == IEEE80211_STYPE_PROBE_RESP &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000690 !ether_addr_equal(mgmt->da, sdata->vif.addr))
Johannes Berg472dbc42008-09-11 00:01:49 +0200691 return;
692
693 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
694 if (baselen > len)
695 return;
696
697 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
698 &elems);
699
Thomas Pedersen9a90bc82012-10-20 19:03:10 -0700700 /* ignore non-mesh or secure / unsecure mismatch */
701 if ((!elems.mesh_id || !elems.mesh_config) ||
702 (elems.rsn && sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) ||
703 (!elems.rsn && sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE))
Javier Cardona5cff5e02011-04-07 15:08:29 -0700704 return;
705
Johannes Berg472dbc42008-09-11 00:01:49 +0200706 if (elems.ds_params && elems.ds_params_len == 1)
Bruno Randolf59eb21a2011-01-17 13:37:28 +0900707 freq = ieee80211_channel_to_frequency(elems.ds_params[0], band);
Johannes Berg472dbc42008-09-11 00:01:49 +0200708 else
709 freq = rx_status->freq;
710
711 channel = ieee80211_get_channel(local->hw.wiphy, freq);
712
713 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
714 return;
715
Thomas Pedersen9a90bc82012-10-20 19:03:10 -0700716 if (mesh_matches_local(sdata, &elems))
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700717 mesh_neighbour_update(sdata, mgmt->sa, &elems);
Javier Cardonadbf498f2012-03-31 11:31:32 -0700718
719 if (ifmsh->sync_ops)
720 ifmsh->sync_ops->rx_bcn_presp(sdata,
721 stype, mgmt, &elems, rx_status);
Johannes Berg472dbc42008-09-11 00:01:49 +0200722}
723
724static void ieee80211_mesh_rx_mgmt_action(struct ieee80211_sub_if_data *sdata,
725 struct ieee80211_mgmt *mgmt,
726 size_t len,
727 struct ieee80211_rx_status *rx_status)
728{
729 switch (mgmt->u.action.category) {
Thomas Pedersen8db09852011-08-12 20:01:00 -0700730 case WLAN_CATEGORY_SELF_PROTECTED:
731 switch (mgmt->u.action.u.self_prot.action_code) {
732 case WLAN_SP_MESH_PEERING_OPEN:
733 case WLAN_SP_MESH_PEERING_CLOSE:
734 case WLAN_SP_MESH_PEERING_CONFIRM:
735 mesh_rx_plink_frame(sdata, mgmt, len, rx_status);
736 break;
737 }
Johannes Berg472dbc42008-09-11 00:01:49 +0200738 break;
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700739 case WLAN_CATEGORY_MESH_ACTION:
740 if (mesh_action_is_path_sel(mgmt))
741 mesh_rx_path_sel_frame(sdata, mgmt, len);
Johannes Berg472dbc42008-09-11 00:01:49 +0200742 break;
743 }
744}
745
Johannes Berg1fa57d02010-06-10 10:21:32 +0200746void ieee80211_mesh_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
747 struct sk_buff *skb)
Johannes Berg472dbc42008-09-11 00:01:49 +0200748{
749 struct ieee80211_rx_status *rx_status;
Johannes Berg472dbc42008-09-11 00:01:49 +0200750 struct ieee80211_mgmt *mgmt;
751 u16 stype;
752
Johannes Bergf1d58c22009-06-17 13:13:00 +0200753 rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Berg472dbc42008-09-11 00:01:49 +0200754 mgmt = (struct ieee80211_mgmt *) skb->data;
755 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
756
757 switch (stype) {
758 case IEEE80211_STYPE_PROBE_RESP:
759 case IEEE80211_STYPE_BEACON:
760 ieee80211_mesh_rx_bcn_presp(sdata, stype, mgmt, skb->len,
761 rx_status);
762 break;
763 case IEEE80211_STYPE_ACTION:
764 ieee80211_mesh_rx_mgmt_action(sdata, mgmt, skb->len, rx_status);
765 break;
766 }
Johannes Berg472dbc42008-09-11 00:01:49 +0200767}
768
Johannes Berg1fa57d02010-06-10 10:21:32 +0200769void ieee80211_mesh_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg472dbc42008-09-11 00:01:49 +0200770{
Johannes Berg472dbc42008-09-11 00:01:49 +0200771 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +0200772
773 if (ifmsh->preq_queue_len &&
774 time_after(jiffies,
775 ifmsh->last_preq + msecs_to_jiffies(ifmsh->mshcfg.dot11MeshHWMPpreqMinInterval)))
776 mesh_path_start_discovery(sdata);
777
Javier Cardona18889232009-08-10 12:15:52 -0700778 if (test_and_clear_bit(MESH_WORK_GROW_MPATH_TABLE, &ifmsh->wrkq_flags))
779 mesh_mpath_table_grow();
780
Nick Ledovskikhdcac9082011-01-11 14:35:12 +0000781 if (test_and_clear_bit(MESH_WORK_GROW_MPP_TABLE, &ifmsh->wrkq_flags))
Javier Cardona18889232009-08-10 12:15:52 -0700782 mesh_mpp_table_grow();
783
784 if (test_and_clear_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags))
Johannes Berg472dbc42008-09-11 00:01:49 +0200785 ieee80211_mesh_housekeeping(sdata, ifmsh);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000786
787 if (test_and_clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags))
788 ieee80211_mesh_rootpath(sdata);
Javier Cardonadbf498f2012-03-31 11:31:32 -0700789
790 if (test_and_clear_bit(MESH_WORK_DRIFT_ADJUST, &ifmsh->wrkq_flags))
791 mesh_sync_adjust_tbtt(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +0200792}
793
794void ieee80211_mesh_notify_scan_completed(struct ieee80211_local *local)
795{
796 struct ieee80211_sub_if_data *sdata;
797
798 rcu_read_lock();
799 list_for_each_entry_rcu(sdata, &local->interfaces, list)
800 if (ieee80211_vif_is_mesh(&sdata->vif))
Johannes Berg64592c82010-06-10 10:21:31 +0200801 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg472dbc42008-09-11 00:01:49 +0200802 rcu_read_unlock();
803}
804
Johannes Berg902acc72008-02-23 15:17:19 +0100805void ieee80211_mesh_init_sdata(struct ieee80211_sub_if_data *sdata)
806{
Johannes Berg472dbc42008-09-11 00:01:49 +0200807 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg902acc72008-02-23 15:17:19 +0100808
Johannes Berg472dbc42008-09-11 00:01:49 +0200809 setup_timer(&ifmsh->housekeeping_timer,
810 ieee80211_mesh_housekeeping_timer,
811 (unsigned long) sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +0200812
Johannes Berg472dbc42008-09-11 00:01:49 +0200813 ifmsh->accepting_plinks = true;
814 ifmsh->preq_id = 0;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000815 ifmsh->sn = 0;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700816 ifmsh->num_gates = 0;
Johannes Berg472dbc42008-09-11 00:01:49 +0200817 atomic_set(&ifmsh->mpaths, 0);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200818 mesh_rmc_init(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +0200819 ifmsh->last_preq = jiffies;
Thomas Pedersendca7e942011-11-24 17:15:24 -0800820 ifmsh->next_perr = jiffies;
Johannes Berg902acc72008-02-23 15:17:19 +0100821 /* Allocate all mesh structures when creating the first mesh interface. */
822 if (!mesh_allocated)
823 ieee80211s_init();
Johannes Berg472dbc42008-09-11 00:01:49 +0200824 setup_timer(&ifmsh->mesh_path_timer,
Johannes Berg902acc72008-02-23 15:17:19 +0100825 ieee80211_mesh_path_timer,
826 (unsigned long) sdata);
Rui Pauloe304bfd2009-11-09 23:46:56 +0000827 setup_timer(&ifmsh->mesh_path_root_timer,
828 ieee80211_mesh_path_root_timer,
829 (unsigned long) sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +0200830 INIT_LIST_HEAD(&ifmsh->preq_queue.list);
831 spin_lock_init(&ifmsh->mesh_preq_queue_lock);
Javier Cardonadbf498f2012-03-31 11:31:32 -0700832 spin_lock_init(&ifmsh->sync_offset_lock);
Johannes Berg472dbc42008-09-11 00:01:49 +0200833}