blob: c1a2bf2aa2def82674d54635768ffc2f5969497e [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++) {
58 spin_lock(&tbl->hashwlock[i]);
59 hlist_for_each_safe(p, q, &mesh_hash[i]) {
60 tbl->free_node(p, free_leafs);
61 atomic_dec(&tbl->entries);
62 }
63 spin_unlock(&tbl->hashwlock[i]);
64 }
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
277 read_lock(&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
292 spin_lock(&mesh_paths->hashwlock[hash_idx]);
293
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
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100308 spin_unlock(&mesh_paths->hashwlock[hash_idx]);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100309 read_unlock(&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:
317 spin_unlock(&mesh_paths->hashwlock[hash_idx]);
318 read_unlock(&pathtbl_resize_lock);
319 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 Cardona18889232009-08-10 12:15:52 -0700335 write_lock(&pathtbl_resize_lock);
336 oldtbl = mesh_paths;
cozybit Inca3e6b122011-04-13 11:10:28 -0700337 if (mesh_table_grow(mesh_paths, newtbl) < 0) {
338 __mesh_table_free(newtbl);
Javier Cardona18889232009-08-10 12:15:52 -0700339 write_unlock(&pathtbl_resize_lock);
340 return;
341 }
Javier Cardona9ca99ee2011-05-03 16:57:15 -0700342 rcu_read_unlock();
Javier Cardona18889232009-08-10 12:15:52 -0700343 rcu_assign_pointer(mesh_paths, newtbl);
344 write_unlock(&pathtbl_resize_lock);
345
346 synchronize_rcu();
347 mesh_table_free(oldtbl, false);
348}
349
350void mesh_mpp_table_grow(void)
351{
352 struct mesh_table *oldtbl, *newtbl;
353
Javier Cardona9ca99ee2011-05-03 16:57:15 -0700354 rcu_read_lock();
355 newtbl = mesh_table_alloc(rcu_dereference(mpp_paths)->size_order + 1);
cozybit Inca3e6b122011-04-13 11:10:28 -0700356 if (!newtbl)
357 return;
Javier Cardona18889232009-08-10 12:15:52 -0700358 write_lock(&pathtbl_resize_lock);
359 oldtbl = mpp_paths;
cozybit Inca3e6b122011-04-13 11:10:28 -0700360 if (mesh_table_grow(mpp_paths, newtbl) < 0) {
361 __mesh_table_free(newtbl);
Javier Cardona18889232009-08-10 12:15:52 -0700362 write_unlock(&pathtbl_resize_lock);
363 return;
364 }
Javier Cardona9ca99ee2011-05-03 16:57:15 -0700365 rcu_read_unlock();
Javier Cardona18889232009-08-10 12:15:52 -0700366 rcu_assign_pointer(mpp_paths, newtbl);
367 write_unlock(&pathtbl_resize_lock);
368
369 synchronize_rcu();
370 mesh_table_free(oldtbl, false);
371}
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100372
YanBo79617de2008-09-22 13:30:32 +0800373int mpp_path_add(u8 *dst, u8 *mpp, struct ieee80211_sub_if_data *sdata)
374{
Javier Cardona18889232009-08-10 12:15:52 -0700375 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
376 struct ieee80211_local *local = sdata->local;
YanBo79617de2008-09-22 13:30:32 +0800377 struct mesh_path *mpath, *new_mpath;
378 struct mpath_node *node, *new_node;
379 struct hlist_head *bucket;
380 struct hlist_node *n;
381 int grow = 0;
382 int err = 0;
383 u32 hash_idx;
384
Johannes Berg47846c92009-11-25 17:46:19 +0100385 if (memcmp(dst, sdata->vif.addr, ETH_ALEN) == 0)
YanBo79617de2008-09-22 13:30:32 +0800386 /* never add ourselves as neighbours */
387 return -ENOTSUPP;
388
389 if (is_multicast_ether_addr(dst))
390 return -ENOTSUPP;
391
392 err = -ENOMEM;
Javier Cardona18889232009-08-10 12:15:52 -0700393 new_mpath = kzalloc(sizeof(struct mesh_path), GFP_ATOMIC);
YanBo79617de2008-09-22 13:30:32 +0800394 if (!new_mpath)
395 goto err_path_alloc;
396
Javier Cardona18889232009-08-10 12:15:52 -0700397 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);
YanBo79617de2008-09-22 13:30:32 +0800398 if (!new_node)
399 goto err_node_alloc;
400
401 read_lock(&pathtbl_resize_lock);
402 memcpy(new_mpath->dst, dst, ETH_ALEN);
403 memcpy(new_mpath->mpp, mpp, ETH_ALEN);
404 new_mpath->sdata = sdata;
405 new_mpath->flags = 0;
406 skb_queue_head_init(&new_mpath->frame_queue);
407 new_node->mpath = new_mpath;
408 new_mpath->exp_time = jiffies;
409 spin_lock_init(&new_mpath->state_lock);
410
411 hash_idx = mesh_table_hash(dst, sdata, mpp_paths);
412 bucket = &mpp_paths->hash_buckets[hash_idx];
413
414 spin_lock(&mpp_paths->hashwlock[hash_idx]);
415
416 err = -EEXIST;
417 hlist_for_each_entry(node, n, bucket, list) {
418 mpath = node->mpath;
419 if (mpath->sdata == sdata && memcmp(dst, mpath->dst, ETH_ALEN) == 0)
420 goto err_exists;
421 }
422
423 hlist_add_head_rcu(&new_node->list, bucket);
424 if (atomic_inc_return(&mpp_paths->entries) >=
425 mpp_paths->mean_chain_len * (mpp_paths->hash_mask + 1))
426 grow = 1;
427
428 spin_unlock(&mpp_paths->hashwlock[hash_idx]);
429 read_unlock(&pathtbl_resize_lock);
430 if (grow) {
Javier Cardona18889232009-08-10 12:15:52 -0700431 set_bit(MESH_WORK_GROW_MPP_TABLE, &ifmsh->wrkq_flags);
Johannes Berg64592c82010-06-10 10:21:31 +0200432 ieee80211_queue_work(&local->hw, &sdata->work);
YanBo79617de2008-09-22 13:30:32 +0800433 }
434 return 0;
435
436err_exists:
437 spin_unlock(&mpp_paths->hashwlock[hash_idx]);
438 read_unlock(&pathtbl_resize_lock);
439 kfree(new_node);
440err_node_alloc:
441 kfree(new_mpath);
442err_path_alloc:
443 return err;
444}
445
446
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100447/**
448 * mesh_plink_broken - deactivates paths and sends perr when a link breaks
449 *
450 * @sta: broken peer link
451 *
452 * This function must be called from the rate control algorithm if enough
453 * delivery errors suggest that a peer link is no longer usable.
454 */
455void mesh_plink_broken(struct sta_info *sta)
456{
Johannes Berg15ff6362009-11-17 13:34:04 +0100457 static const u8 bcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100458 struct mesh_path *mpath;
459 struct mpath_node *node;
460 struct hlist_node *p;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200461 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100462 int i;
463
464 rcu_read_lock();
465 for_each_mesh_entry(mesh_paths, p, node, i) {
466 mpath = node->mpath;
467 spin_lock_bh(&mpath->state_lock);
468 if (mpath->next_hop == sta &&
469 mpath->flags & MESH_PATH_ACTIVE &&
470 !(mpath->flags & MESH_PATH_FIXED)) {
471 mpath->flags &= ~MESH_PATH_ACTIVE;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000472 ++mpath->sn;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100473 spin_unlock_bh(&mpath->state_lock);
Javier Cardona45904f22010-12-03 09:20:40 +0100474 mesh_path_error_tx(sdata->u.mesh.mshcfg.element_ttl,
475 mpath->dst, cpu_to_le32(mpath->sn),
Rui Paulo9f130842009-11-19 15:49:10 +0000476 cpu_to_le16(PERR_RCODE_DEST_UNREACH),
Johannes Berg15ff6362009-11-17 13:34:04 +0100477 bcast, sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100478 } else
479 spin_unlock_bh(&mpath->state_lock);
480 }
481 rcu_read_unlock();
482}
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100483
484/**
485 * mesh_path_flush_by_nexthop - Deletes mesh paths if their next hop matches
486 *
487 * @sta - mesh peer to match
488 *
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800489 * RCU notes: this function is called when a mesh plink transitions from
490 * PLINK_ESTAB to any other state, since PLINK_ESTAB state is the only one that
491 * allows path creation. This will happen before the sta can be freed (because
Johannes Bergd0709a62008-02-25 16:27:46 +0100492 * sta_info_destroy() calls this) so any reader in a rcu read block will be
493 * protected against the plink disappearing.
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100494 */
495void mesh_path_flush_by_nexthop(struct sta_info *sta)
496{
497 struct mesh_path *mpath;
498 struct mpath_node *node;
499 struct hlist_node *p;
500 int i;
501
502 for_each_mesh_entry(mesh_paths, p, node, i) {
503 mpath = node->mpath;
504 if (mpath->next_hop == sta)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200505 mesh_path_del(mpath->dst, mpath->sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100506 }
507}
508
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200509void mesh_path_flush(struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100510{
511 struct mesh_path *mpath;
512 struct mpath_node *node;
513 struct hlist_node *p;
514 int i;
515
516 for_each_mesh_entry(mesh_paths, p, node, i) {
517 mpath = node->mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200518 if (mpath->sdata == sdata)
519 mesh_path_del(mpath->dst, mpath->sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100520 }
521}
522
523static void mesh_path_node_reclaim(struct rcu_head *rp)
524{
525 struct mpath_node *node = container_of(rp, struct mpath_node, rcu);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200526 struct ieee80211_sub_if_data *sdata = node->mpath->sdata;
Johannes Bergd0709a62008-02-25 16:27:46 +0100527
Luis Carlos Cobo89a1ad62008-02-29 14:49:37 -0800528 del_timer_sync(&node->mpath->timer);
Johannes Berg472dbc42008-09-11 00:01:49 +0200529 atomic_dec(&sdata->u.mesh.mpaths);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100530 kfree(node->mpath);
531 kfree(node);
532}
533
534/**
535 * mesh_path_del - delete a mesh path from the table
536 *
537 * @addr: dst address (ETH_ALEN length)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200538 * @sdata: local subif
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100539 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200540 * Returns: 0 if successful
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100541 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200542int mesh_path_del(u8 *addr, struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100543{
544 struct mesh_path *mpath;
545 struct mpath_node *node;
546 struct hlist_head *bucket;
547 struct hlist_node *n;
548 int hash_idx;
549 int err = 0;
550
551 read_lock(&pathtbl_resize_lock);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200552 hash_idx = mesh_table_hash(addr, sdata, mesh_paths);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100553 bucket = &mesh_paths->hash_buckets[hash_idx];
554
555 spin_lock(&mesh_paths->hashwlock[hash_idx]);
556 hlist_for_each_entry(node, n, bucket, list) {
557 mpath = node->mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200558 if (mpath->sdata == sdata &&
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100559 memcmp(addr, mpath->dst, ETH_ALEN) == 0) {
560 spin_lock_bh(&mpath->state_lock);
Luis Carlos Cobocfa22c72008-02-29 15:04:13 -0800561 mpath->flags |= MESH_PATH_RESOLVING;
562 hlist_del_rcu(&node->list);
563 call_rcu(&node->rcu, mesh_path_node_reclaim);
564 atomic_dec(&mesh_paths->entries);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100565 spin_unlock_bh(&mpath->state_lock);
566 goto enddel;
567 }
568 }
569
570 err = -ENXIO;
571enddel:
Johannes Bergf5ea9122009-08-07 16:17:38 +0200572 mesh_paths_generation++;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100573 spin_unlock(&mesh_paths->hashwlock[hash_idx]);
574 read_unlock(&pathtbl_resize_lock);
575 return err;
576}
577
578/**
579 * mesh_path_tx_pending - sends pending frames in a mesh path queue
580 *
581 * @mpath: mesh path to activate
582 *
583 * Locking: the state_lock of the mpath structure must NOT be held when calling
584 * this function.
585 */
586void mesh_path_tx_pending(struct mesh_path *mpath)
587{
Javier Cardona249b4052009-07-07 10:55:03 -0700588 if (mpath->flags & MESH_PATH_ACTIVE)
589 ieee80211_add_pending_skbs(mpath->sdata->local,
590 &mpath->frame_queue);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100591}
592
593/**
594 * mesh_path_discard_frame - discard a frame whose path could not be resolved
595 *
596 * @skb: frame to discard
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200597 * @sdata: network subif the frame was to be sent through
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100598 *
Javier Cardona35946a52009-07-13 17:00:10 -0700599 * If the frame was being forwarded from another MP, a PERR frame will be sent
600 * to the precursor. The precursor's address (i.e. the previous hop) was saved
601 * in addr1 of the frame-to-be-forwarded, and would only be overwritten once
602 * the destination is successfully resolved.
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100603 *
604 * Locking: the function must me called within a rcu_read_lock region
605 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200606void mesh_path_discard_frame(struct sk_buff *skb,
607 struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100608{
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +0200609 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100610 struct mesh_path *mpath;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000611 u32 sn = 0;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100612
Johannes Berg47846c92009-11-25 17:46:19 +0100613 if (memcmp(hdr->addr4, sdata->vif.addr, ETH_ALEN) != 0) {
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100614 u8 *ra, *da;
615
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +0200616 da = hdr->addr3;
Javier Cardona35946a52009-07-13 17:00:10 -0700617 ra = hdr->addr1;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200618 mpath = mesh_path_lookup(da, sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100619 if (mpath)
Rui Paulod19b3bf2009-11-09 23:46:55 +0000620 sn = ++mpath->sn;
Javier Cardona45904f22010-12-03 09:20:40 +0100621 mesh_path_error_tx(sdata->u.mesh.mshcfg.element_ttl, skb->data,
622 cpu_to_le32(sn),
Rui Paulo9f130842009-11-19 15:49:10 +0000623 cpu_to_le16(PERR_RCODE_NO_ROUTE), ra, sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100624 }
625
626 kfree_skb(skb);
Johannes Berg472dbc42008-09-11 00:01:49 +0200627 sdata->u.mesh.mshstats.dropped_frames_no_route++;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100628}
629
630/**
631 * mesh_path_flush_pending - free the pending queue of a mesh path
632 *
633 * @mpath: mesh path whose queue has to be freed
634 *
635 * Locking: the function must me called withing a rcu_read_lock region
636 */
637void mesh_path_flush_pending(struct mesh_path *mpath)
638{
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100639 struct sk_buff *skb;
640
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100641 while ((skb = skb_dequeue(&mpath->frame_queue)) &&
642 (mpath->flags & MESH_PATH_ACTIVE))
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200643 mesh_path_discard_frame(skb, mpath->sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100644}
645
646/**
647 * mesh_path_fix_nexthop - force a specific next hop for a mesh path
648 *
649 * @mpath: the mesh path to modify
650 * @next_hop: the next hop to force
651 *
652 * Locking: this function must be called holding mpath->state_lock
653 */
654void mesh_path_fix_nexthop(struct mesh_path *mpath, struct sta_info *next_hop)
655{
656 spin_lock_bh(&mpath->state_lock);
657 mesh_path_assign_nexthop(mpath, next_hop);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000658 mpath->sn = 0xffff;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100659 mpath->metric = 0;
660 mpath->hop_count = 0;
661 mpath->exp_time = 0;
662 mpath->flags |= MESH_PATH_FIXED;
663 mesh_path_activate(mpath);
664 spin_unlock_bh(&mpath->state_lock);
665 mesh_path_tx_pending(mpath);
666}
667
668static void mesh_path_node_free(struct hlist_node *p, bool free_leafs)
669{
670 struct mesh_path *mpath;
671 struct mpath_node *node = hlist_entry(p, struct mpath_node, list);
672 mpath = node->mpath;
673 hlist_del_rcu(p);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100674 if (free_leafs)
675 kfree(mpath);
676 kfree(node);
677}
678
Pavel Emelyanov4caf86c2008-05-07 19:47:01 +0400679static int mesh_path_node_copy(struct hlist_node *p, struct mesh_table *newtbl)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100680{
681 struct mesh_path *mpath;
682 struct mpath_node *node, *new_node;
683 u32 hash_idx;
684
Pavel Emelyanov8566dc32008-05-07 19:51:51 +0400685 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);
Pavel Emelyanov00242c42008-05-07 19:48:14 +0400686 if (new_node == NULL)
687 return -ENOMEM;
688
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100689 node = hlist_entry(p, struct mpath_node, list);
690 mpath = node->mpath;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100691 new_node->mpath = mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200692 hash_idx = mesh_table_hash(mpath->dst, mpath->sdata, newtbl);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100693 hlist_add_head(&new_node->list,
694 &newtbl->hash_buckets[hash_idx]);
Pavel Emelyanov4caf86c2008-05-07 19:47:01 +0400695 return 0;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100696}
697
698int mesh_pathtbl_init(void)
699{
700 mesh_paths = mesh_table_alloc(INIT_PATHS_SIZE_ORDER);
YanBo79617de2008-09-22 13:30:32 +0800701 if (!mesh_paths)
702 return -ENOMEM;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100703 mesh_paths->free_node = &mesh_path_node_free;
704 mesh_paths->copy_node = &mesh_path_node_copy;
705 mesh_paths->mean_chain_len = MEAN_CHAIN_LEN;
YanBo79617de2008-09-22 13:30:32 +0800706
707 mpp_paths = mesh_table_alloc(INIT_PATHS_SIZE_ORDER);
708 if (!mpp_paths) {
709 mesh_table_free(mesh_paths, true);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100710 return -ENOMEM;
YanBo79617de2008-09-22 13:30:32 +0800711 }
712 mpp_paths->free_node = &mesh_path_node_free;
713 mpp_paths->copy_node = &mesh_path_node_copy;
714 mpp_paths->mean_chain_len = MEAN_CHAIN_LEN;
715
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100716 return 0;
717}
718
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200719void mesh_path_expire(struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100720{
721 struct mesh_path *mpath;
722 struct mpath_node *node;
723 struct hlist_node *p;
724 int i;
725
726 read_lock(&pathtbl_resize_lock);
727 for_each_mesh_entry(mesh_paths, p, node, i) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200728 if (node->mpath->sdata != sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100729 continue;
730 mpath = node->mpath;
731 spin_lock_bh(&mpath->state_lock);
732 if ((!(mpath->flags & MESH_PATH_RESOLVING)) &&
733 (!(mpath->flags & MESH_PATH_FIXED)) &&
734 time_after(jiffies,
735 mpath->exp_time + MESH_PATH_EXPIRE)) {
736 spin_unlock_bh(&mpath->state_lock);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200737 mesh_path_del(mpath->dst, mpath->sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100738 } else
739 spin_unlock_bh(&mpath->state_lock);
740 }
741 read_unlock(&pathtbl_resize_lock);
742}
743
744void mesh_pathtbl_unregister(void)
745{
746 mesh_table_free(mesh_paths, true);
YanBo79617de2008-09-22 13:30:32 +0800747 mesh_table_free(mpp_paths, true);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100748}