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