blob: 075bc535c60126c33c6ce5f015bab87b00fe08f2 [file] [log] [blame]
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001/*
Rui Paulo264d9b72009-11-09 23:46:58 +00002 * Copyright (c) 2008, 2009 open80211s Ltd.
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01003 * Author: Luis Carlos Cobo <luisca@cozybit.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/etherdevice.h>
11#include <linux/list.h>
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +010012#include <linux/random.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +010014#include <linux/spinlock.h>
15#include <linux/string.h>
16#include <net/mac80211.h>
Javier Cardona4777be42011-09-07 17:49:52 -070017#include "wme.h"
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +010018#include "ieee80211_i.h"
19#include "mesh.h"
20
21/* There will be initially 2^INIT_PATHS_SIZE_ORDER buckets */
22#define INIT_PATHS_SIZE_ORDER 2
23
24/* Keep the mean chain length below this constant */
25#define MEAN_CHAIN_LEN 2
26
27#define MPATH_EXPIRED(mpath) ((mpath->flags & MESH_PATH_ACTIVE) && \
28 time_after(jiffies, mpath->exp_time) && \
29 !(mpath->flags & MESH_PATH_FIXED))
30
31struct mpath_node {
32 struct hlist_node list;
33 struct rcu_head rcu;
34 /* This indirection allows two different tables to point to the same
35 * mesh_path structure, useful when resizing
36 */
37 struct mesh_path *mpath;
38};
39
Johannes Berg349eb8c2011-05-14 11:56:16 +020040static struct mesh_table __rcu *mesh_paths;
41static struct mesh_table __rcu *mpp_paths; /* Store paths for MPP&MAP */
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +010042
Johannes Bergf5ea9122009-08-07 16:17:38 +020043int mesh_paths_generation;
Johannes Berg6b86bd62011-05-12 13:38:50 +020044
45/* This lock will have the grow table function as writer and add / delete nodes
Javier Cardona239289e2011-08-29 13:23:09 -070046 * as readers. RCU provides sufficient protection only when reading the table
47 * (i.e. doing lookups). Adding or adding or removing nodes requires we take
48 * the read lock or we risk operating on an old table. The write lock is only
49 * needed when modifying the number of buckets a table.
Johannes Berg6b86bd62011-05-12 13:38:50 +020050 */
51static DEFINE_RWLOCK(pathtbl_resize_lock);
52
53
Johannes Berg349eb8c2011-05-14 11:56:16 +020054static inline struct mesh_table *resize_dereference_mesh_paths(void)
55{
56 return rcu_dereference_protected(mesh_paths,
57 lockdep_is_held(&pathtbl_resize_lock));
58}
59
60static inline struct mesh_table *resize_dereference_mpp_paths(void)
61{
62 return rcu_dereference_protected(mpp_paths,
63 lockdep_is_held(&pathtbl_resize_lock));
64}
65
66/*
67 * CAREFUL -- "tbl" must not be an expression,
68 * in particular not an rcu_dereference(), since
69 * it's used twice. So it is illegal to do
70 * for_each_mesh_entry(rcu_dereference(...), ...)
71 */
72#define for_each_mesh_entry(tbl, p, node, i) \
73 for (i = 0; i <= tbl->hash_mask; i++) \
74 hlist_for_each_entry_rcu(node, p, &tbl->hash_buckets[i], list)
75
76
Johannes Berg6b86bd62011-05-12 13:38:50 +020077static struct mesh_table *mesh_table_alloc(int size_order)
78{
79 int i;
80 struct mesh_table *newtbl;
81
Javier Cardonad676ff42011-05-17 16:13:34 -070082 newtbl = kmalloc(sizeof(struct mesh_table), GFP_ATOMIC);
Johannes Berg6b86bd62011-05-12 13:38:50 +020083 if (!newtbl)
84 return NULL;
85
86 newtbl->hash_buckets = kzalloc(sizeof(struct hlist_head) *
Javier Cardonad676ff42011-05-17 16:13:34 -070087 (1 << size_order), GFP_ATOMIC);
Johannes Berg6b86bd62011-05-12 13:38:50 +020088
89 if (!newtbl->hash_buckets) {
90 kfree(newtbl);
91 return NULL;
92 }
93
94 newtbl->hashwlock = kmalloc(sizeof(spinlock_t) *
Javier Cardonad676ff42011-05-17 16:13:34 -070095 (1 << size_order), GFP_ATOMIC);
Johannes Berg6b86bd62011-05-12 13:38:50 +020096 if (!newtbl->hashwlock) {
97 kfree(newtbl->hash_buckets);
98 kfree(newtbl);
99 return NULL;
100 }
101
102 newtbl->size_order = size_order;
103 newtbl->hash_mask = (1 << size_order) - 1;
104 atomic_set(&newtbl->entries, 0);
105 get_random_bytes(&newtbl->hash_rnd,
106 sizeof(newtbl->hash_rnd));
107 for (i = 0; i <= newtbl->hash_mask; i++)
108 spin_lock_init(&newtbl->hashwlock[i]);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700109 spin_lock_init(&newtbl->gates_lock);
Johannes Berg6b86bd62011-05-12 13:38:50 +0200110
111 return newtbl;
112}
113
Javier Cardona18889232009-08-10 12:15:52 -0700114static void __mesh_table_free(struct mesh_table *tbl)
115{
116 kfree(tbl->hash_buckets);
117 kfree(tbl->hashwlock);
118 kfree(tbl);
119}
120
Johannes Berg6b86bd62011-05-12 13:38:50 +0200121static void mesh_table_free(struct mesh_table *tbl, bool free_leafs)
Javier Cardona18889232009-08-10 12:15:52 -0700122{
123 struct hlist_head *mesh_hash;
124 struct hlist_node *p, *q;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700125 struct mpath_node *gate;
Javier Cardona18889232009-08-10 12:15:52 -0700126 int i;
127
128 mesh_hash = tbl->hash_buckets;
129 for (i = 0; i <= tbl->hash_mask; i++) {
Javier Cardona9b84b8082011-05-03 16:57:16 -0700130 spin_lock_bh(&tbl->hashwlock[i]);
Javier Cardona18889232009-08-10 12:15:52 -0700131 hlist_for_each_safe(p, q, &mesh_hash[i]) {
132 tbl->free_node(p, free_leafs);
133 atomic_dec(&tbl->entries);
134 }
Javier Cardona9b84b8082011-05-03 16:57:16 -0700135 spin_unlock_bh(&tbl->hashwlock[i]);
Javier Cardona18889232009-08-10 12:15:52 -0700136 }
Javier Cardona5ee68e52011-08-09 16:45:08 -0700137 if (free_leafs) {
138 spin_lock_bh(&tbl->gates_lock);
139 hlist_for_each_entry_safe(gate, p, q,
140 tbl->known_gates, list) {
141 hlist_del(&gate->list);
142 kfree(gate);
143 }
144 kfree(tbl->known_gates);
145 spin_unlock_bh(&tbl->gates_lock);
146 }
147
Javier Cardona18889232009-08-10 12:15:52 -0700148 __mesh_table_free(tbl);
149}
150
cozybit Inca3e6b122011-04-13 11:10:28 -0700151static int mesh_table_grow(struct mesh_table *oldtbl,
Johannes Berg6b86bd62011-05-12 13:38:50 +0200152 struct mesh_table *newtbl)
Javier Cardona18889232009-08-10 12:15:52 -0700153{
Javier Cardona18889232009-08-10 12:15:52 -0700154 struct hlist_head *oldhash;
155 struct hlist_node *p, *q;
156 int i;
157
cozybit Inca3e6b122011-04-13 11:10:28 -0700158 if (atomic_read(&oldtbl->entries)
159 < oldtbl->mean_chain_len * (oldtbl->hash_mask + 1))
160 return -EAGAIN;
Javier Cardona18889232009-08-10 12:15:52 -0700161
cozybit Inca3e6b122011-04-13 11:10:28 -0700162 newtbl->free_node = oldtbl->free_node;
163 newtbl->mean_chain_len = oldtbl->mean_chain_len;
164 newtbl->copy_node = oldtbl->copy_node;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700165 newtbl->known_gates = oldtbl->known_gates;
cozybit Inca3e6b122011-04-13 11:10:28 -0700166 atomic_set(&newtbl->entries, atomic_read(&oldtbl->entries));
Javier Cardona18889232009-08-10 12:15:52 -0700167
cozybit Inca3e6b122011-04-13 11:10:28 -0700168 oldhash = oldtbl->hash_buckets;
169 for (i = 0; i <= oldtbl->hash_mask; i++)
Javier Cardona18889232009-08-10 12:15:52 -0700170 hlist_for_each(p, &oldhash[i])
cozybit Inca3e6b122011-04-13 11:10:28 -0700171 if (oldtbl->copy_node(p, newtbl) < 0)
Javier Cardona18889232009-08-10 12:15:52 -0700172 goto errcopy;
173
cozybit Inca3e6b122011-04-13 11:10:28 -0700174 return 0;
Javier Cardona18889232009-08-10 12:15:52 -0700175
176errcopy:
177 for (i = 0; i <= newtbl->hash_mask; i++) {
178 hlist_for_each_safe(p, q, &newtbl->hash_buckets[i])
cozybit Inca3e6b122011-04-13 11:10:28 -0700179 oldtbl->free_node(p, 0);
Javier Cardona18889232009-08-10 12:15:52 -0700180 }
cozybit Inca3e6b122011-04-13 11:10:28 -0700181 return -ENOMEM;
Javier Cardona18889232009-08-10 12:15:52 -0700182}
183
Johannes Berg6b86bd62011-05-12 13:38:50 +0200184static u32 mesh_table_hash(u8 *addr, struct ieee80211_sub_if_data *sdata,
185 struct mesh_table *tbl)
186{
187 /* Use last four bytes of hw addr and interface index as hash index */
188 return jhash_2words(*(u32 *)(addr+2), sdata->dev->ifindex, tbl->hash_rnd)
189 & tbl->hash_mask;
190}
Johannes Bergf5ea9122009-08-07 16:17:38 +0200191
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100192
193/**
194 *
195 * mesh_path_assign_nexthop - update mesh path next hop
196 *
197 * @mpath: mesh path to update
198 * @sta: next hop to assign
199 *
200 * Locking: mpath->state_lock must be held when calling this function
201 */
202void mesh_path_assign_nexthop(struct mesh_path *mpath, struct sta_info *sta)
203{
Javier Cardona10c836d2009-07-09 14:42:16 -0700204 struct sk_buff *skb;
205 struct ieee80211_hdr *hdr;
206 struct sk_buff_head tmpq;
207 unsigned long flags;
208
Johannes Bergd0709a62008-02-25 16:27:46 +0100209 rcu_assign_pointer(mpath->next_hop, sta);
Javier Cardona10c836d2009-07-09 14:42:16 -0700210
211 __skb_queue_head_init(&tmpq);
212
213 spin_lock_irqsave(&mpath->frame_queue.lock, flags);
214
215 while ((skb = __skb_dequeue(&mpath->frame_queue)) != NULL) {
216 hdr = (struct ieee80211_hdr *) skb->data;
217 memcpy(hdr->addr1, sta->sta.addr, ETH_ALEN);
Thomas Pedersen7e3c8862011-11-24 17:15:21 -0800218 memcpy(hdr->addr2, mpath->sdata->vif.addr, ETH_ALEN);
Javier Cardona10c836d2009-07-09 14:42:16 -0700219 __skb_queue_tail(&tmpq, skb);
220 }
221
222 skb_queue_splice(&tmpq, &mpath->frame_queue);
223 spin_unlock_irqrestore(&mpath->frame_queue.lock, flags);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100224}
225
Javier Cardona5ee68e52011-08-09 16:45:08 -0700226static void prepare_for_gate(struct sk_buff *skb, char *dst_addr,
227 struct mesh_path *gate_mpath)
228{
229 struct ieee80211_hdr *hdr;
230 struct ieee80211s_hdr *mshdr;
231 int mesh_hdrlen, hdrlen;
232 char *next_hop;
233
234 hdr = (struct ieee80211_hdr *) skb->data;
235 hdrlen = ieee80211_hdrlen(hdr->frame_control);
236 mshdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
237
238 if (!(mshdr->flags & MESH_FLAGS_AE)) {
239 /* size of the fixed part of the mesh header */
240 mesh_hdrlen = 6;
241
242 /* make room for the two extended addresses */
243 skb_push(skb, 2 * ETH_ALEN);
244 memmove(skb->data, hdr, hdrlen + mesh_hdrlen);
245
246 hdr = (struct ieee80211_hdr *) skb->data;
247
248 /* we preserve the previous mesh header and only add
249 * the new addreses */
250 mshdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
251 mshdr->flags = MESH_FLAGS_AE_A5_A6;
252 memcpy(mshdr->eaddr1, hdr->addr3, ETH_ALEN);
253 memcpy(mshdr->eaddr2, hdr->addr4, ETH_ALEN);
254 }
255
256 /* update next hop */
257 hdr = (struct ieee80211_hdr *) skb->data;
258 rcu_read_lock();
259 next_hop = rcu_dereference(gate_mpath->next_hop)->sta.addr;
260 memcpy(hdr->addr1, next_hop, ETH_ALEN);
261 rcu_read_unlock();
Thomas Pedersen7e3c8862011-11-24 17:15:21 -0800262 memcpy(hdr->addr2, gate_mpath->sdata->vif.addr, ETH_ALEN);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700263 memcpy(hdr->addr3, dst_addr, ETH_ALEN);
264}
265
266/**
267 *
268 * mesh_path_move_to_queue - Move or copy frames from one mpath queue to another
269 *
270 * This function is used to transfer or copy frames from an unresolved mpath to
271 * a gate mpath. The function also adds the Address Extension field and
272 * updates the next hop.
273 *
274 * If a frame already has an Address Extension field, only the next hop and
275 * destination addresses are updated.
276 *
277 * The gate mpath must be an active mpath with a valid mpath->next_hop.
278 *
279 * @mpath: An active mpath the frames will be sent to (i.e. the gate)
280 * @from_mpath: The failed mpath
281 * @copy: When true, copy all the frames to the new mpath queue. When false,
282 * move them.
283 */
284static void mesh_path_move_to_queue(struct mesh_path *gate_mpath,
285 struct mesh_path *from_mpath,
286 bool copy)
287{
Thomas Pedersenc61336612011-08-25 10:36:14 -0700288 struct sk_buff *skb, *cp_skb = NULL;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700289 struct sk_buff_head gateq, failq;
290 unsigned long flags;
291 int num_skbs;
292
293 BUG_ON(gate_mpath == from_mpath);
294 BUG_ON(!gate_mpath->next_hop);
295
296 __skb_queue_head_init(&gateq);
297 __skb_queue_head_init(&failq);
298
299 spin_lock_irqsave(&from_mpath->frame_queue.lock, flags);
300 skb_queue_splice_init(&from_mpath->frame_queue, &failq);
301 spin_unlock_irqrestore(&from_mpath->frame_queue.lock, flags);
302
303 num_skbs = skb_queue_len(&failq);
304
305 while (num_skbs--) {
306 skb = __skb_dequeue(&failq);
John W. Linville817a53d2011-08-24 15:12:41 -0400307 if (copy) {
Javier Cardona5ee68e52011-08-09 16:45:08 -0700308 cp_skb = skb_copy(skb, GFP_ATOMIC);
John W. Linville817a53d2011-08-24 15:12:41 -0400309 if (cp_skb)
310 __skb_queue_tail(&failq, cp_skb);
311 }
Javier Cardona5ee68e52011-08-09 16:45:08 -0700312
313 prepare_for_gate(skb, gate_mpath->dst, gate_mpath);
314 __skb_queue_tail(&gateq, skb);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700315 }
316
317 spin_lock_irqsave(&gate_mpath->frame_queue.lock, flags);
318 skb_queue_splice(&gateq, &gate_mpath->frame_queue);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200319 mpath_dbg(gate_mpath->sdata, "Mpath queue for gate %pM has %d frames\n",
320 gate_mpath->dst, skb_queue_len(&gate_mpath->frame_queue));
Javier Cardona5ee68e52011-08-09 16:45:08 -0700321 spin_unlock_irqrestore(&gate_mpath->frame_queue.lock, flags);
322
323 if (!copy)
324 return;
325
326 spin_lock_irqsave(&from_mpath->frame_queue.lock, flags);
327 skb_queue_splice(&failq, &from_mpath->frame_queue);
328 spin_unlock_irqrestore(&from_mpath->frame_queue.lock, flags);
329}
330
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100331
Luis R. Rodriguez5ad20dd2012-02-07 21:09:25 -0800332static struct mesh_path *mpath_lookup(struct mesh_table *tbl, u8 *dst,
Javier Cardona239289e2011-08-29 13:23:09 -0700333 struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100334{
335 struct mesh_path *mpath;
336 struct hlist_node *n;
337 struct hlist_head *bucket;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100338 struct mpath_node *node;
339
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200340 bucket = &tbl->hash_buckets[mesh_table_hash(dst, sdata, tbl)];
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100341 hlist_for_each_entry_rcu(node, n, bucket, list) {
342 mpath = node->mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200343 if (mpath->sdata == sdata &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000344 ether_addr_equal(dst, mpath->dst)) {
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100345 if (MPATH_EXPIRED(mpath)) {
346 spin_lock_bh(&mpath->state_lock);
Javier Cardonaad99d142011-08-29 13:23:06 -0700347 mpath->flags &= ~MESH_PATH_ACTIVE;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100348 spin_unlock_bh(&mpath->state_lock);
349 }
350 return mpath;
351 }
352 }
353 return NULL;
354}
355
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100356/**
357 * mesh_path_lookup - look up a path in the mesh path table
358 * @dst: hardware address (ETH_ALEN length) of destination
359 * @sdata: local subif
360 *
361 * Returns: pointer to the mesh path structure, or NULL if not found
362 *
363 * Locking: must be called within a read rcu section.
364 */
365struct mesh_path *mesh_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata)
366{
Luis R. Rodriguez5ad20dd2012-02-07 21:09:25 -0800367 return mpath_lookup(rcu_dereference(mesh_paths), dst, sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100368}
369
YanBo79617de2008-09-22 13:30:32 +0800370struct mesh_path *mpp_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata)
371{
Luis R. Rodriguez5ad20dd2012-02-07 21:09:25 -0800372 return mpath_lookup(rcu_dereference(mpp_paths), dst, sdata);
YanBo79617de2008-09-22 13:30:32 +0800373}
374
375
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100376/**
377 * mesh_path_lookup_by_idx - look up a path in the mesh path table by its index
378 * @idx: index
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200379 * @sdata: local subif, or NULL for all entries
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100380 *
381 * Returns: pointer to the mesh path structure, or NULL if not found.
382 *
383 * Locking: must be called within a read rcu section.
384 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200385struct mesh_path *mesh_path_lookup_by_idx(int idx, struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100386{
Johannes Berg349eb8c2011-05-14 11:56:16 +0200387 struct mesh_table *tbl = rcu_dereference(mesh_paths);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100388 struct mpath_node *node;
389 struct hlist_node *p;
390 int i;
391 int j = 0;
392
Johannes Berg349eb8c2011-05-14 11:56:16 +0200393 for_each_mesh_entry(tbl, p, node, i) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200394 if (sdata && node->mpath->sdata != sdata)
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800395 continue;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100396 if (j++ == idx) {
397 if (MPATH_EXPIRED(node->mpath)) {
398 spin_lock_bh(&node->mpath->state_lock);
Javier Cardonaad99d142011-08-29 13:23:06 -0700399 node->mpath->flags &= ~MESH_PATH_ACTIVE;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100400 spin_unlock_bh(&node->mpath->state_lock);
401 }
402 return node->mpath;
403 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800404 }
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100405
406 return NULL;
407}
408
Javier Cardona5ee68e52011-08-09 16:45:08 -0700409/**
Johannes Berg30be52e2011-11-21 11:23:50 +0100410 * mesh_path_add_gate - add the given mpath to a mesh gate to our path table
411 * @mpath: gate path to add to table
Javier Cardona5ee68e52011-08-09 16:45:08 -0700412 */
Johannes Berg30be52e2011-11-21 11:23:50 +0100413int mesh_path_add_gate(struct mesh_path *mpath)
Javier Cardona5ee68e52011-08-09 16:45:08 -0700414{
Johannes Berg30be52e2011-11-21 11:23:50 +0100415 struct mesh_table *tbl;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700416 struct mpath_node *gate, *new_gate;
417 struct hlist_node *n;
418 int err;
419
420 rcu_read_lock();
Johannes Berg30be52e2011-11-21 11:23:50 +0100421 tbl = rcu_dereference(mesh_paths);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700422
423 hlist_for_each_entry_rcu(gate, n, tbl->known_gates, list)
424 if (gate->mpath == mpath) {
425 err = -EEXIST;
426 goto err_rcu;
427 }
428
429 new_gate = kzalloc(sizeof(struct mpath_node), GFP_ATOMIC);
430 if (!new_gate) {
431 err = -ENOMEM;
432 goto err_rcu;
433 }
434
435 mpath->is_gate = true;
436 mpath->sdata->u.mesh.num_gates++;
437 new_gate->mpath = mpath;
438 spin_lock_bh(&tbl->gates_lock);
439 hlist_add_head_rcu(&new_gate->list, tbl->known_gates);
440 spin_unlock_bh(&tbl->gates_lock);
441 rcu_read_unlock();
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200442 mpath_dbg(mpath->sdata,
443 "Mesh path: Recorded new gate: %pM. %d known gates\n",
444 mpath->dst, mpath->sdata->u.mesh.num_gates);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700445 return 0;
446err_rcu:
447 rcu_read_unlock();
448 return err;
449}
450
451/**
452 * mesh_gate_del - remove a mesh gate from the list of known gates
453 * @tbl: table which holds our list of known gates
454 * @mpath: gate mpath
455 *
456 * Returns: 0 on success
457 *
458 * Locking: must be called inside rcu_read_lock() section
459 */
460static int mesh_gate_del(struct mesh_table *tbl, struct mesh_path *mpath)
461{
462 struct mpath_node *gate;
463 struct hlist_node *p, *q;
464
Javier Cardona5ee68e52011-08-09 16:45:08 -0700465 hlist_for_each_entry_safe(gate, p, q, tbl->known_gates, list)
466 if (gate->mpath == mpath) {
467 spin_lock_bh(&tbl->gates_lock);
468 hlist_del_rcu(&gate->list);
Paul E. McKenneyae1f18e2012-01-06 17:10:37 -0800469 kfree_rcu(gate, rcu);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700470 spin_unlock_bh(&tbl->gates_lock);
471 mpath->sdata->u.mesh.num_gates--;
472 mpath->is_gate = false;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200473 mpath_dbg(mpath->sdata,
474 "Mesh path: Deleted gate: %pM. %d known gates\n",
Javier Cardona5ee68e52011-08-09 16:45:08 -0700475 mpath->dst, mpath->sdata->u.mesh.num_gates);
476 break;
477 }
478
479 return 0;
480}
481
482/**
Javier Cardona5ee68e52011-08-09 16:45:08 -0700483 * mesh_gate_num - number of gates known to this interface
484 * @sdata: subif data
485 */
486int mesh_gate_num(struct ieee80211_sub_if_data *sdata)
487{
488 return sdata->u.mesh.num_gates;
489}
490
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100491/**
492 * mesh_path_add - allocate and add a new path to the mesh path table
493 * @addr: destination address of the path (ETH_ALEN length)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200494 * @sdata: local subif
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100495 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200496 * Returns: 0 on success
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100497 *
498 * State: the initial state of the new path is set to 0
499 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200500int mesh_path_add(u8 *dst, struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100501{
Javier Cardona18889232009-08-10 12:15:52 -0700502 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
503 struct ieee80211_local *local = sdata->local;
Johannes Berg349eb8c2011-05-14 11:56:16 +0200504 struct mesh_table *tbl;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100505 struct mesh_path *mpath, *new_mpath;
506 struct mpath_node *node, *new_node;
507 struct hlist_head *bucket;
508 struct hlist_node *n;
509 int grow = 0;
510 int err = 0;
511 u32 hash_idx;
512
Joe Perchesb203ca32012-05-08 18:56:52 +0000513 if (ether_addr_equal(dst, sdata->vif.addr))
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100514 /* never add ourselves as neighbours */
515 return -ENOTSUPP;
516
517 if (is_multicast_ether_addr(dst))
518 return -ENOTSUPP;
519
Johannes Berg472dbc42008-09-11 00:01:49 +0200520 if (atomic_add_unless(&sdata->u.mesh.mpaths, 1, MESH_MAX_MPATHS) == 0)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100521 return -ENOSPC;
522
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400523 err = -ENOMEM;
Javier Cardona18889232009-08-10 12:15:52 -0700524 new_mpath = kzalloc(sizeof(struct mesh_path), GFP_ATOMIC);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400525 if (!new_mpath)
526 goto err_path_alloc;
527
Javier Cardona18889232009-08-10 12:15:52 -0700528 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400529 if (!new_node)
530 goto err_node_alloc;
Pavel Emelyanovf84e71a2008-05-06 18:46:36 +0400531
Javier Cardona9b84b8082011-05-03 16:57:16 -0700532 read_lock_bh(&pathtbl_resize_lock);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100533 memcpy(new_mpath->dst, dst, ETH_ALEN);
Chun-Yeow Yeoh35bcd592012-04-10 12:31:56 +0800534 memset(new_mpath->rann_snd_addr, 0xff, ETH_ALEN);
535 new_mpath->is_root = false;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200536 new_mpath->sdata = sdata;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100537 new_mpath->flags = 0;
538 skb_queue_head_init(&new_mpath->frame_queue);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100539 new_node->mpath = new_mpath;
540 new_mpath->timer.data = (unsigned long) new_mpath;
541 new_mpath->timer.function = mesh_path_timer;
542 new_mpath->exp_time = jiffies;
543 spin_lock_init(&new_mpath->state_lock);
544 init_timer(&new_mpath->timer);
545
Johannes Berg349eb8c2011-05-14 11:56:16 +0200546 tbl = resize_dereference_mesh_paths();
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100547
Johannes Berg349eb8c2011-05-14 11:56:16 +0200548 hash_idx = mesh_table_hash(dst, sdata, tbl);
549 bucket = &tbl->hash_buckets[hash_idx];
550
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800551 spin_lock(&tbl->hashwlock[hash_idx]);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100552
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400553 err = -EEXIST;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100554 hlist_for_each_entry(node, n, bucket, list) {
555 mpath = node->mpath;
Felix Fietkau888d04d2012-03-01 15:22:09 +0100556 if (mpath->sdata == sdata &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000557 ether_addr_equal(dst, mpath->dst))
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400558 goto err_exists;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100559 }
560
561 hlist_add_head_rcu(&new_node->list, bucket);
Johannes Berg349eb8c2011-05-14 11:56:16 +0200562 if (atomic_inc_return(&tbl->entries) >=
563 tbl->mean_chain_len * (tbl->hash_mask + 1))
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100564 grow = 1;
565
Johannes Bergf5ea9122009-08-07 16:17:38 +0200566 mesh_paths_generation++;
567
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800568 spin_unlock(&tbl->hashwlock[hash_idx]);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700569 read_unlock_bh(&pathtbl_resize_lock);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400570 if (grow) {
Javier Cardona18889232009-08-10 12:15:52 -0700571 set_bit(MESH_WORK_GROW_MPATH_TABLE, &ifmsh->wrkq_flags);
Johannes Berg64592c82010-06-10 10:21:31 +0200572 ieee80211_queue_work(&local->hw, &sdata->work);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100573 }
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400574 return 0;
575
576err_exists:
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800577 spin_unlock(&tbl->hashwlock[hash_idx]);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700578 read_unlock_bh(&pathtbl_resize_lock);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400579 kfree(new_node);
580err_node_alloc:
581 kfree(new_mpath);
582err_path_alloc:
Johannes Berg472dbc42008-09-11 00:01:49 +0200583 atomic_dec(&sdata->u.mesh.mpaths);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100584 return err;
585}
586
Johannes Berg1928eca2011-05-14 11:00:52 +0200587static void mesh_table_free_rcu(struct rcu_head *rcu)
588{
589 struct mesh_table *tbl = container_of(rcu, struct mesh_table, rcu_head);
590
591 mesh_table_free(tbl, false);
592}
593
Javier Cardona18889232009-08-10 12:15:52 -0700594void mesh_mpath_table_grow(void)
595{
596 struct mesh_table *oldtbl, *newtbl;
597
Javier Cardona9b84b8082011-05-03 16:57:16 -0700598 write_lock_bh(&pathtbl_resize_lock);
Johannes Berg349eb8c2011-05-14 11:56:16 +0200599 oldtbl = resize_dereference_mesh_paths();
600 newtbl = mesh_table_alloc(oldtbl->size_order + 1);
Johannes Berg1928eca2011-05-14 11:00:52 +0200601 if (!newtbl)
602 goto out;
Johannes Berg349eb8c2011-05-14 11:56:16 +0200603 if (mesh_table_grow(oldtbl, newtbl) < 0) {
cozybit Inca3e6b122011-04-13 11:10:28 -0700604 __mesh_table_free(newtbl);
Johannes Berg1928eca2011-05-14 11:00:52 +0200605 goto out;
Javier Cardona18889232009-08-10 12:15:52 -0700606 }
607 rcu_assign_pointer(mesh_paths, newtbl);
Javier Cardona18889232009-08-10 12:15:52 -0700608
Johannes Berg1928eca2011-05-14 11:00:52 +0200609 call_rcu(&oldtbl->rcu_head, mesh_table_free_rcu);
610
611 out:
612 write_unlock_bh(&pathtbl_resize_lock);
Javier Cardona18889232009-08-10 12:15:52 -0700613}
614
615void mesh_mpp_table_grow(void)
616{
617 struct mesh_table *oldtbl, *newtbl;
618
Javier Cardona9b84b8082011-05-03 16:57:16 -0700619 write_lock_bh(&pathtbl_resize_lock);
Johannes Berg349eb8c2011-05-14 11:56:16 +0200620 oldtbl = resize_dereference_mpp_paths();
621 newtbl = mesh_table_alloc(oldtbl->size_order + 1);
Johannes Berg1928eca2011-05-14 11:00:52 +0200622 if (!newtbl)
623 goto out;
Johannes Berg349eb8c2011-05-14 11:56:16 +0200624 if (mesh_table_grow(oldtbl, newtbl) < 0) {
cozybit Inca3e6b122011-04-13 11:10:28 -0700625 __mesh_table_free(newtbl);
Johannes Berg1928eca2011-05-14 11:00:52 +0200626 goto out;
Javier Cardona18889232009-08-10 12:15:52 -0700627 }
628 rcu_assign_pointer(mpp_paths, newtbl);
Johannes Berg1928eca2011-05-14 11:00:52 +0200629 call_rcu(&oldtbl->rcu_head, mesh_table_free_rcu);
Javier Cardona18889232009-08-10 12:15:52 -0700630
Johannes Berg1928eca2011-05-14 11:00:52 +0200631 out:
632 write_unlock_bh(&pathtbl_resize_lock);
Javier Cardona18889232009-08-10 12:15:52 -0700633}
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100634
YanBo79617de2008-09-22 13:30:32 +0800635int mpp_path_add(u8 *dst, u8 *mpp, struct ieee80211_sub_if_data *sdata)
636{
Javier Cardona18889232009-08-10 12:15:52 -0700637 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
638 struct ieee80211_local *local = sdata->local;
Johannes Berg349eb8c2011-05-14 11:56:16 +0200639 struct mesh_table *tbl;
YanBo79617de2008-09-22 13:30:32 +0800640 struct mesh_path *mpath, *new_mpath;
641 struct mpath_node *node, *new_node;
642 struct hlist_head *bucket;
643 struct hlist_node *n;
644 int grow = 0;
645 int err = 0;
646 u32 hash_idx;
647
Joe Perchesb203ca32012-05-08 18:56:52 +0000648 if (ether_addr_equal(dst, sdata->vif.addr))
YanBo79617de2008-09-22 13:30:32 +0800649 /* never add ourselves as neighbours */
650 return -ENOTSUPP;
651
652 if (is_multicast_ether_addr(dst))
653 return -ENOTSUPP;
654
655 err = -ENOMEM;
Javier Cardona18889232009-08-10 12:15:52 -0700656 new_mpath = kzalloc(sizeof(struct mesh_path), GFP_ATOMIC);
YanBo79617de2008-09-22 13:30:32 +0800657 if (!new_mpath)
658 goto err_path_alloc;
659
Javier Cardona18889232009-08-10 12:15:52 -0700660 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);
YanBo79617de2008-09-22 13:30:32 +0800661 if (!new_node)
662 goto err_node_alloc;
663
Javier Cardona9b84b8082011-05-03 16:57:16 -0700664 read_lock_bh(&pathtbl_resize_lock);
YanBo79617de2008-09-22 13:30:32 +0800665 memcpy(new_mpath->dst, dst, ETH_ALEN);
666 memcpy(new_mpath->mpp, mpp, ETH_ALEN);
667 new_mpath->sdata = sdata;
668 new_mpath->flags = 0;
669 skb_queue_head_init(&new_mpath->frame_queue);
670 new_node->mpath = new_mpath;
Thomas Pedersenc61336612011-08-25 10:36:14 -0700671 init_timer(&new_mpath->timer);
YanBo79617de2008-09-22 13:30:32 +0800672 new_mpath->exp_time = jiffies;
673 spin_lock_init(&new_mpath->state_lock);
674
Johannes Berg349eb8c2011-05-14 11:56:16 +0200675 tbl = resize_dereference_mpp_paths();
YanBo79617de2008-09-22 13:30:32 +0800676
Johannes Berg349eb8c2011-05-14 11:56:16 +0200677 hash_idx = mesh_table_hash(dst, sdata, tbl);
678 bucket = &tbl->hash_buckets[hash_idx];
679
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800680 spin_lock(&tbl->hashwlock[hash_idx]);
YanBo79617de2008-09-22 13:30:32 +0800681
682 err = -EEXIST;
683 hlist_for_each_entry(node, n, bucket, list) {
684 mpath = node->mpath;
Felix Fietkau888d04d2012-03-01 15:22:09 +0100685 if (mpath->sdata == sdata &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000686 ether_addr_equal(dst, mpath->dst))
YanBo79617de2008-09-22 13:30:32 +0800687 goto err_exists;
688 }
689
690 hlist_add_head_rcu(&new_node->list, bucket);
Johannes Berg349eb8c2011-05-14 11:56:16 +0200691 if (atomic_inc_return(&tbl->entries) >=
692 tbl->mean_chain_len * (tbl->hash_mask + 1))
YanBo79617de2008-09-22 13:30:32 +0800693 grow = 1;
694
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800695 spin_unlock(&tbl->hashwlock[hash_idx]);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700696 read_unlock_bh(&pathtbl_resize_lock);
YanBo79617de2008-09-22 13:30:32 +0800697 if (grow) {
Javier Cardona18889232009-08-10 12:15:52 -0700698 set_bit(MESH_WORK_GROW_MPP_TABLE, &ifmsh->wrkq_flags);
Johannes Berg64592c82010-06-10 10:21:31 +0200699 ieee80211_queue_work(&local->hw, &sdata->work);
YanBo79617de2008-09-22 13:30:32 +0800700 }
701 return 0;
702
703err_exists:
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800704 spin_unlock(&tbl->hashwlock[hash_idx]);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700705 read_unlock_bh(&pathtbl_resize_lock);
YanBo79617de2008-09-22 13:30:32 +0800706 kfree(new_node);
707err_node_alloc:
708 kfree(new_mpath);
709err_path_alloc:
710 return err;
711}
712
713
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100714/**
715 * mesh_plink_broken - deactivates paths and sends perr when a link breaks
716 *
717 * @sta: broken peer link
718 *
719 * This function must be called from the rate control algorithm if enough
720 * delivery errors suggest that a peer link is no longer usable.
721 */
722void mesh_plink_broken(struct sta_info *sta)
723{
Johannes Berg349eb8c2011-05-14 11:56:16 +0200724 struct mesh_table *tbl;
Johannes Berg15ff6362009-11-17 13:34:04 +0100725 static const u8 bcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100726 struct mesh_path *mpath;
727 struct mpath_node *node;
728 struct hlist_node *p;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200729 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100730 int i;
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700731 __le16 reason = cpu_to_le16(WLAN_REASON_MESH_PATH_DEST_UNREACHABLE);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100732
733 rcu_read_lock();
Johannes Berg349eb8c2011-05-14 11:56:16 +0200734 tbl = rcu_dereference(mesh_paths);
735 for_each_mesh_entry(tbl, p, node, i) {
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100736 mpath = node->mpath;
Johannes Berg349eb8c2011-05-14 11:56:16 +0200737 if (rcu_dereference(mpath->next_hop) == sta &&
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100738 mpath->flags & MESH_PATH_ACTIVE &&
739 !(mpath->flags & MESH_PATH_FIXED)) {
Javier Cardonaf5e50cd2011-08-29 13:23:05 -0700740 spin_lock_bh(&mpath->state_lock);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100741 mpath->flags &= ~MESH_PATH_ACTIVE;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000742 ++mpath->sn;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100743 spin_unlock_bh(&mpath->state_lock);
Javier Cardona45904f22010-12-03 09:20:40 +0100744 mesh_path_error_tx(sdata->u.mesh.mshcfg.element_ttl,
745 mpath->dst, cpu_to_le32(mpath->sn),
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700746 reason, bcast, sdata);
Javier Cardonaf5e50cd2011-08-29 13:23:05 -0700747 }
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100748 }
749 rcu_read_unlock();
750}
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100751
Javier Cardona19c50b32011-08-29 13:23:07 -0700752static void mesh_path_node_reclaim(struct rcu_head *rp)
753{
754 struct mpath_node *node = container_of(rp, struct mpath_node, rcu);
755 struct ieee80211_sub_if_data *sdata = node->mpath->sdata;
756
757 del_timer_sync(&node->mpath->timer);
758 atomic_dec(&sdata->u.mesh.mpaths);
759 kfree(node->mpath);
760 kfree(node);
761}
762
763/* needs to be called with the corresponding hashwlock taken */
764static void __mesh_path_del(struct mesh_table *tbl, struct mpath_node *node)
765{
766 struct mesh_path *mpath;
767 mpath = node->mpath;
768 spin_lock(&mpath->state_lock);
769 mpath->flags |= MESH_PATH_RESOLVING;
770 if (mpath->is_gate)
771 mesh_gate_del(tbl, mpath);
772 hlist_del_rcu(&node->list);
773 call_rcu(&node->rcu, mesh_path_node_reclaim);
774 spin_unlock(&mpath->state_lock);
775 atomic_dec(&tbl->entries);
776}
777
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100778/**
779 * mesh_path_flush_by_nexthop - Deletes mesh paths if their next hop matches
780 *
Ben Hutchings2c530402012-07-10 10:55:09 +0000781 * @sta: mesh peer to match
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100782 *
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800783 * RCU notes: this function is called when a mesh plink transitions from
784 * PLINK_ESTAB to any other state, since PLINK_ESTAB state is the only one that
785 * allows path creation. This will happen before the sta can be freed (because
Johannes Bergd0709a62008-02-25 16:27:46 +0100786 * sta_info_destroy() calls this) so any reader in a rcu read block will be
787 * protected against the plink disappearing.
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100788 */
789void mesh_path_flush_by_nexthop(struct sta_info *sta)
790{
Johannes Berg349eb8c2011-05-14 11:56:16 +0200791 struct mesh_table *tbl;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100792 struct mesh_path *mpath;
793 struct mpath_node *node;
794 struct hlist_node *p;
795 int i;
796
Johannes Berg349eb8c2011-05-14 11:56:16 +0200797 rcu_read_lock();
Javier Cardona239289e2011-08-29 13:23:09 -0700798 read_lock_bh(&pathtbl_resize_lock);
799 tbl = resize_dereference_mesh_paths();
Johannes Berg349eb8c2011-05-14 11:56:16 +0200800 for_each_mesh_entry(tbl, p, node, i) {
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100801 mpath = node->mpath;
Javier Cardonacd72e812011-08-29 13:23:08 -0700802 if (rcu_dereference(mpath->next_hop) == sta) {
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800803 spin_lock(&tbl->hashwlock[i]);
Javier Cardona19c50b32011-08-29 13:23:07 -0700804 __mesh_path_del(tbl, node);
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800805 spin_unlock(&tbl->hashwlock[i]);
Javier Cardona19c50b32011-08-29 13:23:07 -0700806 }
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100807 }
Javier Cardona239289e2011-08-29 13:23:09 -0700808 read_unlock_bh(&pathtbl_resize_lock);
Johannes Berg349eb8c2011-05-14 11:56:16 +0200809 rcu_read_unlock();
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100810}
811
Javier Cardonacd72e812011-08-29 13:23:08 -0700812static void table_flush_by_iface(struct mesh_table *tbl,
813 struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100814{
815 struct mesh_path *mpath;
816 struct mpath_node *node;
817 struct hlist_node *p;
818 int i;
819
Javier Cardonacd72e812011-08-29 13:23:08 -0700820 WARN_ON(!rcu_read_lock_held());
Johannes Berg349eb8c2011-05-14 11:56:16 +0200821 for_each_mesh_entry(tbl, p, node, i) {
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100822 mpath = node->mpath;
Javier Cardonacd72e812011-08-29 13:23:08 -0700823 if (mpath->sdata != sdata)
824 continue;
Javier Cardonaece1a2e2011-08-29 13:23:04 -0700825 spin_lock_bh(&tbl->hashwlock[i]);
Javier Cardona19c50b32011-08-29 13:23:07 -0700826 __mesh_path_del(tbl, node);
Javier Cardonaece1a2e2011-08-29 13:23:04 -0700827 spin_unlock_bh(&tbl->hashwlock[i]);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100828 }
829}
830
Javier Cardonaece1a2e2011-08-29 13:23:04 -0700831/**
832 * mesh_path_flush_by_iface - Deletes all mesh paths associated with a given iface
833 *
834 * This function deletes both mesh paths as well as mesh portal paths.
835 *
Ben Hutchings2c530402012-07-10 10:55:09 +0000836 * @sdata: interface data to match
Javier Cardonaece1a2e2011-08-29 13:23:04 -0700837 *
838 */
839void mesh_path_flush_by_iface(struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100840{
Javier Cardonacd72e812011-08-29 13:23:08 -0700841 struct mesh_table *tbl;
Johannes Bergd0709a62008-02-25 16:27:46 +0100842
Javier Cardonacd72e812011-08-29 13:23:08 -0700843 rcu_read_lock();
Javier Cardona239289e2011-08-29 13:23:09 -0700844 read_lock_bh(&pathtbl_resize_lock);
845 tbl = resize_dereference_mesh_paths();
Javier Cardonacd72e812011-08-29 13:23:08 -0700846 table_flush_by_iface(tbl, sdata);
Javier Cardona239289e2011-08-29 13:23:09 -0700847 tbl = resize_dereference_mpp_paths();
Javier Cardonacd72e812011-08-29 13:23:08 -0700848 table_flush_by_iface(tbl, sdata);
Javier Cardona239289e2011-08-29 13:23:09 -0700849 read_unlock_bh(&pathtbl_resize_lock);
Javier Cardonacd72e812011-08-29 13:23:08 -0700850 rcu_read_unlock();
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100851}
852
853/**
854 * mesh_path_del - delete a mesh path from the table
855 *
856 * @addr: dst address (ETH_ALEN length)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200857 * @sdata: local subif
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100858 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200859 * Returns: 0 if successful
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100860 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200861int mesh_path_del(u8 *addr, struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100862{
Johannes Berg349eb8c2011-05-14 11:56:16 +0200863 struct mesh_table *tbl;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100864 struct mesh_path *mpath;
865 struct mpath_node *node;
866 struct hlist_head *bucket;
867 struct hlist_node *n;
868 int hash_idx;
869 int err = 0;
870
Javier Cardona9b84b8082011-05-03 16:57:16 -0700871 read_lock_bh(&pathtbl_resize_lock);
Johannes Berg349eb8c2011-05-14 11:56:16 +0200872 tbl = resize_dereference_mesh_paths();
873 hash_idx = mesh_table_hash(addr, sdata, tbl);
874 bucket = &tbl->hash_buckets[hash_idx];
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100875
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800876 spin_lock(&tbl->hashwlock[hash_idx]);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100877 hlist_for_each_entry(node, n, bucket, list) {
878 mpath = node->mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200879 if (mpath->sdata == sdata &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000880 ether_addr_equal(addr, mpath->dst)) {
Javier Cardona19c50b32011-08-29 13:23:07 -0700881 __mesh_path_del(tbl, node);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100882 goto enddel;
883 }
884 }
885
886 err = -ENXIO;
887enddel:
Johannes Bergf5ea9122009-08-07 16:17:38 +0200888 mesh_paths_generation++;
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800889 spin_unlock(&tbl->hashwlock[hash_idx]);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700890 read_unlock_bh(&pathtbl_resize_lock);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100891 return err;
892}
893
894/**
895 * mesh_path_tx_pending - sends pending frames in a mesh path queue
896 *
897 * @mpath: mesh path to activate
898 *
899 * Locking: the state_lock of the mpath structure must NOT be held when calling
900 * this function.
901 */
902void mesh_path_tx_pending(struct mesh_path *mpath)
903{
Javier Cardona249b4052009-07-07 10:55:03 -0700904 if (mpath->flags & MESH_PATH_ACTIVE)
905 ieee80211_add_pending_skbs(mpath->sdata->local,
906 &mpath->frame_queue);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100907}
908
909/**
Javier Cardona5ee68e52011-08-09 16:45:08 -0700910 * mesh_path_send_to_gates - sends pending frames to all known mesh gates
911 *
912 * @mpath: mesh path whose queue will be emptied
913 *
914 * If there is only one gate, the frames are transferred from the failed mpath
915 * queue to that gate's queue. If there are more than one gates, the frames
916 * are copied from each gate to the next. After frames are copied, the
917 * mpath queues are emptied onto the transmission queue.
918 */
919int mesh_path_send_to_gates(struct mesh_path *mpath)
920{
921 struct ieee80211_sub_if_data *sdata = mpath->sdata;
922 struct hlist_node *n;
923 struct mesh_table *tbl;
924 struct mesh_path *from_mpath = mpath;
925 struct mpath_node *gate = NULL;
926 bool copy = false;
927 struct hlist_head *known_gates;
928
929 rcu_read_lock();
930 tbl = rcu_dereference(mesh_paths);
931 known_gates = tbl->known_gates;
932 rcu_read_unlock();
933
934 if (!known_gates)
935 return -EHOSTUNREACH;
936
937 hlist_for_each_entry_rcu(gate, n, known_gates, list) {
938 if (gate->mpath->sdata != sdata)
939 continue;
940
941 if (gate->mpath->flags & MESH_PATH_ACTIVE) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200942 mpath_dbg(sdata, "Forwarding to %pM\n", gate->mpath->dst);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700943 mesh_path_move_to_queue(gate->mpath, from_mpath, copy);
944 from_mpath = gate->mpath;
945 copy = true;
946 } else {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200947 mpath_dbg(sdata,
948 "Not forwarding %p (flags %#x)\n",
949 gate->mpath, gate->mpath->flags);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700950 }
951 }
952
953 hlist_for_each_entry_rcu(gate, n, known_gates, list)
954 if (gate->mpath->sdata == sdata) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200955 mpath_dbg(sdata, "Sending to %pM\n", gate->mpath->dst);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700956 mesh_path_tx_pending(gate->mpath);
957 }
958
959 return (from_mpath == mpath) ? -EHOSTUNREACH : 0;
960}
961
962/**
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100963 * mesh_path_discard_frame - discard a frame whose path could not be resolved
964 *
965 * @skb: frame to discard
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200966 * @sdata: network subif the frame was to be sent through
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100967 *
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100968 * Locking: the function must me called within a rcu_read_lock region
969 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200970void mesh_path_discard_frame(struct sk_buff *skb,
971 struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100972{
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100973 kfree_skb(skb);
Johannes Berg472dbc42008-09-11 00:01:49 +0200974 sdata->u.mesh.mshstats.dropped_frames_no_route++;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100975}
976
977/**
978 * mesh_path_flush_pending - free the pending queue of a mesh path
979 *
980 * @mpath: mesh path whose queue has to be freed
981 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300982 * Locking: the function must me called within a rcu_read_lock region
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100983 */
984void mesh_path_flush_pending(struct mesh_path *mpath)
985{
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100986 struct sk_buff *skb;
987
Javier Cardona00e3f252011-08-09 16:45:07 -0700988 while ((skb = skb_dequeue(&mpath->frame_queue)) != NULL)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200989 mesh_path_discard_frame(skb, mpath->sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100990}
991
992/**
993 * mesh_path_fix_nexthop - force a specific next hop for a mesh path
994 *
995 * @mpath: the mesh path to modify
996 * @next_hop: the next hop to force
997 *
998 * Locking: this function must be called holding mpath->state_lock
999 */
1000void mesh_path_fix_nexthop(struct mesh_path *mpath, struct sta_info *next_hop)
1001{
1002 spin_lock_bh(&mpath->state_lock);
1003 mesh_path_assign_nexthop(mpath, next_hop);
Rui Paulod19b3bf2009-11-09 23:46:55 +00001004 mpath->sn = 0xffff;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001005 mpath->metric = 0;
1006 mpath->hop_count = 0;
1007 mpath->exp_time = 0;
1008 mpath->flags |= MESH_PATH_FIXED;
1009 mesh_path_activate(mpath);
1010 spin_unlock_bh(&mpath->state_lock);
1011 mesh_path_tx_pending(mpath);
1012}
1013
1014static void mesh_path_node_free(struct hlist_node *p, bool free_leafs)
1015{
1016 struct mesh_path *mpath;
1017 struct mpath_node *node = hlist_entry(p, struct mpath_node, list);
1018 mpath = node->mpath;
1019 hlist_del_rcu(p);
Javier Cardonad0df9ee2011-05-13 14:16:07 -07001020 if (free_leafs) {
1021 del_timer_sync(&mpath->timer);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001022 kfree(mpath);
Javier Cardonad0df9ee2011-05-13 14:16:07 -07001023 }
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001024 kfree(node);
1025}
1026
Pavel Emelyanov4caf86c2008-05-07 19:47:01 +04001027static int mesh_path_node_copy(struct hlist_node *p, struct mesh_table *newtbl)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001028{
1029 struct mesh_path *mpath;
1030 struct mpath_node *node, *new_node;
1031 u32 hash_idx;
1032
Pavel Emelyanov8566dc32008-05-07 19:51:51 +04001033 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);
Pavel Emelyanov00242c42008-05-07 19:48:14 +04001034 if (new_node == NULL)
1035 return -ENOMEM;
1036
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001037 node = hlist_entry(p, struct mpath_node, list);
1038 mpath = node->mpath;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001039 new_node->mpath = mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001040 hash_idx = mesh_table_hash(mpath->dst, mpath->sdata, newtbl);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001041 hlist_add_head(&new_node->list,
1042 &newtbl->hash_buckets[hash_idx]);
Pavel Emelyanov4caf86c2008-05-07 19:47:01 +04001043 return 0;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001044}
1045
1046int mesh_pathtbl_init(void)
1047{
Johannes Berg349eb8c2011-05-14 11:56:16 +02001048 struct mesh_table *tbl_path, *tbl_mpp;
Dan Carpenter4c5ade42011-08-30 22:16:15 +03001049 int ret;
YanBo79617de2008-09-22 13:30:32 +08001050
Johannes Berg349eb8c2011-05-14 11:56:16 +02001051 tbl_path = mesh_table_alloc(INIT_PATHS_SIZE_ORDER);
1052 if (!tbl_path)
1053 return -ENOMEM;
1054 tbl_path->free_node = &mesh_path_node_free;
1055 tbl_path->copy_node = &mesh_path_node_copy;
1056 tbl_path->mean_chain_len = MEAN_CHAIN_LEN;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001057 tbl_path->known_gates = kzalloc(sizeof(struct hlist_head), GFP_ATOMIC);
Dan Carpenter4c5ade42011-08-30 22:16:15 +03001058 if (!tbl_path->known_gates) {
1059 ret = -ENOMEM;
1060 goto free_path;
1061 }
Javier Cardona5ee68e52011-08-09 16:45:08 -07001062 INIT_HLIST_HEAD(tbl_path->known_gates);
1063
Johannes Berg349eb8c2011-05-14 11:56:16 +02001064
1065 tbl_mpp = mesh_table_alloc(INIT_PATHS_SIZE_ORDER);
1066 if (!tbl_mpp) {
Dan Carpenter4c5ade42011-08-30 22:16:15 +03001067 ret = -ENOMEM;
1068 goto free_path;
YanBo79617de2008-09-22 13:30:32 +08001069 }
Johannes Berg349eb8c2011-05-14 11:56:16 +02001070 tbl_mpp->free_node = &mesh_path_node_free;
1071 tbl_mpp->copy_node = &mesh_path_node_copy;
1072 tbl_mpp->mean_chain_len = MEAN_CHAIN_LEN;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001073 tbl_mpp->known_gates = kzalloc(sizeof(struct hlist_head), GFP_ATOMIC);
Dan Carpenter4c5ade42011-08-30 22:16:15 +03001074 if (!tbl_mpp->known_gates) {
1075 ret = -ENOMEM;
1076 goto free_mpp;
1077 }
Javier Cardona5ee68e52011-08-09 16:45:08 -07001078 INIT_HLIST_HEAD(tbl_mpp->known_gates);
Johannes Berg349eb8c2011-05-14 11:56:16 +02001079
1080 /* Need no locking since this is during init */
1081 RCU_INIT_POINTER(mesh_paths, tbl_path);
1082 RCU_INIT_POINTER(mpp_paths, tbl_mpp);
YanBo79617de2008-09-22 13:30:32 +08001083
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001084 return 0;
Dan Carpenter4c5ade42011-08-30 22:16:15 +03001085
1086free_mpp:
1087 mesh_table_free(tbl_mpp, true);
1088free_path:
1089 mesh_table_free(tbl_path, true);
1090 return ret;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001091}
1092
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001093void mesh_path_expire(struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001094{
Johannes Berg349eb8c2011-05-14 11:56:16 +02001095 struct mesh_table *tbl;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001096 struct mesh_path *mpath;
1097 struct mpath_node *node;
1098 struct hlist_node *p;
1099 int i;
1100
Johannes Berg349eb8c2011-05-14 11:56:16 +02001101 rcu_read_lock();
1102 tbl = rcu_dereference(mesh_paths);
1103 for_each_mesh_entry(tbl, p, node, i) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001104 if (node->mpath->sdata != sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001105 continue;
1106 mpath = node->mpath;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001107 if ((!(mpath->flags & MESH_PATH_RESOLVING)) &&
1108 (!(mpath->flags & MESH_PATH_FIXED)) &&
Javier Cardonaf5e50cd2011-08-29 13:23:05 -07001109 time_after(jiffies, mpath->exp_time + MESH_PATH_EXPIRE))
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001110 mesh_path_del(mpath->dst, mpath->sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001111 }
Johannes Berg349eb8c2011-05-14 11:56:16 +02001112 rcu_read_unlock();
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001113}
1114
1115void mesh_pathtbl_unregister(void)
1116{
Johannes Berg349eb8c2011-05-14 11:56:16 +02001117 /* no need for locking during exit path */
Eric Dumazet33d480c2011-08-11 19:30:52 +00001118 mesh_table_free(rcu_dereference_protected(mesh_paths, 1), true);
1119 mesh_table_free(rcu_dereference_protected(mpp_paths, 1), true);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001120}