blob: c7cb3cc083dfe1801093bb7d6a066a4da963b3fa [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>
17#include "ieee80211_i.h"
18#include "mesh.h"
19
20/* There will be initially 2^INIT_PATHS_SIZE_ORDER buckets */
21#define INIT_PATHS_SIZE_ORDER 2
22
23/* Keep the mean chain length below this constant */
24#define MEAN_CHAIN_LEN 2
25
26#define MPATH_EXPIRED(mpath) ((mpath->flags & MESH_PATH_ACTIVE) && \
27 time_after(jiffies, mpath->exp_time) && \
28 !(mpath->flags & MESH_PATH_FIXED))
29
30struct mpath_node {
31 struct hlist_node list;
32 struct rcu_head rcu;
33 /* This indirection allows two different tables to point to the same
34 * mesh_path structure, useful when resizing
35 */
36 struct mesh_path *mpath;
37};
38
39static struct mesh_table *mesh_paths;
YanBo79617de2008-09-22 13:30:32 +080040static struct mesh_table *mpp_paths; /* Store paths for MPP&MAP */
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +010041
Johannes Bergf5ea9122009-08-07 16:17:38 +020042int mesh_paths_generation;
Javier Cardona18889232009-08-10 12:15:52 -070043static void __mesh_table_free(struct mesh_table *tbl)
44{
45 kfree(tbl->hash_buckets);
46 kfree(tbl->hashwlock);
47 kfree(tbl);
48}
49
50void mesh_table_free(struct mesh_table *tbl, bool free_leafs)
51{
52 struct hlist_head *mesh_hash;
53 struct hlist_node *p, *q;
54 int i;
55
56 mesh_hash = tbl->hash_buckets;
57 for (i = 0; i <= tbl->hash_mask; i++) {
Javier Cardona9b84b8082011-05-03 16:57:16 -070058 spin_lock_bh(&tbl->hashwlock[i]);
Javier Cardona18889232009-08-10 12:15:52 -070059 hlist_for_each_safe(p, q, &mesh_hash[i]) {
60 tbl->free_node(p, free_leafs);
61 atomic_dec(&tbl->entries);
62 }
Javier Cardona9b84b8082011-05-03 16:57:16 -070063 spin_unlock_bh(&tbl->hashwlock[i]);
Javier Cardona18889232009-08-10 12:15:52 -070064 }
65 __mesh_table_free(tbl);
66}
67
cozybit Inca3e6b122011-04-13 11:10:28 -070068static int mesh_table_grow(struct mesh_table *oldtbl,
69 struct mesh_table *newtbl)
Javier Cardona18889232009-08-10 12:15:52 -070070{
Javier Cardona18889232009-08-10 12:15:52 -070071 struct hlist_head *oldhash;
72 struct hlist_node *p, *q;
73 int i;
74
cozybit Inca3e6b122011-04-13 11:10:28 -070075 if (atomic_read(&oldtbl->entries)
76 < oldtbl->mean_chain_len * (oldtbl->hash_mask + 1))
77 return -EAGAIN;
Javier Cardona18889232009-08-10 12:15:52 -070078
cozybit Inca3e6b122011-04-13 11:10:28 -070079 newtbl->free_node = oldtbl->free_node;
80 newtbl->mean_chain_len = oldtbl->mean_chain_len;
81 newtbl->copy_node = oldtbl->copy_node;
82 atomic_set(&newtbl->entries, atomic_read(&oldtbl->entries));
Javier Cardona18889232009-08-10 12:15:52 -070083
cozybit Inca3e6b122011-04-13 11:10:28 -070084 oldhash = oldtbl->hash_buckets;
85 for (i = 0; i <= oldtbl->hash_mask; i++)
Javier Cardona18889232009-08-10 12:15:52 -070086 hlist_for_each(p, &oldhash[i])
cozybit Inca3e6b122011-04-13 11:10:28 -070087 if (oldtbl->copy_node(p, newtbl) < 0)
Javier Cardona18889232009-08-10 12:15:52 -070088 goto errcopy;
89
cozybit Inca3e6b122011-04-13 11:10:28 -070090 return 0;
Javier Cardona18889232009-08-10 12:15:52 -070091
92errcopy:
93 for (i = 0; i <= newtbl->hash_mask; i++) {
94 hlist_for_each_safe(p, q, &newtbl->hash_buckets[i])
cozybit Inca3e6b122011-04-13 11:10:28 -070095 oldtbl->free_node(p, 0);
Javier Cardona18889232009-08-10 12:15:52 -070096 }
cozybit Inca3e6b122011-04-13 11:10:28 -070097 return -ENOMEM;
Javier Cardona18889232009-08-10 12:15:52 -070098}
99
Johannes Bergf5ea9122009-08-07 16:17:38 +0200100
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100101/* This lock will have the grow table function as writer and add / delete nodes
102 * as readers. When reading the table (i.e. doing lookups) we are well protected
103 * by RCU
104 */
105static DEFINE_RWLOCK(pathtbl_resize_lock);
106
107/**
108 *
109 * mesh_path_assign_nexthop - update mesh path next hop
110 *
111 * @mpath: mesh path to update
112 * @sta: next hop to assign
113 *
114 * Locking: mpath->state_lock must be held when calling this function
115 */
116void mesh_path_assign_nexthop(struct mesh_path *mpath, struct sta_info *sta)
117{
Javier Cardona10c836d2009-07-09 14:42:16 -0700118 struct sk_buff *skb;
119 struct ieee80211_hdr *hdr;
120 struct sk_buff_head tmpq;
121 unsigned long flags;
122
Johannes Bergd0709a62008-02-25 16:27:46 +0100123 rcu_assign_pointer(mpath->next_hop, sta);
Javier Cardona10c836d2009-07-09 14:42:16 -0700124
125 __skb_queue_head_init(&tmpq);
126
127 spin_lock_irqsave(&mpath->frame_queue.lock, flags);
128
129 while ((skb = __skb_dequeue(&mpath->frame_queue)) != NULL) {
130 hdr = (struct ieee80211_hdr *) skb->data;
131 memcpy(hdr->addr1, sta->sta.addr, ETH_ALEN);
132 __skb_queue_tail(&tmpq, skb);
133 }
134
135 skb_queue_splice(&tmpq, &mpath->frame_queue);
136 spin_unlock_irqrestore(&mpath->frame_queue.lock, flags);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100137}
138
139
140/**
141 * mesh_path_lookup - look up a path in the mesh path table
142 * @dst: hardware address (ETH_ALEN length) of destination
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200143 * @sdata: local subif
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100144 *
145 * Returns: pointer to the mesh path structure, or NULL if not found
146 *
147 * Locking: must be called within a read rcu section.
148 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200149struct mesh_path *mesh_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100150{
151 struct mesh_path *mpath;
152 struct hlist_node *n;
153 struct hlist_head *bucket;
154 struct mesh_table *tbl;
155 struct mpath_node *node;
156
157 tbl = rcu_dereference(mesh_paths);
158
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200159 bucket = &tbl->hash_buckets[mesh_table_hash(dst, sdata, tbl)];
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100160 hlist_for_each_entry_rcu(node, n, bucket, list) {
161 mpath = node->mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200162 if (mpath->sdata == sdata &&
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100163 memcmp(dst, mpath->dst, ETH_ALEN) == 0) {
164 if (MPATH_EXPIRED(mpath)) {
165 spin_lock_bh(&mpath->state_lock);
166 if (MPATH_EXPIRED(mpath))
167 mpath->flags &= ~MESH_PATH_ACTIVE;
168 spin_unlock_bh(&mpath->state_lock);
169 }
170 return mpath;
171 }
172 }
173 return NULL;
174}
175
YanBo79617de2008-09-22 13:30:32 +0800176struct mesh_path *mpp_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata)
177{
178 struct mesh_path *mpath;
179 struct hlist_node *n;
180 struct hlist_head *bucket;
181 struct mesh_table *tbl;
182 struct mpath_node *node;
183
184 tbl = rcu_dereference(mpp_paths);
185
186 bucket = &tbl->hash_buckets[mesh_table_hash(dst, sdata, tbl)];
187 hlist_for_each_entry_rcu(node, n, bucket, list) {
188 mpath = node->mpath;
189 if (mpath->sdata == sdata &&
190 memcmp(dst, mpath->dst, ETH_ALEN) == 0) {
191 if (MPATH_EXPIRED(mpath)) {
192 spin_lock_bh(&mpath->state_lock);
193 if (MPATH_EXPIRED(mpath))
194 mpath->flags &= ~MESH_PATH_ACTIVE;
195 spin_unlock_bh(&mpath->state_lock);
196 }
197 return mpath;
198 }
199 }
200 return NULL;
201}
202
203
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100204/**
205 * mesh_path_lookup_by_idx - look up a path in the mesh path table by its index
206 * @idx: index
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200207 * @sdata: local subif, or NULL for all entries
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100208 *
209 * Returns: pointer to the mesh path structure, or NULL if not found.
210 *
211 * Locking: must be called within a read rcu section.
212 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200213struct mesh_path *mesh_path_lookup_by_idx(int idx, struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100214{
215 struct mpath_node *node;
216 struct hlist_node *p;
217 int i;
218 int j = 0;
219
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800220 for_each_mesh_entry(mesh_paths, p, node, i) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200221 if (sdata && node->mpath->sdata != sdata)
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800222 continue;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100223 if (j++ == idx) {
224 if (MPATH_EXPIRED(node->mpath)) {
225 spin_lock_bh(&node->mpath->state_lock);
226 if (MPATH_EXPIRED(node->mpath))
227 node->mpath->flags &= ~MESH_PATH_ACTIVE;
228 spin_unlock_bh(&node->mpath->state_lock);
229 }
230 return node->mpath;
231 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800232 }
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100233
234 return NULL;
235}
236
237/**
238 * mesh_path_add - allocate and add a new path to the mesh path table
239 * @addr: destination address of the path (ETH_ALEN length)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200240 * @sdata: local subif
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100241 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200242 * Returns: 0 on success
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100243 *
244 * State: the initial state of the new path is set to 0
245 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200246int mesh_path_add(u8 *dst, struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100247{
Javier Cardona18889232009-08-10 12:15:52 -0700248 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
249 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100250 struct mesh_path *mpath, *new_mpath;
251 struct mpath_node *node, *new_node;
252 struct hlist_head *bucket;
253 struct hlist_node *n;
254 int grow = 0;
255 int err = 0;
256 u32 hash_idx;
257
Johannes Berg47846c92009-11-25 17:46:19 +0100258 if (memcmp(dst, sdata->vif.addr, ETH_ALEN) == 0)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100259 /* never add ourselves as neighbours */
260 return -ENOTSUPP;
261
262 if (is_multicast_ether_addr(dst))
263 return -ENOTSUPP;
264
Johannes Berg472dbc42008-09-11 00:01:49 +0200265 if (atomic_add_unless(&sdata->u.mesh.mpaths, 1, MESH_MAX_MPATHS) == 0)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100266 return -ENOSPC;
267
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400268 err = -ENOMEM;
Javier Cardona18889232009-08-10 12:15:52 -0700269 new_mpath = kzalloc(sizeof(struct mesh_path), GFP_ATOMIC);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400270 if (!new_mpath)
271 goto err_path_alloc;
272
Javier Cardona18889232009-08-10 12:15:52 -0700273 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400274 if (!new_node)
275 goto err_node_alloc;
Pavel Emelyanovf84e71a2008-05-06 18:46:36 +0400276
Javier Cardona9b84b8082011-05-03 16:57:16 -0700277 read_lock_bh(&pathtbl_resize_lock);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100278 memcpy(new_mpath->dst, dst, ETH_ALEN);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200279 new_mpath->sdata = sdata;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100280 new_mpath->flags = 0;
281 skb_queue_head_init(&new_mpath->frame_queue);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100282 new_node->mpath = new_mpath;
283 new_mpath->timer.data = (unsigned long) new_mpath;
284 new_mpath->timer.function = mesh_path_timer;
285 new_mpath->exp_time = jiffies;
286 spin_lock_init(&new_mpath->state_lock);
287 init_timer(&new_mpath->timer);
288
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200289 hash_idx = mesh_table_hash(dst, sdata, mesh_paths);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100290 bucket = &mesh_paths->hash_buckets[hash_idx];
291
Javier Cardona9b84b8082011-05-03 16:57:16 -0700292 spin_lock_bh(&mesh_paths->hashwlock[hash_idx]);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100293
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400294 err = -EEXIST;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100295 hlist_for_each_entry(node, n, bucket, list) {
296 mpath = node->mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200297 if (mpath->sdata == sdata && memcmp(dst, mpath->dst, ETH_ALEN) == 0)
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400298 goto err_exists;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100299 }
300
301 hlist_add_head_rcu(&new_node->list, bucket);
302 if (atomic_inc_return(&mesh_paths->entries) >=
303 mesh_paths->mean_chain_len * (mesh_paths->hash_mask + 1))
304 grow = 1;
305
Johannes Bergf5ea9122009-08-07 16:17:38 +0200306 mesh_paths_generation++;
307
Javier Cardona9b84b8082011-05-03 16:57:16 -0700308 spin_unlock_bh(&mesh_paths->hashwlock[hash_idx]);
309 read_unlock_bh(&pathtbl_resize_lock);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400310 if (grow) {
Javier Cardona18889232009-08-10 12:15:52 -0700311 set_bit(MESH_WORK_GROW_MPATH_TABLE, &ifmsh->wrkq_flags);
Johannes Berg64592c82010-06-10 10:21:31 +0200312 ieee80211_queue_work(&local->hw, &sdata->work);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100313 }
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400314 return 0;
315
316err_exists:
Javier Cardona9b84b8082011-05-03 16:57:16 -0700317 spin_unlock_bh(&mesh_paths->hashwlock[hash_idx]);
318 read_unlock_bh(&pathtbl_resize_lock);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400319 kfree(new_node);
320err_node_alloc:
321 kfree(new_mpath);
322err_path_alloc:
Johannes Berg472dbc42008-09-11 00:01:49 +0200323 atomic_dec(&sdata->u.mesh.mpaths);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100324 return err;
325}
326
Javier Cardona18889232009-08-10 12:15:52 -0700327void mesh_mpath_table_grow(void)
328{
329 struct mesh_table *oldtbl, *newtbl;
330
Javier Cardona9ca99ee2011-05-03 16:57:15 -0700331 rcu_read_lock();
332 newtbl = mesh_table_alloc(rcu_dereference(mesh_paths)->size_order + 1);
cozybit Inca3e6b122011-04-13 11:10:28 -0700333 if (!newtbl)
334 return;
Javier Cardona9b84b8082011-05-03 16:57:16 -0700335 write_lock_bh(&pathtbl_resize_lock);
Javier Cardona18889232009-08-10 12:15:52 -0700336 oldtbl = mesh_paths;
cozybit Inca3e6b122011-04-13 11:10:28 -0700337 if (mesh_table_grow(mesh_paths, newtbl) < 0) {
Javier Cardona9b84b8082011-05-03 16:57:16 -0700338 rcu_read_unlock();
cozybit Inca3e6b122011-04-13 11:10:28 -0700339 __mesh_table_free(newtbl);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700340 write_unlock_bh(&pathtbl_resize_lock);
Javier Cardona18889232009-08-10 12:15:52 -0700341 return;
342 }
Javier Cardona9ca99ee2011-05-03 16:57:15 -0700343 rcu_read_unlock();
Javier Cardona18889232009-08-10 12:15:52 -0700344 rcu_assign_pointer(mesh_paths, newtbl);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700345 write_unlock_bh(&pathtbl_resize_lock);
Javier Cardona18889232009-08-10 12:15:52 -0700346
347 synchronize_rcu();
348 mesh_table_free(oldtbl, false);
349}
350
351void mesh_mpp_table_grow(void)
352{
353 struct mesh_table *oldtbl, *newtbl;
354
Javier Cardona9ca99ee2011-05-03 16:57:15 -0700355 rcu_read_lock();
356 newtbl = mesh_table_alloc(rcu_dereference(mpp_paths)->size_order + 1);
cozybit Inca3e6b122011-04-13 11:10:28 -0700357 if (!newtbl)
358 return;
Javier Cardona9b84b8082011-05-03 16:57:16 -0700359 write_lock_bh(&pathtbl_resize_lock);
Javier Cardona18889232009-08-10 12:15:52 -0700360 oldtbl = mpp_paths;
cozybit Inca3e6b122011-04-13 11:10:28 -0700361 if (mesh_table_grow(mpp_paths, newtbl) < 0) {
Javier Cardona9b84b8082011-05-03 16:57:16 -0700362 rcu_read_unlock();
cozybit Inca3e6b122011-04-13 11:10:28 -0700363 __mesh_table_free(newtbl);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700364 write_unlock_bh(&pathtbl_resize_lock);
Javier Cardona18889232009-08-10 12:15:52 -0700365 return;
366 }
Javier Cardona9ca99ee2011-05-03 16:57:15 -0700367 rcu_read_unlock();
Javier Cardona18889232009-08-10 12:15:52 -0700368 rcu_assign_pointer(mpp_paths, newtbl);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700369 write_unlock_bh(&pathtbl_resize_lock);
Javier Cardona18889232009-08-10 12:15:52 -0700370
371 synchronize_rcu();
372 mesh_table_free(oldtbl, false);
373}
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100374
YanBo79617de2008-09-22 13:30:32 +0800375int mpp_path_add(u8 *dst, u8 *mpp, struct ieee80211_sub_if_data *sdata)
376{
Javier Cardona18889232009-08-10 12:15:52 -0700377 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
378 struct ieee80211_local *local = sdata->local;
YanBo79617de2008-09-22 13:30:32 +0800379 struct mesh_path *mpath, *new_mpath;
380 struct mpath_node *node, *new_node;
381 struct hlist_head *bucket;
382 struct hlist_node *n;
383 int grow = 0;
384 int err = 0;
385 u32 hash_idx;
386
Johannes Berg47846c92009-11-25 17:46:19 +0100387 if (memcmp(dst, sdata->vif.addr, ETH_ALEN) == 0)
YanBo79617de2008-09-22 13:30:32 +0800388 /* never add ourselves as neighbours */
389 return -ENOTSUPP;
390
391 if (is_multicast_ether_addr(dst))
392 return -ENOTSUPP;
393
394 err = -ENOMEM;
Javier Cardona18889232009-08-10 12:15:52 -0700395 new_mpath = kzalloc(sizeof(struct mesh_path), GFP_ATOMIC);
YanBo79617de2008-09-22 13:30:32 +0800396 if (!new_mpath)
397 goto err_path_alloc;
398
Javier Cardona18889232009-08-10 12:15:52 -0700399 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);
YanBo79617de2008-09-22 13:30:32 +0800400 if (!new_node)
401 goto err_node_alloc;
402
Javier Cardona9b84b8082011-05-03 16:57:16 -0700403 read_lock_bh(&pathtbl_resize_lock);
YanBo79617de2008-09-22 13:30:32 +0800404 memcpy(new_mpath->dst, dst, ETH_ALEN);
405 memcpy(new_mpath->mpp, mpp, ETH_ALEN);
406 new_mpath->sdata = sdata;
407 new_mpath->flags = 0;
408 skb_queue_head_init(&new_mpath->frame_queue);
409 new_node->mpath = new_mpath;
410 new_mpath->exp_time = jiffies;
411 spin_lock_init(&new_mpath->state_lock);
412
413 hash_idx = mesh_table_hash(dst, sdata, mpp_paths);
414 bucket = &mpp_paths->hash_buckets[hash_idx];
415
Javier Cardona9b84b8082011-05-03 16:57:16 -0700416 spin_lock_bh(&mpp_paths->hashwlock[hash_idx]);
YanBo79617de2008-09-22 13:30:32 +0800417
418 err = -EEXIST;
419 hlist_for_each_entry(node, n, bucket, list) {
420 mpath = node->mpath;
421 if (mpath->sdata == sdata && memcmp(dst, mpath->dst, ETH_ALEN) == 0)
422 goto err_exists;
423 }
424
425 hlist_add_head_rcu(&new_node->list, bucket);
426 if (atomic_inc_return(&mpp_paths->entries) >=
427 mpp_paths->mean_chain_len * (mpp_paths->hash_mask + 1))
428 grow = 1;
429
Javier Cardona9b84b8082011-05-03 16:57:16 -0700430 spin_unlock_bh(&mpp_paths->hashwlock[hash_idx]);
431 read_unlock_bh(&pathtbl_resize_lock);
YanBo79617de2008-09-22 13:30:32 +0800432 if (grow) {
Javier Cardona18889232009-08-10 12:15:52 -0700433 set_bit(MESH_WORK_GROW_MPP_TABLE, &ifmsh->wrkq_flags);
Johannes Berg64592c82010-06-10 10:21:31 +0200434 ieee80211_queue_work(&local->hw, &sdata->work);
YanBo79617de2008-09-22 13:30:32 +0800435 }
436 return 0;
437
438err_exists:
Javier Cardona9b84b8082011-05-03 16:57:16 -0700439 spin_unlock_bh(&mpp_paths->hashwlock[hash_idx]);
440 read_unlock_bh(&pathtbl_resize_lock);
YanBo79617de2008-09-22 13:30:32 +0800441 kfree(new_node);
442err_node_alloc:
443 kfree(new_mpath);
444err_path_alloc:
445 return err;
446}
447
448
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100449/**
450 * mesh_plink_broken - deactivates paths and sends perr when a link breaks
451 *
452 * @sta: broken peer link
453 *
454 * This function must be called from the rate control algorithm if enough
455 * delivery errors suggest that a peer link is no longer usable.
456 */
457void mesh_plink_broken(struct sta_info *sta)
458{
Johannes Berg15ff6362009-11-17 13:34:04 +0100459 static const u8 bcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100460 struct mesh_path *mpath;
461 struct mpath_node *node;
462 struct hlist_node *p;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200463 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100464 int i;
465
466 rcu_read_lock();
467 for_each_mesh_entry(mesh_paths, p, node, i) {
468 mpath = node->mpath;
469 spin_lock_bh(&mpath->state_lock);
470 if (mpath->next_hop == sta &&
471 mpath->flags & MESH_PATH_ACTIVE &&
472 !(mpath->flags & MESH_PATH_FIXED)) {
473 mpath->flags &= ~MESH_PATH_ACTIVE;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000474 ++mpath->sn;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100475 spin_unlock_bh(&mpath->state_lock);
Javier Cardona45904f22010-12-03 09:20:40 +0100476 mesh_path_error_tx(sdata->u.mesh.mshcfg.element_ttl,
477 mpath->dst, cpu_to_le32(mpath->sn),
Rui Paulo9f130842009-11-19 15:49:10 +0000478 cpu_to_le16(PERR_RCODE_DEST_UNREACH),
Johannes Berg15ff6362009-11-17 13:34:04 +0100479 bcast, sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100480 } else
481 spin_unlock_bh(&mpath->state_lock);
482 }
483 rcu_read_unlock();
484}
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100485
486/**
487 * mesh_path_flush_by_nexthop - Deletes mesh paths if their next hop matches
488 *
489 * @sta - mesh peer to match
490 *
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800491 * RCU notes: this function is called when a mesh plink transitions from
492 * PLINK_ESTAB to any other state, since PLINK_ESTAB state is the only one that
493 * allows path creation. This will happen before the sta can be freed (because
Johannes Bergd0709a62008-02-25 16:27:46 +0100494 * sta_info_destroy() calls this) so any reader in a rcu read block will be
495 * protected against the plink disappearing.
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100496 */
497void mesh_path_flush_by_nexthop(struct sta_info *sta)
498{
499 struct mesh_path *mpath;
500 struct mpath_node *node;
501 struct hlist_node *p;
502 int i;
503
504 for_each_mesh_entry(mesh_paths, p, node, i) {
505 mpath = node->mpath;
506 if (mpath->next_hop == sta)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200507 mesh_path_del(mpath->dst, mpath->sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100508 }
509}
510
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200511void mesh_path_flush(struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100512{
513 struct mesh_path *mpath;
514 struct mpath_node *node;
515 struct hlist_node *p;
516 int i;
517
518 for_each_mesh_entry(mesh_paths, p, node, i) {
519 mpath = node->mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200520 if (mpath->sdata == sdata)
521 mesh_path_del(mpath->dst, mpath->sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100522 }
523}
524
525static void mesh_path_node_reclaim(struct rcu_head *rp)
526{
527 struct mpath_node *node = container_of(rp, struct mpath_node, rcu);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200528 struct ieee80211_sub_if_data *sdata = node->mpath->sdata;
Johannes Bergd0709a62008-02-25 16:27:46 +0100529
Luis Carlos Cobo89a1ad62008-02-29 14:49:37 -0800530 del_timer_sync(&node->mpath->timer);
Johannes Berg472dbc42008-09-11 00:01:49 +0200531 atomic_dec(&sdata->u.mesh.mpaths);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100532 kfree(node->mpath);
533 kfree(node);
534}
535
536/**
537 * mesh_path_del - delete a mesh path from the table
538 *
539 * @addr: dst address (ETH_ALEN length)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200540 * @sdata: local subif
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100541 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200542 * Returns: 0 if successful
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100543 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200544int mesh_path_del(u8 *addr, struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100545{
546 struct mesh_path *mpath;
547 struct mpath_node *node;
548 struct hlist_head *bucket;
549 struct hlist_node *n;
550 int hash_idx;
551 int err = 0;
552
Javier Cardona9b84b8082011-05-03 16:57:16 -0700553 read_lock_bh(&pathtbl_resize_lock);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200554 hash_idx = mesh_table_hash(addr, sdata, mesh_paths);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100555 bucket = &mesh_paths->hash_buckets[hash_idx];
556
Javier Cardona9b84b8082011-05-03 16:57:16 -0700557 spin_lock_bh(&mesh_paths->hashwlock[hash_idx]);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100558 hlist_for_each_entry(node, n, bucket, list) {
559 mpath = node->mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200560 if (mpath->sdata == sdata &&
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100561 memcmp(addr, mpath->dst, ETH_ALEN) == 0) {
562 spin_lock_bh(&mpath->state_lock);
Luis Carlos Cobocfa22c72008-02-29 15:04:13 -0800563 mpath->flags |= MESH_PATH_RESOLVING;
564 hlist_del_rcu(&node->list);
565 call_rcu(&node->rcu, mesh_path_node_reclaim);
566 atomic_dec(&mesh_paths->entries);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100567 spin_unlock_bh(&mpath->state_lock);
568 goto enddel;
569 }
570 }
571
572 err = -ENXIO;
573enddel:
Johannes Bergf5ea9122009-08-07 16:17:38 +0200574 mesh_paths_generation++;
Javier Cardona9b84b8082011-05-03 16:57:16 -0700575 spin_unlock_bh(&mesh_paths->hashwlock[hash_idx]);
576 read_unlock_bh(&pathtbl_resize_lock);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100577 return err;
578}
579
580/**
581 * mesh_path_tx_pending - sends pending frames in a mesh path queue
582 *
583 * @mpath: mesh path to activate
584 *
585 * Locking: the state_lock of the mpath structure must NOT be held when calling
586 * this function.
587 */
588void mesh_path_tx_pending(struct mesh_path *mpath)
589{
Javier Cardona249b4052009-07-07 10:55:03 -0700590 if (mpath->flags & MESH_PATH_ACTIVE)
591 ieee80211_add_pending_skbs(mpath->sdata->local,
592 &mpath->frame_queue);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100593}
594
595/**
596 * mesh_path_discard_frame - discard a frame whose path could not be resolved
597 *
598 * @skb: frame to discard
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200599 * @sdata: network subif the frame was to be sent through
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100600 *
Javier Cardona35946a52009-07-13 17:00:10 -0700601 * If the frame was being forwarded from another MP, a PERR frame will be sent
602 * to the precursor. The precursor's address (i.e. the previous hop) was saved
603 * in addr1 of the frame-to-be-forwarded, and would only be overwritten once
604 * the destination is successfully resolved.
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100605 *
606 * Locking: the function must me called within a rcu_read_lock region
607 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200608void mesh_path_discard_frame(struct sk_buff *skb,
609 struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100610{
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +0200611 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100612 struct mesh_path *mpath;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000613 u32 sn = 0;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100614
Johannes Berg47846c92009-11-25 17:46:19 +0100615 if (memcmp(hdr->addr4, sdata->vif.addr, ETH_ALEN) != 0) {
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100616 u8 *ra, *da;
617
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +0200618 da = hdr->addr3;
Javier Cardona35946a52009-07-13 17:00:10 -0700619 ra = hdr->addr1;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200620 mpath = mesh_path_lookup(da, sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100621 if (mpath)
Rui Paulod19b3bf2009-11-09 23:46:55 +0000622 sn = ++mpath->sn;
Javier Cardona45904f22010-12-03 09:20:40 +0100623 mesh_path_error_tx(sdata->u.mesh.mshcfg.element_ttl, skb->data,
624 cpu_to_le32(sn),
Rui Paulo9f130842009-11-19 15:49:10 +0000625 cpu_to_le16(PERR_RCODE_NO_ROUTE), ra, sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100626 }
627
628 kfree_skb(skb);
Johannes Berg472dbc42008-09-11 00:01:49 +0200629 sdata->u.mesh.mshstats.dropped_frames_no_route++;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100630}
631
632/**
633 * mesh_path_flush_pending - free the pending queue of a mesh path
634 *
635 * @mpath: mesh path whose queue has to be freed
636 *
637 * Locking: the function must me called withing a rcu_read_lock region
638 */
639void mesh_path_flush_pending(struct mesh_path *mpath)
640{
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100641 struct sk_buff *skb;
642
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100643 while ((skb = skb_dequeue(&mpath->frame_queue)) &&
644 (mpath->flags & MESH_PATH_ACTIVE))
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200645 mesh_path_discard_frame(skb, mpath->sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100646}
647
648/**
649 * mesh_path_fix_nexthop - force a specific next hop for a mesh path
650 *
651 * @mpath: the mesh path to modify
652 * @next_hop: the next hop to force
653 *
654 * Locking: this function must be called holding mpath->state_lock
655 */
656void mesh_path_fix_nexthop(struct mesh_path *mpath, struct sta_info *next_hop)
657{
658 spin_lock_bh(&mpath->state_lock);
659 mesh_path_assign_nexthop(mpath, next_hop);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000660 mpath->sn = 0xffff;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100661 mpath->metric = 0;
662 mpath->hop_count = 0;
663 mpath->exp_time = 0;
664 mpath->flags |= MESH_PATH_FIXED;
665 mesh_path_activate(mpath);
666 spin_unlock_bh(&mpath->state_lock);
667 mesh_path_tx_pending(mpath);
668}
669
670static void mesh_path_node_free(struct hlist_node *p, bool free_leafs)
671{
672 struct mesh_path *mpath;
673 struct mpath_node *node = hlist_entry(p, struct mpath_node, list);
674 mpath = node->mpath;
675 hlist_del_rcu(p);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100676 if (free_leafs)
677 kfree(mpath);
678 kfree(node);
679}
680
Pavel Emelyanov4caf86c2008-05-07 19:47:01 +0400681static int mesh_path_node_copy(struct hlist_node *p, struct mesh_table *newtbl)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100682{
683 struct mesh_path *mpath;
684 struct mpath_node *node, *new_node;
685 u32 hash_idx;
686
Pavel Emelyanov8566dc32008-05-07 19:51:51 +0400687 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);
Pavel Emelyanov00242c42008-05-07 19:48:14 +0400688 if (new_node == NULL)
689 return -ENOMEM;
690
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100691 node = hlist_entry(p, struct mpath_node, list);
692 mpath = node->mpath;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100693 new_node->mpath = mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200694 hash_idx = mesh_table_hash(mpath->dst, mpath->sdata, newtbl);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100695 hlist_add_head(&new_node->list,
696 &newtbl->hash_buckets[hash_idx]);
Pavel Emelyanov4caf86c2008-05-07 19:47:01 +0400697 return 0;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100698}
699
700int mesh_pathtbl_init(void)
701{
702 mesh_paths = mesh_table_alloc(INIT_PATHS_SIZE_ORDER);
YanBo79617de2008-09-22 13:30:32 +0800703 if (!mesh_paths)
704 return -ENOMEM;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100705 mesh_paths->free_node = &mesh_path_node_free;
706 mesh_paths->copy_node = &mesh_path_node_copy;
707 mesh_paths->mean_chain_len = MEAN_CHAIN_LEN;
YanBo79617de2008-09-22 13:30:32 +0800708
709 mpp_paths = mesh_table_alloc(INIT_PATHS_SIZE_ORDER);
710 if (!mpp_paths) {
711 mesh_table_free(mesh_paths, true);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100712 return -ENOMEM;
YanBo79617de2008-09-22 13:30:32 +0800713 }
714 mpp_paths->free_node = &mesh_path_node_free;
715 mpp_paths->copy_node = &mesh_path_node_copy;
716 mpp_paths->mean_chain_len = MEAN_CHAIN_LEN;
717
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100718 return 0;
719}
720
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200721void mesh_path_expire(struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100722{
723 struct mesh_path *mpath;
724 struct mpath_node *node;
725 struct hlist_node *p;
726 int i;
727
Javier Cardona9b84b8082011-05-03 16:57:16 -0700728 read_lock_bh(&pathtbl_resize_lock);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100729 for_each_mesh_entry(mesh_paths, p, node, i) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200730 if (node->mpath->sdata != sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100731 continue;
732 mpath = node->mpath;
733 spin_lock_bh(&mpath->state_lock);
734 if ((!(mpath->flags & MESH_PATH_RESOLVING)) &&
735 (!(mpath->flags & MESH_PATH_FIXED)) &&
736 time_after(jiffies,
737 mpath->exp_time + MESH_PATH_EXPIRE)) {
738 spin_unlock_bh(&mpath->state_lock);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200739 mesh_path_del(mpath->dst, mpath->sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100740 } else
741 spin_unlock_bh(&mpath->state_lock);
742 }
Javier Cardona9b84b8082011-05-03 16:57:16 -0700743 read_unlock_bh(&pathtbl_resize_lock);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100744}
745
746void mesh_pathtbl_unregister(void)
747{
748 mesh_table_free(mesh_paths, true);
YanBo79617de2008-09-22 13:30:32 +0800749 mesh_table_free(mpp_paths, true);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100750}