blob: 947b13b40726ba5b865a876faa0eac1ed653a719 [file] [log] [blame]
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001/*
2 * Copyright (c) 2008 open80211s Ltd.
3 * 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>
12#include <linux/netdevice.h>
13#include <linux/random.h>
14#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;
40
41/* This lock will have the grow table function as writer and add / delete nodes
42 * as readers. When reading the table (i.e. doing lookups) we are well protected
43 * by RCU
44 */
45static DEFINE_RWLOCK(pathtbl_resize_lock);
46
47/**
48 *
49 * mesh_path_assign_nexthop - update mesh path next hop
50 *
51 * @mpath: mesh path to update
52 * @sta: next hop to assign
53 *
54 * Locking: mpath->state_lock must be held when calling this function
55 */
56void mesh_path_assign_nexthop(struct mesh_path *mpath, struct sta_info *sta)
57{
Johannes Bergd0709a62008-02-25 16:27:46 +010058 rcu_assign_pointer(mpath->next_hop, sta);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +010059}
60
61
62/**
63 * mesh_path_lookup - look up a path in the mesh path table
64 * @dst: hardware address (ETH_ALEN length) of destination
65 * @dev: local interface
66 *
67 * Returns: pointer to the mesh path structure, or NULL if not found
68 *
69 * Locking: must be called within a read rcu section.
70 */
71struct mesh_path *mesh_path_lookup(u8 *dst, struct net_device *dev)
72{
73 struct mesh_path *mpath;
74 struct hlist_node *n;
75 struct hlist_head *bucket;
76 struct mesh_table *tbl;
77 struct mpath_node *node;
78
79 tbl = rcu_dereference(mesh_paths);
80
81 bucket = &tbl->hash_buckets[mesh_table_hash(dst, dev, tbl)];
82 hlist_for_each_entry_rcu(node, n, bucket, list) {
83 mpath = node->mpath;
84 if (mpath->dev == dev &&
85 memcmp(dst, mpath->dst, ETH_ALEN) == 0) {
86 if (MPATH_EXPIRED(mpath)) {
87 spin_lock_bh(&mpath->state_lock);
88 if (MPATH_EXPIRED(mpath))
89 mpath->flags &= ~MESH_PATH_ACTIVE;
90 spin_unlock_bh(&mpath->state_lock);
91 }
92 return mpath;
93 }
94 }
95 return NULL;
96}
97
98/**
99 * mesh_path_lookup_by_idx - look up a path in the mesh path table by its index
100 * @idx: index
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800101 * @dev: local interface, or NULL for all entries
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100102 *
103 * Returns: pointer to the mesh path structure, or NULL if not found.
104 *
105 * Locking: must be called within a read rcu section.
106 */
107struct mesh_path *mesh_path_lookup_by_idx(int idx, struct net_device *dev)
108{
109 struct mpath_node *node;
110 struct hlist_node *p;
111 int i;
112 int j = 0;
113
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800114 for_each_mesh_entry(mesh_paths, p, node, i) {
115 if (dev && node->mpath->dev != dev)
116 continue;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100117 if (j++ == idx) {
118 if (MPATH_EXPIRED(node->mpath)) {
119 spin_lock_bh(&node->mpath->state_lock);
120 if (MPATH_EXPIRED(node->mpath))
121 node->mpath->flags &= ~MESH_PATH_ACTIVE;
122 spin_unlock_bh(&node->mpath->state_lock);
123 }
124 return node->mpath;
125 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800126 }
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100127
128 return NULL;
129}
130
131/**
132 * mesh_path_add - allocate and add a new path to the mesh path table
133 * @addr: destination address of the path (ETH_ALEN length)
134 * @dev: local interface
135 *
136 * Returns: 0 on sucess
137 *
138 * State: the initial state of the new path is set to 0
139 */
140int mesh_path_add(u8 *dst, struct net_device *dev)
141{
142 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
143 struct mesh_path *mpath, *new_mpath;
144 struct mpath_node *node, *new_node;
145 struct hlist_head *bucket;
146 struct hlist_node *n;
147 int grow = 0;
148 int err = 0;
149 u32 hash_idx;
150
151 if (memcmp(dst, dev->dev_addr, ETH_ALEN) == 0)
152 /* never add ourselves as neighbours */
153 return -ENOTSUPP;
154
155 if (is_multicast_ether_addr(dst))
156 return -ENOTSUPP;
157
158 if (atomic_add_unless(&sdata->u.sta.mpaths, 1, MESH_MAX_MPATHS) == 0)
159 return -ENOSPC;
160
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400161 err = -ENOMEM;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100162 new_mpath = kzalloc(sizeof(struct mesh_path), GFP_KERNEL);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400163 if (!new_mpath)
164 goto err_path_alloc;
165
Pavel Emelyanov0eb03d52008-05-06 18:49:02 +0400166 new_node = kmalloc(sizeof(struct mpath_node), GFP_KERNEL);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400167 if (!new_node)
168 goto err_node_alloc;
Pavel Emelyanovf84e71a2008-05-06 18:46:36 +0400169
170 read_lock(&pathtbl_resize_lock);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100171 memcpy(new_mpath->dst, dst, ETH_ALEN);
172 new_mpath->dev = dev;
173 new_mpath->flags = 0;
174 skb_queue_head_init(&new_mpath->frame_queue);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100175 new_node->mpath = new_mpath;
176 new_mpath->timer.data = (unsigned long) new_mpath;
177 new_mpath->timer.function = mesh_path_timer;
178 new_mpath->exp_time = jiffies;
179 spin_lock_init(&new_mpath->state_lock);
180 init_timer(&new_mpath->timer);
181
182 hash_idx = mesh_table_hash(dst, dev, mesh_paths);
183 bucket = &mesh_paths->hash_buckets[hash_idx];
184
185 spin_lock(&mesh_paths->hashwlock[hash_idx]);
186
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400187 err = -EEXIST;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100188 hlist_for_each_entry(node, n, bucket, list) {
189 mpath = node->mpath;
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400190 if (mpath->dev == dev && memcmp(dst, mpath->dst, ETH_ALEN) == 0)
191 goto err_exists;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100192 }
193
194 hlist_add_head_rcu(&new_node->list, bucket);
195 if (atomic_inc_return(&mesh_paths->entries) >=
196 mesh_paths->mean_chain_len * (mesh_paths->hash_mask + 1))
197 grow = 1;
198
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100199 spin_unlock(&mesh_paths->hashwlock[hash_idx]);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100200 read_unlock(&pathtbl_resize_lock);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400201 if (grow) {
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100202 struct mesh_table *oldtbl, *newtbl;
203
204 write_lock(&pathtbl_resize_lock);
205 oldtbl = mesh_paths;
206 newtbl = mesh_table_grow(mesh_paths);
207 if (!newtbl) {
208 write_unlock(&pathtbl_resize_lock);
Pavel Emelyanov3282aea2008-05-07 19:54:04 +0400209 return 0;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100210 }
211 rcu_assign_pointer(mesh_paths, newtbl);
Pavel Emelyanov6d6936e2008-05-06 18:51:31 +0400212 write_unlock(&pathtbl_resize_lock);
213
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100214 synchronize_rcu();
215 mesh_table_free(oldtbl, false);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100216 }
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400217 return 0;
218
219err_exists:
220 spin_unlock(&mesh_paths->hashwlock[hash_idx]);
221 read_unlock(&pathtbl_resize_lock);
222 kfree(new_node);
223err_node_alloc:
224 kfree(new_mpath);
225err_path_alloc:
226 atomic_dec(&sdata->u.sta.mpaths);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100227 return err;
228}
229
230
231/**
232 * mesh_plink_broken - deactivates paths and sends perr when a link breaks
233 *
234 * @sta: broken peer link
235 *
236 * This function must be called from the rate control algorithm if enough
237 * delivery errors suggest that a peer link is no longer usable.
238 */
239void mesh_plink_broken(struct sta_info *sta)
240{
241 struct mesh_path *mpath;
242 struct mpath_node *node;
243 struct hlist_node *p;
Johannes Bergd0709a62008-02-25 16:27:46 +0100244 struct net_device *dev = sta->sdata->dev;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100245 int i;
246
247 rcu_read_lock();
248 for_each_mesh_entry(mesh_paths, p, node, i) {
249 mpath = node->mpath;
250 spin_lock_bh(&mpath->state_lock);
251 if (mpath->next_hop == sta &&
252 mpath->flags & MESH_PATH_ACTIVE &&
253 !(mpath->flags & MESH_PATH_FIXED)) {
254 mpath->flags &= ~MESH_PATH_ACTIVE;
255 ++mpath->dsn;
256 spin_unlock_bh(&mpath->state_lock);
257 mesh_path_error_tx(mpath->dst,
258 cpu_to_le32(mpath->dsn),
259 dev->broadcast, dev);
260 } else
261 spin_unlock_bh(&mpath->state_lock);
262 }
263 rcu_read_unlock();
264}
Johannes Bergc1edd982008-02-25 16:15:06 +0100265EXPORT_SYMBOL(mesh_plink_broken);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100266
267/**
268 * mesh_path_flush_by_nexthop - Deletes mesh paths if their next hop matches
269 *
270 * @sta - mesh peer to match
271 *
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800272 * RCU notes: this function is called when a mesh plink transitions from
273 * PLINK_ESTAB to any other state, since PLINK_ESTAB state is the only one that
274 * allows path creation. This will happen before the sta can be freed (because
Johannes Bergd0709a62008-02-25 16:27:46 +0100275 * sta_info_destroy() calls this) so any reader in a rcu read block will be
276 * protected against the plink disappearing.
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100277 */
278void mesh_path_flush_by_nexthop(struct sta_info *sta)
279{
280 struct mesh_path *mpath;
281 struct mpath_node *node;
282 struct hlist_node *p;
283 int i;
284
285 for_each_mesh_entry(mesh_paths, p, node, i) {
286 mpath = node->mpath;
287 if (mpath->next_hop == sta)
Luis Carlos Cobocfa22c72008-02-29 15:04:13 -0800288 mesh_path_del(mpath->dst, mpath->dev);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100289 }
290}
291
292void mesh_path_flush(struct net_device *dev)
293{
294 struct mesh_path *mpath;
295 struct mpath_node *node;
296 struct hlist_node *p;
297 int i;
298
299 for_each_mesh_entry(mesh_paths, p, node, i) {
300 mpath = node->mpath;
301 if (mpath->dev == dev)
Luis Carlos Cobocfa22c72008-02-29 15:04:13 -0800302 mesh_path_del(mpath->dst, mpath->dev);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100303 }
304}
305
306static void mesh_path_node_reclaim(struct rcu_head *rp)
307{
308 struct mpath_node *node = container_of(rp, struct mpath_node, rcu);
309 struct ieee80211_sub_if_data *sdata =
310 IEEE80211_DEV_TO_SUB_IF(node->mpath->dev);
Johannes Bergd0709a62008-02-25 16:27:46 +0100311
Luis Carlos Cobo89a1ad62008-02-29 14:49:37 -0800312 del_timer_sync(&node->mpath->timer);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100313 atomic_dec(&sdata->u.sta.mpaths);
314 kfree(node->mpath);
315 kfree(node);
316}
317
318/**
319 * mesh_path_del - delete a mesh path from the table
320 *
321 * @addr: dst address (ETH_ALEN length)
322 * @dev: local interface
323 *
324 * Returns: 0 if succesful
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100325 */
Luis Carlos Cobocfa22c72008-02-29 15:04:13 -0800326int mesh_path_del(u8 *addr, struct net_device *dev)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100327{
328 struct mesh_path *mpath;
329 struct mpath_node *node;
330 struct hlist_head *bucket;
331 struct hlist_node *n;
332 int hash_idx;
333 int err = 0;
334
335 read_lock(&pathtbl_resize_lock);
336 hash_idx = mesh_table_hash(addr, dev, mesh_paths);
337 bucket = &mesh_paths->hash_buckets[hash_idx];
338
339 spin_lock(&mesh_paths->hashwlock[hash_idx]);
340 hlist_for_each_entry(node, n, bucket, list) {
341 mpath = node->mpath;
342 if (mpath->dev == dev &&
343 memcmp(addr, mpath->dst, ETH_ALEN) == 0) {
344 spin_lock_bh(&mpath->state_lock);
Luis Carlos Cobocfa22c72008-02-29 15:04:13 -0800345 mpath->flags |= MESH_PATH_RESOLVING;
346 hlist_del_rcu(&node->list);
347 call_rcu(&node->rcu, mesh_path_node_reclaim);
348 atomic_dec(&mesh_paths->entries);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100349 spin_unlock_bh(&mpath->state_lock);
350 goto enddel;
351 }
352 }
353
354 err = -ENXIO;
355enddel:
356 spin_unlock(&mesh_paths->hashwlock[hash_idx]);
357 read_unlock(&pathtbl_resize_lock);
358 return err;
359}
360
361/**
362 * mesh_path_tx_pending - sends pending frames in a mesh path queue
363 *
364 * @mpath: mesh path to activate
365 *
366 * Locking: the state_lock of the mpath structure must NOT be held when calling
367 * this function.
368 */
369void mesh_path_tx_pending(struct mesh_path *mpath)
370{
371 struct sk_buff *skb;
372
373 while ((skb = skb_dequeue(&mpath->frame_queue)) &&
374 (mpath->flags & MESH_PATH_ACTIVE))
375 dev_queue_xmit(skb);
376}
377
378/**
379 * mesh_path_discard_frame - discard a frame whose path could not be resolved
380 *
381 * @skb: frame to discard
382 * @dev: network device the frame was to be sent through
383 *
384 * If the frame was beign forwarded from another MP, a PERR frame will be sent
385 * to the precursor.
386 *
387 * Locking: the function must me called within a rcu_read_lock region
388 */
389void mesh_path_discard_frame(struct sk_buff *skb, struct net_device *dev)
390{
391 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
392 struct mesh_path *mpath;
393 u32 dsn = 0;
394
395 if (skb->pkt_type == PACKET_OTHERHOST) {
396 struct ieee80211s_hdr *prev_meshhdr;
397 int mshhdrlen;
398 u8 *ra, *da;
399
400 prev_meshhdr = ((struct ieee80211s_hdr *)skb->cb);
401 mshhdrlen = ieee80211_get_mesh_hdrlen(prev_meshhdr);
402 da = skb->data;
403 ra = MESH_PREQ(skb);
404 mpath = mesh_path_lookup(da, dev);
405 if (mpath)
406 dsn = ++mpath->dsn;
407 mesh_path_error_tx(skb->data, cpu_to_le32(dsn), ra, dev);
408 }
409
410 kfree_skb(skb);
411 sdata->u.sta.mshstats.dropped_frames_no_route++;
412}
413
414/**
415 * mesh_path_flush_pending - free the pending queue of a mesh path
416 *
417 * @mpath: mesh path whose queue has to be freed
418 *
419 * Locking: the function must me called withing a rcu_read_lock region
420 */
421void mesh_path_flush_pending(struct mesh_path *mpath)
422{
423 struct ieee80211_sub_if_data *sdata;
424 struct sk_buff *skb;
425
426 sdata = IEEE80211_DEV_TO_SUB_IF(mpath->dev);
427
428 while ((skb = skb_dequeue(&mpath->frame_queue)) &&
429 (mpath->flags & MESH_PATH_ACTIVE))
430 mesh_path_discard_frame(skb, mpath->dev);
431}
432
433/**
434 * mesh_path_fix_nexthop - force a specific next hop for a mesh path
435 *
436 * @mpath: the mesh path to modify
437 * @next_hop: the next hop to force
438 *
439 * Locking: this function must be called holding mpath->state_lock
440 */
441void mesh_path_fix_nexthop(struct mesh_path *mpath, struct sta_info *next_hop)
442{
443 spin_lock_bh(&mpath->state_lock);
444 mesh_path_assign_nexthop(mpath, next_hop);
445 mpath->dsn = 0xffff;
446 mpath->metric = 0;
447 mpath->hop_count = 0;
448 mpath->exp_time = 0;
449 mpath->flags |= MESH_PATH_FIXED;
450 mesh_path_activate(mpath);
451 spin_unlock_bh(&mpath->state_lock);
452 mesh_path_tx_pending(mpath);
453}
454
455static void mesh_path_node_free(struct hlist_node *p, bool free_leafs)
456{
457 struct mesh_path *mpath;
458 struct mpath_node *node = hlist_entry(p, struct mpath_node, list);
459 mpath = node->mpath;
460 hlist_del_rcu(p);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100461 if (free_leafs)
462 kfree(mpath);
463 kfree(node);
464}
465
Pavel Emelyanov4caf86c2008-05-07 19:47:01 +0400466static int mesh_path_node_copy(struct hlist_node *p, struct mesh_table *newtbl)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100467{
468 struct mesh_path *mpath;
469 struct mpath_node *node, *new_node;
470 u32 hash_idx;
471
Pavel Emelyanov8566dc32008-05-07 19:51:51 +0400472 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);
Pavel Emelyanov00242c42008-05-07 19:48:14 +0400473 if (new_node == NULL)
474 return -ENOMEM;
475
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100476 node = hlist_entry(p, struct mpath_node, list);
477 mpath = node->mpath;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100478 new_node->mpath = mpath;
479 hash_idx = mesh_table_hash(mpath->dst, mpath->dev, newtbl);
480 hlist_add_head(&new_node->list,
481 &newtbl->hash_buckets[hash_idx]);
Pavel Emelyanov4caf86c2008-05-07 19:47:01 +0400482 return 0;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100483}
484
485int mesh_pathtbl_init(void)
486{
487 mesh_paths = mesh_table_alloc(INIT_PATHS_SIZE_ORDER);
488 mesh_paths->free_node = &mesh_path_node_free;
489 mesh_paths->copy_node = &mesh_path_node_copy;
490 mesh_paths->mean_chain_len = MEAN_CHAIN_LEN;
491 if (!mesh_paths)
492 return -ENOMEM;
493 return 0;
494}
495
496void mesh_path_expire(struct net_device *dev)
497{
498 struct mesh_path *mpath;
499 struct mpath_node *node;
500 struct hlist_node *p;
501 int i;
502
503 read_lock(&pathtbl_resize_lock);
504 for_each_mesh_entry(mesh_paths, p, node, i) {
505 if (node->mpath->dev != dev)
506 continue;
507 mpath = node->mpath;
508 spin_lock_bh(&mpath->state_lock);
509 if ((!(mpath->flags & MESH_PATH_RESOLVING)) &&
510 (!(mpath->flags & MESH_PATH_FIXED)) &&
511 time_after(jiffies,
512 mpath->exp_time + MESH_PATH_EXPIRE)) {
513 spin_unlock_bh(&mpath->state_lock);
Luis Carlos Cobocfa22c72008-02-29 15:04:13 -0800514 mesh_path_del(mpath->dst, mpath->dev);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100515 } else
516 spin_unlock_bh(&mpath->state_lock);
517 }
518 read_unlock(&pathtbl_resize_lock);
519}
520
521void mesh_pathtbl_unregister(void)
522{
523 mesh_table_free(mesh_paths, true);
524}