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> |
Javier Cardona | 4777be4 | 2011-09-07 17:49:52 -0700 | [diff] [blame] | 17 | #include "wme.h" |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 18 | #include "ieee80211_i.h" |
| 19 | #include "mesh.h" |
| 20 | |
Javier Cardona | 7646887 | 2011-08-09 16:45:04 -0700 | [diff] [blame] | 21 | #ifdef CONFIG_MAC80211_VERBOSE_MPATH_DEBUG |
| 22 | #define mpath_dbg(fmt, args...) printk(KERN_DEBUG fmt, ##args) |
| 23 | #else |
| 24 | #define mpath_dbg(fmt, args...) do { (void)(0); } while (0) |
| 25 | #endif |
| 26 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 27 | /* There will be initially 2^INIT_PATHS_SIZE_ORDER buckets */ |
| 28 | #define INIT_PATHS_SIZE_ORDER 2 |
| 29 | |
| 30 | /* Keep the mean chain length below this constant */ |
| 31 | #define MEAN_CHAIN_LEN 2 |
| 32 | |
| 33 | #define MPATH_EXPIRED(mpath) ((mpath->flags & MESH_PATH_ACTIVE) && \ |
| 34 | time_after(jiffies, mpath->exp_time) && \ |
| 35 | !(mpath->flags & MESH_PATH_FIXED)) |
| 36 | |
| 37 | struct mpath_node { |
| 38 | struct hlist_node list; |
| 39 | struct rcu_head rcu; |
| 40 | /* This indirection allows two different tables to point to the same |
| 41 | * mesh_path structure, useful when resizing |
| 42 | */ |
| 43 | struct mesh_path *mpath; |
| 44 | }; |
| 45 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 46 | static struct mesh_table __rcu *mesh_paths; |
| 47 | static struct mesh_table __rcu *mpp_paths; /* Store paths for MPP&MAP */ |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 48 | |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 49 | int mesh_paths_generation; |
Johannes Berg | 6b86bd6 | 2011-05-12 13:38:50 +0200 | [diff] [blame] | 50 | |
| 51 | /* This lock will have the grow table function as writer and add / delete nodes |
Javier Cardona | 239289e | 2011-08-29 13:23:09 -0700 | [diff] [blame] | 52 | * as readers. RCU provides sufficient protection only when reading the table |
| 53 | * (i.e. doing lookups). Adding or adding or removing nodes requires we take |
| 54 | * the read lock or we risk operating on an old table. The write lock is only |
| 55 | * needed when modifying the number of buckets a table. |
Johannes Berg | 6b86bd6 | 2011-05-12 13:38:50 +0200 | [diff] [blame] | 56 | */ |
| 57 | static DEFINE_RWLOCK(pathtbl_resize_lock); |
| 58 | |
| 59 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 60 | static inline struct mesh_table *resize_dereference_mesh_paths(void) |
| 61 | { |
| 62 | return rcu_dereference_protected(mesh_paths, |
| 63 | lockdep_is_held(&pathtbl_resize_lock)); |
| 64 | } |
| 65 | |
| 66 | static inline struct mesh_table *resize_dereference_mpp_paths(void) |
| 67 | { |
| 68 | return rcu_dereference_protected(mpp_paths, |
| 69 | lockdep_is_held(&pathtbl_resize_lock)); |
| 70 | } |
| 71 | |
| 72 | /* |
| 73 | * CAREFUL -- "tbl" must not be an expression, |
| 74 | * in particular not an rcu_dereference(), since |
| 75 | * it's used twice. So it is illegal to do |
| 76 | * for_each_mesh_entry(rcu_dereference(...), ...) |
| 77 | */ |
| 78 | #define for_each_mesh_entry(tbl, p, node, i) \ |
| 79 | for (i = 0; i <= tbl->hash_mask; i++) \ |
| 80 | hlist_for_each_entry_rcu(node, p, &tbl->hash_buckets[i], list) |
| 81 | |
| 82 | |
Johannes Berg | 6b86bd6 | 2011-05-12 13:38:50 +0200 | [diff] [blame] | 83 | static struct mesh_table *mesh_table_alloc(int size_order) |
| 84 | { |
| 85 | int i; |
| 86 | struct mesh_table *newtbl; |
| 87 | |
Javier Cardona | d676ff4 | 2011-05-17 16:13:34 -0700 | [diff] [blame] | 88 | newtbl = kmalloc(sizeof(struct mesh_table), GFP_ATOMIC); |
Johannes Berg | 6b86bd6 | 2011-05-12 13:38:50 +0200 | [diff] [blame] | 89 | if (!newtbl) |
| 90 | return NULL; |
| 91 | |
| 92 | newtbl->hash_buckets = kzalloc(sizeof(struct hlist_head) * |
Javier Cardona | d676ff4 | 2011-05-17 16:13:34 -0700 | [diff] [blame] | 93 | (1 << size_order), GFP_ATOMIC); |
Johannes Berg | 6b86bd6 | 2011-05-12 13:38:50 +0200 | [diff] [blame] | 94 | |
| 95 | if (!newtbl->hash_buckets) { |
| 96 | kfree(newtbl); |
| 97 | return NULL; |
| 98 | } |
| 99 | |
| 100 | newtbl->hashwlock = kmalloc(sizeof(spinlock_t) * |
Javier Cardona | d676ff4 | 2011-05-17 16:13:34 -0700 | [diff] [blame] | 101 | (1 << size_order), GFP_ATOMIC); |
Johannes Berg | 6b86bd6 | 2011-05-12 13:38:50 +0200 | [diff] [blame] | 102 | if (!newtbl->hashwlock) { |
| 103 | kfree(newtbl->hash_buckets); |
| 104 | kfree(newtbl); |
| 105 | return NULL; |
| 106 | } |
| 107 | |
| 108 | newtbl->size_order = size_order; |
| 109 | newtbl->hash_mask = (1 << size_order) - 1; |
| 110 | atomic_set(&newtbl->entries, 0); |
| 111 | get_random_bytes(&newtbl->hash_rnd, |
| 112 | sizeof(newtbl->hash_rnd)); |
| 113 | for (i = 0; i <= newtbl->hash_mask; i++) |
| 114 | spin_lock_init(&newtbl->hashwlock[i]); |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 115 | spin_lock_init(&newtbl->gates_lock); |
Johannes Berg | 6b86bd6 | 2011-05-12 13:38:50 +0200 | [diff] [blame] | 116 | |
| 117 | return newtbl; |
| 118 | } |
| 119 | |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 120 | static void __mesh_table_free(struct mesh_table *tbl) |
| 121 | { |
| 122 | kfree(tbl->hash_buckets); |
| 123 | kfree(tbl->hashwlock); |
| 124 | kfree(tbl); |
| 125 | } |
| 126 | |
Johannes Berg | 6b86bd6 | 2011-05-12 13:38:50 +0200 | [diff] [blame] | 127 | static void mesh_table_free(struct mesh_table *tbl, bool free_leafs) |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 128 | { |
| 129 | struct hlist_head *mesh_hash; |
| 130 | struct hlist_node *p, *q; |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 131 | struct mpath_node *gate; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 132 | int i; |
| 133 | |
| 134 | mesh_hash = tbl->hash_buckets; |
| 135 | for (i = 0; i <= tbl->hash_mask; i++) { |
Javier Cardona | 9b84b808 | 2011-05-03 16:57:16 -0700 | [diff] [blame] | 136 | spin_lock_bh(&tbl->hashwlock[i]); |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 137 | hlist_for_each_safe(p, q, &mesh_hash[i]) { |
| 138 | tbl->free_node(p, free_leafs); |
| 139 | atomic_dec(&tbl->entries); |
| 140 | } |
Javier Cardona | 9b84b808 | 2011-05-03 16:57:16 -0700 | [diff] [blame] | 141 | spin_unlock_bh(&tbl->hashwlock[i]); |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 142 | } |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 143 | if (free_leafs) { |
| 144 | spin_lock_bh(&tbl->gates_lock); |
| 145 | hlist_for_each_entry_safe(gate, p, q, |
| 146 | tbl->known_gates, list) { |
| 147 | hlist_del(&gate->list); |
| 148 | kfree(gate); |
| 149 | } |
| 150 | kfree(tbl->known_gates); |
| 151 | spin_unlock_bh(&tbl->gates_lock); |
| 152 | } |
| 153 | |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 154 | __mesh_table_free(tbl); |
| 155 | } |
| 156 | |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame] | 157 | static int mesh_table_grow(struct mesh_table *oldtbl, |
Johannes Berg | 6b86bd6 | 2011-05-12 13:38:50 +0200 | [diff] [blame] | 158 | struct mesh_table *newtbl) |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 159 | { |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 160 | struct hlist_head *oldhash; |
| 161 | struct hlist_node *p, *q; |
| 162 | int i; |
| 163 | |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame] | 164 | if (atomic_read(&oldtbl->entries) |
| 165 | < oldtbl->mean_chain_len * (oldtbl->hash_mask + 1)) |
| 166 | return -EAGAIN; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 167 | |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame] | 168 | newtbl->free_node = oldtbl->free_node; |
| 169 | newtbl->mean_chain_len = oldtbl->mean_chain_len; |
| 170 | newtbl->copy_node = oldtbl->copy_node; |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 171 | newtbl->known_gates = oldtbl->known_gates; |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame] | 172 | atomic_set(&newtbl->entries, atomic_read(&oldtbl->entries)); |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 173 | |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame] | 174 | oldhash = oldtbl->hash_buckets; |
| 175 | for (i = 0; i <= oldtbl->hash_mask; i++) |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 176 | hlist_for_each(p, &oldhash[i]) |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame] | 177 | if (oldtbl->copy_node(p, newtbl) < 0) |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 178 | goto errcopy; |
| 179 | |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame] | 180 | return 0; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 181 | |
| 182 | errcopy: |
| 183 | for (i = 0; i <= newtbl->hash_mask; i++) { |
| 184 | hlist_for_each_safe(p, q, &newtbl->hash_buckets[i]) |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame] | 185 | oldtbl->free_node(p, 0); |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 186 | } |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame] | 187 | return -ENOMEM; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 188 | } |
| 189 | |
Johannes Berg | 6b86bd6 | 2011-05-12 13:38:50 +0200 | [diff] [blame] | 190 | static u32 mesh_table_hash(u8 *addr, struct ieee80211_sub_if_data *sdata, |
| 191 | struct mesh_table *tbl) |
| 192 | { |
| 193 | /* Use last four bytes of hw addr and interface index as hash index */ |
| 194 | return jhash_2words(*(u32 *)(addr+2), sdata->dev->ifindex, tbl->hash_rnd) |
| 195 | & tbl->hash_mask; |
| 196 | } |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 197 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 198 | |
| 199 | /** |
| 200 | * |
| 201 | * mesh_path_assign_nexthop - update mesh path next hop |
| 202 | * |
| 203 | * @mpath: mesh path to update |
| 204 | * @sta: next hop to assign |
| 205 | * |
| 206 | * Locking: mpath->state_lock must be held when calling this function |
| 207 | */ |
| 208 | void mesh_path_assign_nexthop(struct mesh_path *mpath, struct sta_info *sta) |
| 209 | { |
Javier Cardona | 10c836d | 2009-07-09 14:42:16 -0700 | [diff] [blame] | 210 | struct sk_buff *skb; |
| 211 | struct ieee80211_hdr *hdr; |
| 212 | struct sk_buff_head tmpq; |
| 213 | unsigned long flags; |
| 214 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 215 | rcu_assign_pointer(mpath->next_hop, sta); |
Javier Cardona | 10c836d | 2009-07-09 14:42:16 -0700 | [diff] [blame] | 216 | |
| 217 | __skb_queue_head_init(&tmpq); |
| 218 | |
| 219 | spin_lock_irqsave(&mpath->frame_queue.lock, flags); |
| 220 | |
| 221 | while ((skb = __skb_dequeue(&mpath->frame_queue)) != NULL) { |
| 222 | hdr = (struct ieee80211_hdr *) skb->data; |
| 223 | memcpy(hdr->addr1, sta->sta.addr, ETH_ALEN); |
| 224 | __skb_queue_tail(&tmpq, skb); |
| 225 | } |
| 226 | |
| 227 | skb_queue_splice(&tmpq, &mpath->frame_queue); |
| 228 | spin_unlock_irqrestore(&mpath->frame_queue.lock, flags); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 229 | } |
| 230 | |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 231 | static void prepare_for_gate(struct sk_buff *skb, char *dst_addr, |
| 232 | struct mesh_path *gate_mpath) |
| 233 | { |
| 234 | struct ieee80211_hdr *hdr; |
| 235 | struct ieee80211s_hdr *mshdr; |
| 236 | int mesh_hdrlen, hdrlen; |
| 237 | char *next_hop; |
| 238 | |
| 239 | hdr = (struct ieee80211_hdr *) skb->data; |
| 240 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
| 241 | mshdr = (struct ieee80211s_hdr *) (skb->data + hdrlen); |
| 242 | |
| 243 | if (!(mshdr->flags & MESH_FLAGS_AE)) { |
| 244 | /* size of the fixed part of the mesh header */ |
| 245 | mesh_hdrlen = 6; |
| 246 | |
| 247 | /* make room for the two extended addresses */ |
| 248 | skb_push(skb, 2 * ETH_ALEN); |
| 249 | memmove(skb->data, hdr, hdrlen + mesh_hdrlen); |
| 250 | |
| 251 | hdr = (struct ieee80211_hdr *) skb->data; |
| 252 | |
| 253 | /* we preserve the previous mesh header and only add |
| 254 | * the new addreses */ |
| 255 | mshdr = (struct ieee80211s_hdr *) (skb->data + hdrlen); |
| 256 | mshdr->flags = MESH_FLAGS_AE_A5_A6; |
| 257 | memcpy(mshdr->eaddr1, hdr->addr3, ETH_ALEN); |
| 258 | memcpy(mshdr->eaddr2, hdr->addr4, ETH_ALEN); |
| 259 | } |
| 260 | |
| 261 | /* update next hop */ |
| 262 | hdr = (struct ieee80211_hdr *) skb->data; |
| 263 | rcu_read_lock(); |
| 264 | next_hop = rcu_dereference(gate_mpath->next_hop)->sta.addr; |
| 265 | memcpy(hdr->addr1, next_hop, ETH_ALEN); |
| 266 | rcu_read_unlock(); |
| 267 | memcpy(hdr->addr3, dst_addr, ETH_ALEN); |
| 268 | } |
| 269 | |
| 270 | /** |
| 271 | * |
| 272 | * mesh_path_move_to_queue - Move or copy frames from one mpath queue to another |
| 273 | * |
| 274 | * This function is used to transfer or copy frames from an unresolved mpath to |
| 275 | * a gate mpath. The function also adds the Address Extension field and |
| 276 | * updates the next hop. |
| 277 | * |
| 278 | * If a frame already has an Address Extension field, only the next hop and |
| 279 | * destination addresses are updated. |
| 280 | * |
| 281 | * The gate mpath must be an active mpath with a valid mpath->next_hop. |
| 282 | * |
| 283 | * @mpath: An active mpath the frames will be sent to (i.e. the gate) |
| 284 | * @from_mpath: The failed mpath |
| 285 | * @copy: When true, copy all the frames to the new mpath queue. When false, |
| 286 | * move them. |
| 287 | */ |
| 288 | static void mesh_path_move_to_queue(struct mesh_path *gate_mpath, |
| 289 | struct mesh_path *from_mpath, |
| 290 | bool copy) |
| 291 | { |
Thomas Pedersen | c6133661 | 2011-08-25 10:36:14 -0700 | [diff] [blame] | 292 | struct sk_buff *skb, *cp_skb = NULL; |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 293 | struct sk_buff_head gateq, failq; |
| 294 | unsigned long flags; |
| 295 | int num_skbs; |
| 296 | |
| 297 | BUG_ON(gate_mpath == from_mpath); |
| 298 | BUG_ON(!gate_mpath->next_hop); |
| 299 | |
| 300 | __skb_queue_head_init(&gateq); |
| 301 | __skb_queue_head_init(&failq); |
| 302 | |
| 303 | spin_lock_irqsave(&from_mpath->frame_queue.lock, flags); |
| 304 | skb_queue_splice_init(&from_mpath->frame_queue, &failq); |
| 305 | spin_unlock_irqrestore(&from_mpath->frame_queue.lock, flags); |
| 306 | |
| 307 | num_skbs = skb_queue_len(&failq); |
| 308 | |
| 309 | while (num_skbs--) { |
| 310 | skb = __skb_dequeue(&failq); |
John W. Linville | 817a53d | 2011-08-24 15:12:41 -0400 | [diff] [blame] | 311 | if (copy) { |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 312 | cp_skb = skb_copy(skb, GFP_ATOMIC); |
John W. Linville | 817a53d | 2011-08-24 15:12:41 -0400 | [diff] [blame] | 313 | if (cp_skb) |
| 314 | __skb_queue_tail(&failq, cp_skb); |
| 315 | } |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 316 | |
| 317 | prepare_for_gate(skb, gate_mpath->dst, gate_mpath); |
| 318 | __skb_queue_tail(&gateq, skb); |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | spin_lock_irqsave(&gate_mpath->frame_queue.lock, flags); |
| 322 | skb_queue_splice(&gateq, &gate_mpath->frame_queue); |
| 323 | mpath_dbg("Mpath queue for gate %pM has %d frames\n", |
| 324 | gate_mpath->dst, |
| 325 | skb_queue_len(&gate_mpath->frame_queue)); |
| 326 | spin_unlock_irqrestore(&gate_mpath->frame_queue.lock, flags); |
| 327 | |
| 328 | if (!copy) |
| 329 | return; |
| 330 | |
| 331 | spin_lock_irqsave(&from_mpath->frame_queue.lock, flags); |
| 332 | skb_queue_splice(&failq, &from_mpath->frame_queue); |
| 333 | spin_unlock_irqrestore(&from_mpath->frame_queue.lock, flags); |
| 334 | } |
| 335 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 336 | |
Javier Cardona | 239289e | 2011-08-29 13:23:09 -0700 | [diff] [blame] | 337 | static struct mesh_path *path_lookup(struct mesh_table *tbl, u8 *dst, |
| 338 | struct ieee80211_sub_if_data *sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 339 | { |
| 340 | struct mesh_path *mpath; |
| 341 | struct hlist_node *n; |
| 342 | struct hlist_head *bucket; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 343 | struct mpath_node *node; |
| 344 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 345 | bucket = &tbl->hash_buckets[mesh_table_hash(dst, sdata, tbl)]; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 346 | hlist_for_each_entry_rcu(node, n, bucket, list) { |
| 347 | mpath = node->mpath; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 348 | if (mpath->sdata == sdata && |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 349 | memcmp(dst, mpath->dst, ETH_ALEN) == 0) { |
| 350 | if (MPATH_EXPIRED(mpath)) { |
| 351 | spin_lock_bh(&mpath->state_lock); |
Javier Cardona | ad99d14 | 2011-08-29 13:23:06 -0700 | [diff] [blame] | 352 | mpath->flags &= ~MESH_PATH_ACTIVE; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 353 | spin_unlock_bh(&mpath->state_lock); |
| 354 | } |
| 355 | return mpath; |
| 356 | } |
| 357 | } |
| 358 | return NULL; |
| 359 | } |
| 360 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 361 | /** |
| 362 | * mesh_path_lookup - look up a path in the mesh path table |
| 363 | * @dst: hardware address (ETH_ALEN length) of destination |
| 364 | * @sdata: local subif |
| 365 | * |
| 366 | * Returns: pointer to the mesh path structure, or NULL if not found |
| 367 | * |
| 368 | * Locking: must be called within a read rcu section. |
| 369 | */ |
| 370 | struct mesh_path *mesh_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata) |
| 371 | { |
Javier Cardona | 239289e | 2011-08-29 13:23:09 -0700 | [diff] [blame] | 372 | return path_lookup(rcu_dereference(mesh_paths), dst, sdata); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 373 | } |
| 374 | |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 375 | struct mesh_path *mpp_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata) |
| 376 | { |
Javier Cardona | 239289e | 2011-08-29 13:23:09 -0700 | [diff] [blame] | 377 | return path_lookup(rcu_dereference(mpp_paths), dst, sdata); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 381 | /** |
| 382 | * mesh_path_lookup_by_idx - look up a path in the mesh path table by its index |
| 383 | * @idx: index |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 384 | * @sdata: local subif, or NULL for all entries |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 385 | * |
| 386 | * Returns: pointer to the mesh path structure, or NULL if not found. |
| 387 | * |
| 388 | * Locking: must be called within a read rcu section. |
| 389 | */ |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 390 | 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] | 391 | { |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 392 | struct mesh_table *tbl = rcu_dereference(mesh_paths); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 393 | struct mpath_node *node; |
| 394 | struct hlist_node *p; |
| 395 | int i; |
| 396 | int j = 0; |
| 397 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 398 | for_each_mesh_entry(tbl, p, node, i) { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 399 | if (sdata && node->mpath->sdata != sdata) |
Luis Carlos Cobo | 2a8ca29 | 2008-02-29 17:51:25 -0800 | [diff] [blame] | 400 | continue; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 401 | if (j++ == idx) { |
| 402 | if (MPATH_EXPIRED(node->mpath)) { |
| 403 | spin_lock_bh(&node->mpath->state_lock); |
Javier Cardona | ad99d14 | 2011-08-29 13:23:06 -0700 | [diff] [blame] | 404 | node->mpath->flags &= ~MESH_PATH_ACTIVE; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 405 | spin_unlock_bh(&node->mpath->state_lock); |
| 406 | } |
| 407 | return node->mpath; |
| 408 | } |
Luis Carlos Cobo | 2a8ca29 | 2008-02-29 17:51:25 -0800 | [diff] [blame] | 409 | } |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 410 | |
| 411 | return NULL; |
| 412 | } |
| 413 | |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 414 | static void mesh_gate_node_reclaim(struct rcu_head *rp) |
| 415 | { |
| 416 | struct mpath_node *node = container_of(rp, struct mpath_node, rcu); |
| 417 | kfree(node); |
| 418 | } |
| 419 | |
| 420 | /** |
Johannes Berg | 30be52e | 2011-11-21 11:23:50 +0100 | [diff] [blame^] | 421 | * mesh_path_add_gate - add the given mpath to a mesh gate to our path table |
| 422 | * @mpath: gate path to add to table |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 423 | */ |
Johannes Berg | 30be52e | 2011-11-21 11:23:50 +0100 | [diff] [blame^] | 424 | int mesh_path_add_gate(struct mesh_path *mpath) |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 425 | { |
Johannes Berg | 30be52e | 2011-11-21 11:23:50 +0100 | [diff] [blame^] | 426 | struct mesh_table *tbl; |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 427 | struct mpath_node *gate, *new_gate; |
| 428 | struct hlist_node *n; |
| 429 | int err; |
| 430 | |
| 431 | rcu_read_lock(); |
Johannes Berg | 30be52e | 2011-11-21 11:23:50 +0100 | [diff] [blame^] | 432 | tbl = rcu_dereference(mesh_paths); |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 433 | |
| 434 | hlist_for_each_entry_rcu(gate, n, tbl->known_gates, list) |
| 435 | if (gate->mpath == mpath) { |
| 436 | err = -EEXIST; |
| 437 | goto err_rcu; |
| 438 | } |
| 439 | |
| 440 | new_gate = kzalloc(sizeof(struct mpath_node), GFP_ATOMIC); |
| 441 | if (!new_gate) { |
| 442 | err = -ENOMEM; |
| 443 | goto err_rcu; |
| 444 | } |
| 445 | |
| 446 | mpath->is_gate = true; |
| 447 | mpath->sdata->u.mesh.num_gates++; |
| 448 | new_gate->mpath = mpath; |
| 449 | spin_lock_bh(&tbl->gates_lock); |
| 450 | hlist_add_head_rcu(&new_gate->list, tbl->known_gates); |
| 451 | spin_unlock_bh(&tbl->gates_lock); |
| 452 | rcu_read_unlock(); |
| 453 | mpath_dbg("Mesh path (%s): Recorded new gate: %pM. %d known gates\n", |
| 454 | mpath->sdata->name, mpath->dst, |
| 455 | mpath->sdata->u.mesh.num_gates); |
| 456 | return 0; |
| 457 | err_rcu: |
| 458 | rcu_read_unlock(); |
| 459 | return err; |
| 460 | } |
| 461 | |
| 462 | /** |
| 463 | * mesh_gate_del - remove a mesh gate from the list of known gates |
| 464 | * @tbl: table which holds our list of known gates |
| 465 | * @mpath: gate mpath |
| 466 | * |
| 467 | * Returns: 0 on success |
| 468 | * |
| 469 | * Locking: must be called inside rcu_read_lock() section |
| 470 | */ |
| 471 | static int mesh_gate_del(struct mesh_table *tbl, struct mesh_path *mpath) |
| 472 | { |
| 473 | struct mpath_node *gate; |
| 474 | struct hlist_node *p, *q; |
| 475 | |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 476 | hlist_for_each_entry_safe(gate, p, q, tbl->known_gates, list) |
| 477 | if (gate->mpath == mpath) { |
| 478 | spin_lock_bh(&tbl->gates_lock); |
| 479 | hlist_del_rcu(&gate->list); |
| 480 | call_rcu(&gate->rcu, mesh_gate_node_reclaim); |
| 481 | spin_unlock_bh(&tbl->gates_lock); |
| 482 | mpath->sdata->u.mesh.num_gates--; |
| 483 | mpath->is_gate = false; |
| 484 | mpath_dbg("Mesh path (%s): Deleted gate: %pM. " |
| 485 | "%d known gates\n", mpath->sdata->name, |
| 486 | mpath->dst, mpath->sdata->u.mesh.num_gates); |
| 487 | break; |
| 488 | } |
| 489 | |
| 490 | return 0; |
| 491 | } |
| 492 | |
| 493 | /** |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 494 | * mesh_gate_num - number of gates known to this interface |
| 495 | * @sdata: subif data |
| 496 | */ |
| 497 | int mesh_gate_num(struct ieee80211_sub_if_data *sdata) |
| 498 | { |
| 499 | return sdata->u.mesh.num_gates; |
| 500 | } |
| 501 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 502 | /** |
| 503 | * mesh_path_add - allocate and add a new path to the mesh path table |
| 504 | * @addr: destination address of the path (ETH_ALEN length) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 505 | * @sdata: local subif |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 506 | * |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 507 | * Returns: 0 on success |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 508 | * |
| 509 | * State: the initial state of the new path is set to 0 |
| 510 | */ |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 511 | 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] | 512 | { |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 513 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
| 514 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 515 | struct mesh_table *tbl; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 516 | struct mesh_path *mpath, *new_mpath; |
| 517 | struct mpath_node *node, *new_node; |
| 518 | struct hlist_head *bucket; |
| 519 | struct hlist_node *n; |
| 520 | int grow = 0; |
| 521 | int err = 0; |
| 522 | u32 hash_idx; |
| 523 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 524 | if (memcmp(dst, sdata->vif.addr, ETH_ALEN) == 0) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 525 | /* never add ourselves as neighbours */ |
| 526 | return -ENOTSUPP; |
| 527 | |
| 528 | if (is_multicast_ether_addr(dst)) |
| 529 | return -ENOTSUPP; |
| 530 | |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 531 | 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] | 532 | return -ENOSPC; |
| 533 | |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 534 | err = -ENOMEM; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 535 | new_mpath = kzalloc(sizeof(struct mesh_path), GFP_ATOMIC); |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 536 | if (!new_mpath) |
| 537 | goto err_path_alloc; |
| 538 | |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 539 | new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC); |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 540 | if (!new_node) |
| 541 | goto err_node_alloc; |
Pavel Emelyanov | f84e71a | 2008-05-06 18:46:36 +0400 | [diff] [blame] | 542 | |
Javier Cardona | 9b84b808 | 2011-05-03 16:57:16 -0700 | [diff] [blame] | 543 | read_lock_bh(&pathtbl_resize_lock); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 544 | memcpy(new_mpath->dst, dst, ETH_ALEN); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 545 | new_mpath->sdata = sdata; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 546 | new_mpath->flags = 0; |
| 547 | skb_queue_head_init(&new_mpath->frame_queue); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 548 | new_node->mpath = new_mpath; |
| 549 | new_mpath->timer.data = (unsigned long) new_mpath; |
| 550 | new_mpath->timer.function = mesh_path_timer; |
| 551 | new_mpath->exp_time = jiffies; |
| 552 | spin_lock_init(&new_mpath->state_lock); |
| 553 | init_timer(&new_mpath->timer); |
| 554 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 555 | tbl = resize_dereference_mesh_paths(); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 556 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 557 | hash_idx = mesh_table_hash(dst, sdata, tbl); |
| 558 | bucket = &tbl->hash_buckets[hash_idx]; |
| 559 | |
| 560 | spin_lock_bh(&tbl->hashwlock[hash_idx]); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 561 | |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 562 | err = -EEXIST; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 563 | hlist_for_each_entry(node, n, bucket, list) { |
| 564 | mpath = node->mpath; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 565 | if (mpath->sdata == sdata && memcmp(dst, mpath->dst, ETH_ALEN) == 0) |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 566 | goto err_exists; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | hlist_add_head_rcu(&new_node->list, bucket); |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 570 | if (atomic_inc_return(&tbl->entries) >= |
| 571 | tbl->mean_chain_len * (tbl->hash_mask + 1)) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 572 | grow = 1; |
| 573 | |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 574 | mesh_paths_generation++; |
| 575 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 576 | spin_unlock_bh(&tbl->hashwlock[hash_idx]); |
Javier Cardona | 9b84b808 | 2011-05-03 16:57:16 -0700 | [diff] [blame] | 577 | read_unlock_bh(&pathtbl_resize_lock); |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 578 | if (grow) { |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 579 | set_bit(MESH_WORK_GROW_MPATH_TABLE, &ifmsh->wrkq_flags); |
Johannes Berg | 64592c8 | 2010-06-10 10:21:31 +0200 | [diff] [blame] | 580 | ieee80211_queue_work(&local->hw, &sdata->work); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 581 | } |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 582 | return 0; |
| 583 | |
| 584 | err_exists: |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 585 | spin_unlock_bh(&tbl->hashwlock[hash_idx]); |
Javier Cardona | 9b84b808 | 2011-05-03 16:57:16 -0700 | [diff] [blame] | 586 | read_unlock_bh(&pathtbl_resize_lock); |
Pavel Emelyanov | 402d775 | 2008-05-06 18:53:43 +0400 | [diff] [blame] | 587 | kfree(new_node); |
| 588 | err_node_alloc: |
| 589 | kfree(new_mpath); |
| 590 | err_path_alloc: |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 591 | atomic_dec(&sdata->u.mesh.mpaths); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 592 | return err; |
| 593 | } |
| 594 | |
Johannes Berg | 1928eca | 2011-05-14 11:00:52 +0200 | [diff] [blame] | 595 | static void mesh_table_free_rcu(struct rcu_head *rcu) |
| 596 | { |
| 597 | struct mesh_table *tbl = container_of(rcu, struct mesh_table, rcu_head); |
| 598 | |
| 599 | mesh_table_free(tbl, false); |
| 600 | } |
| 601 | |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 602 | void mesh_mpath_table_grow(void) |
| 603 | { |
| 604 | struct mesh_table *oldtbl, *newtbl; |
| 605 | |
Javier Cardona | 9b84b808 | 2011-05-03 16:57:16 -0700 | [diff] [blame] | 606 | write_lock_bh(&pathtbl_resize_lock); |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 607 | oldtbl = resize_dereference_mesh_paths(); |
| 608 | newtbl = mesh_table_alloc(oldtbl->size_order + 1); |
Johannes Berg | 1928eca | 2011-05-14 11:00:52 +0200 | [diff] [blame] | 609 | if (!newtbl) |
| 610 | goto out; |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 611 | if (mesh_table_grow(oldtbl, newtbl) < 0) { |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame] | 612 | __mesh_table_free(newtbl); |
Johannes Berg | 1928eca | 2011-05-14 11:00:52 +0200 | [diff] [blame] | 613 | goto out; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 614 | } |
| 615 | rcu_assign_pointer(mesh_paths, newtbl); |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 616 | |
Johannes Berg | 1928eca | 2011-05-14 11:00:52 +0200 | [diff] [blame] | 617 | call_rcu(&oldtbl->rcu_head, mesh_table_free_rcu); |
| 618 | |
| 619 | out: |
| 620 | write_unlock_bh(&pathtbl_resize_lock); |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | void mesh_mpp_table_grow(void) |
| 624 | { |
| 625 | struct mesh_table *oldtbl, *newtbl; |
| 626 | |
Javier Cardona | 9b84b808 | 2011-05-03 16:57:16 -0700 | [diff] [blame] | 627 | write_lock_bh(&pathtbl_resize_lock); |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 628 | oldtbl = resize_dereference_mpp_paths(); |
| 629 | newtbl = mesh_table_alloc(oldtbl->size_order + 1); |
Johannes Berg | 1928eca | 2011-05-14 11:00:52 +0200 | [diff] [blame] | 630 | if (!newtbl) |
| 631 | goto out; |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 632 | if (mesh_table_grow(oldtbl, newtbl) < 0) { |
cozybit Inc | a3e6b12 | 2011-04-13 11:10:28 -0700 | [diff] [blame] | 633 | __mesh_table_free(newtbl); |
Johannes Berg | 1928eca | 2011-05-14 11:00:52 +0200 | [diff] [blame] | 634 | goto out; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 635 | } |
| 636 | rcu_assign_pointer(mpp_paths, newtbl); |
Johannes Berg | 1928eca | 2011-05-14 11:00:52 +0200 | [diff] [blame] | 637 | call_rcu(&oldtbl->rcu_head, mesh_table_free_rcu); |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 638 | |
Johannes Berg | 1928eca | 2011-05-14 11:00:52 +0200 | [diff] [blame] | 639 | out: |
| 640 | write_unlock_bh(&pathtbl_resize_lock); |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 641 | } |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 642 | |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 643 | int mpp_path_add(u8 *dst, u8 *mpp, struct ieee80211_sub_if_data *sdata) |
| 644 | { |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 645 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
| 646 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 647 | struct mesh_table *tbl; |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 648 | struct mesh_path *mpath, *new_mpath; |
| 649 | struct mpath_node *node, *new_node; |
| 650 | struct hlist_head *bucket; |
| 651 | struct hlist_node *n; |
| 652 | int grow = 0; |
| 653 | int err = 0; |
| 654 | u32 hash_idx; |
| 655 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 656 | if (memcmp(dst, sdata->vif.addr, ETH_ALEN) == 0) |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 657 | /* never add ourselves as neighbours */ |
| 658 | return -ENOTSUPP; |
| 659 | |
| 660 | if (is_multicast_ether_addr(dst)) |
| 661 | return -ENOTSUPP; |
| 662 | |
| 663 | err = -ENOMEM; |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 664 | new_mpath = kzalloc(sizeof(struct mesh_path), GFP_ATOMIC); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 665 | if (!new_mpath) |
| 666 | goto err_path_alloc; |
| 667 | |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 668 | new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 669 | if (!new_node) |
| 670 | goto err_node_alloc; |
| 671 | |
Javier Cardona | 9b84b808 | 2011-05-03 16:57:16 -0700 | [diff] [blame] | 672 | read_lock_bh(&pathtbl_resize_lock); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 673 | memcpy(new_mpath->dst, dst, ETH_ALEN); |
| 674 | memcpy(new_mpath->mpp, mpp, ETH_ALEN); |
| 675 | new_mpath->sdata = sdata; |
| 676 | new_mpath->flags = 0; |
| 677 | skb_queue_head_init(&new_mpath->frame_queue); |
| 678 | new_node->mpath = new_mpath; |
Thomas Pedersen | c6133661 | 2011-08-25 10:36:14 -0700 | [diff] [blame] | 679 | init_timer(&new_mpath->timer); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 680 | new_mpath->exp_time = jiffies; |
| 681 | spin_lock_init(&new_mpath->state_lock); |
| 682 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 683 | tbl = resize_dereference_mpp_paths(); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 684 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 685 | hash_idx = mesh_table_hash(dst, sdata, tbl); |
| 686 | bucket = &tbl->hash_buckets[hash_idx]; |
| 687 | |
| 688 | spin_lock_bh(&tbl->hashwlock[hash_idx]); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 689 | |
| 690 | err = -EEXIST; |
| 691 | hlist_for_each_entry(node, n, bucket, list) { |
| 692 | mpath = node->mpath; |
| 693 | if (mpath->sdata == sdata && memcmp(dst, mpath->dst, ETH_ALEN) == 0) |
| 694 | goto err_exists; |
| 695 | } |
| 696 | |
| 697 | hlist_add_head_rcu(&new_node->list, bucket); |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 698 | if (atomic_inc_return(&tbl->entries) >= |
| 699 | tbl->mean_chain_len * (tbl->hash_mask + 1)) |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 700 | grow = 1; |
| 701 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 702 | spin_unlock_bh(&tbl->hashwlock[hash_idx]); |
Javier Cardona | 9b84b808 | 2011-05-03 16:57:16 -0700 | [diff] [blame] | 703 | read_unlock_bh(&pathtbl_resize_lock); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 704 | if (grow) { |
Javier Cardona | 1888923 | 2009-08-10 12:15:52 -0700 | [diff] [blame] | 705 | set_bit(MESH_WORK_GROW_MPP_TABLE, &ifmsh->wrkq_flags); |
Johannes Berg | 64592c8 | 2010-06-10 10:21:31 +0200 | [diff] [blame] | 706 | ieee80211_queue_work(&local->hw, &sdata->work); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 707 | } |
| 708 | return 0; |
| 709 | |
| 710 | err_exists: |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 711 | spin_unlock_bh(&tbl->hashwlock[hash_idx]); |
Javier Cardona | 9b84b808 | 2011-05-03 16:57:16 -0700 | [diff] [blame] | 712 | read_unlock_bh(&pathtbl_resize_lock); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 713 | kfree(new_node); |
| 714 | err_node_alloc: |
| 715 | kfree(new_mpath); |
| 716 | err_path_alloc: |
| 717 | return err; |
| 718 | } |
| 719 | |
| 720 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 721 | /** |
| 722 | * mesh_plink_broken - deactivates paths and sends perr when a link breaks |
| 723 | * |
| 724 | * @sta: broken peer link |
| 725 | * |
| 726 | * This function must be called from the rate control algorithm if enough |
| 727 | * delivery errors suggest that a peer link is no longer usable. |
| 728 | */ |
| 729 | void mesh_plink_broken(struct sta_info *sta) |
| 730 | { |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 731 | struct mesh_table *tbl; |
Johannes Berg | 15ff636 | 2009-11-17 13:34:04 +0100 | [diff] [blame] | 732 | 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] | 733 | struct mesh_path *mpath; |
| 734 | struct mpath_node *node; |
| 735 | struct hlist_node *p; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 736 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 737 | int i; |
Thomas Pedersen | 25d49e4 | 2011-08-11 19:35:15 -0700 | [diff] [blame] | 738 | __le16 reason = cpu_to_le16(WLAN_REASON_MESH_PATH_DEST_UNREACHABLE); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 739 | |
| 740 | rcu_read_lock(); |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 741 | tbl = rcu_dereference(mesh_paths); |
| 742 | for_each_mesh_entry(tbl, p, node, i) { |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 743 | mpath = node->mpath; |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 744 | if (rcu_dereference(mpath->next_hop) == sta && |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 745 | mpath->flags & MESH_PATH_ACTIVE && |
| 746 | !(mpath->flags & MESH_PATH_FIXED)) { |
Javier Cardona | f5e50cd | 2011-08-29 13:23:05 -0700 | [diff] [blame] | 747 | spin_lock_bh(&mpath->state_lock); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 748 | mpath->flags &= ~MESH_PATH_ACTIVE; |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 749 | ++mpath->sn; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 750 | spin_unlock_bh(&mpath->state_lock); |
Javier Cardona | 45904f2 | 2010-12-03 09:20:40 +0100 | [diff] [blame] | 751 | mesh_path_error_tx(sdata->u.mesh.mshcfg.element_ttl, |
| 752 | mpath->dst, cpu_to_le32(mpath->sn), |
Thomas Pedersen | 25d49e4 | 2011-08-11 19:35:15 -0700 | [diff] [blame] | 753 | reason, bcast, sdata); |
Javier Cardona | f5e50cd | 2011-08-29 13:23:05 -0700 | [diff] [blame] | 754 | } |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 755 | } |
| 756 | rcu_read_unlock(); |
| 757 | } |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 758 | |
Javier Cardona | 19c50b3 | 2011-08-29 13:23:07 -0700 | [diff] [blame] | 759 | static void mesh_path_node_reclaim(struct rcu_head *rp) |
| 760 | { |
| 761 | struct mpath_node *node = container_of(rp, struct mpath_node, rcu); |
| 762 | struct ieee80211_sub_if_data *sdata = node->mpath->sdata; |
| 763 | |
| 764 | del_timer_sync(&node->mpath->timer); |
| 765 | atomic_dec(&sdata->u.mesh.mpaths); |
| 766 | kfree(node->mpath); |
| 767 | kfree(node); |
| 768 | } |
| 769 | |
| 770 | /* needs to be called with the corresponding hashwlock taken */ |
| 771 | static void __mesh_path_del(struct mesh_table *tbl, struct mpath_node *node) |
| 772 | { |
| 773 | struct mesh_path *mpath; |
| 774 | mpath = node->mpath; |
| 775 | spin_lock(&mpath->state_lock); |
| 776 | mpath->flags |= MESH_PATH_RESOLVING; |
| 777 | if (mpath->is_gate) |
| 778 | mesh_gate_del(tbl, mpath); |
| 779 | hlist_del_rcu(&node->list); |
| 780 | call_rcu(&node->rcu, mesh_path_node_reclaim); |
| 781 | spin_unlock(&mpath->state_lock); |
| 782 | atomic_dec(&tbl->entries); |
| 783 | } |
| 784 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 785 | /** |
| 786 | * mesh_path_flush_by_nexthop - Deletes mesh paths if their next hop matches |
| 787 | * |
| 788 | * @sta - mesh peer to match |
| 789 | * |
Luis Carlos Cobo | b4e08ea | 2008-02-29 15:46:08 -0800 | [diff] [blame] | 790 | * RCU notes: this function is called when a mesh plink transitions from |
| 791 | * PLINK_ESTAB to any other state, since PLINK_ESTAB state is the only one that |
| 792 | * 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] | 793 | * sta_info_destroy() calls this) so any reader in a rcu read block will be |
| 794 | * protected against the plink disappearing. |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 795 | */ |
| 796 | void mesh_path_flush_by_nexthop(struct sta_info *sta) |
| 797 | { |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 798 | struct mesh_table *tbl; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 799 | struct mesh_path *mpath; |
| 800 | struct mpath_node *node; |
| 801 | struct hlist_node *p; |
| 802 | int i; |
| 803 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 804 | rcu_read_lock(); |
Javier Cardona | 239289e | 2011-08-29 13:23:09 -0700 | [diff] [blame] | 805 | read_lock_bh(&pathtbl_resize_lock); |
| 806 | tbl = resize_dereference_mesh_paths(); |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 807 | for_each_mesh_entry(tbl, p, node, i) { |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 808 | mpath = node->mpath; |
Javier Cardona | cd72e81 | 2011-08-29 13:23:08 -0700 | [diff] [blame] | 809 | if (rcu_dereference(mpath->next_hop) == sta) { |
Javier Cardona | 19c50b3 | 2011-08-29 13:23:07 -0700 | [diff] [blame] | 810 | spin_lock_bh(&tbl->hashwlock[i]); |
| 811 | __mesh_path_del(tbl, node); |
| 812 | spin_unlock_bh(&tbl->hashwlock[i]); |
| 813 | } |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 814 | } |
Javier Cardona | 239289e | 2011-08-29 13:23:09 -0700 | [diff] [blame] | 815 | read_unlock_bh(&pathtbl_resize_lock); |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 816 | rcu_read_unlock(); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 817 | } |
| 818 | |
Javier Cardona | cd72e81 | 2011-08-29 13:23:08 -0700 | [diff] [blame] | 819 | static void table_flush_by_iface(struct mesh_table *tbl, |
| 820 | struct ieee80211_sub_if_data *sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 821 | { |
| 822 | struct mesh_path *mpath; |
| 823 | struct mpath_node *node; |
| 824 | struct hlist_node *p; |
| 825 | int i; |
| 826 | |
Javier Cardona | cd72e81 | 2011-08-29 13:23:08 -0700 | [diff] [blame] | 827 | WARN_ON(!rcu_read_lock_held()); |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 828 | for_each_mesh_entry(tbl, p, node, i) { |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 829 | mpath = node->mpath; |
Javier Cardona | cd72e81 | 2011-08-29 13:23:08 -0700 | [diff] [blame] | 830 | if (mpath->sdata != sdata) |
| 831 | continue; |
Javier Cardona | ece1a2e | 2011-08-29 13:23:04 -0700 | [diff] [blame] | 832 | spin_lock_bh(&tbl->hashwlock[i]); |
Javier Cardona | 19c50b3 | 2011-08-29 13:23:07 -0700 | [diff] [blame] | 833 | __mesh_path_del(tbl, node); |
Javier Cardona | ece1a2e | 2011-08-29 13:23:04 -0700 | [diff] [blame] | 834 | spin_unlock_bh(&tbl->hashwlock[i]); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 835 | } |
| 836 | } |
| 837 | |
Javier Cardona | ece1a2e | 2011-08-29 13:23:04 -0700 | [diff] [blame] | 838 | /** |
| 839 | * mesh_path_flush_by_iface - Deletes all mesh paths associated with a given iface |
| 840 | * |
| 841 | * This function deletes both mesh paths as well as mesh portal paths. |
| 842 | * |
| 843 | * @sdata - interface data to match |
| 844 | * |
| 845 | */ |
| 846 | void mesh_path_flush_by_iface(struct ieee80211_sub_if_data *sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 847 | { |
Javier Cardona | cd72e81 | 2011-08-29 13:23:08 -0700 | [diff] [blame] | 848 | struct mesh_table *tbl; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 849 | |
Javier Cardona | cd72e81 | 2011-08-29 13:23:08 -0700 | [diff] [blame] | 850 | rcu_read_lock(); |
Javier Cardona | 239289e | 2011-08-29 13:23:09 -0700 | [diff] [blame] | 851 | read_lock_bh(&pathtbl_resize_lock); |
| 852 | tbl = resize_dereference_mesh_paths(); |
Javier Cardona | cd72e81 | 2011-08-29 13:23:08 -0700 | [diff] [blame] | 853 | table_flush_by_iface(tbl, sdata); |
Javier Cardona | 239289e | 2011-08-29 13:23:09 -0700 | [diff] [blame] | 854 | tbl = resize_dereference_mpp_paths(); |
Javier Cardona | cd72e81 | 2011-08-29 13:23:08 -0700 | [diff] [blame] | 855 | table_flush_by_iface(tbl, sdata); |
Javier Cardona | 239289e | 2011-08-29 13:23:09 -0700 | [diff] [blame] | 856 | read_unlock_bh(&pathtbl_resize_lock); |
Javier Cardona | cd72e81 | 2011-08-29 13:23:08 -0700 | [diff] [blame] | 857 | rcu_read_unlock(); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | /** |
| 861 | * mesh_path_del - delete a mesh path from the table |
| 862 | * |
| 863 | * @addr: dst address (ETH_ALEN length) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 864 | * @sdata: local subif |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 865 | * |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 866 | * Returns: 0 if successful |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 867 | */ |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 868 | 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] | 869 | { |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 870 | struct mesh_table *tbl; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 871 | struct mesh_path *mpath; |
| 872 | struct mpath_node *node; |
| 873 | struct hlist_head *bucket; |
| 874 | struct hlist_node *n; |
| 875 | int hash_idx; |
| 876 | int err = 0; |
| 877 | |
Javier Cardona | 9b84b808 | 2011-05-03 16:57:16 -0700 | [diff] [blame] | 878 | read_lock_bh(&pathtbl_resize_lock); |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 879 | tbl = resize_dereference_mesh_paths(); |
| 880 | hash_idx = mesh_table_hash(addr, sdata, tbl); |
| 881 | bucket = &tbl->hash_buckets[hash_idx]; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 882 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 883 | spin_lock_bh(&tbl->hashwlock[hash_idx]); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 884 | hlist_for_each_entry(node, n, bucket, list) { |
| 885 | mpath = node->mpath; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 886 | if (mpath->sdata == sdata && |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 887 | memcmp(addr, mpath->dst, ETH_ALEN) == 0) { |
Javier Cardona | 19c50b3 | 2011-08-29 13:23:07 -0700 | [diff] [blame] | 888 | __mesh_path_del(tbl, node); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 889 | goto enddel; |
| 890 | } |
| 891 | } |
| 892 | |
| 893 | err = -ENXIO; |
| 894 | enddel: |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 895 | mesh_paths_generation++; |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 896 | spin_unlock_bh(&tbl->hashwlock[hash_idx]); |
Javier Cardona | 9b84b808 | 2011-05-03 16:57:16 -0700 | [diff] [blame] | 897 | read_unlock_bh(&pathtbl_resize_lock); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 898 | return err; |
| 899 | } |
| 900 | |
| 901 | /** |
| 902 | * mesh_path_tx_pending - sends pending frames in a mesh path queue |
| 903 | * |
| 904 | * @mpath: mesh path to activate |
| 905 | * |
| 906 | * Locking: the state_lock of the mpath structure must NOT be held when calling |
| 907 | * this function. |
| 908 | */ |
| 909 | void mesh_path_tx_pending(struct mesh_path *mpath) |
| 910 | { |
Javier Cardona | 249b405 | 2009-07-07 10:55:03 -0700 | [diff] [blame] | 911 | if (mpath->flags & MESH_PATH_ACTIVE) |
| 912 | ieee80211_add_pending_skbs(mpath->sdata->local, |
| 913 | &mpath->frame_queue); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | /** |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 917 | * mesh_path_send_to_gates - sends pending frames to all known mesh gates |
| 918 | * |
| 919 | * @mpath: mesh path whose queue will be emptied |
| 920 | * |
| 921 | * If there is only one gate, the frames are transferred from the failed mpath |
| 922 | * queue to that gate's queue. If there are more than one gates, the frames |
| 923 | * are copied from each gate to the next. After frames are copied, the |
| 924 | * mpath queues are emptied onto the transmission queue. |
| 925 | */ |
| 926 | int mesh_path_send_to_gates(struct mesh_path *mpath) |
| 927 | { |
| 928 | struct ieee80211_sub_if_data *sdata = mpath->sdata; |
| 929 | struct hlist_node *n; |
| 930 | struct mesh_table *tbl; |
| 931 | struct mesh_path *from_mpath = mpath; |
| 932 | struct mpath_node *gate = NULL; |
| 933 | bool copy = false; |
| 934 | struct hlist_head *known_gates; |
| 935 | |
| 936 | rcu_read_lock(); |
| 937 | tbl = rcu_dereference(mesh_paths); |
| 938 | known_gates = tbl->known_gates; |
| 939 | rcu_read_unlock(); |
| 940 | |
| 941 | if (!known_gates) |
| 942 | return -EHOSTUNREACH; |
| 943 | |
| 944 | hlist_for_each_entry_rcu(gate, n, known_gates, list) { |
| 945 | if (gate->mpath->sdata != sdata) |
| 946 | continue; |
| 947 | |
| 948 | if (gate->mpath->flags & MESH_PATH_ACTIVE) { |
| 949 | mpath_dbg("Forwarding to %pM\n", gate->mpath->dst); |
| 950 | mesh_path_move_to_queue(gate->mpath, from_mpath, copy); |
| 951 | from_mpath = gate->mpath; |
| 952 | copy = true; |
| 953 | } else { |
| 954 | mpath_dbg("Not forwarding %p\n", gate->mpath); |
| 955 | mpath_dbg("flags %x\n", gate->mpath->flags); |
| 956 | } |
| 957 | } |
| 958 | |
| 959 | hlist_for_each_entry_rcu(gate, n, known_gates, list) |
| 960 | if (gate->mpath->sdata == sdata) { |
| 961 | mpath_dbg("Sending to %pM\n", gate->mpath->dst); |
| 962 | mesh_path_tx_pending(gate->mpath); |
| 963 | } |
| 964 | |
| 965 | return (from_mpath == mpath) ? -EHOSTUNREACH : 0; |
| 966 | } |
| 967 | |
| 968 | /** |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 969 | * mesh_path_discard_frame - discard a frame whose path could not be resolved |
| 970 | * |
| 971 | * @skb: frame to discard |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 972 | * @sdata: network subif the frame was to be sent through |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 973 | * |
Javier Cardona | 35946a5 | 2009-07-13 17:00:10 -0700 | [diff] [blame] | 974 | * If the frame was being forwarded from another MP, a PERR frame will be sent |
| 975 | * to the precursor. The precursor's address (i.e. the previous hop) was saved |
| 976 | * in addr1 of the frame-to-be-forwarded, and would only be overwritten once |
| 977 | * the destination is successfully resolved. |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 978 | * |
| 979 | * Locking: the function must me called within a rcu_read_lock region |
| 980 | */ |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 981 | void mesh_path_discard_frame(struct sk_buff *skb, |
| 982 | struct ieee80211_sub_if_data *sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 983 | { |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 984 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 985 | struct mesh_path *mpath; |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 986 | u32 sn = 0; |
Thomas Pedersen | 25d49e4 | 2011-08-11 19:35:15 -0700 | [diff] [blame] | 987 | __le16 reason = cpu_to_le16(WLAN_REASON_MESH_PATH_NOFORWARD); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 988 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 989 | if (memcmp(hdr->addr4, sdata->vif.addr, ETH_ALEN) != 0) { |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 990 | u8 *ra, *da; |
| 991 | |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 992 | da = hdr->addr3; |
Javier Cardona | 35946a5 | 2009-07-13 17:00:10 -0700 | [diff] [blame] | 993 | ra = hdr->addr1; |
Javier Cardona | af089c1 | 2011-08-29 13:23:03 -0700 | [diff] [blame] | 994 | rcu_read_lock(); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 995 | mpath = mesh_path_lookup(da, sdata); |
Javier Cardona | af089c1 | 2011-08-29 13:23:03 -0700 | [diff] [blame] | 996 | if (mpath) { |
| 997 | spin_lock_bh(&mpath->state_lock); |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 998 | sn = ++mpath->sn; |
Javier Cardona | af089c1 | 2011-08-29 13:23:03 -0700 | [diff] [blame] | 999 | spin_unlock_bh(&mpath->state_lock); |
| 1000 | } |
| 1001 | rcu_read_unlock(); |
Javier Cardona | 45904f2 | 2010-12-03 09:20:40 +0100 | [diff] [blame] | 1002 | mesh_path_error_tx(sdata->u.mesh.mshcfg.element_ttl, skb->data, |
Thomas Pedersen | 25d49e4 | 2011-08-11 19:35:15 -0700 | [diff] [blame] | 1003 | cpu_to_le32(sn), reason, ra, sdata); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1004 | } |
| 1005 | |
| 1006 | kfree_skb(skb); |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 1007 | sdata->u.mesh.mshstats.dropped_frames_no_route++; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1008 | } |
| 1009 | |
| 1010 | /** |
| 1011 | * mesh_path_flush_pending - free the pending queue of a mesh path |
| 1012 | * |
| 1013 | * @mpath: mesh path whose queue has to be freed |
| 1014 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1015 | * Locking: the function must me called within a rcu_read_lock region |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1016 | */ |
| 1017 | void mesh_path_flush_pending(struct mesh_path *mpath) |
| 1018 | { |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1019 | struct sk_buff *skb; |
| 1020 | |
Javier Cardona | 00e3f25 | 2011-08-09 16:45:07 -0700 | [diff] [blame] | 1021 | while ((skb = skb_dequeue(&mpath->frame_queue)) != NULL) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1022 | mesh_path_discard_frame(skb, mpath->sdata); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1023 | } |
| 1024 | |
| 1025 | /** |
| 1026 | * mesh_path_fix_nexthop - force a specific next hop for a mesh path |
| 1027 | * |
| 1028 | * @mpath: the mesh path to modify |
| 1029 | * @next_hop: the next hop to force |
| 1030 | * |
| 1031 | * Locking: this function must be called holding mpath->state_lock |
| 1032 | */ |
| 1033 | void mesh_path_fix_nexthop(struct mesh_path *mpath, struct sta_info *next_hop) |
| 1034 | { |
| 1035 | spin_lock_bh(&mpath->state_lock); |
| 1036 | mesh_path_assign_nexthop(mpath, next_hop); |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 1037 | mpath->sn = 0xffff; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1038 | mpath->metric = 0; |
| 1039 | mpath->hop_count = 0; |
| 1040 | mpath->exp_time = 0; |
| 1041 | mpath->flags |= MESH_PATH_FIXED; |
| 1042 | mesh_path_activate(mpath); |
| 1043 | spin_unlock_bh(&mpath->state_lock); |
| 1044 | mesh_path_tx_pending(mpath); |
| 1045 | } |
| 1046 | |
| 1047 | static void mesh_path_node_free(struct hlist_node *p, bool free_leafs) |
| 1048 | { |
| 1049 | struct mesh_path *mpath; |
| 1050 | struct mpath_node *node = hlist_entry(p, struct mpath_node, list); |
| 1051 | mpath = node->mpath; |
| 1052 | hlist_del_rcu(p); |
Javier Cardona | d0df9ee | 2011-05-13 14:16:07 -0700 | [diff] [blame] | 1053 | if (free_leafs) { |
| 1054 | del_timer_sync(&mpath->timer); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1055 | kfree(mpath); |
Javier Cardona | d0df9ee | 2011-05-13 14:16:07 -0700 | [diff] [blame] | 1056 | } |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1057 | kfree(node); |
| 1058 | } |
| 1059 | |
Pavel Emelyanov | 4caf86c | 2008-05-07 19:47:01 +0400 | [diff] [blame] | 1060 | 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] | 1061 | { |
| 1062 | struct mesh_path *mpath; |
| 1063 | struct mpath_node *node, *new_node; |
| 1064 | u32 hash_idx; |
| 1065 | |
Pavel Emelyanov | 8566dc3 | 2008-05-07 19:51:51 +0400 | [diff] [blame] | 1066 | new_node = kmalloc(sizeof(struct mpath_node), GFP_ATOMIC); |
Pavel Emelyanov | 00242c4 | 2008-05-07 19:48:14 +0400 | [diff] [blame] | 1067 | if (new_node == NULL) |
| 1068 | return -ENOMEM; |
| 1069 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1070 | node = hlist_entry(p, struct mpath_node, list); |
| 1071 | mpath = node->mpath; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1072 | new_node->mpath = mpath; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1073 | hash_idx = mesh_table_hash(mpath->dst, mpath->sdata, newtbl); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1074 | hlist_add_head(&new_node->list, |
| 1075 | &newtbl->hash_buckets[hash_idx]); |
Pavel Emelyanov | 4caf86c | 2008-05-07 19:47:01 +0400 | [diff] [blame] | 1076 | return 0; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1077 | } |
| 1078 | |
| 1079 | int mesh_pathtbl_init(void) |
| 1080 | { |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 1081 | struct mesh_table *tbl_path, *tbl_mpp; |
Dan Carpenter | 4c5ade4 | 2011-08-30 22:16:15 +0300 | [diff] [blame] | 1082 | int ret; |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 1083 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 1084 | tbl_path = mesh_table_alloc(INIT_PATHS_SIZE_ORDER); |
| 1085 | if (!tbl_path) |
| 1086 | return -ENOMEM; |
| 1087 | tbl_path->free_node = &mesh_path_node_free; |
| 1088 | tbl_path->copy_node = &mesh_path_node_copy; |
| 1089 | tbl_path->mean_chain_len = MEAN_CHAIN_LEN; |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 1090 | tbl_path->known_gates = kzalloc(sizeof(struct hlist_head), GFP_ATOMIC); |
Dan Carpenter | 4c5ade4 | 2011-08-30 22:16:15 +0300 | [diff] [blame] | 1091 | if (!tbl_path->known_gates) { |
| 1092 | ret = -ENOMEM; |
| 1093 | goto free_path; |
| 1094 | } |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 1095 | INIT_HLIST_HEAD(tbl_path->known_gates); |
| 1096 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 1097 | |
| 1098 | tbl_mpp = mesh_table_alloc(INIT_PATHS_SIZE_ORDER); |
| 1099 | if (!tbl_mpp) { |
Dan Carpenter | 4c5ade4 | 2011-08-30 22:16:15 +0300 | [diff] [blame] | 1100 | ret = -ENOMEM; |
| 1101 | goto free_path; |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 1102 | } |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 1103 | tbl_mpp->free_node = &mesh_path_node_free; |
| 1104 | tbl_mpp->copy_node = &mesh_path_node_copy; |
| 1105 | tbl_mpp->mean_chain_len = MEAN_CHAIN_LEN; |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 1106 | tbl_mpp->known_gates = kzalloc(sizeof(struct hlist_head), GFP_ATOMIC); |
Dan Carpenter | 4c5ade4 | 2011-08-30 22:16:15 +0300 | [diff] [blame] | 1107 | if (!tbl_mpp->known_gates) { |
| 1108 | ret = -ENOMEM; |
| 1109 | goto free_mpp; |
| 1110 | } |
Javier Cardona | 5ee68e5 | 2011-08-09 16:45:08 -0700 | [diff] [blame] | 1111 | INIT_HLIST_HEAD(tbl_mpp->known_gates); |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 1112 | |
| 1113 | /* Need no locking since this is during init */ |
| 1114 | RCU_INIT_POINTER(mesh_paths, tbl_path); |
| 1115 | RCU_INIT_POINTER(mpp_paths, tbl_mpp); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 1116 | |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1117 | return 0; |
Dan Carpenter | 4c5ade4 | 2011-08-30 22:16:15 +0300 | [diff] [blame] | 1118 | |
| 1119 | free_mpp: |
| 1120 | mesh_table_free(tbl_mpp, true); |
| 1121 | free_path: |
| 1122 | mesh_table_free(tbl_path, true); |
| 1123 | return ret; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1124 | } |
| 1125 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1126 | void mesh_path_expire(struct ieee80211_sub_if_data *sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1127 | { |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 1128 | struct mesh_table *tbl; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1129 | struct mesh_path *mpath; |
| 1130 | struct mpath_node *node; |
| 1131 | struct hlist_node *p; |
| 1132 | int i; |
| 1133 | |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 1134 | rcu_read_lock(); |
| 1135 | tbl = rcu_dereference(mesh_paths); |
| 1136 | for_each_mesh_entry(tbl, p, node, i) { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1137 | if (node->mpath->sdata != sdata) |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1138 | continue; |
| 1139 | mpath = node->mpath; |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1140 | if ((!(mpath->flags & MESH_PATH_RESOLVING)) && |
| 1141 | (!(mpath->flags & MESH_PATH_FIXED)) && |
Javier Cardona | f5e50cd | 2011-08-29 13:23:05 -0700 | [diff] [blame] | 1142 | time_after(jiffies, mpath->exp_time + MESH_PATH_EXPIRE)) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1143 | mesh_path_del(mpath->dst, mpath->sdata); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1144 | } |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 1145 | rcu_read_unlock(); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1146 | } |
| 1147 | |
| 1148 | void mesh_pathtbl_unregister(void) |
| 1149 | { |
Johannes Berg | 349eb8c | 2011-05-14 11:56:16 +0200 | [diff] [blame] | 1150 | /* no need for locking during exit path */ |
Eric Dumazet | 33d480c | 2011-08-11 19:30:52 +0000 | [diff] [blame] | 1151 | mesh_table_free(rcu_dereference_protected(mesh_paths, 1), true); |
| 1152 | mesh_table_free(rcu_dereference_protected(mpp_paths, 1), true); |
Luis Carlos Cobo | eb2b931 | 2008-02-23 15:17:14 +0100 | [diff] [blame] | 1153 | } |