Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1 | /* |
Rui Paulo | 264d9b7 | 2009-11-09 23:46:58 +0000 | [diff] [blame] | 2 | * Copyright (c) 2008, 2009 open80211s Ltd. |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 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> |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 12 | #include <linux/random.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 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 | |
| 30 | struct 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 | |
| 39 | static struct mesh_table *mesh_paths; |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 40 | static struct mesh_table *mpp_paths; /* Store paths for MPP&MAP */ |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 41 | |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 42 | int mesh_paths_generation; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 43 | static void __mesh_table_free(struct mesh_table *tbl) |
| 44 | { |
| 45 | kfree(tbl->hash_buckets); |
| 46 | kfree(tbl->hashwlock); |
| 47 | kfree(tbl); |
| 48 | } |
| 49 | |
| 50 | void 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 Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame^] | 68 | static int mesh_table_grow(struct mesh_table *oldtbl, |
| 69 | struct mesh_table *newtbl) |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 70 | { |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 71 | struct hlist_head *oldhash; |
| 72 | struct hlist_node *p, *q; |
| 73 | int i; |
| 74 | |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame^] | 75 | if (atomic_read(&oldtbl->entries) |
| 76 | < oldtbl->mean_chain_len * (oldtbl->hash_mask + 1)) |
| 77 | return -EAGAIN; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 78 | |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 79 | |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame^] | 80 | newtbl->free_node = oldtbl->free_node; |
| 81 | newtbl->mean_chain_len = oldtbl->mean_chain_len; |
| 82 | newtbl->copy_node = oldtbl->copy_node; |
| 83 | atomic_set(&newtbl->entries, atomic_read(&oldtbl->entries)); |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 84 | |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame^] | 85 | oldhash = oldtbl->hash_buckets; |
| 86 | for (i = 0; i <= oldtbl->hash_mask; i++) |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 87 | hlist_for_each(p, &oldhash[i]) |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame^] | 88 | if (oldtbl->copy_node(p, newtbl) < 0) |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 89 | goto errcopy; |
| 90 | |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame^] | 91 | return 0; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 92 | |
| 93 | errcopy: |
| 94 | for (i = 0; i <= newtbl->hash_mask; i++) { |
| 95 | hlist_for_each_safe(p, q, &newtbl->hash_buckets[i]) |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame^] | 96 | oldtbl->free_node(p, 0); |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 97 | } |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame^] | 98 | return -ENOMEM; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 99 | } |
| 100 | |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 101 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 102 | /* This lock will have the grow table function as writer and add / delete nodes |
| 103 | * as readers. When reading the table (i.e. doing lookups) we are well protected |
| 104 | * by RCU |
| 105 | */ |
| 106 | static DEFINE_RWLOCK(pathtbl_resize_lock); |
| 107 | |
| 108 | /** |
| 109 | * |
| 110 | * mesh_path_assign_nexthop - update mesh path next hop |
| 111 | * |
| 112 | * @mpath: mesh path to update |
| 113 | * @sta: next hop to assign |
| 114 | * |
| 115 | * Locking: mpath->state_lock must be held when calling this function |
| 116 | */ |
| 117 | void mesh_path_assign_nexthop(struct mesh_path *mpath, struct sta_info *sta) |
| 118 | { |
Javier Cardona | 10c836d | 2009-07-09 14:42:16 -0700 | [diff] [blame] | 119 | struct sk_buff *skb; |
| 120 | struct ieee80211_hdr *hdr; |
| 121 | struct sk_buff_head tmpq; |
| 122 | unsigned long flags; |
| 123 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 124 | rcu_assign_pointer(mpath->next_hop, sta); |
Javier Cardona | 10c836d | 2009-07-09 14:42:16 -0700 | [diff] [blame] | 125 | |
| 126 | __skb_queue_head_init(&tmpq); |
| 127 | |
| 128 | spin_lock_irqsave(&mpath->frame_queue.lock, flags); |
| 129 | |
| 130 | while ((skb = __skb_dequeue(&mpath->frame_queue)) != NULL) { |
| 131 | hdr = (struct ieee80211_hdr *) skb->data; |
| 132 | memcpy(hdr->addr1, sta->sta.addr, ETH_ALEN); |
| 133 | __skb_queue_tail(&tmpq, skb); |
| 134 | } |
| 135 | |
| 136 | skb_queue_splice(&tmpq, &mpath->frame_queue); |
| 137 | spin_unlock_irqrestore(&mpath->frame_queue.lock, flags); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | |
| 141 | /** |
| 142 | * mesh_path_lookup - look up a path in the mesh path table |
| 143 | * @dst: hardware address (ETH_ALEN length) of destination |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 144 | * @sdata: local subif |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 145 | * |
| 146 | * Returns: pointer to the mesh path structure, or NULL if not found |
| 147 | * |
| 148 | * Locking: must be called within a read rcu section. |
| 149 | */ |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 150 | struct mesh_path *mesh_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 151 | { |
| 152 | struct mesh_path *mpath; |
| 153 | struct hlist_node *n; |
| 154 | struct hlist_head *bucket; |
| 155 | struct mesh_table *tbl; |
| 156 | struct mpath_node *node; |
| 157 | |
| 158 | tbl = rcu_dereference(mesh_paths); |
| 159 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 160 | bucket = &tbl->hash_buckets[mesh_table_hash(dst, sdata, tbl)]; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 161 | hlist_for_each_entry_rcu(node, n, bucket, list) { |
| 162 | mpath = node->mpath; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 163 | if (mpath->sdata == sdata && |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 164 | memcmp(dst, mpath->dst, ETH_ALEN) == 0) { |
| 165 | if (MPATH_EXPIRED(mpath)) { |
| 166 | spin_lock_bh(&mpath->state_lock); |
| 167 | if (MPATH_EXPIRED(mpath)) |
| 168 | mpath->flags &= ~MESH_PATH_ACTIVE; |
| 169 | spin_unlock_bh(&mpath->state_lock); |
| 170 | } |
| 171 | return mpath; |
| 172 | } |
| 173 | } |
| 174 | return NULL; |
| 175 | } |
| 176 | |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 177 | struct mesh_path *mpp_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata) |
| 178 | { |
| 179 | struct mesh_path *mpath; |
| 180 | struct hlist_node *n; |
| 181 | struct hlist_head *bucket; |
| 182 | struct mesh_table *tbl; |
| 183 | struct mpath_node *node; |
| 184 | |
| 185 | tbl = rcu_dereference(mpp_paths); |
| 186 | |
| 187 | bucket = &tbl->hash_buckets[mesh_table_hash(dst, sdata, tbl)]; |
| 188 | hlist_for_each_entry_rcu(node, n, bucket, list) { |
| 189 | mpath = node->mpath; |
| 190 | if (mpath->sdata == sdata && |
| 191 | memcmp(dst, mpath->dst, ETH_ALEN) == 0) { |
| 192 | if (MPATH_EXPIRED(mpath)) { |
| 193 | spin_lock_bh(&mpath->state_lock); |
| 194 | if (MPATH_EXPIRED(mpath)) |
| 195 | mpath->flags &= ~MESH_PATH_ACTIVE; |
| 196 | spin_unlock_bh(&mpath->state_lock); |
| 197 | } |
| 198 | return mpath; |
| 199 | } |
| 200 | } |
| 201 | return NULL; |
| 202 | } |
| 203 | |
| 204 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 205 | /** |
| 206 | * mesh_path_lookup_by_idx - look up a path in the mesh path table by its index |
| 207 | * @idx: index |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 208 | * @sdata: local subif, or NULL for all entries |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 209 | * |
| 210 | * Returns: pointer to the mesh path structure, or NULL if not found. |
| 211 | * |
| 212 | * Locking: must be called within a read rcu section. |
| 213 | */ |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 214 | struct mesh_path *mesh_path_lookup_by_idx(int idx, struct ieee80211_sub_if_data *sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 215 | { |
| 216 | struct mpath_node *node; |
| 217 | struct hlist_node *p; |
| 218 | int i; |
| 219 | int j = 0; |
| 220 | |
Luis Carlos Cobo | 2a8ca29 | 2008-02-29 17:51:25 -0800 | [diff] [blame] | 221 | for_each_mesh_entry(mesh_paths, p, node, i) { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 222 | if (sdata && node->mpath->sdata != sdata) |
Luis Carlos Cobo | 2a8ca29 | 2008-02-29 17:51:25 -0800 | [diff] [blame] | 223 | continue; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 224 | if (j++ == idx) { |
| 225 | if (MPATH_EXPIRED(node->mpath)) { |
| 226 | spin_lock_bh(&node->mpath->state_lock); |
| 227 | if (MPATH_EXPIRED(node->mpath)) |
| 228 | node->mpath->flags &= ~MESH_PATH_ACTIVE; |
| 229 | spin_unlock_bh(&node->mpath->state_lock); |
| 230 | } |
| 231 | return node->mpath; |
| 232 | } |
Luis Carlos Cobo | 2a8ca29 | 2008-02-29 17:51:25 -0800 | [diff] [blame] | 233 | } |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 234 | |
| 235 | return NULL; |
| 236 | } |
| 237 | |
| 238 | /** |
| 239 | * mesh_path_add - allocate and add a new path to the mesh path table |
| 240 | * @addr: destination address of the path (ETH_ALEN length) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 241 | * @sdata: local subif |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 242 | * |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 243 | * Returns: 0 on success |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 244 | * |
| 245 | * State: the initial state of the new path is set to 0 |
| 246 | */ |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 247 | int mesh_path_add(u8 *dst, struct ieee80211_sub_if_data *sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 248 | { |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 249 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
| 250 | struct ieee80211_local *local = sdata->local; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 251 | struct mesh_path *mpath, *new_mpath; |
| 252 | struct mpath_node *node, *new_node; |
| 253 | struct hlist_head *bucket; |
| 254 | struct hlist_node *n; |
| 255 | int grow = 0; |
| 256 | int err = 0; |
| 257 | u32 hash_idx; |
| 258 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 259 | if (memcmp(dst, sdata->vif.addr, ETH_ALEN) == 0) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 260 | /* never add ourselves as neighbours */ |
| 261 | return -ENOTSUPP; |
| 262 | |
| 263 | if (is_multicast_ether_addr(dst)) |
| 264 | return -ENOTSUPP; |
| 265 | |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 266 | if (atomic_add_unless(&sdata->u.mesh.mpaths, 1, MESH_MAX_MPATHS) == 0) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 267 | return -ENOSPC; |
| 268 | |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 269 | err = -ENOMEM; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 270 | new_mpath = kzalloc(sizeof(struct mesh_path), GFP_ATOMIC); |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 271 | if (!new_mpath) |
| 272 | goto err_path_alloc; |
| 273 | |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 274 | new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC); |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 275 | if (!new_node) |
| 276 | goto err_node_alloc; |
Pavel Emelyanov | f84e71a | 2008-05-06 18:46:36 +0400 | [diff] [blame] | 277 | |
| 278 | read_lock(&pathtbl_resize_lock); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 279 | memcpy(new_mpath->dst, dst, ETH_ALEN); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 280 | new_mpath->sdata = sdata; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 281 | new_mpath->flags = 0; |
| 282 | skb_queue_head_init(&new_mpath->frame_queue); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 283 | new_node->mpath = new_mpath; |
| 284 | new_mpath->timer.data = (unsigned long) new_mpath; |
| 285 | new_mpath->timer.function = mesh_path_timer; |
| 286 | new_mpath->exp_time = jiffies; |
| 287 | spin_lock_init(&new_mpath->state_lock); |
| 288 | init_timer(&new_mpath->timer); |
| 289 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 290 | hash_idx = mesh_table_hash(dst, sdata, mesh_paths); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 291 | bucket = &mesh_paths->hash_buckets[hash_idx]; |
| 292 | |
| 293 | spin_lock(&mesh_paths->hashwlock[hash_idx]); |
| 294 | |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 295 | err = -EEXIST; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 296 | hlist_for_each_entry(node, n, bucket, list) { |
| 297 | mpath = node->mpath; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 298 | if (mpath->sdata == sdata && memcmp(dst, mpath->dst, ETH_ALEN) == 0) |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 299 | goto err_exists; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | hlist_add_head_rcu(&new_node->list, bucket); |
| 303 | if (atomic_inc_return(&mesh_paths->entries) >= |
| 304 | mesh_paths->mean_chain_len * (mesh_paths->hash_mask + 1)) |
| 305 | grow = 1; |
| 306 | |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 307 | mesh_paths_generation++; |
| 308 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 309 | spin_unlock(&mesh_paths->hashwlock[hash_idx]); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 310 | read_unlock(&pathtbl_resize_lock); |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 311 | if (grow) { |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 312 | set_bit(MESH_WORK_GROW_MPATH_TABLE, &ifmsh->wrkq_flags); |
Johannes Berg | 64592c8 | 2010-06-10 10:21:31 +0200 | [diff] [blame] | 313 | ieee80211_queue_work(&local->hw, &sdata->work); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 314 | } |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 315 | return 0; |
| 316 | |
| 317 | err_exists: |
| 318 | spin_unlock(&mesh_paths->hashwlock[hash_idx]); |
| 319 | read_unlock(&pathtbl_resize_lock); |
| 320 | kfree(new_node); |
| 321 | err_node_alloc: |
| 322 | kfree(new_mpath); |
| 323 | err_path_alloc: |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 324 | atomic_dec(&sdata->u.mesh.mpaths); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 325 | return err; |
| 326 | } |
| 327 | |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 328 | void mesh_mpath_table_grow(void) |
| 329 | { |
| 330 | struct mesh_table *oldtbl, *newtbl; |
| 331 | |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame^] | 332 | newtbl = mesh_table_alloc(mesh_paths->size_order + 1); |
| 333 | if (!newtbl) |
| 334 | return; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 335 | write_lock(&pathtbl_resize_lock); |
| 336 | oldtbl = mesh_paths; |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame^] | 337 | if (mesh_table_grow(mesh_paths, newtbl) < 0) { |
| 338 | __mesh_table_free(newtbl); |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 339 | write_unlock(&pathtbl_resize_lock); |
| 340 | return; |
| 341 | } |
| 342 | rcu_assign_pointer(mesh_paths, newtbl); |
| 343 | write_unlock(&pathtbl_resize_lock); |
| 344 | |
| 345 | synchronize_rcu(); |
| 346 | mesh_table_free(oldtbl, false); |
| 347 | } |
| 348 | |
| 349 | void mesh_mpp_table_grow(void) |
| 350 | { |
| 351 | struct mesh_table *oldtbl, *newtbl; |
| 352 | |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame^] | 353 | newtbl = mesh_table_alloc(mpp_paths->size_order + 1); |
| 354 | if (!newtbl) |
| 355 | return; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 356 | write_lock(&pathtbl_resize_lock); |
| 357 | oldtbl = mpp_paths; |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame^] | 358 | if (mesh_table_grow(mpp_paths, newtbl) < 0) { |
| 359 | __mesh_table_free(newtbl); |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 360 | write_unlock(&pathtbl_resize_lock); |
| 361 | return; |
| 362 | } |
| 363 | rcu_assign_pointer(mpp_paths, newtbl); |
| 364 | write_unlock(&pathtbl_resize_lock); |
| 365 | |
| 366 | synchronize_rcu(); |
| 367 | mesh_table_free(oldtbl, false); |
| 368 | } |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 369 | |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 370 | int mpp_path_add(u8 *dst, u8 *mpp, struct ieee80211_sub_if_data *sdata) |
| 371 | { |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 372 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
| 373 | struct ieee80211_local *local = sdata->local; |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 374 | struct mesh_path *mpath, *new_mpath; |
| 375 | struct mpath_node *node, *new_node; |
| 376 | struct hlist_head *bucket; |
| 377 | struct hlist_node *n; |
| 378 | int grow = 0; |
| 379 | int err = 0; |
| 380 | u32 hash_idx; |
| 381 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 382 | if (memcmp(dst, sdata->vif.addr, ETH_ALEN) == 0) |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 383 | /* never add ourselves as neighbours */ |
| 384 | return -ENOTSUPP; |
| 385 | |
| 386 | if (is_multicast_ether_addr(dst)) |
| 387 | return -ENOTSUPP; |
| 388 | |
| 389 | err = -ENOMEM; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 390 | new_mpath = kzalloc(sizeof(struct mesh_path), GFP_ATOMIC); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 391 | if (!new_mpath) |
| 392 | goto err_path_alloc; |
| 393 | |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 394 | new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 395 | if (!new_node) |
| 396 | goto err_node_alloc; |
| 397 | |
| 398 | read_lock(&pathtbl_resize_lock); |
| 399 | memcpy(new_mpath->dst, dst, ETH_ALEN); |
| 400 | memcpy(new_mpath->mpp, mpp, ETH_ALEN); |
| 401 | new_mpath->sdata = sdata; |
| 402 | new_mpath->flags = 0; |
| 403 | skb_queue_head_init(&new_mpath->frame_queue); |
| 404 | new_node->mpath = new_mpath; |
| 405 | new_mpath->exp_time = jiffies; |
| 406 | spin_lock_init(&new_mpath->state_lock); |
| 407 | |
| 408 | hash_idx = mesh_table_hash(dst, sdata, mpp_paths); |
| 409 | bucket = &mpp_paths->hash_buckets[hash_idx]; |
| 410 | |
| 411 | spin_lock(&mpp_paths->hashwlock[hash_idx]); |
| 412 | |
| 413 | err = -EEXIST; |
| 414 | hlist_for_each_entry(node, n, bucket, list) { |
| 415 | mpath = node->mpath; |
| 416 | if (mpath->sdata == sdata && memcmp(dst, mpath->dst, ETH_ALEN) == 0) |
| 417 | goto err_exists; |
| 418 | } |
| 419 | |
| 420 | hlist_add_head_rcu(&new_node->list, bucket); |
| 421 | if (atomic_inc_return(&mpp_paths->entries) >= |
| 422 | mpp_paths->mean_chain_len * (mpp_paths->hash_mask + 1)) |
| 423 | grow = 1; |
| 424 | |
| 425 | spin_unlock(&mpp_paths->hashwlock[hash_idx]); |
| 426 | read_unlock(&pathtbl_resize_lock); |
| 427 | if (grow) { |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 428 | set_bit(MESH_WORK_GROW_MPP_TABLE, &ifmsh->wrkq_flags); |
Johannes Berg | 64592c8 | 2010-06-10 10:21:31 +0200 | [diff] [blame] | 429 | ieee80211_queue_work(&local->hw, &sdata->work); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 430 | } |
| 431 | return 0; |
| 432 | |
| 433 | err_exists: |
| 434 | spin_unlock(&mpp_paths->hashwlock[hash_idx]); |
| 435 | read_unlock(&pathtbl_resize_lock); |
| 436 | kfree(new_node); |
| 437 | err_node_alloc: |
| 438 | kfree(new_mpath); |
| 439 | err_path_alloc: |
| 440 | return err; |
| 441 | } |
| 442 | |
| 443 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 444 | /** |
| 445 | * mesh_plink_broken - deactivates paths and sends perr when a link breaks |
| 446 | * |
| 447 | * @sta: broken peer link |
| 448 | * |
| 449 | * This function must be called from the rate control algorithm if enough |
| 450 | * delivery errors suggest that a peer link is no longer usable. |
| 451 | */ |
| 452 | void mesh_plink_broken(struct sta_info *sta) |
| 453 | { |
Johannes Berg | 15ff636 | 2009-11-17 13:34:04 +0100 | [diff] [blame] | 454 | static const u8 bcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 455 | struct mesh_path *mpath; |
| 456 | struct mpath_node *node; |
| 457 | struct hlist_node *p; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 458 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 459 | int i; |
| 460 | |
| 461 | rcu_read_lock(); |
| 462 | for_each_mesh_entry(mesh_paths, p, node, i) { |
| 463 | mpath = node->mpath; |
| 464 | spin_lock_bh(&mpath->state_lock); |
| 465 | if (mpath->next_hop == sta && |
| 466 | mpath->flags & MESH_PATH_ACTIVE && |
| 467 | !(mpath->flags & MESH_PATH_FIXED)) { |
| 468 | mpath->flags &= ~MESH_PATH_ACTIVE; |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 469 | ++mpath->sn; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 470 | spin_unlock_bh(&mpath->state_lock); |
Javier Cardona | 45904f2 | 2010-12-03 09:20:40 +0100 | [diff] [blame] | 471 | mesh_path_error_tx(sdata->u.mesh.mshcfg.element_ttl, |
| 472 | mpath->dst, cpu_to_le32(mpath->sn), |
Rui Paulo | 9f13084 | 2009-11-19 15:49:10 +0000 | [diff] [blame] | 473 | cpu_to_le16(PERR_RCODE_DEST_UNREACH), |
Johannes Berg | 15ff636 | 2009-11-17 13:34:04 +0100 | [diff] [blame] | 474 | bcast, sdata); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 475 | } else |
| 476 | spin_unlock_bh(&mpath->state_lock); |
| 477 | } |
| 478 | rcu_read_unlock(); |
| 479 | } |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 480 | |
| 481 | /** |
| 482 | * mesh_path_flush_by_nexthop - Deletes mesh paths if their next hop matches |
| 483 | * |
| 484 | * @sta - mesh peer to match |
| 485 | * |
Luis Carlos Cobo | b4e08ea | 2008-02-29 15:46:08 -0800 | [diff] [blame] | 486 | * RCU notes: this function is called when a mesh plink transitions from |
| 487 | * PLINK_ESTAB to any other state, since PLINK_ESTAB state is the only one that |
| 488 | * allows path creation. This will happen before the sta can be freed (because |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 489 | * sta_info_destroy() calls this) so any reader in a rcu read block will be |
| 490 | * protected against the plink disappearing. |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 491 | */ |
| 492 | void mesh_path_flush_by_nexthop(struct sta_info *sta) |
| 493 | { |
| 494 | struct mesh_path *mpath; |
| 495 | struct mpath_node *node; |
| 496 | struct hlist_node *p; |
| 497 | int i; |
| 498 | |
| 499 | for_each_mesh_entry(mesh_paths, p, node, i) { |
| 500 | mpath = node->mpath; |
| 501 | if (mpath->next_hop == sta) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 502 | mesh_path_del(mpath->dst, mpath->sdata); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 503 | } |
| 504 | } |
| 505 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 506 | void mesh_path_flush(struct ieee80211_sub_if_data *sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 507 | { |
| 508 | struct mesh_path *mpath; |
| 509 | struct mpath_node *node; |
| 510 | struct hlist_node *p; |
| 511 | int i; |
| 512 | |
| 513 | for_each_mesh_entry(mesh_paths, p, node, i) { |
| 514 | mpath = node->mpath; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 515 | if (mpath->sdata == sdata) |
| 516 | mesh_path_del(mpath->dst, mpath->sdata); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 517 | } |
| 518 | } |
| 519 | |
| 520 | static void mesh_path_node_reclaim(struct rcu_head *rp) |
| 521 | { |
| 522 | struct mpath_node *node = container_of(rp, struct mpath_node, rcu); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 523 | struct ieee80211_sub_if_data *sdata = node->mpath->sdata; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 524 | |
Luis Carlos Cobo | 89a1ad6 | 2008-02-29 14:49:37 -0800 | [diff] [blame] | 525 | del_timer_sync(&node->mpath->timer); |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 526 | atomic_dec(&sdata->u.mesh.mpaths); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 527 | kfree(node->mpath); |
| 528 | kfree(node); |
| 529 | } |
| 530 | |
| 531 | /** |
| 532 | * mesh_path_del - delete a mesh path from the table |
| 533 | * |
| 534 | * @addr: dst address (ETH_ALEN length) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 535 | * @sdata: local subif |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 536 | * |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 537 | * Returns: 0 if successful |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 538 | */ |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 539 | int mesh_path_del(u8 *addr, struct ieee80211_sub_if_data *sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 540 | { |
| 541 | struct mesh_path *mpath; |
| 542 | struct mpath_node *node; |
| 543 | struct hlist_head *bucket; |
| 544 | struct hlist_node *n; |
| 545 | int hash_idx; |
| 546 | int err = 0; |
| 547 | |
| 548 | read_lock(&pathtbl_resize_lock); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 549 | hash_idx = mesh_table_hash(addr, sdata, mesh_paths); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 550 | bucket = &mesh_paths->hash_buckets[hash_idx]; |
| 551 | |
| 552 | spin_lock(&mesh_paths->hashwlock[hash_idx]); |
| 553 | hlist_for_each_entry(node, n, bucket, list) { |
| 554 | mpath = node->mpath; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 555 | if (mpath->sdata == sdata && |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 556 | memcmp(addr, mpath->dst, ETH_ALEN) == 0) { |
| 557 | spin_lock_bh(&mpath->state_lock); |
Luis Carlos Cobo | cfa22c7 | 2008-02-29 15:04:13 -0800 | [diff] [blame] | 558 | mpath->flags |= MESH_PATH_RESOLVING; |
| 559 | hlist_del_rcu(&node->list); |
| 560 | call_rcu(&node->rcu, mesh_path_node_reclaim); |
| 561 | atomic_dec(&mesh_paths->entries); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 562 | spin_unlock_bh(&mpath->state_lock); |
| 563 | goto enddel; |
| 564 | } |
| 565 | } |
| 566 | |
| 567 | err = -ENXIO; |
| 568 | enddel: |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 569 | mesh_paths_generation++; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 570 | spin_unlock(&mesh_paths->hashwlock[hash_idx]); |
| 571 | read_unlock(&pathtbl_resize_lock); |
| 572 | return err; |
| 573 | } |
| 574 | |
| 575 | /** |
| 576 | * mesh_path_tx_pending - sends pending frames in a mesh path queue |
| 577 | * |
| 578 | * @mpath: mesh path to activate |
| 579 | * |
| 580 | * Locking: the state_lock of the mpath structure must NOT be held when calling |
| 581 | * this function. |
| 582 | */ |
| 583 | void mesh_path_tx_pending(struct mesh_path *mpath) |
| 584 | { |
Javier Cardona | 249b405 | 2009-07-07 10:55:03 -0700 | [diff] [blame] | 585 | if (mpath->flags & MESH_PATH_ACTIVE) |
| 586 | ieee80211_add_pending_skbs(mpath->sdata->local, |
| 587 | &mpath->frame_queue); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | /** |
| 591 | * mesh_path_discard_frame - discard a frame whose path could not be resolved |
| 592 | * |
| 593 | * @skb: frame to discard |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 594 | * @sdata: network subif the frame was to be sent through |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 595 | * |
Javier Cardona | 35946a5 | 2009-07-13 17:00:10 -0700 | [diff] [blame] | 596 | * If the frame was being forwarded from another MP, a PERR frame will be sent |
| 597 | * to the precursor. The precursor's address (i.e. the previous hop) was saved |
| 598 | * in addr1 of the frame-to-be-forwarded, and would only be overwritten once |
| 599 | * the destination is successfully resolved. |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 600 | * |
| 601 | * Locking: the function must me called within a rcu_read_lock region |
| 602 | */ |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 603 | void mesh_path_discard_frame(struct sk_buff *skb, |
| 604 | struct ieee80211_sub_if_data *sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 605 | { |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 606 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 607 | struct mesh_path *mpath; |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 608 | u32 sn = 0; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 609 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 610 | if (memcmp(hdr->addr4, sdata->vif.addr, ETH_ALEN) != 0) { |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 611 | u8 *ra, *da; |
| 612 | |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 613 | da = hdr->addr3; |
Javier Cardona | 35946a5 | 2009-07-13 17:00:10 -0700 | [diff] [blame] | 614 | ra = hdr->addr1; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 615 | mpath = mesh_path_lookup(da, sdata); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 616 | if (mpath) |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 617 | sn = ++mpath->sn; |
Javier Cardona | 45904f2 | 2010-12-03 09:20:40 +0100 | [diff] [blame] | 618 | mesh_path_error_tx(sdata->u.mesh.mshcfg.element_ttl, skb->data, |
| 619 | cpu_to_le32(sn), |
Rui Paulo | 9f13084 | 2009-11-19 15:49:10 +0000 | [diff] [blame] | 620 | cpu_to_le16(PERR_RCODE_NO_ROUTE), ra, sdata); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | kfree_skb(skb); |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 624 | sdata->u.mesh.mshstats.dropped_frames_no_route++; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | /** |
| 628 | * mesh_path_flush_pending - free the pending queue of a mesh path |
| 629 | * |
| 630 | * @mpath: mesh path whose queue has to be freed |
| 631 | * |
| 632 | * Locking: the function must me called withing a rcu_read_lock region |
| 633 | */ |
| 634 | void mesh_path_flush_pending(struct mesh_path *mpath) |
| 635 | { |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 636 | struct sk_buff *skb; |
| 637 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 638 | while ((skb = skb_dequeue(&mpath->frame_queue)) && |
| 639 | (mpath->flags & MESH_PATH_ACTIVE)) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 640 | mesh_path_discard_frame(skb, mpath->sdata); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | /** |
| 644 | * mesh_path_fix_nexthop - force a specific next hop for a mesh path |
| 645 | * |
| 646 | * @mpath: the mesh path to modify |
| 647 | * @next_hop: the next hop to force |
| 648 | * |
| 649 | * Locking: this function must be called holding mpath->state_lock |
| 650 | */ |
| 651 | void mesh_path_fix_nexthop(struct mesh_path *mpath, struct sta_info *next_hop) |
| 652 | { |
| 653 | spin_lock_bh(&mpath->state_lock); |
| 654 | mesh_path_assign_nexthop(mpath, next_hop); |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 655 | mpath->sn = 0xffff; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 656 | mpath->metric = 0; |
| 657 | mpath->hop_count = 0; |
| 658 | mpath->exp_time = 0; |
| 659 | mpath->flags |= MESH_PATH_FIXED; |
| 660 | mesh_path_activate(mpath); |
| 661 | spin_unlock_bh(&mpath->state_lock); |
| 662 | mesh_path_tx_pending(mpath); |
| 663 | } |
| 664 | |
| 665 | static void mesh_path_node_free(struct hlist_node *p, bool free_leafs) |
| 666 | { |
| 667 | struct mesh_path *mpath; |
| 668 | struct mpath_node *node = hlist_entry(p, struct mpath_node, list); |
| 669 | mpath = node->mpath; |
| 670 | hlist_del_rcu(p); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 671 | if (free_leafs) |
| 672 | kfree(mpath); |
| 673 | kfree(node); |
| 674 | } |
| 675 | |
Pavel Emelyanov | 4caf86c | 2008-05-07 19:47:01 +0400 | [diff] [blame] | 676 | static int mesh_path_node_copy(struct hlist_node *p, struct mesh_table *newtbl) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 677 | { |
| 678 | struct mesh_path *mpath; |
| 679 | struct mpath_node *node, *new_node; |
| 680 | u32 hash_idx; |
| 681 | |
Pavel Emelyanov | 8566dc3 | 2008-05-07 19:51:51 +0400 | [diff] [blame] | 682 | new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC); |
Pavel Emelyanov | 00242c4 | 2008-05-07 19:48:14 +0400 | [diff] [blame] | 683 | if (new_node == NULL) |
| 684 | return -ENOMEM; |
| 685 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 686 | node = hlist_entry(p, struct mpath_node, list); |
| 687 | mpath = node->mpath; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 688 | new_node->mpath = mpath; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 689 | hash_idx = mesh_table_hash(mpath->dst, mpath->sdata, newtbl); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 690 | hlist_add_head(&new_node->list, |
| 691 | &newtbl->hash_buckets[hash_idx]); |
Pavel Emelyanov | 4caf86c | 2008-05-07 19:47:01 +0400 | [diff] [blame] | 692 | return 0; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 693 | } |
| 694 | |
| 695 | int mesh_pathtbl_init(void) |
| 696 | { |
| 697 | mesh_paths = mesh_table_alloc(INIT_PATHS_SIZE_ORDER); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 698 | if (!mesh_paths) |
| 699 | return -ENOMEM; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 700 | mesh_paths->free_node = &mesh_path_node_free; |
| 701 | mesh_paths->copy_node = &mesh_path_node_copy; |
| 702 | mesh_paths->mean_chain_len = MEAN_CHAIN_LEN; |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 703 | |
| 704 | mpp_paths = mesh_table_alloc(INIT_PATHS_SIZE_ORDER); |
| 705 | if (!mpp_paths) { |
| 706 | mesh_table_free(mesh_paths, true); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 707 | return -ENOMEM; |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 708 | } |
| 709 | mpp_paths->free_node = &mesh_path_node_free; |
| 710 | mpp_paths->copy_node = &mesh_path_node_copy; |
| 711 | mpp_paths->mean_chain_len = MEAN_CHAIN_LEN; |
| 712 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 713 | return 0; |
| 714 | } |
| 715 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 716 | void mesh_path_expire(struct ieee80211_sub_if_data *sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 717 | { |
| 718 | struct mesh_path *mpath; |
| 719 | struct mpath_node *node; |
| 720 | struct hlist_node *p; |
| 721 | int i; |
| 722 | |
| 723 | read_lock(&pathtbl_resize_lock); |
| 724 | for_each_mesh_entry(mesh_paths, p, node, i) { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 725 | if (node->mpath->sdata != sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 726 | continue; |
| 727 | mpath = node->mpath; |
| 728 | spin_lock_bh(&mpath->state_lock); |
| 729 | if ((!(mpath->flags & MESH_PATH_RESOLVING)) && |
| 730 | (!(mpath->flags & MESH_PATH_FIXED)) && |
| 731 | time_after(jiffies, |
| 732 | mpath->exp_time + MESH_PATH_EXPIRE)) { |
| 733 | spin_unlock_bh(&mpath->state_lock); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 734 | mesh_path_del(mpath->dst, mpath->sdata); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 735 | } else |
| 736 | spin_unlock_bh(&mpath->state_lock); |
| 737 | } |
| 738 | read_unlock(&pathtbl_resize_lock); |
| 739 | } |
| 740 | |
| 741 | void mesh_pathtbl_unregister(void) |
| 742 | { |
| 743 | mesh_table_free(mesh_paths, true); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 744 | mesh_table_free(mpp_paths, true); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 745 | } |