blob: d5786c3eaee296207dc40f2ca5a9e4845d399240 [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;
Javier Cardona10c836d2009-07-09 14:42:16 -0700206 unsigned long flags;
207
Johannes Bergd0709a62008-02-25 16:27:46 +0100208 rcu_assign_pointer(mpath->next_hop, sta);
Javier Cardona10c836d2009-07-09 14:42:16 -0700209
Javier Cardona10c836d2009-07-09 14:42:16 -0700210 spin_lock_irqsave(&mpath->frame_queue.lock, flags);
Thomas Pedersenb22bd522012-08-09 18:15:39 -0700211 skb_queue_walk(&mpath->frame_queue, skb) {
Javier Cardona10c836d2009-07-09 14:42:16 -0700212 hdr = (struct ieee80211_hdr *) skb->data;
213 memcpy(hdr->addr1, sta->sta.addr, ETH_ALEN);
Thomas Pedersen7e3c8862011-11-24 17:15:21 -0800214 memcpy(hdr->addr2, mpath->sdata->vif.addr, ETH_ALEN);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100215 ieee80211_mps_set_frame_flags(sta->sdata, sta, hdr);
Javier Cardona10c836d2009-07-09 14:42:16 -0700216 }
217
Javier Cardona10c836d2009-07-09 14:42:16 -0700218 spin_unlock_irqrestore(&mpath->frame_queue.lock, flags);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100219}
220
Javier Cardona5ee68e52011-08-09 16:45:08 -0700221static void prepare_for_gate(struct sk_buff *skb, char *dst_addr,
222 struct mesh_path *gate_mpath)
223{
224 struct ieee80211_hdr *hdr;
225 struct ieee80211s_hdr *mshdr;
226 int mesh_hdrlen, hdrlen;
227 char *next_hop;
228
229 hdr = (struct ieee80211_hdr *) skb->data;
230 hdrlen = ieee80211_hdrlen(hdr->frame_control);
231 mshdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
232
233 if (!(mshdr->flags & MESH_FLAGS_AE)) {
234 /* size of the fixed part of the mesh header */
235 mesh_hdrlen = 6;
236
237 /* make room for the two extended addresses */
238 skb_push(skb, 2 * ETH_ALEN);
239 memmove(skb->data, hdr, hdrlen + mesh_hdrlen);
240
241 hdr = (struct ieee80211_hdr *) skb->data;
242
243 /* we preserve the previous mesh header and only add
244 * the new addreses */
245 mshdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
246 mshdr->flags = MESH_FLAGS_AE_A5_A6;
247 memcpy(mshdr->eaddr1, hdr->addr3, ETH_ALEN);
248 memcpy(mshdr->eaddr2, hdr->addr4, ETH_ALEN);
249 }
250
251 /* update next hop */
252 hdr = (struct ieee80211_hdr *) skb->data;
253 rcu_read_lock();
254 next_hop = rcu_dereference(gate_mpath->next_hop)->sta.addr;
255 memcpy(hdr->addr1, next_hop, ETH_ALEN);
256 rcu_read_unlock();
Thomas Pedersen7e3c8862011-11-24 17:15:21 -0800257 memcpy(hdr->addr2, gate_mpath->sdata->vif.addr, ETH_ALEN);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700258 memcpy(hdr->addr3, dst_addr, ETH_ALEN);
259}
260
261/**
262 *
263 * mesh_path_move_to_queue - Move or copy frames from one mpath queue to another
264 *
265 * This function is used to transfer or copy frames from an unresolved mpath to
266 * a gate mpath. The function also adds the Address Extension field and
267 * updates the next hop.
268 *
269 * If a frame already has an Address Extension field, only the next hop and
270 * destination addresses are updated.
271 *
272 * The gate mpath must be an active mpath with a valid mpath->next_hop.
273 *
274 * @mpath: An active mpath the frames will be sent to (i.e. the gate)
275 * @from_mpath: The failed mpath
276 * @copy: When true, copy all the frames to the new mpath queue. When false,
277 * move them.
278 */
279static void mesh_path_move_to_queue(struct mesh_path *gate_mpath,
280 struct mesh_path *from_mpath,
281 bool copy)
282{
Thomas Pedersen4bd4c2d2012-08-09 18:15:40 -0700283 struct sk_buff *skb, *fskb, *tmp;
284 struct sk_buff_head failq;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700285 unsigned long flags;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700286
287 BUG_ON(gate_mpath == from_mpath);
288 BUG_ON(!gate_mpath->next_hop);
289
Javier Cardona5ee68e52011-08-09 16:45:08 -0700290 __skb_queue_head_init(&failq);
291
292 spin_lock_irqsave(&from_mpath->frame_queue.lock, flags);
293 skb_queue_splice_init(&from_mpath->frame_queue, &failq);
294 spin_unlock_irqrestore(&from_mpath->frame_queue.lock, flags);
295
Thomas Pedersen4bd4c2d2012-08-09 18:15:40 -0700296 skb_queue_walk_safe(&failq, fskb, tmp) {
297 if (skb_queue_len(&gate_mpath->frame_queue) >=
298 MESH_FRAME_QUEUE_LEN) {
299 mpath_dbg(gate_mpath->sdata, "mpath queue full!\n");
300 break;
John W. Linville817a53d2011-08-24 15:12:41 -0400301 }
Javier Cardona5ee68e52011-08-09 16:45:08 -0700302
Thomas Pedersen4bd4c2d2012-08-09 18:15:40 -0700303 skb = skb_copy(fskb, GFP_ATOMIC);
304 if (WARN_ON(!skb))
305 break;
306
Javier Cardona5ee68e52011-08-09 16:45:08 -0700307 prepare_for_gate(skb, gate_mpath->dst, gate_mpath);
Thomas Pedersen4bd4c2d2012-08-09 18:15:40 -0700308 skb_queue_tail(&gate_mpath->frame_queue, skb);
309
310 if (copy)
311 continue;
312
313 __skb_unlink(fskb, &failq);
314 kfree_skb(fskb);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700315 }
316
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200317 mpath_dbg(gate_mpath->sdata, "Mpath queue for gate %pM has %d frames\n",
318 gate_mpath->dst, skb_queue_len(&gate_mpath->frame_queue));
Javier Cardona5ee68e52011-08-09 16:45:08 -0700319
320 if (!copy)
321 return;
322
323 spin_lock_irqsave(&from_mpath->frame_queue.lock, flags);
324 skb_queue_splice(&failq, &from_mpath->frame_queue);
325 spin_unlock_irqrestore(&from_mpath->frame_queue.lock, flags);
326}
327
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100328
Luis R. Rodriguez5ad20dd2012-02-07 21:09:25 -0800329static struct mesh_path *mpath_lookup(struct mesh_table *tbl, u8 *dst,
Javier Cardona239289e2011-08-29 13:23:09 -0700330 struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100331{
332 struct mesh_path *mpath;
333 struct hlist_node *n;
334 struct hlist_head *bucket;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100335 struct mpath_node *node;
336
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200337 bucket = &tbl->hash_buckets[mesh_table_hash(dst, sdata, tbl)];
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100338 hlist_for_each_entry_rcu(node, n, bucket, list) {
339 mpath = node->mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200340 if (mpath->sdata == sdata &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000341 ether_addr_equal(dst, mpath->dst)) {
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100342 if (MPATH_EXPIRED(mpath)) {
343 spin_lock_bh(&mpath->state_lock);
Javier Cardonaad99d142011-08-29 13:23:06 -0700344 mpath->flags &= ~MESH_PATH_ACTIVE;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100345 spin_unlock_bh(&mpath->state_lock);
346 }
347 return mpath;
348 }
349 }
350 return NULL;
351}
352
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100353/**
354 * mesh_path_lookup - look up a path in the mesh path table
355 * @dst: hardware address (ETH_ALEN length) of destination
356 * @sdata: local subif
357 *
358 * Returns: pointer to the mesh path structure, or NULL if not found
359 *
360 * Locking: must be called within a read rcu section.
361 */
362struct mesh_path *mesh_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata)
363{
Luis R. Rodriguez5ad20dd2012-02-07 21:09:25 -0800364 return mpath_lookup(rcu_dereference(mesh_paths), dst, sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100365}
366
YanBo79617de2008-09-22 13:30:32 +0800367struct mesh_path *mpp_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata)
368{
Luis R. Rodriguez5ad20dd2012-02-07 21:09:25 -0800369 return mpath_lookup(rcu_dereference(mpp_paths), dst, sdata);
YanBo79617de2008-09-22 13:30:32 +0800370}
371
372
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100373/**
374 * mesh_path_lookup_by_idx - look up a path in the mesh path table by its index
375 * @idx: index
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200376 * @sdata: local subif, or NULL for all entries
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100377 *
378 * Returns: pointer to the mesh path structure, or NULL if not found.
379 *
380 * Locking: must be called within a read rcu section.
381 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200382struct mesh_path *mesh_path_lookup_by_idx(int idx, struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100383{
Johannes Berg349eb8c2011-05-14 11:56:16 +0200384 struct mesh_table *tbl = rcu_dereference(mesh_paths);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100385 struct mpath_node *node;
386 struct hlist_node *p;
387 int i;
388 int j = 0;
389
Johannes Berg349eb8c2011-05-14 11:56:16 +0200390 for_each_mesh_entry(tbl, p, node, i) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200391 if (sdata && node->mpath->sdata != sdata)
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800392 continue;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100393 if (j++ == idx) {
394 if (MPATH_EXPIRED(node->mpath)) {
395 spin_lock_bh(&node->mpath->state_lock);
Javier Cardonaad99d142011-08-29 13:23:06 -0700396 node->mpath->flags &= ~MESH_PATH_ACTIVE;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100397 spin_unlock_bh(&node->mpath->state_lock);
398 }
399 return node->mpath;
400 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800401 }
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100402
403 return NULL;
404}
405
Javier Cardona5ee68e52011-08-09 16:45:08 -0700406/**
Johannes Berg30be52e2011-11-21 11:23:50 +0100407 * mesh_path_add_gate - add the given mpath to a mesh gate to our path table
408 * @mpath: gate path to add to table
Javier Cardona5ee68e52011-08-09 16:45:08 -0700409 */
Johannes Berg30be52e2011-11-21 11:23:50 +0100410int mesh_path_add_gate(struct mesh_path *mpath)
Javier Cardona5ee68e52011-08-09 16:45:08 -0700411{
Johannes Berg30be52e2011-11-21 11:23:50 +0100412 struct mesh_table *tbl;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700413 struct mpath_node *gate, *new_gate;
414 struct hlist_node *n;
415 int err;
416
417 rcu_read_lock();
Johannes Berg30be52e2011-11-21 11:23:50 +0100418 tbl = rcu_dereference(mesh_paths);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700419
420 hlist_for_each_entry_rcu(gate, n, tbl->known_gates, list)
421 if (gate->mpath == mpath) {
422 err = -EEXIST;
423 goto err_rcu;
424 }
425
426 new_gate = kzalloc(sizeof(struct mpath_node), GFP_ATOMIC);
427 if (!new_gate) {
428 err = -ENOMEM;
429 goto err_rcu;
430 }
431
432 mpath->is_gate = true;
433 mpath->sdata->u.mesh.num_gates++;
434 new_gate->mpath = mpath;
435 spin_lock_bh(&tbl->gates_lock);
436 hlist_add_head_rcu(&new_gate->list, tbl->known_gates);
437 spin_unlock_bh(&tbl->gates_lock);
438 rcu_read_unlock();
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200439 mpath_dbg(mpath->sdata,
440 "Mesh path: Recorded new gate: %pM. %d known gates\n",
441 mpath->dst, mpath->sdata->u.mesh.num_gates);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700442 return 0;
443err_rcu:
444 rcu_read_unlock();
445 return err;
446}
447
448/**
449 * mesh_gate_del - remove a mesh gate from the list of known gates
450 * @tbl: table which holds our list of known gates
451 * @mpath: gate mpath
452 *
453 * Returns: 0 on success
454 *
455 * Locking: must be called inside rcu_read_lock() section
456 */
457static int mesh_gate_del(struct mesh_table *tbl, struct mesh_path *mpath)
458{
459 struct mpath_node *gate;
460 struct hlist_node *p, *q;
461
Javier Cardona5ee68e52011-08-09 16:45:08 -0700462 hlist_for_each_entry_safe(gate, p, q, tbl->known_gates, list)
463 if (gate->mpath == mpath) {
464 spin_lock_bh(&tbl->gates_lock);
465 hlist_del_rcu(&gate->list);
Paul E. McKenneyae1f18e2012-01-06 17:10:37 -0800466 kfree_rcu(gate, rcu);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700467 spin_unlock_bh(&tbl->gates_lock);
468 mpath->sdata->u.mesh.num_gates--;
469 mpath->is_gate = false;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200470 mpath_dbg(mpath->sdata,
471 "Mesh path: Deleted gate: %pM. %d known gates\n",
Javier Cardona5ee68e52011-08-09 16:45:08 -0700472 mpath->dst, mpath->sdata->u.mesh.num_gates);
473 break;
474 }
475
476 return 0;
477}
478
479/**
Javier Cardona5ee68e52011-08-09 16:45:08 -0700480 * mesh_gate_num - number of gates known to this interface
481 * @sdata: subif data
482 */
483int mesh_gate_num(struct ieee80211_sub_if_data *sdata)
484{
485 return sdata->u.mesh.num_gates;
486}
487
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100488/**
489 * mesh_path_add - allocate and add a new path to the mesh path table
490 * @addr: destination address of the path (ETH_ALEN length)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200491 * @sdata: local subif
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100492 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200493 * Returns: 0 on success
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100494 *
495 * State: the initial state of the new path is set to 0
496 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200497int mesh_path_add(u8 *dst, struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100498{
Javier Cardona18889232009-08-10 12:15:52 -0700499 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
500 struct ieee80211_local *local = sdata->local;
Johannes Berg349eb8c2011-05-14 11:56:16 +0200501 struct mesh_table *tbl;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100502 struct mesh_path *mpath, *new_mpath;
503 struct mpath_node *node, *new_node;
504 struct hlist_head *bucket;
505 struct hlist_node *n;
506 int grow = 0;
507 int err = 0;
508 u32 hash_idx;
509
Joe Perchesb203ca32012-05-08 18:56:52 +0000510 if (ether_addr_equal(dst, sdata->vif.addr))
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100511 /* never add ourselves as neighbours */
512 return -ENOTSUPP;
513
514 if (is_multicast_ether_addr(dst))
515 return -ENOTSUPP;
516
Johannes Berg472dbc42008-09-11 00:01:49 +0200517 if (atomic_add_unless(&sdata->u.mesh.mpaths, 1, MESH_MAX_MPATHS) == 0)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100518 return -ENOSPC;
519
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400520 err = -ENOMEM;
Javier Cardona18889232009-08-10 12:15:52 -0700521 new_mpath = kzalloc(sizeof(struct mesh_path), GFP_ATOMIC);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400522 if (!new_mpath)
523 goto err_path_alloc;
524
Javier Cardona18889232009-08-10 12:15:52 -0700525 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400526 if (!new_node)
527 goto err_node_alloc;
Pavel Emelyanovf84e71a2008-05-06 18:46:36 +0400528
Javier Cardona9b84b8082011-05-03 16:57:16 -0700529 read_lock_bh(&pathtbl_resize_lock);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100530 memcpy(new_mpath->dst, dst, ETH_ALEN);
Johannes Berge83e6542012-07-13 16:23:07 +0200531 eth_broadcast_addr(new_mpath->rann_snd_addr);
Chun-Yeow Yeoh35bcd592012-04-10 12:31:56 +0800532 new_mpath->is_root = false;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200533 new_mpath->sdata = sdata;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100534 new_mpath->flags = 0;
535 skb_queue_head_init(&new_mpath->frame_queue);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100536 new_node->mpath = new_mpath;
537 new_mpath->timer.data = (unsigned long) new_mpath;
538 new_mpath->timer.function = mesh_path_timer;
539 new_mpath->exp_time = jiffies;
540 spin_lock_init(&new_mpath->state_lock);
541 init_timer(&new_mpath->timer);
542
Johannes Berg349eb8c2011-05-14 11:56:16 +0200543 tbl = resize_dereference_mesh_paths();
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100544
Johannes Berg349eb8c2011-05-14 11:56:16 +0200545 hash_idx = mesh_table_hash(dst, sdata, tbl);
546 bucket = &tbl->hash_buckets[hash_idx];
547
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800548 spin_lock(&tbl->hashwlock[hash_idx]);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100549
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400550 err = -EEXIST;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100551 hlist_for_each_entry(node, n, bucket, list) {
552 mpath = node->mpath;
Felix Fietkau888d04d2012-03-01 15:22:09 +0100553 if (mpath->sdata == sdata &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000554 ether_addr_equal(dst, mpath->dst))
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400555 goto err_exists;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100556 }
557
558 hlist_add_head_rcu(&new_node->list, bucket);
Johannes Berg349eb8c2011-05-14 11:56:16 +0200559 if (atomic_inc_return(&tbl->entries) >=
560 tbl->mean_chain_len * (tbl->hash_mask + 1))
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100561 grow = 1;
562
Johannes Bergf5ea9122009-08-07 16:17:38 +0200563 mesh_paths_generation++;
564
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800565 spin_unlock(&tbl->hashwlock[hash_idx]);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700566 read_unlock_bh(&pathtbl_resize_lock);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400567 if (grow) {
Javier Cardona18889232009-08-10 12:15:52 -0700568 set_bit(MESH_WORK_GROW_MPATH_TABLE, &ifmsh->wrkq_flags);
Johannes Berg64592c82010-06-10 10:21:31 +0200569 ieee80211_queue_work(&local->hw, &sdata->work);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100570 }
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400571 return 0;
572
573err_exists:
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800574 spin_unlock(&tbl->hashwlock[hash_idx]);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700575 read_unlock_bh(&pathtbl_resize_lock);
Pavel Emelyanov402d7752008-05-06 18:53:43 +0400576 kfree(new_node);
577err_node_alloc:
578 kfree(new_mpath);
579err_path_alloc:
Johannes Berg472dbc42008-09-11 00:01:49 +0200580 atomic_dec(&sdata->u.mesh.mpaths);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100581 return err;
582}
583
Johannes Berg1928eca2011-05-14 11:00:52 +0200584static void mesh_table_free_rcu(struct rcu_head *rcu)
585{
586 struct mesh_table *tbl = container_of(rcu, struct mesh_table, rcu_head);
587
588 mesh_table_free(tbl, false);
589}
590
Javier Cardona18889232009-08-10 12:15:52 -0700591void mesh_mpath_table_grow(void)
592{
593 struct mesh_table *oldtbl, *newtbl;
594
Javier Cardona9b84b8082011-05-03 16:57:16 -0700595 write_lock_bh(&pathtbl_resize_lock);
Johannes Berg349eb8c2011-05-14 11:56:16 +0200596 oldtbl = resize_dereference_mesh_paths();
597 newtbl = mesh_table_alloc(oldtbl->size_order + 1);
Johannes Berg1928eca2011-05-14 11:00:52 +0200598 if (!newtbl)
599 goto out;
Johannes Berg349eb8c2011-05-14 11:56:16 +0200600 if (mesh_table_grow(oldtbl, newtbl) < 0) {
cozybit Inca3e6b122011-04-13 11:10:28 -0700601 __mesh_table_free(newtbl);
Johannes Berg1928eca2011-05-14 11:00:52 +0200602 goto out;
Javier Cardona18889232009-08-10 12:15:52 -0700603 }
604 rcu_assign_pointer(mesh_paths, newtbl);
Javier Cardona18889232009-08-10 12:15:52 -0700605
Johannes Berg1928eca2011-05-14 11:00:52 +0200606 call_rcu(&oldtbl->rcu_head, mesh_table_free_rcu);
607
608 out:
609 write_unlock_bh(&pathtbl_resize_lock);
Javier Cardona18889232009-08-10 12:15:52 -0700610}
611
612void mesh_mpp_table_grow(void)
613{
614 struct mesh_table *oldtbl, *newtbl;
615
Javier Cardona9b84b8082011-05-03 16:57:16 -0700616 write_lock_bh(&pathtbl_resize_lock);
Johannes Berg349eb8c2011-05-14 11:56:16 +0200617 oldtbl = resize_dereference_mpp_paths();
618 newtbl = mesh_table_alloc(oldtbl->size_order + 1);
Johannes Berg1928eca2011-05-14 11:00:52 +0200619 if (!newtbl)
620 goto out;
Johannes Berg349eb8c2011-05-14 11:56:16 +0200621 if (mesh_table_grow(oldtbl, newtbl) < 0) {
cozybit Inca3e6b122011-04-13 11:10:28 -0700622 __mesh_table_free(newtbl);
Johannes Berg1928eca2011-05-14 11:00:52 +0200623 goto out;
Javier Cardona18889232009-08-10 12:15:52 -0700624 }
625 rcu_assign_pointer(mpp_paths, newtbl);
Johannes Berg1928eca2011-05-14 11:00:52 +0200626 call_rcu(&oldtbl->rcu_head, mesh_table_free_rcu);
Javier Cardona18889232009-08-10 12:15:52 -0700627
Johannes Berg1928eca2011-05-14 11:00:52 +0200628 out:
629 write_unlock_bh(&pathtbl_resize_lock);
Javier Cardona18889232009-08-10 12:15:52 -0700630}
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100631
YanBo79617de2008-09-22 13:30:32 +0800632int mpp_path_add(u8 *dst, u8 *mpp, struct ieee80211_sub_if_data *sdata)
633{
Javier Cardona18889232009-08-10 12:15:52 -0700634 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
635 struct ieee80211_local *local = sdata->local;
Johannes Berg349eb8c2011-05-14 11:56:16 +0200636 struct mesh_table *tbl;
YanBo79617de2008-09-22 13:30:32 +0800637 struct mesh_path *mpath, *new_mpath;
638 struct mpath_node *node, *new_node;
639 struct hlist_head *bucket;
640 struct hlist_node *n;
641 int grow = 0;
642 int err = 0;
643 u32 hash_idx;
644
Joe Perchesb203ca32012-05-08 18:56:52 +0000645 if (ether_addr_equal(dst, sdata->vif.addr))
YanBo79617de2008-09-22 13:30:32 +0800646 /* never add ourselves as neighbours */
647 return -ENOTSUPP;
648
649 if (is_multicast_ether_addr(dst))
650 return -ENOTSUPP;
651
652 err = -ENOMEM;
Javier Cardona18889232009-08-10 12:15:52 -0700653 new_mpath = kzalloc(sizeof(struct mesh_path), GFP_ATOMIC);
YanBo79617de2008-09-22 13:30:32 +0800654 if (!new_mpath)
655 goto err_path_alloc;
656
Javier Cardona18889232009-08-10 12:15:52 -0700657 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);
YanBo79617de2008-09-22 13:30:32 +0800658 if (!new_node)
659 goto err_node_alloc;
660
Javier Cardona9b84b8082011-05-03 16:57:16 -0700661 read_lock_bh(&pathtbl_resize_lock);
YanBo79617de2008-09-22 13:30:32 +0800662 memcpy(new_mpath->dst, dst, ETH_ALEN);
663 memcpy(new_mpath->mpp, mpp, ETH_ALEN);
664 new_mpath->sdata = sdata;
665 new_mpath->flags = 0;
666 skb_queue_head_init(&new_mpath->frame_queue);
667 new_node->mpath = new_mpath;
Thomas Pedersenc61336612011-08-25 10:36:14 -0700668 init_timer(&new_mpath->timer);
YanBo79617de2008-09-22 13:30:32 +0800669 new_mpath->exp_time = jiffies;
670 spin_lock_init(&new_mpath->state_lock);
671
Johannes Berg349eb8c2011-05-14 11:56:16 +0200672 tbl = resize_dereference_mpp_paths();
YanBo79617de2008-09-22 13:30:32 +0800673
Johannes Berg349eb8c2011-05-14 11:56:16 +0200674 hash_idx = mesh_table_hash(dst, sdata, tbl);
675 bucket = &tbl->hash_buckets[hash_idx];
676
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800677 spin_lock(&tbl->hashwlock[hash_idx]);
YanBo79617de2008-09-22 13:30:32 +0800678
679 err = -EEXIST;
680 hlist_for_each_entry(node, n, bucket, list) {
681 mpath = node->mpath;
Felix Fietkau888d04d2012-03-01 15:22:09 +0100682 if (mpath->sdata == sdata &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000683 ether_addr_equal(dst, mpath->dst))
YanBo79617de2008-09-22 13:30:32 +0800684 goto err_exists;
685 }
686
687 hlist_add_head_rcu(&new_node->list, bucket);
Johannes Berg349eb8c2011-05-14 11:56:16 +0200688 if (atomic_inc_return(&tbl->entries) >=
689 tbl->mean_chain_len * (tbl->hash_mask + 1))
YanBo79617de2008-09-22 13:30:32 +0800690 grow = 1;
691
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800692 spin_unlock(&tbl->hashwlock[hash_idx]);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700693 read_unlock_bh(&pathtbl_resize_lock);
YanBo79617de2008-09-22 13:30:32 +0800694 if (grow) {
Javier Cardona18889232009-08-10 12:15:52 -0700695 set_bit(MESH_WORK_GROW_MPP_TABLE, &ifmsh->wrkq_flags);
Johannes Berg64592c82010-06-10 10:21:31 +0200696 ieee80211_queue_work(&local->hw, &sdata->work);
YanBo79617de2008-09-22 13:30:32 +0800697 }
698 return 0;
699
700err_exists:
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800701 spin_unlock(&tbl->hashwlock[hash_idx]);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700702 read_unlock_bh(&pathtbl_resize_lock);
YanBo79617de2008-09-22 13:30:32 +0800703 kfree(new_node);
704err_node_alloc:
705 kfree(new_mpath);
706err_path_alloc:
707 return err;
708}
709
710
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100711/**
712 * mesh_plink_broken - deactivates paths and sends perr when a link breaks
713 *
714 * @sta: broken peer link
715 *
716 * This function must be called from the rate control algorithm if enough
717 * delivery errors suggest that a peer link is no longer usable.
718 */
719void mesh_plink_broken(struct sta_info *sta)
720{
Johannes Berg349eb8c2011-05-14 11:56:16 +0200721 struct mesh_table *tbl;
Johannes Berg15ff6362009-11-17 13:34:04 +0100722 static const u8 bcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100723 struct mesh_path *mpath;
724 struct mpath_node *node;
725 struct hlist_node *p;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200726 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100727 int i;
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700728 __le16 reason = cpu_to_le16(WLAN_REASON_MESH_PATH_DEST_UNREACHABLE);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100729
730 rcu_read_lock();
Johannes Berg349eb8c2011-05-14 11:56:16 +0200731 tbl = rcu_dereference(mesh_paths);
732 for_each_mesh_entry(tbl, p, node, i) {
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100733 mpath = node->mpath;
Johannes Berg349eb8c2011-05-14 11:56:16 +0200734 if (rcu_dereference(mpath->next_hop) == sta &&
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100735 mpath->flags & MESH_PATH_ACTIVE &&
736 !(mpath->flags & MESH_PATH_FIXED)) {
Javier Cardonaf5e50cd2011-08-29 13:23:05 -0700737 spin_lock_bh(&mpath->state_lock);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100738 mpath->flags &= ~MESH_PATH_ACTIVE;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000739 ++mpath->sn;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100740 spin_unlock_bh(&mpath->state_lock);
Javier Cardona45904f22010-12-03 09:20:40 +0100741 mesh_path_error_tx(sdata->u.mesh.mshcfg.element_ttl,
742 mpath->dst, cpu_to_le32(mpath->sn),
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700743 reason, bcast, sdata);
Javier Cardonaf5e50cd2011-08-29 13:23:05 -0700744 }
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100745 }
746 rcu_read_unlock();
747}
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100748
Javier Cardona19c50b32011-08-29 13:23:07 -0700749static void mesh_path_node_reclaim(struct rcu_head *rp)
750{
751 struct mpath_node *node = container_of(rp, struct mpath_node, rcu);
752 struct ieee80211_sub_if_data *sdata = node->mpath->sdata;
753
754 del_timer_sync(&node->mpath->timer);
755 atomic_dec(&sdata->u.mesh.mpaths);
756 kfree(node->mpath);
757 kfree(node);
758}
759
760/* needs to be called with the corresponding hashwlock taken */
761static void __mesh_path_del(struct mesh_table *tbl, struct mpath_node *node)
762{
763 struct mesh_path *mpath;
764 mpath = node->mpath;
765 spin_lock(&mpath->state_lock);
766 mpath->flags |= MESH_PATH_RESOLVING;
767 if (mpath->is_gate)
768 mesh_gate_del(tbl, mpath);
769 hlist_del_rcu(&node->list);
770 call_rcu(&node->rcu, mesh_path_node_reclaim);
771 spin_unlock(&mpath->state_lock);
772 atomic_dec(&tbl->entries);
773}
774
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100775/**
776 * mesh_path_flush_by_nexthop - Deletes mesh paths if their next hop matches
777 *
Ben Hutchings2c530402012-07-10 10:55:09 +0000778 * @sta: mesh peer to match
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100779 *
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800780 * RCU notes: this function is called when a mesh plink transitions from
781 * PLINK_ESTAB to any other state, since PLINK_ESTAB state is the only one that
782 * allows path creation. This will happen before the sta can be freed (because
Johannes Bergd0709a62008-02-25 16:27:46 +0100783 * sta_info_destroy() calls this) so any reader in a rcu read block will be
784 * protected against the plink disappearing.
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100785 */
786void mesh_path_flush_by_nexthop(struct sta_info *sta)
787{
Johannes Berg349eb8c2011-05-14 11:56:16 +0200788 struct mesh_table *tbl;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100789 struct mesh_path *mpath;
790 struct mpath_node *node;
791 struct hlist_node *p;
792 int i;
793
Johannes Berg349eb8c2011-05-14 11:56:16 +0200794 rcu_read_lock();
Javier Cardona239289e2011-08-29 13:23:09 -0700795 read_lock_bh(&pathtbl_resize_lock);
796 tbl = resize_dereference_mesh_paths();
Johannes Berg349eb8c2011-05-14 11:56:16 +0200797 for_each_mesh_entry(tbl, p, node, i) {
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100798 mpath = node->mpath;
Javier Cardonacd72e812011-08-29 13:23:08 -0700799 if (rcu_dereference(mpath->next_hop) == sta) {
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800800 spin_lock(&tbl->hashwlock[i]);
Javier Cardona19c50b32011-08-29 13:23:07 -0700801 __mesh_path_del(tbl, node);
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800802 spin_unlock(&tbl->hashwlock[i]);
Javier Cardona19c50b32011-08-29 13:23:07 -0700803 }
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100804 }
Javier Cardona239289e2011-08-29 13:23:09 -0700805 read_unlock_bh(&pathtbl_resize_lock);
Johannes Berg349eb8c2011-05-14 11:56:16 +0200806 rcu_read_unlock();
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100807}
808
Javier Cardonacd72e812011-08-29 13:23:08 -0700809static void table_flush_by_iface(struct mesh_table *tbl,
810 struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100811{
812 struct mesh_path *mpath;
813 struct mpath_node *node;
814 struct hlist_node *p;
815 int i;
816
Javier Cardonacd72e812011-08-29 13:23:08 -0700817 WARN_ON(!rcu_read_lock_held());
Johannes Berg349eb8c2011-05-14 11:56:16 +0200818 for_each_mesh_entry(tbl, p, node, i) {
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100819 mpath = node->mpath;
Javier Cardonacd72e812011-08-29 13:23:08 -0700820 if (mpath->sdata != sdata)
821 continue;
Javier Cardonaece1a2e2011-08-29 13:23:04 -0700822 spin_lock_bh(&tbl->hashwlock[i]);
Javier Cardona19c50b32011-08-29 13:23:07 -0700823 __mesh_path_del(tbl, node);
Javier Cardonaece1a2e2011-08-29 13:23:04 -0700824 spin_unlock_bh(&tbl->hashwlock[i]);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100825 }
826}
827
Javier Cardonaece1a2e2011-08-29 13:23:04 -0700828/**
829 * mesh_path_flush_by_iface - Deletes all mesh paths associated with a given iface
830 *
831 * This function deletes both mesh paths as well as mesh portal paths.
832 *
Ben Hutchings2c530402012-07-10 10:55:09 +0000833 * @sdata: interface data to match
Javier Cardonaece1a2e2011-08-29 13:23:04 -0700834 *
835 */
836void mesh_path_flush_by_iface(struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100837{
Javier Cardonacd72e812011-08-29 13:23:08 -0700838 struct mesh_table *tbl;
Johannes Bergd0709a62008-02-25 16:27:46 +0100839
Javier Cardonacd72e812011-08-29 13:23:08 -0700840 rcu_read_lock();
Javier Cardona239289e2011-08-29 13:23:09 -0700841 read_lock_bh(&pathtbl_resize_lock);
842 tbl = resize_dereference_mesh_paths();
Javier Cardonacd72e812011-08-29 13:23:08 -0700843 table_flush_by_iface(tbl, sdata);
Javier Cardona239289e2011-08-29 13:23:09 -0700844 tbl = resize_dereference_mpp_paths();
Javier Cardonacd72e812011-08-29 13:23:08 -0700845 table_flush_by_iface(tbl, sdata);
Javier Cardona239289e2011-08-29 13:23:09 -0700846 read_unlock_bh(&pathtbl_resize_lock);
Javier Cardonacd72e812011-08-29 13:23:08 -0700847 rcu_read_unlock();
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100848}
849
850/**
851 * mesh_path_del - delete a mesh path from the table
852 *
853 * @addr: dst address (ETH_ALEN length)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200854 * @sdata: local subif
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100855 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200856 * Returns: 0 if successful
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100857 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200858int mesh_path_del(u8 *addr, struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100859{
Johannes Berg349eb8c2011-05-14 11:56:16 +0200860 struct mesh_table *tbl;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100861 struct mesh_path *mpath;
862 struct mpath_node *node;
863 struct hlist_head *bucket;
864 struct hlist_node *n;
865 int hash_idx;
866 int err = 0;
867
Javier Cardona9b84b8082011-05-03 16:57:16 -0700868 read_lock_bh(&pathtbl_resize_lock);
Johannes Berg349eb8c2011-05-14 11:56:16 +0200869 tbl = resize_dereference_mesh_paths();
870 hash_idx = mesh_table_hash(addr, sdata, tbl);
871 bucket = &tbl->hash_buckets[hash_idx];
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100872
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800873 spin_lock(&tbl->hashwlock[hash_idx]);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100874 hlist_for_each_entry(node, n, bucket, list) {
875 mpath = node->mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200876 if (mpath->sdata == sdata &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000877 ether_addr_equal(addr, mpath->dst)) {
Javier Cardona19c50b32011-08-29 13:23:07 -0700878 __mesh_path_del(tbl, node);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100879 goto enddel;
880 }
881 }
882
883 err = -ENXIO;
884enddel:
Johannes Bergf5ea9122009-08-07 16:17:38 +0200885 mesh_paths_generation++;
Thomas Pedersenf06c7882012-03-06 16:42:09 -0800886 spin_unlock(&tbl->hashwlock[hash_idx]);
Javier Cardona9b84b8082011-05-03 16:57:16 -0700887 read_unlock_bh(&pathtbl_resize_lock);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100888 return err;
889}
890
891/**
892 * mesh_path_tx_pending - sends pending frames in a mesh path queue
893 *
894 * @mpath: mesh path to activate
895 *
896 * Locking: the state_lock of the mpath structure must NOT be held when calling
897 * this function.
898 */
899void mesh_path_tx_pending(struct mesh_path *mpath)
900{
Javier Cardona249b4052009-07-07 10:55:03 -0700901 if (mpath->flags & MESH_PATH_ACTIVE)
902 ieee80211_add_pending_skbs(mpath->sdata->local,
903 &mpath->frame_queue);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100904}
905
906/**
Javier Cardona5ee68e52011-08-09 16:45:08 -0700907 * mesh_path_send_to_gates - sends pending frames to all known mesh gates
908 *
909 * @mpath: mesh path whose queue will be emptied
910 *
911 * If there is only one gate, the frames are transferred from the failed mpath
912 * queue to that gate's queue. If there are more than one gates, the frames
913 * are copied from each gate to the next. After frames are copied, the
914 * mpath queues are emptied onto the transmission queue.
915 */
916int mesh_path_send_to_gates(struct mesh_path *mpath)
917{
918 struct ieee80211_sub_if_data *sdata = mpath->sdata;
919 struct hlist_node *n;
920 struct mesh_table *tbl;
921 struct mesh_path *from_mpath = mpath;
922 struct mpath_node *gate = NULL;
923 bool copy = false;
924 struct hlist_head *known_gates;
925
926 rcu_read_lock();
927 tbl = rcu_dereference(mesh_paths);
928 known_gates = tbl->known_gates;
929 rcu_read_unlock();
930
931 if (!known_gates)
932 return -EHOSTUNREACH;
933
934 hlist_for_each_entry_rcu(gate, n, known_gates, list) {
935 if (gate->mpath->sdata != sdata)
936 continue;
937
938 if (gate->mpath->flags & MESH_PATH_ACTIVE) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200939 mpath_dbg(sdata, "Forwarding to %pM\n", gate->mpath->dst);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700940 mesh_path_move_to_queue(gate->mpath, from_mpath, copy);
941 from_mpath = gate->mpath;
942 copy = true;
943 } else {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200944 mpath_dbg(sdata,
945 "Not forwarding %p (flags %#x)\n",
946 gate->mpath, gate->mpath->flags);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700947 }
948 }
949
950 hlist_for_each_entry_rcu(gate, n, known_gates, list)
951 if (gate->mpath->sdata == sdata) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200952 mpath_dbg(sdata, "Sending to %pM\n", gate->mpath->dst);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700953 mesh_path_tx_pending(gate->mpath);
954 }
955
956 return (from_mpath == mpath) ? -EHOSTUNREACH : 0;
957}
958
959/**
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100960 * mesh_path_discard_frame - discard a frame whose path could not be resolved
961 *
962 * @skb: frame to discard
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200963 * @sdata: network subif the frame was to be sent through
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100964 *
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100965 * Locking: the function must me called within a rcu_read_lock region
966 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200967void mesh_path_discard_frame(struct sk_buff *skb,
968 struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100969{
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100970 kfree_skb(skb);
Johannes Berg472dbc42008-09-11 00:01:49 +0200971 sdata->u.mesh.mshstats.dropped_frames_no_route++;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100972}
973
974/**
975 * mesh_path_flush_pending - free the pending queue of a mesh path
976 *
977 * @mpath: mesh path whose queue has to be freed
978 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300979 * Locking: the function must me called within a rcu_read_lock region
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100980 */
981void mesh_path_flush_pending(struct mesh_path *mpath)
982{
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100983 struct sk_buff *skb;
984
Javier Cardona00e3f252011-08-09 16:45:07 -0700985 while ((skb = skb_dequeue(&mpath->frame_queue)) != NULL)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200986 mesh_path_discard_frame(skb, mpath->sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +0100987}
988
989/**
990 * mesh_path_fix_nexthop - force a specific next hop for a mesh path
991 *
992 * @mpath: the mesh path to modify
993 * @next_hop: the next hop to force
994 *
995 * Locking: this function must be called holding mpath->state_lock
996 */
997void mesh_path_fix_nexthop(struct mesh_path *mpath, struct sta_info *next_hop)
998{
999 spin_lock_bh(&mpath->state_lock);
1000 mesh_path_assign_nexthop(mpath, next_hop);
Rui Paulod19b3bf2009-11-09 23:46:55 +00001001 mpath->sn = 0xffff;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001002 mpath->metric = 0;
1003 mpath->hop_count = 0;
1004 mpath->exp_time = 0;
1005 mpath->flags |= MESH_PATH_FIXED;
1006 mesh_path_activate(mpath);
1007 spin_unlock_bh(&mpath->state_lock);
1008 mesh_path_tx_pending(mpath);
1009}
1010
1011static void mesh_path_node_free(struct hlist_node *p, bool free_leafs)
1012{
1013 struct mesh_path *mpath;
1014 struct mpath_node *node = hlist_entry(p, struct mpath_node, list);
1015 mpath = node->mpath;
1016 hlist_del_rcu(p);
Javier Cardonad0df9ee2011-05-13 14:16:07 -07001017 if (free_leafs) {
1018 del_timer_sync(&mpath->timer);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001019 kfree(mpath);
Javier Cardonad0df9ee2011-05-13 14:16:07 -07001020 }
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001021 kfree(node);
1022}
1023
Pavel Emelyanov4caf86c2008-05-07 19:47:01 +04001024static int mesh_path_node_copy(struct hlist_node *p, struct mesh_table *newtbl)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001025{
1026 struct mesh_path *mpath;
1027 struct mpath_node *node, *new_node;
1028 u32 hash_idx;
1029
Pavel Emelyanov8566dc32008-05-07 19:51:51 +04001030 new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC);
Pavel Emelyanov00242c42008-05-07 19:48:14 +04001031 if (new_node == NULL)
1032 return -ENOMEM;
1033
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001034 node = hlist_entry(p, struct mpath_node, list);
1035 mpath = node->mpath;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001036 new_node->mpath = mpath;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001037 hash_idx = mesh_table_hash(mpath->dst, mpath->sdata, newtbl);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001038 hlist_add_head(&new_node->list,
1039 &newtbl->hash_buckets[hash_idx]);
Pavel Emelyanov4caf86c2008-05-07 19:47:01 +04001040 return 0;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001041}
1042
1043int mesh_pathtbl_init(void)
1044{
Johannes Berg349eb8c2011-05-14 11:56:16 +02001045 struct mesh_table *tbl_path, *tbl_mpp;
Dan Carpenter4c5ade42011-08-30 22:16:15 +03001046 int ret;
YanBo79617de2008-09-22 13:30:32 +08001047
Johannes Berg349eb8c2011-05-14 11:56:16 +02001048 tbl_path = mesh_table_alloc(INIT_PATHS_SIZE_ORDER);
1049 if (!tbl_path)
1050 return -ENOMEM;
1051 tbl_path->free_node = &mesh_path_node_free;
1052 tbl_path->copy_node = &mesh_path_node_copy;
1053 tbl_path->mean_chain_len = MEAN_CHAIN_LEN;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001054 tbl_path->known_gates = kzalloc(sizeof(struct hlist_head), GFP_ATOMIC);
Dan Carpenter4c5ade42011-08-30 22:16:15 +03001055 if (!tbl_path->known_gates) {
1056 ret = -ENOMEM;
1057 goto free_path;
1058 }
Javier Cardona5ee68e52011-08-09 16:45:08 -07001059 INIT_HLIST_HEAD(tbl_path->known_gates);
1060
Johannes Berg349eb8c2011-05-14 11:56:16 +02001061
1062 tbl_mpp = mesh_table_alloc(INIT_PATHS_SIZE_ORDER);
1063 if (!tbl_mpp) {
Dan Carpenter4c5ade42011-08-30 22:16:15 +03001064 ret = -ENOMEM;
1065 goto free_path;
YanBo79617de2008-09-22 13:30:32 +08001066 }
Johannes Berg349eb8c2011-05-14 11:56:16 +02001067 tbl_mpp->free_node = &mesh_path_node_free;
1068 tbl_mpp->copy_node = &mesh_path_node_copy;
1069 tbl_mpp->mean_chain_len = MEAN_CHAIN_LEN;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001070 tbl_mpp->known_gates = kzalloc(sizeof(struct hlist_head), GFP_ATOMIC);
Dan Carpenter4c5ade42011-08-30 22:16:15 +03001071 if (!tbl_mpp->known_gates) {
1072 ret = -ENOMEM;
1073 goto free_mpp;
1074 }
Javier Cardona5ee68e52011-08-09 16:45:08 -07001075 INIT_HLIST_HEAD(tbl_mpp->known_gates);
Johannes Berg349eb8c2011-05-14 11:56:16 +02001076
1077 /* Need no locking since this is during init */
1078 RCU_INIT_POINTER(mesh_paths, tbl_path);
1079 RCU_INIT_POINTER(mpp_paths, tbl_mpp);
YanBo79617de2008-09-22 13:30:32 +08001080
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001081 return 0;
Dan Carpenter4c5ade42011-08-30 22:16:15 +03001082
1083free_mpp:
1084 mesh_table_free(tbl_mpp, true);
1085free_path:
1086 mesh_table_free(tbl_path, true);
1087 return ret;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001088}
1089
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001090void mesh_path_expire(struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001091{
Johannes Berg349eb8c2011-05-14 11:56:16 +02001092 struct mesh_table *tbl;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001093 struct mesh_path *mpath;
1094 struct mpath_node *node;
1095 struct hlist_node *p;
1096 int i;
1097
Johannes Berg349eb8c2011-05-14 11:56:16 +02001098 rcu_read_lock();
1099 tbl = rcu_dereference(mesh_paths);
1100 for_each_mesh_entry(tbl, p, node, i) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001101 if (node->mpath->sdata != sdata)
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001102 continue;
1103 mpath = node->mpath;
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001104 if ((!(mpath->flags & MESH_PATH_RESOLVING)) &&
1105 (!(mpath->flags & MESH_PATH_FIXED)) &&
Javier Cardonaf5e50cd2011-08-29 13:23:05 -07001106 time_after(jiffies, mpath->exp_time + MESH_PATH_EXPIRE))
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001107 mesh_path_del(mpath->dst, mpath->sdata);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001108 }
Johannes Berg349eb8c2011-05-14 11:56:16 +02001109 rcu_read_unlock();
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001110}
1111
1112void mesh_pathtbl_unregister(void)
1113{
Johannes Berg349eb8c2011-05-14 11:56:16 +02001114 /* no need for locking during exit path */
Eric Dumazet33d480c2011-08-11 19:30:52 +00001115 mesh_table_free(rcu_dereference_protected(mesh_paths, 1), true);
1116 mesh_table_free(rcu_dereference_protected(mpp_paths, 1), true);
Luis Carlos Coboeb2b9312008-02-23 15:17:14 +01001117}