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