]>
Commit | Line | Data |
---|---|---|
9cfc7bd6 | 1 | /* Copyright (C) 2007-2012 B.A.T.M.A.N. contributors: |
c6c8fea2 | 2 | * |
35c133a0 | 3 | * Marek Lindner, Simon Wunderlich, Antonio Quartulli |
c6c8fea2 SE |
4 | * |
5 | * This program is free software; you can redistribute it and/or | |
6 | * modify it under the terms of version 2 of the GNU General Public | |
7 | * License as published by the Free Software Foundation. | |
8 | * | |
9 | * This program is distributed in the hope that it will be useful, but | |
10 | * WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
12 | * General Public License for more details. | |
13 | * | |
14 | * You should have received a copy of the GNU General Public License | |
15 | * along with this program; if not, write to the Free Software | |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | |
17 | * 02110-1301, USA | |
c6c8fea2 SE |
18 | */ |
19 | ||
20 | #include "main.h" | |
21 | #include "translation-table.h" | |
22 | #include "soft-interface.h" | |
32ae9b22 | 23 | #include "hard-interface.h" |
a73105b8 | 24 | #include "send.h" |
c6c8fea2 SE |
25 | #include "hash.h" |
26 | #include "originator.h" | |
a73105b8 | 27 | #include "routing.h" |
20ff9d59 | 28 | #include "bridge_loop_avoidance.h" |
c6c8fea2 | 29 | |
a73105b8 AQ |
30 | #include <linux/crc16.h> |
31 | ||
56303d34 SE |
32 | static void batadv_send_roam_adv(struct batadv_priv *bat_priv, uint8_t *client, |
33 | struct batadv_orig_node *orig_node); | |
a513088d SE |
34 | static void batadv_tt_purge(struct work_struct *work); |
35 | static void | |
56303d34 | 36 | batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry); |
30cfd02b AQ |
37 | static void batadv_tt_global_del(struct batadv_priv *bat_priv, |
38 | struct batadv_orig_node *orig_node, | |
39 | const unsigned char *addr, | |
40 | const char *message, bool roaming); | |
c6c8fea2 | 41 | |
7aadf889 | 42 | /* returns 1 if they are the same mac addr */ |
a513088d | 43 | static int batadv_compare_tt(const struct hlist_node *node, const void *data2) |
7aadf889 | 44 | { |
56303d34 | 45 | const void *data1 = container_of(node, struct batadv_tt_common_entry, |
747e4221 | 46 | hash_entry); |
7aadf889 ML |
47 | |
48 | return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0); | |
49 | } | |
50 | ||
56303d34 | 51 | static void batadv_tt_start_timer(struct batadv_priv *bat_priv) |
c6c8fea2 | 52 | { |
807736f6 SE |
53 | INIT_DELAYED_WORK(&bat_priv->tt.work, batadv_tt_purge); |
54 | queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work, | |
a73105b8 | 55 | msecs_to_jiffies(5000)); |
c6c8fea2 SE |
56 | } |
57 | ||
56303d34 | 58 | static struct batadv_tt_common_entry * |
5bf74e9c | 59 | batadv_tt_hash_find(struct batadv_hashtable *hash, const void *data) |
7aadf889 | 60 | { |
7aadf889 ML |
61 | struct hlist_head *head; |
62 | struct hlist_node *node; | |
56303d34 SE |
63 | struct batadv_tt_common_entry *tt_common_entry; |
64 | struct batadv_tt_common_entry *tt_common_entry_tmp = NULL; | |
c90681b8 | 65 | uint32_t index; |
7aadf889 ML |
66 | |
67 | if (!hash) | |
68 | return NULL; | |
69 | ||
da641193 | 70 | index = batadv_choose_orig(data, hash->size); |
7aadf889 ML |
71 | head = &hash->table[index]; |
72 | ||
73 | rcu_read_lock(); | |
48100bac | 74 | hlist_for_each_entry_rcu(tt_common_entry, node, head, hash_entry) { |
1eda58bf | 75 | if (!batadv_compare_eth(tt_common_entry, data)) |
7aadf889 ML |
76 | continue; |
77 | ||
48100bac | 78 | if (!atomic_inc_not_zero(&tt_common_entry->refcount)) |
7683fdc1 AQ |
79 | continue; |
80 | ||
48100bac | 81 | tt_common_entry_tmp = tt_common_entry; |
7aadf889 ML |
82 | break; |
83 | } | |
84 | rcu_read_unlock(); | |
85 | ||
48100bac | 86 | return tt_common_entry_tmp; |
7aadf889 ML |
87 | } |
88 | ||
56303d34 SE |
89 | static struct batadv_tt_local_entry * |
90 | batadv_tt_local_hash_find(struct batadv_priv *bat_priv, const void *data) | |
7aadf889 | 91 | { |
56303d34 SE |
92 | struct batadv_tt_common_entry *tt_common_entry; |
93 | struct batadv_tt_local_entry *tt_local_entry = NULL; | |
7aadf889 | 94 | |
807736f6 | 95 | tt_common_entry = batadv_tt_hash_find(bat_priv->tt.local_hash, data); |
48100bac AQ |
96 | if (tt_common_entry) |
97 | tt_local_entry = container_of(tt_common_entry, | |
56303d34 SE |
98 | struct batadv_tt_local_entry, |
99 | common); | |
48100bac AQ |
100 | return tt_local_entry; |
101 | } | |
7aadf889 | 102 | |
56303d34 SE |
103 | static struct batadv_tt_global_entry * |
104 | batadv_tt_global_hash_find(struct batadv_priv *bat_priv, const void *data) | |
48100bac | 105 | { |
56303d34 SE |
106 | struct batadv_tt_common_entry *tt_common_entry; |
107 | struct batadv_tt_global_entry *tt_global_entry = NULL; | |
7683fdc1 | 108 | |
807736f6 | 109 | tt_common_entry = batadv_tt_hash_find(bat_priv->tt.global_hash, data); |
48100bac AQ |
110 | if (tt_common_entry) |
111 | tt_global_entry = container_of(tt_common_entry, | |
56303d34 SE |
112 | struct batadv_tt_global_entry, |
113 | common); | |
48100bac | 114 | return tt_global_entry; |
7aadf889 | 115 | |
7aadf889 ML |
116 | } |
117 | ||
a513088d | 118 | static void |
56303d34 | 119 | batadv_tt_local_entry_free_ref(struct batadv_tt_local_entry *tt_local_entry) |
7683fdc1 | 120 | { |
48100bac AQ |
121 | if (atomic_dec_and_test(&tt_local_entry->common.refcount)) |
122 | kfree_rcu(tt_local_entry, common.rcu); | |
7683fdc1 AQ |
123 | } |
124 | ||
a513088d | 125 | static void batadv_tt_global_entry_free_rcu(struct rcu_head *rcu) |
531027fc | 126 | { |
56303d34 SE |
127 | struct batadv_tt_common_entry *tt_common_entry; |
128 | struct batadv_tt_global_entry *tt_global_entry; | |
531027fc | 129 | |
56303d34 SE |
130 | tt_common_entry = container_of(rcu, struct batadv_tt_common_entry, rcu); |
131 | tt_global_entry = container_of(tt_common_entry, | |
132 | struct batadv_tt_global_entry, common); | |
531027fc | 133 | |
531027fc SW |
134 | kfree(tt_global_entry); |
135 | } | |
136 | ||
a513088d | 137 | static void |
56303d34 | 138 | batadv_tt_global_entry_free_ref(struct batadv_tt_global_entry *tt_global_entry) |
7683fdc1 | 139 | { |
db08e6e5 | 140 | if (atomic_dec_and_test(&tt_global_entry->common.refcount)) { |
a513088d | 141 | batadv_tt_global_del_orig_list(tt_global_entry); |
48100bac | 142 | call_rcu(&tt_global_entry->common.rcu, |
a513088d | 143 | batadv_tt_global_entry_free_rcu); |
db08e6e5 SW |
144 | } |
145 | } | |
146 | ||
a513088d | 147 | static void batadv_tt_orig_list_entry_free_rcu(struct rcu_head *rcu) |
db08e6e5 | 148 | { |
56303d34 | 149 | struct batadv_tt_orig_list_entry *orig_entry; |
db08e6e5 | 150 | |
56303d34 | 151 | orig_entry = container_of(rcu, struct batadv_tt_orig_list_entry, rcu); |
7d211efc | 152 | batadv_orig_node_free_ref(orig_entry->orig_node); |
db08e6e5 SW |
153 | kfree(orig_entry); |
154 | } | |
155 | ||
a513088d | 156 | static void |
56303d34 | 157 | batadv_tt_orig_list_entry_free_ref(struct batadv_tt_orig_list_entry *orig_entry) |
db08e6e5 | 158 | { |
d657e621 AQ |
159 | if (!atomic_dec_and_test(&orig_entry->refcount)) |
160 | return; | |
29cb99de AQ |
161 | /* to avoid race conditions, immediately decrease the tt counter */ |
162 | atomic_dec(&orig_entry->orig_node->tt_size); | |
a513088d | 163 | call_rcu(&orig_entry->rcu, batadv_tt_orig_list_entry_free_rcu); |
7683fdc1 AQ |
164 | } |
165 | ||
56303d34 | 166 | static void batadv_tt_local_event(struct batadv_priv *bat_priv, |
a513088d | 167 | const uint8_t *addr, uint8_t flags) |
a73105b8 | 168 | { |
56303d34 | 169 | struct batadv_tt_change_node *tt_change_node, *entry, *safe; |
3b643de5 AQ |
170 | bool event_removed = false; |
171 | bool del_op_requested, del_op_entry; | |
a73105b8 AQ |
172 | |
173 | tt_change_node = kmalloc(sizeof(*tt_change_node), GFP_ATOMIC); | |
174 | ||
175 | if (!tt_change_node) | |
176 | return; | |
177 | ||
ff66c975 | 178 | tt_change_node->change.flags = flags; |
a73105b8 AQ |
179 | memcpy(tt_change_node->change.addr, addr, ETH_ALEN); |
180 | ||
acd34afa | 181 | del_op_requested = flags & BATADV_TT_CLIENT_DEL; |
3b643de5 AQ |
182 | |
183 | /* check for ADD+DEL or DEL+ADD events */ | |
807736f6 SE |
184 | spin_lock_bh(&bat_priv->tt.changes_list_lock); |
185 | list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list, | |
3b643de5 AQ |
186 | list) { |
187 | if (!batadv_compare_eth(entry->change.addr, addr)) | |
188 | continue; | |
189 | ||
190 | /* DEL+ADD in the same orig interval have no effect and can be | |
191 | * removed to avoid silly behaviour on the receiver side. The | |
192 | * other way around (ADD+DEL) can happen in case of roaming of | |
193 | * a client still in the NEW state. Roaming of NEW clients is | |
194 | * now possible due to automatically recognition of "temporary" | |
195 | * clients | |
196 | */ | |
acd34afa | 197 | del_op_entry = entry->change.flags & BATADV_TT_CLIENT_DEL; |
3b643de5 AQ |
198 | if (!del_op_requested && del_op_entry) |
199 | goto del; | |
200 | if (del_op_requested && !del_op_entry) | |
201 | goto del; | |
202 | continue; | |
203 | del: | |
204 | list_del(&entry->list); | |
205 | kfree(entry); | |
155e4e12 | 206 | kfree(tt_change_node); |
3b643de5 AQ |
207 | event_removed = true; |
208 | goto unlock; | |
209 | } | |
210 | ||
a73105b8 | 211 | /* track the change in the OGMinterval list */ |
807736f6 | 212 | list_add_tail(&tt_change_node->list, &bat_priv->tt.changes_list); |
3b643de5 AQ |
213 | |
214 | unlock: | |
807736f6 | 215 | spin_unlock_bh(&bat_priv->tt.changes_list_lock); |
a73105b8 | 216 | |
3b643de5 | 217 | if (event_removed) |
807736f6 | 218 | atomic_dec(&bat_priv->tt.local_changes); |
3b643de5 | 219 | else |
807736f6 | 220 | atomic_inc(&bat_priv->tt.local_changes); |
a73105b8 AQ |
221 | } |
222 | ||
08c36d3e | 223 | int batadv_tt_len(int changes_num) |
a73105b8 | 224 | { |
96412690 | 225 | return changes_num * sizeof(struct batadv_tt_change); |
a73105b8 AQ |
226 | } |
227 | ||
56303d34 | 228 | static int batadv_tt_local_init(struct batadv_priv *bat_priv) |
c6c8fea2 | 229 | { |
807736f6 | 230 | if (bat_priv->tt.local_hash) |
5346c35e | 231 | return 0; |
c6c8fea2 | 232 | |
807736f6 | 233 | bat_priv->tt.local_hash = batadv_hash_new(1024); |
c6c8fea2 | 234 | |
807736f6 | 235 | if (!bat_priv->tt.local_hash) |
5346c35e | 236 | return -ENOMEM; |
c6c8fea2 | 237 | |
5346c35e | 238 | return 0; |
c6c8fea2 SE |
239 | } |
240 | ||
08c36d3e SE |
241 | void batadv_tt_local_add(struct net_device *soft_iface, const uint8_t *addr, |
242 | int ifindex) | |
c6c8fea2 | 243 | { |
56303d34 SE |
244 | struct batadv_priv *bat_priv = netdev_priv(soft_iface); |
245 | struct batadv_tt_local_entry *tt_local_entry = NULL; | |
246 | struct batadv_tt_global_entry *tt_global_entry = NULL; | |
db08e6e5 SW |
247 | struct hlist_head *head; |
248 | struct hlist_node *node; | |
56303d34 | 249 | struct batadv_tt_orig_list_entry *orig_entry; |
80b3f58c | 250 | int hash_added; |
c6c8fea2 | 251 | |
a513088d | 252 | tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr); |
c6c8fea2 | 253 | |
2dafb49d AQ |
254 | if (tt_local_entry) { |
255 | tt_local_entry->last_seen = jiffies; | |
acd34afa SE |
256 | /* possibly unset the BATADV_TT_CLIENT_PENDING flag */ |
257 | tt_local_entry->common.flags &= ~BATADV_TT_CLIENT_PENDING; | |
7683fdc1 | 258 | goto out; |
c6c8fea2 SE |
259 | } |
260 | ||
704509b8 | 261 | tt_local_entry = kmalloc(sizeof(*tt_local_entry), GFP_ATOMIC); |
2dafb49d | 262 | if (!tt_local_entry) |
7683fdc1 | 263 | goto out; |
a73105b8 | 264 | |
39c75a51 | 265 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf | 266 | "Creating new local tt entry: %pM (ttvn: %d)\n", addr, |
807736f6 | 267 | (uint8_t)atomic_read(&bat_priv->tt.vn)); |
c6c8fea2 | 268 | |
48100bac | 269 | memcpy(tt_local_entry->common.addr, addr, ETH_ALEN); |
42d0b044 | 270 | tt_local_entry->common.flags = BATADV_NO_FLAGS; |
9563877e | 271 | if (batadv_is_wifi_iface(ifindex)) |
acd34afa | 272 | tt_local_entry->common.flags |= BATADV_TT_CLIENT_WIFI; |
48100bac AQ |
273 | atomic_set(&tt_local_entry->common.refcount, 2); |
274 | tt_local_entry->last_seen = jiffies; | |
30cfd02b | 275 | tt_local_entry->common.added_at = tt_local_entry->last_seen; |
c6c8fea2 SE |
276 | |
277 | /* the batman interface mac address should never be purged */ | |
1eda58bf | 278 | if (batadv_compare_eth(addr, soft_iface->dev_addr)) |
acd34afa | 279 | tt_local_entry->common.flags |= BATADV_TT_CLIENT_NOPURGE; |
c6c8fea2 | 280 | |
c40ed2bf AQ |
281 | /* The local entry has to be marked as NEW to avoid to send it in |
282 | * a full table response going out before the next ttvn increment | |
9cfc7bd6 SE |
283 | * (consistency check) |
284 | */ | |
acd34afa | 285 | tt_local_entry->common.flags |= BATADV_TT_CLIENT_NEW; |
c40ed2bf | 286 | |
807736f6 | 287 | hash_added = batadv_hash_add(bat_priv->tt.local_hash, batadv_compare_tt, |
da641193 SE |
288 | batadv_choose_orig, |
289 | &tt_local_entry->common, | |
c0a55929 | 290 | &tt_local_entry->common.hash_entry); |
80b3f58c SW |
291 | |
292 | if (unlikely(hash_added != 0)) { | |
293 | /* remove the reference for the hash */ | |
a513088d | 294 | batadv_tt_local_entry_free_ref(tt_local_entry); |
80b3f58c SW |
295 | goto out; |
296 | } | |
297 | ||
a513088d | 298 | batadv_tt_local_event(bat_priv, addr, tt_local_entry->common.flags); |
ff66c975 | 299 | |
c6c8fea2 | 300 | /* remove address from global hash if present */ |
a513088d | 301 | tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr); |
c6c8fea2 | 302 | |
cc47f66e AQ |
303 | /* Check whether it is a roaming! */ |
304 | if (tt_global_entry) { | |
db08e6e5 SW |
305 | /* These node are probably going to update their tt table */ |
306 | head = &tt_global_entry->orig_list; | |
307 | rcu_read_lock(); | |
308 | hlist_for_each_entry_rcu(orig_entry, node, head, list) { | |
309 | orig_entry->orig_node->tt_poss_change = true; | |
310 | ||
a513088d SE |
311 | batadv_send_roam_adv(bat_priv, |
312 | tt_global_entry->common.addr, | |
313 | orig_entry->orig_node); | |
db08e6e5 SW |
314 | } |
315 | rcu_read_unlock(); | |
316 | /* The global entry has to be marked as ROAMING and | |
317 | * has to be kept for consistency purpose | |
318 | */ | |
acd34afa | 319 | tt_global_entry->common.flags |= BATADV_TT_CLIENT_ROAM; |
03fc3070 | 320 | tt_global_entry->roam_at = jiffies; |
7683fdc1 AQ |
321 | } |
322 | out: | |
323 | if (tt_local_entry) | |
a513088d | 324 | batadv_tt_local_entry_free_ref(tt_local_entry); |
7683fdc1 | 325 | if (tt_global_entry) |
a513088d | 326 | batadv_tt_global_entry_free_ref(tt_global_entry); |
c6c8fea2 SE |
327 | } |
328 | ||
a513088d SE |
329 | static void batadv_tt_realloc_packet_buff(unsigned char **packet_buff, |
330 | int *packet_buff_len, | |
331 | int min_packet_len, | |
332 | int new_packet_len) | |
be9aa4c1 ML |
333 | { |
334 | unsigned char *new_buff; | |
335 | ||
336 | new_buff = kmalloc(new_packet_len, GFP_ATOMIC); | |
337 | ||
338 | /* keep old buffer if kmalloc should fail */ | |
339 | if (new_buff) { | |
340 | memcpy(new_buff, *packet_buff, min_packet_len); | |
341 | kfree(*packet_buff); | |
342 | *packet_buff = new_buff; | |
343 | *packet_buff_len = new_packet_len; | |
344 | } | |
345 | } | |
346 | ||
56303d34 | 347 | static void batadv_tt_prepare_packet_buff(struct batadv_priv *bat_priv, |
a513088d SE |
348 | unsigned char **packet_buff, |
349 | int *packet_buff_len, | |
350 | int min_packet_len) | |
be9aa4c1 | 351 | { |
56303d34 | 352 | struct batadv_hard_iface *primary_if; |
be9aa4c1 ML |
353 | int req_len; |
354 | ||
e5d89254 | 355 | primary_if = batadv_primary_if_get_selected(bat_priv); |
be9aa4c1 ML |
356 | |
357 | req_len = min_packet_len; | |
807736f6 | 358 | req_len += batadv_tt_len(atomic_read(&bat_priv->tt.local_changes)); |
be9aa4c1 ML |
359 | |
360 | /* if we have too many changes for one packet don't send any | |
361 | * and wait for the tt table request which will be fragmented | |
362 | */ | |
363 | if ((!primary_if) || (req_len > primary_if->soft_iface->mtu)) | |
364 | req_len = min_packet_len; | |
365 | ||
a513088d SE |
366 | batadv_tt_realloc_packet_buff(packet_buff, packet_buff_len, |
367 | min_packet_len, req_len); | |
be9aa4c1 ML |
368 | |
369 | if (primary_if) | |
e5d89254 | 370 | batadv_hardif_free_ref(primary_if); |
be9aa4c1 ML |
371 | } |
372 | ||
56303d34 | 373 | static int batadv_tt_changes_fill_buff(struct batadv_priv *bat_priv, |
a513088d SE |
374 | unsigned char **packet_buff, |
375 | int *packet_buff_len, | |
376 | int min_packet_len) | |
c6c8fea2 | 377 | { |
56303d34 | 378 | struct batadv_tt_change_node *entry, *safe; |
be9aa4c1 ML |
379 | int count = 0, tot_changes = 0, new_len; |
380 | unsigned char *tt_buff; | |
381 | ||
a513088d SE |
382 | batadv_tt_prepare_packet_buff(bat_priv, packet_buff, |
383 | packet_buff_len, min_packet_len); | |
c6c8fea2 | 384 | |
be9aa4c1 ML |
385 | new_len = *packet_buff_len - min_packet_len; |
386 | tt_buff = *packet_buff + min_packet_len; | |
387 | ||
388 | if (new_len > 0) | |
08c36d3e | 389 | tot_changes = new_len / batadv_tt_len(1); |
c6c8fea2 | 390 | |
807736f6 SE |
391 | spin_lock_bh(&bat_priv->tt.changes_list_lock); |
392 | atomic_set(&bat_priv->tt.local_changes, 0); | |
c6c8fea2 | 393 | |
807736f6 | 394 | list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list, |
7c64fd98 | 395 | list) { |
a73105b8 | 396 | if (count < tot_changes) { |
08c36d3e | 397 | memcpy(tt_buff + batadv_tt_len(count), |
96412690 | 398 | &entry->change, sizeof(struct batadv_tt_change)); |
c6c8fea2 SE |
399 | count++; |
400 | } | |
a73105b8 AQ |
401 | list_del(&entry->list); |
402 | kfree(entry); | |
c6c8fea2 | 403 | } |
807736f6 | 404 | spin_unlock_bh(&bat_priv->tt.changes_list_lock); |
a73105b8 AQ |
405 | |
406 | /* Keep the buffer for possible tt_request */ | |
807736f6 SE |
407 | spin_lock_bh(&bat_priv->tt.last_changeset_lock); |
408 | kfree(bat_priv->tt.last_changeset); | |
409 | bat_priv->tt.last_changeset_len = 0; | |
410 | bat_priv->tt.last_changeset = NULL; | |
be9aa4c1 ML |
411 | /* check whether this new OGM has no changes due to size problems */ |
412 | if (new_len > 0) { | |
413 | /* if kmalloc() fails we will reply with the full table | |
a73105b8 AQ |
414 | * instead of providing the diff |
415 | */ | |
807736f6 SE |
416 | bat_priv->tt.last_changeset = kmalloc(new_len, GFP_ATOMIC); |
417 | if (bat_priv->tt.last_changeset) { | |
418 | memcpy(bat_priv->tt.last_changeset, tt_buff, new_len); | |
419 | bat_priv->tt.last_changeset_len = new_len; | |
a73105b8 AQ |
420 | } |
421 | } | |
807736f6 | 422 | spin_unlock_bh(&bat_priv->tt.last_changeset_lock); |
c6c8fea2 | 423 | |
08ad76ec | 424 | return count; |
c6c8fea2 SE |
425 | } |
426 | ||
08c36d3e | 427 | int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset) |
c6c8fea2 SE |
428 | { |
429 | struct net_device *net_dev = (struct net_device *)seq->private; | |
56303d34 | 430 | struct batadv_priv *bat_priv = netdev_priv(net_dev); |
807736f6 | 431 | struct batadv_hashtable *hash = bat_priv->tt.local_hash; |
56303d34 SE |
432 | struct batadv_tt_common_entry *tt_common_entry; |
433 | struct batadv_hard_iface *primary_if; | |
7aadf889 | 434 | struct hlist_node *node; |
c6c8fea2 | 435 | struct hlist_head *head; |
c90681b8 | 436 | uint32_t i; |
c6c8fea2 | 437 | |
30da63a6 ML |
438 | primary_if = batadv_seq_print_text_primary_if_get(seq); |
439 | if (!primary_if) | |
32ae9b22 | 440 | goto out; |
c6c8fea2 | 441 | |
86ceb360 SE |
442 | seq_printf(seq, |
443 | "Locally retrieved addresses (from %s) announced via TT (TTVN: %u):\n", | |
807736f6 | 444 | net_dev->name, (uint8_t)atomic_read(&bat_priv->tt.vn)); |
c6c8fea2 | 445 | |
c6c8fea2 SE |
446 | for (i = 0; i < hash->size; i++) { |
447 | head = &hash->table[i]; | |
448 | ||
7aadf889 | 449 | rcu_read_lock(); |
48100bac | 450 | hlist_for_each_entry_rcu(tt_common_entry, node, |
7aadf889 | 451 | head, hash_entry) { |
d099c2c5 | 452 | seq_printf(seq, " * %pM [%c%c%c%c%c]\n", |
7c64fd98 SE |
453 | tt_common_entry->addr, |
454 | (tt_common_entry->flags & | |
acd34afa | 455 | BATADV_TT_CLIENT_ROAM ? 'R' : '.'), |
7c64fd98 | 456 | (tt_common_entry->flags & |
acd34afa | 457 | BATADV_TT_CLIENT_NOPURGE ? 'P' : '.'), |
7c64fd98 | 458 | (tt_common_entry->flags & |
acd34afa | 459 | BATADV_TT_CLIENT_NEW ? 'N' : '.'), |
7c64fd98 | 460 | (tt_common_entry->flags & |
acd34afa | 461 | BATADV_TT_CLIENT_PENDING ? 'X' : '.'), |
7c64fd98 | 462 | (tt_common_entry->flags & |
acd34afa | 463 | BATADV_TT_CLIENT_WIFI ? 'W' : '.')); |
c6c8fea2 | 464 | } |
7aadf889 | 465 | rcu_read_unlock(); |
c6c8fea2 | 466 | } |
32ae9b22 ML |
467 | out: |
468 | if (primary_if) | |
e5d89254 | 469 | batadv_hardif_free_ref(primary_if); |
30da63a6 | 470 | return 0; |
c6c8fea2 SE |
471 | } |
472 | ||
56303d34 SE |
473 | static void |
474 | batadv_tt_local_set_pending(struct batadv_priv *bat_priv, | |
475 | struct batadv_tt_local_entry *tt_local_entry, | |
476 | uint16_t flags, const char *message) | |
c6c8fea2 | 477 | { |
a513088d SE |
478 | batadv_tt_local_event(bat_priv, tt_local_entry->common.addr, |
479 | tt_local_entry->common.flags | flags); | |
a73105b8 | 480 | |
015758d0 AQ |
481 | /* The local client has to be marked as "pending to be removed" but has |
482 | * to be kept in the table in order to send it in a full table | |
9cfc7bd6 SE |
483 | * response issued before the net ttvn increment (consistency check) |
484 | */ | |
acd34afa | 485 | tt_local_entry->common.flags |= BATADV_TT_CLIENT_PENDING; |
c566dbbe | 486 | |
39c75a51 | 487 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf SE |
488 | "Local tt entry (%pM) pending to be removed: %s\n", |
489 | tt_local_entry->common.addr, message); | |
c6c8fea2 SE |
490 | } |
491 | ||
56303d34 | 492 | void batadv_tt_local_remove(struct batadv_priv *bat_priv, const uint8_t *addr, |
08c36d3e | 493 | const char *message, bool roaming) |
c6c8fea2 | 494 | { |
56303d34 | 495 | struct batadv_tt_local_entry *tt_local_entry = NULL; |
42d0b044 | 496 | uint16_t flags; |
c6c8fea2 | 497 | |
a513088d | 498 | tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr); |
7683fdc1 AQ |
499 | if (!tt_local_entry) |
500 | goto out; | |
501 | ||
acd34afa | 502 | flags = BATADV_TT_CLIENT_DEL; |
42d0b044 | 503 | if (roaming) |
acd34afa | 504 | flags |= BATADV_TT_CLIENT_ROAM; |
42d0b044 SE |
505 | |
506 | batadv_tt_local_set_pending(bat_priv, tt_local_entry, flags, message); | |
7683fdc1 AQ |
507 | out: |
508 | if (tt_local_entry) | |
a513088d | 509 | batadv_tt_local_entry_free_ref(tt_local_entry); |
c6c8fea2 SE |
510 | } |
511 | ||
56303d34 | 512 | static void batadv_tt_local_purge_list(struct batadv_priv *bat_priv, |
acd34afa | 513 | struct hlist_head *head) |
c6c8fea2 | 514 | { |
56303d34 SE |
515 | struct batadv_tt_local_entry *tt_local_entry; |
516 | struct batadv_tt_common_entry *tt_common_entry; | |
7aadf889 | 517 | struct hlist_node *node, *node_tmp; |
acd34afa SE |
518 | |
519 | hlist_for_each_entry_safe(tt_common_entry, node, node_tmp, head, | |
520 | hash_entry) { | |
521 | tt_local_entry = container_of(tt_common_entry, | |
56303d34 SE |
522 | struct batadv_tt_local_entry, |
523 | common); | |
acd34afa SE |
524 | if (tt_local_entry->common.flags & BATADV_TT_CLIENT_NOPURGE) |
525 | continue; | |
526 | ||
527 | /* entry already marked for deletion */ | |
528 | if (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING) | |
529 | continue; | |
530 | ||
531 | if (!batadv_has_timed_out(tt_local_entry->last_seen, | |
532 | BATADV_TT_LOCAL_TIMEOUT)) | |
533 | continue; | |
534 | ||
535 | batadv_tt_local_set_pending(bat_priv, tt_local_entry, | |
536 | BATADV_TT_CLIENT_DEL, "timed out"); | |
537 | } | |
538 | } | |
539 | ||
56303d34 | 540 | static void batadv_tt_local_purge(struct batadv_priv *bat_priv) |
acd34afa | 541 | { |
807736f6 | 542 | struct batadv_hashtable *hash = bat_priv->tt.local_hash; |
c6c8fea2 | 543 | struct hlist_head *head; |
7683fdc1 | 544 | spinlock_t *list_lock; /* protects write access to the hash lists */ |
c90681b8 | 545 | uint32_t i; |
c6c8fea2 | 546 | |
c6c8fea2 SE |
547 | for (i = 0; i < hash->size; i++) { |
548 | head = &hash->table[i]; | |
7683fdc1 | 549 | list_lock = &hash->list_locks[i]; |
c6c8fea2 | 550 | |
7683fdc1 | 551 | spin_lock_bh(list_lock); |
acd34afa | 552 | batadv_tt_local_purge_list(bat_priv, head); |
7683fdc1 | 553 | spin_unlock_bh(list_lock); |
c6c8fea2 SE |
554 | } |
555 | ||
c6c8fea2 SE |
556 | } |
557 | ||
56303d34 | 558 | static void batadv_tt_local_table_free(struct batadv_priv *bat_priv) |
c6c8fea2 | 559 | { |
5bf74e9c | 560 | struct batadv_hashtable *hash; |
a73105b8 | 561 | spinlock_t *list_lock; /* protects write access to the hash lists */ |
56303d34 SE |
562 | struct batadv_tt_common_entry *tt_common_entry; |
563 | struct batadv_tt_local_entry *tt_local; | |
7683fdc1 AQ |
564 | struct hlist_node *node, *node_tmp; |
565 | struct hlist_head *head; | |
c90681b8 | 566 | uint32_t i; |
a73105b8 | 567 | |
807736f6 | 568 | if (!bat_priv->tt.local_hash) |
c6c8fea2 SE |
569 | return; |
570 | ||
807736f6 | 571 | hash = bat_priv->tt.local_hash; |
a73105b8 AQ |
572 | |
573 | for (i = 0; i < hash->size; i++) { | |
574 | head = &hash->table[i]; | |
575 | list_lock = &hash->list_locks[i]; | |
576 | ||
577 | spin_lock_bh(list_lock); | |
48100bac | 578 | hlist_for_each_entry_safe(tt_common_entry, node, node_tmp, |
a73105b8 AQ |
579 | head, hash_entry) { |
580 | hlist_del_rcu(node); | |
56303d34 SE |
581 | tt_local = container_of(tt_common_entry, |
582 | struct batadv_tt_local_entry, | |
583 | common); | |
584 | batadv_tt_local_entry_free_ref(tt_local); | |
a73105b8 AQ |
585 | } |
586 | spin_unlock_bh(list_lock); | |
587 | } | |
588 | ||
1a8eaf07 | 589 | batadv_hash_destroy(hash); |
a73105b8 | 590 | |
807736f6 | 591 | bat_priv->tt.local_hash = NULL; |
c6c8fea2 SE |
592 | } |
593 | ||
56303d34 | 594 | static int batadv_tt_global_init(struct batadv_priv *bat_priv) |
c6c8fea2 | 595 | { |
807736f6 | 596 | if (bat_priv->tt.global_hash) |
5346c35e | 597 | return 0; |
c6c8fea2 | 598 | |
807736f6 | 599 | bat_priv->tt.global_hash = batadv_hash_new(1024); |
c6c8fea2 | 600 | |
807736f6 | 601 | if (!bat_priv->tt.global_hash) |
5346c35e | 602 | return -ENOMEM; |
c6c8fea2 | 603 | |
5346c35e | 604 | return 0; |
c6c8fea2 SE |
605 | } |
606 | ||
56303d34 | 607 | static void batadv_tt_changes_list_free(struct batadv_priv *bat_priv) |
c6c8fea2 | 608 | { |
56303d34 | 609 | struct batadv_tt_change_node *entry, *safe; |
c6c8fea2 | 610 | |
807736f6 | 611 | spin_lock_bh(&bat_priv->tt.changes_list_lock); |
c6c8fea2 | 612 | |
807736f6 | 613 | list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list, |
a73105b8 AQ |
614 | list) { |
615 | list_del(&entry->list); | |
616 | kfree(entry); | |
617 | } | |
c6c8fea2 | 618 | |
807736f6 SE |
619 | atomic_set(&bat_priv->tt.local_changes, 0); |
620 | spin_unlock_bh(&bat_priv->tt.changes_list_lock); | |
a73105b8 | 621 | } |
c6c8fea2 | 622 | |
d657e621 AQ |
623 | /* retrieves the orig_tt_list_entry belonging to orig_node from the |
624 | * batadv_tt_global_entry list | |
625 | * | |
626 | * returns it with an increased refcounter, NULL if not found | |
db08e6e5 | 627 | */ |
d657e621 AQ |
628 | static struct batadv_tt_orig_list_entry * |
629 | batadv_tt_global_orig_entry_find(const struct batadv_tt_global_entry *entry, | |
630 | const struct batadv_orig_node *orig_node) | |
db08e6e5 | 631 | { |
d657e621 | 632 | struct batadv_tt_orig_list_entry *tmp_orig_entry, *orig_entry = NULL; |
db08e6e5 SW |
633 | const struct hlist_head *head; |
634 | struct hlist_node *node; | |
db08e6e5 SW |
635 | |
636 | rcu_read_lock(); | |
637 | head = &entry->orig_list; | |
638 | hlist_for_each_entry_rcu(tmp_orig_entry, node, head, list) { | |
d657e621 AQ |
639 | if (tmp_orig_entry->orig_node != orig_node) |
640 | continue; | |
641 | if (!atomic_inc_not_zero(&tmp_orig_entry->refcount)) | |
642 | continue; | |
643 | ||
644 | orig_entry = tmp_orig_entry; | |
645 | break; | |
db08e6e5 SW |
646 | } |
647 | rcu_read_unlock(); | |
d657e621 AQ |
648 | |
649 | return orig_entry; | |
650 | } | |
651 | ||
652 | /* find out if an orig_node is already in the list of a tt_global_entry. | |
653 | * returns true if found, false otherwise | |
654 | */ | |
655 | static bool | |
656 | batadv_tt_global_entry_has_orig(const struct batadv_tt_global_entry *entry, | |
657 | const struct batadv_orig_node *orig_node) | |
658 | { | |
659 | struct batadv_tt_orig_list_entry *orig_entry; | |
660 | bool found = false; | |
661 | ||
662 | orig_entry = batadv_tt_global_orig_entry_find(entry, orig_node); | |
663 | if (orig_entry) { | |
664 | found = true; | |
665 | batadv_tt_orig_list_entry_free_ref(orig_entry); | |
666 | } | |
667 | ||
db08e6e5 SW |
668 | return found; |
669 | } | |
670 | ||
a513088d | 671 | static void |
d657e621 | 672 | batadv_tt_global_orig_entry_add(struct batadv_tt_global_entry *tt_global, |
56303d34 | 673 | struct batadv_orig_node *orig_node, int ttvn) |
db08e6e5 | 674 | { |
56303d34 | 675 | struct batadv_tt_orig_list_entry *orig_entry; |
db08e6e5 | 676 | |
d657e621 | 677 | orig_entry = batadv_tt_global_orig_entry_find(tt_global, orig_node); |
30cfd02b AQ |
678 | if (orig_entry) { |
679 | /* refresh the ttvn: the current value could be a bogus one that | |
680 | * was added during a "temporary client detection" | |
681 | */ | |
682 | orig_entry->ttvn = ttvn; | |
d657e621 | 683 | goto out; |
30cfd02b | 684 | } |
d657e621 | 685 | |
db08e6e5 SW |
686 | orig_entry = kzalloc(sizeof(*orig_entry), GFP_ATOMIC); |
687 | if (!orig_entry) | |
d657e621 | 688 | goto out; |
db08e6e5 SW |
689 | |
690 | INIT_HLIST_NODE(&orig_entry->list); | |
691 | atomic_inc(&orig_node->refcount); | |
692 | atomic_inc(&orig_node->tt_size); | |
693 | orig_entry->orig_node = orig_node; | |
694 | orig_entry->ttvn = ttvn; | |
d657e621 | 695 | atomic_set(&orig_entry->refcount, 2); |
db08e6e5 | 696 | |
d657e621 | 697 | spin_lock_bh(&tt_global->list_lock); |
db08e6e5 | 698 | hlist_add_head_rcu(&orig_entry->list, |
d657e621 AQ |
699 | &tt_global->orig_list); |
700 | spin_unlock_bh(&tt_global->list_lock); | |
701 | out: | |
702 | if (orig_entry) | |
703 | batadv_tt_orig_list_entry_free_ref(orig_entry); | |
db08e6e5 SW |
704 | } |
705 | ||
a73105b8 | 706 | /* caller must hold orig_node refcount */ |
56303d34 SE |
707 | int batadv_tt_global_add(struct batadv_priv *bat_priv, |
708 | struct batadv_orig_node *orig_node, | |
d4f44692 AQ |
709 | const unsigned char *tt_addr, uint8_t flags, |
710 | uint8_t ttvn) | |
a73105b8 | 711 | { |
56303d34 | 712 | struct batadv_tt_global_entry *tt_global_entry = NULL; |
7683fdc1 | 713 | int ret = 0; |
80b3f58c | 714 | int hash_added; |
56303d34 | 715 | struct batadv_tt_common_entry *common; |
c6c8fea2 | 716 | |
a513088d | 717 | tt_global_entry = batadv_tt_global_hash_find(bat_priv, tt_addr); |
a73105b8 AQ |
718 | |
719 | if (!tt_global_entry) { | |
d4f44692 | 720 | tt_global_entry = kzalloc(sizeof(*tt_global_entry), GFP_ATOMIC); |
a73105b8 | 721 | if (!tt_global_entry) |
7683fdc1 AQ |
722 | goto out; |
723 | ||
c0a55929 SE |
724 | common = &tt_global_entry->common; |
725 | memcpy(common->addr, tt_addr, ETH_ALEN); | |
db08e6e5 | 726 | |
d4f44692 | 727 | common->flags = flags; |
cc47f66e | 728 | tt_global_entry->roam_at = 0; |
c0a55929 | 729 | atomic_set(&common->refcount, 2); |
30cfd02b | 730 | common->added_at = jiffies; |
db08e6e5 SW |
731 | |
732 | INIT_HLIST_HEAD(&tt_global_entry->orig_list); | |
733 | spin_lock_init(&tt_global_entry->list_lock); | |
7683fdc1 | 734 | |
807736f6 | 735 | hash_added = batadv_hash_add(bat_priv->tt.global_hash, |
a513088d SE |
736 | batadv_compare_tt, |
737 | batadv_choose_orig, common, | |
738 | &common->hash_entry); | |
80b3f58c SW |
739 | |
740 | if (unlikely(hash_added != 0)) { | |
741 | /* remove the reference for the hash */ | |
a513088d | 742 | batadv_tt_global_entry_free_ref(tt_global_entry); |
80b3f58c SW |
743 | goto out_remove; |
744 | } | |
a73105b8 | 745 | } else { |
30cfd02b AQ |
746 | /* If there is already a global entry, we can use this one for |
747 | * our processing. | |
748 | * But if we are trying to add a temporary client we can exit | |
749 | * directly because the temporary information should never | |
750 | * override any already known client state (whatever it is) | |
751 | */ | |
752 | if (flags & BATADV_TT_CLIENT_TEMP) | |
753 | goto out; | |
754 | ||
755 | /* if the client was temporary added before receiving the first | |
756 | * OGM announcing it, we have to clear the TEMP flag | |
757 | */ | |
758 | tt_global_entry->common.flags &= ~BATADV_TT_CLIENT_TEMP; | |
db08e6e5 | 759 | |
acd34afa SE |
760 | /* If there is the BATADV_TT_CLIENT_ROAM flag set, there is only |
761 | * one originator left in the list and we previously received a | |
db08e6e5 SW |
762 | * delete + roaming change for this originator. |
763 | * | |
764 | * We should first delete the old originator before adding the | |
765 | * new one. | |
766 | */ | |
acd34afa | 767 | if (tt_global_entry->common.flags & BATADV_TT_CLIENT_ROAM) { |
a513088d | 768 | batadv_tt_global_del_orig_list(tt_global_entry); |
acd34afa | 769 | tt_global_entry->common.flags &= ~BATADV_TT_CLIENT_ROAM; |
db08e6e5 | 770 | tt_global_entry->roam_at = 0; |
a73105b8 AQ |
771 | } |
772 | } | |
30cfd02b | 773 | /* add the new orig_entry (if needed) or update it */ |
d657e621 | 774 | batadv_tt_global_orig_entry_add(tt_global_entry, orig_node, ttvn); |
c6c8fea2 | 775 | |
39c75a51 | 776 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf SE |
777 | "Creating new global tt entry: %pM (via %pM)\n", |
778 | tt_global_entry->common.addr, orig_node->orig); | |
c10dba05 | 779 | ret = 1; |
c6c8fea2 | 780 | |
80b3f58c | 781 | out_remove: |
a73105b8 | 782 | /* remove address from local hash if present */ |
08c36d3e | 783 | batadv_tt_local_remove(bat_priv, tt_global_entry->common.addr, |
acd34afa SE |
784 | "global tt received", |
785 | flags & BATADV_TT_CLIENT_ROAM); | |
7683fdc1 AQ |
786 | out: |
787 | if (tt_global_entry) | |
a513088d | 788 | batadv_tt_global_entry_free_ref(tt_global_entry); |
7683fdc1 | 789 | return ret; |
c6c8fea2 SE |
790 | } |
791 | ||
db08e6e5 SW |
792 | /* print all orig nodes who announce the address for this global entry. |
793 | * it is assumed that the caller holds rcu_read_lock(); | |
794 | */ | |
a513088d | 795 | static void |
56303d34 | 796 | batadv_tt_global_print_entry(struct batadv_tt_global_entry *tt_global_entry, |
a513088d | 797 | struct seq_file *seq) |
db08e6e5 SW |
798 | { |
799 | struct hlist_head *head; | |
800 | struct hlist_node *node; | |
56303d34 SE |
801 | struct batadv_tt_orig_list_entry *orig_entry; |
802 | struct batadv_tt_common_entry *tt_common_entry; | |
db08e6e5 SW |
803 | uint16_t flags; |
804 | uint8_t last_ttvn; | |
805 | ||
806 | tt_common_entry = &tt_global_entry->common; | |
807 | ||
808 | head = &tt_global_entry->orig_list; | |
809 | ||
810 | hlist_for_each_entry_rcu(orig_entry, node, head, list) { | |
811 | flags = tt_common_entry->flags; | |
812 | last_ttvn = atomic_read(&orig_entry->orig_node->last_ttvn); | |
30cfd02b | 813 | seq_printf(seq, " * %pM (%3u) via %pM (%3u) [%c%c%c]\n", |
db08e6e5 SW |
814 | tt_global_entry->common.addr, orig_entry->ttvn, |
815 | orig_entry->orig_node->orig, last_ttvn, | |
acd34afa | 816 | (flags & BATADV_TT_CLIENT_ROAM ? 'R' : '.'), |
30cfd02b AQ |
817 | (flags & BATADV_TT_CLIENT_WIFI ? 'W' : '.'), |
818 | (flags & BATADV_TT_CLIENT_TEMP ? 'T' : '.')); | |
db08e6e5 SW |
819 | } |
820 | } | |
821 | ||
08c36d3e | 822 | int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset) |
c6c8fea2 SE |
823 | { |
824 | struct net_device *net_dev = (struct net_device *)seq->private; | |
56303d34 | 825 | struct batadv_priv *bat_priv = netdev_priv(net_dev); |
807736f6 | 826 | struct batadv_hashtable *hash = bat_priv->tt.global_hash; |
56303d34 SE |
827 | struct batadv_tt_common_entry *tt_common_entry; |
828 | struct batadv_tt_global_entry *tt_global; | |
829 | struct batadv_hard_iface *primary_if; | |
7aadf889 | 830 | struct hlist_node *node; |
c6c8fea2 | 831 | struct hlist_head *head; |
c90681b8 | 832 | uint32_t i; |
c6c8fea2 | 833 | |
30da63a6 ML |
834 | primary_if = batadv_seq_print_text_primary_if_get(seq); |
835 | if (!primary_if) | |
32ae9b22 | 836 | goto out; |
c6c8fea2 | 837 | |
2dafb49d AQ |
838 | seq_printf(seq, |
839 | "Globally announced TT entries received via the mesh %s\n", | |
c6c8fea2 | 840 | net_dev->name); |
df6edb9e AQ |
841 | seq_printf(seq, " %-13s %s %-15s %s %s\n", |
842 | "Client", "(TTVN)", "Originator", "(Curr TTVN)", "Flags"); | |
c6c8fea2 | 843 | |
c6c8fea2 SE |
844 | for (i = 0; i < hash->size; i++) { |
845 | head = &hash->table[i]; | |
846 | ||
7aadf889 | 847 | rcu_read_lock(); |
48100bac | 848 | hlist_for_each_entry_rcu(tt_common_entry, node, |
7aadf889 | 849 | head, hash_entry) { |
56303d34 SE |
850 | tt_global = container_of(tt_common_entry, |
851 | struct batadv_tt_global_entry, | |
852 | common); | |
853 | batadv_tt_global_print_entry(tt_global, seq); | |
c6c8fea2 | 854 | } |
7aadf889 | 855 | rcu_read_unlock(); |
c6c8fea2 | 856 | } |
32ae9b22 ML |
857 | out: |
858 | if (primary_if) | |
e5d89254 | 859 | batadv_hardif_free_ref(primary_if); |
30da63a6 | 860 | return 0; |
c6c8fea2 SE |
861 | } |
862 | ||
db08e6e5 | 863 | /* deletes the orig list of a tt_global_entry */ |
a513088d | 864 | static void |
56303d34 | 865 | batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry) |
c6c8fea2 | 866 | { |
db08e6e5 SW |
867 | struct hlist_head *head; |
868 | struct hlist_node *node, *safe; | |
56303d34 | 869 | struct batadv_tt_orig_list_entry *orig_entry; |
a73105b8 | 870 | |
db08e6e5 SW |
871 | spin_lock_bh(&tt_global_entry->list_lock); |
872 | head = &tt_global_entry->orig_list; | |
873 | hlist_for_each_entry_safe(orig_entry, node, safe, head, list) { | |
874 | hlist_del_rcu(node); | |
a513088d | 875 | batadv_tt_orig_list_entry_free_ref(orig_entry); |
db08e6e5 SW |
876 | } |
877 | spin_unlock_bh(&tt_global_entry->list_lock); | |
c6c8fea2 | 878 | |
db08e6e5 SW |
879 | } |
880 | ||
a513088d | 881 | static void |
56303d34 SE |
882 | batadv_tt_global_del_orig_entry(struct batadv_priv *bat_priv, |
883 | struct batadv_tt_global_entry *tt_global_entry, | |
884 | struct batadv_orig_node *orig_node, | |
a513088d | 885 | const char *message) |
db08e6e5 SW |
886 | { |
887 | struct hlist_head *head; | |
888 | struct hlist_node *node, *safe; | |
56303d34 | 889 | struct batadv_tt_orig_list_entry *orig_entry; |
db08e6e5 SW |
890 | |
891 | spin_lock_bh(&tt_global_entry->list_lock); | |
892 | head = &tt_global_entry->orig_list; | |
893 | hlist_for_each_entry_safe(orig_entry, node, safe, head, list) { | |
894 | if (orig_entry->orig_node == orig_node) { | |
39c75a51 | 895 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf SE |
896 | "Deleting %pM from global tt entry %pM: %s\n", |
897 | orig_node->orig, | |
898 | tt_global_entry->common.addr, message); | |
db08e6e5 | 899 | hlist_del_rcu(node); |
a513088d | 900 | batadv_tt_orig_list_entry_free_ref(orig_entry); |
db08e6e5 SW |
901 | } |
902 | } | |
903 | spin_unlock_bh(&tt_global_entry->list_lock); | |
904 | } | |
905 | ||
56303d34 SE |
906 | static void |
907 | batadv_tt_global_del_struct(struct batadv_priv *bat_priv, | |
908 | struct batadv_tt_global_entry *tt_global_entry, | |
909 | const char *message) | |
db08e6e5 | 910 | { |
39c75a51 SE |
911 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
912 | "Deleting global tt entry %pM: %s\n", | |
1eda58bf | 913 | tt_global_entry->common.addr, message); |
7683fdc1 | 914 | |
807736f6 | 915 | batadv_hash_remove(bat_priv->tt.global_hash, batadv_compare_tt, |
da641193 | 916 | batadv_choose_orig, tt_global_entry->common.addr); |
a513088d | 917 | batadv_tt_global_entry_free_ref(tt_global_entry); |
db08e6e5 | 918 | |
c6c8fea2 SE |
919 | } |
920 | ||
db08e6e5 | 921 | /* If the client is to be deleted, we check if it is the last origantor entry |
acd34afa SE |
922 | * within tt_global entry. If yes, we set the BATADV_TT_CLIENT_ROAM flag and the |
923 | * timer, otherwise we simply remove the originator scheduled for deletion. | |
db08e6e5 | 924 | */ |
a513088d | 925 | static void |
56303d34 SE |
926 | batadv_tt_global_del_roaming(struct batadv_priv *bat_priv, |
927 | struct batadv_tt_global_entry *tt_global_entry, | |
928 | struct batadv_orig_node *orig_node, | |
929 | const char *message) | |
db08e6e5 SW |
930 | { |
931 | bool last_entry = true; | |
932 | struct hlist_head *head; | |
933 | struct hlist_node *node; | |
56303d34 | 934 | struct batadv_tt_orig_list_entry *orig_entry; |
db08e6e5 SW |
935 | |
936 | /* no local entry exists, case 1: | |
937 | * Check if this is the last one or if other entries exist. | |
938 | */ | |
939 | ||
940 | rcu_read_lock(); | |
941 | head = &tt_global_entry->orig_list; | |
942 | hlist_for_each_entry_rcu(orig_entry, node, head, list) { | |
943 | if (orig_entry->orig_node != orig_node) { | |
944 | last_entry = false; | |
945 | break; | |
946 | } | |
947 | } | |
948 | rcu_read_unlock(); | |
949 | ||
950 | if (last_entry) { | |
951 | /* its the last one, mark for roaming. */ | |
acd34afa | 952 | tt_global_entry->common.flags |= BATADV_TT_CLIENT_ROAM; |
db08e6e5 SW |
953 | tt_global_entry->roam_at = jiffies; |
954 | } else | |
955 | /* there is another entry, we can simply delete this | |
956 | * one and can still use the other one. | |
957 | */ | |
a513088d SE |
958 | batadv_tt_global_del_orig_entry(bat_priv, tt_global_entry, |
959 | orig_node, message); | |
db08e6e5 SW |
960 | } |
961 | ||
962 | ||
963 | ||
56303d34 SE |
964 | static void batadv_tt_global_del(struct batadv_priv *bat_priv, |
965 | struct batadv_orig_node *orig_node, | |
a513088d SE |
966 | const unsigned char *addr, |
967 | const char *message, bool roaming) | |
a73105b8 | 968 | { |
56303d34 SE |
969 | struct batadv_tt_global_entry *tt_global_entry = NULL; |
970 | struct batadv_tt_local_entry *local_entry = NULL; | |
a73105b8 | 971 | |
a513088d | 972 | tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr); |
db08e6e5 | 973 | if (!tt_global_entry) |
7683fdc1 | 974 | goto out; |
a73105b8 | 975 | |
db08e6e5 | 976 | if (!roaming) { |
a513088d SE |
977 | batadv_tt_global_del_orig_entry(bat_priv, tt_global_entry, |
978 | orig_node, message); | |
db08e6e5 SW |
979 | |
980 | if (hlist_empty(&tt_global_entry->orig_list)) | |
a513088d SE |
981 | batadv_tt_global_del_struct(bat_priv, tt_global_entry, |
982 | message); | |
db08e6e5 SW |
983 | |
984 | goto out; | |
985 | } | |
92f90f56 SE |
986 | |
987 | /* if we are deleting a global entry due to a roam | |
988 | * event, there are two possibilities: | |
db08e6e5 SW |
989 | * 1) the client roamed from node A to node B => if there |
990 | * is only one originator left for this client, we mark | |
acd34afa | 991 | * it with BATADV_TT_CLIENT_ROAM, we start a timer and we |
92f90f56 SE |
992 | * wait for node B to claim it. In case of timeout |
993 | * the entry is purged. | |
db08e6e5 SW |
994 | * |
995 | * If there are other originators left, we directly delete | |
996 | * the originator. | |
92f90f56 | 997 | * 2) the client roamed to us => we can directly delete |
9cfc7bd6 SE |
998 | * the global entry, since it is useless now. |
999 | */ | |
a513088d SE |
1000 | local_entry = batadv_tt_local_hash_find(bat_priv, |
1001 | tt_global_entry->common.addr); | |
1002 | if (local_entry) { | |
db08e6e5 | 1003 | /* local entry exists, case 2: client roamed to us. */ |
a513088d SE |
1004 | batadv_tt_global_del_orig_list(tt_global_entry); |
1005 | batadv_tt_global_del_struct(bat_priv, tt_global_entry, message); | |
db08e6e5 SW |
1006 | } else |
1007 | /* no local entry exists, case 1: check for roaming */ | |
a513088d SE |
1008 | batadv_tt_global_del_roaming(bat_priv, tt_global_entry, |
1009 | orig_node, message); | |
92f90f56 | 1010 | |
92f90f56 | 1011 | |
cc47f66e | 1012 | out: |
7683fdc1 | 1013 | if (tt_global_entry) |
a513088d SE |
1014 | batadv_tt_global_entry_free_ref(tt_global_entry); |
1015 | if (local_entry) | |
1016 | batadv_tt_local_entry_free_ref(local_entry); | |
a73105b8 AQ |
1017 | } |
1018 | ||
56303d34 SE |
1019 | void batadv_tt_global_del_orig(struct batadv_priv *bat_priv, |
1020 | struct batadv_orig_node *orig_node, | |
1021 | const char *message) | |
c6c8fea2 | 1022 | { |
56303d34 SE |
1023 | struct batadv_tt_global_entry *tt_global; |
1024 | struct batadv_tt_common_entry *tt_common_entry; | |
c90681b8 | 1025 | uint32_t i; |
807736f6 | 1026 | struct batadv_hashtable *hash = bat_priv->tt.global_hash; |
a73105b8 AQ |
1027 | struct hlist_node *node, *safe; |
1028 | struct hlist_head *head; | |
7683fdc1 | 1029 | spinlock_t *list_lock; /* protects write access to the hash lists */ |
c6c8fea2 | 1030 | |
6e801494 SW |
1031 | if (!hash) |
1032 | return; | |
1033 | ||
a73105b8 AQ |
1034 | for (i = 0; i < hash->size; i++) { |
1035 | head = &hash->table[i]; | |
7683fdc1 | 1036 | list_lock = &hash->list_locks[i]; |
c6c8fea2 | 1037 | |
7683fdc1 | 1038 | spin_lock_bh(list_lock); |
48100bac | 1039 | hlist_for_each_entry_safe(tt_common_entry, node, safe, |
7c64fd98 | 1040 | head, hash_entry) { |
56303d34 SE |
1041 | tt_global = container_of(tt_common_entry, |
1042 | struct batadv_tt_global_entry, | |
1043 | common); | |
db08e6e5 | 1044 | |
56303d34 | 1045 | batadv_tt_global_del_orig_entry(bat_priv, tt_global, |
a513088d | 1046 | orig_node, message); |
db08e6e5 | 1047 | |
56303d34 | 1048 | if (hlist_empty(&tt_global->orig_list)) { |
39c75a51 | 1049 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf | 1050 | "Deleting global tt entry %pM: %s\n", |
56303d34 | 1051 | tt_global->common.addr, message); |
7683fdc1 | 1052 | hlist_del_rcu(node); |
56303d34 | 1053 | batadv_tt_global_entry_free_ref(tt_global); |
7683fdc1 | 1054 | } |
a73105b8 | 1055 | } |
7683fdc1 | 1056 | spin_unlock_bh(list_lock); |
c6c8fea2 | 1057 | } |
17071578 | 1058 | orig_node->tt_initialised = false; |
c6c8fea2 SE |
1059 | } |
1060 | ||
30cfd02b AQ |
1061 | static bool batadv_tt_global_to_purge(struct batadv_tt_global_entry *tt_global, |
1062 | char **msg) | |
cc47f66e | 1063 | { |
30cfd02b AQ |
1064 | bool purge = false; |
1065 | unsigned long roam_timeout = BATADV_TT_CLIENT_ROAM_TIMEOUT; | |
1066 | unsigned long temp_timeout = BATADV_TT_CLIENT_TEMP_TIMEOUT; | |
42d0b044 | 1067 | |
30cfd02b AQ |
1068 | if ((tt_global->common.flags & BATADV_TT_CLIENT_ROAM) && |
1069 | batadv_has_timed_out(tt_global->roam_at, roam_timeout)) { | |
1070 | purge = true; | |
1071 | *msg = "Roaming timeout\n"; | |
1072 | } | |
42d0b044 | 1073 | |
30cfd02b AQ |
1074 | if ((tt_global->common.flags & BATADV_TT_CLIENT_TEMP) && |
1075 | batadv_has_timed_out(tt_global->common.added_at, temp_timeout)) { | |
1076 | purge = true; | |
1077 | *msg = "Temporary client timeout\n"; | |
42d0b044 | 1078 | } |
30cfd02b AQ |
1079 | |
1080 | return purge; | |
42d0b044 SE |
1081 | } |
1082 | ||
30cfd02b | 1083 | static void batadv_tt_global_purge(struct batadv_priv *bat_priv) |
42d0b044 | 1084 | { |
807736f6 | 1085 | struct batadv_hashtable *hash = bat_priv->tt.global_hash; |
cc47f66e | 1086 | struct hlist_head *head; |
30cfd02b | 1087 | struct hlist_node *node, *node_tmp; |
7683fdc1 | 1088 | spinlock_t *list_lock; /* protects write access to the hash lists */ |
c90681b8 | 1089 | uint32_t i; |
30cfd02b AQ |
1090 | char *msg = NULL; |
1091 | struct batadv_tt_common_entry *tt_common; | |
1092 | struct batadv_tt_global_entry *tt_global; | |
cc47f66e | 1093 | |
cc47f66e AQ |
1094 | for (i = 0; i < hash->size; i++) { |
1095 | head = &hash->table[i]; | |
7683fdc1 | 1096 | list_lock = &hash->list_locks[i]; |
cc47f66e | 1097 | |
7683fdc1 | 1098 | spin_lock_bh(list_lock); |
30cfd02b AQ |
1099 | hlist_for_each_entry_safe(tt_common, node, node_tmp, head, |
1100 | hash_entry) { | |
1101 | tt_global = container_of(tt_common, | |
1102 | struct batadv_tt_global_entry, | |
1103 | common); | |
1104 | ||
1105 | if (!batadv_tt_global_to_purge(tt_global, &msg)) | |
1106 | continue; | |
1107 | ||
1108 | batadv_dbg(BATADV_DBG_TT, bat_priv, | |
1109 | "Deleting global tt entry (%pM): %s\n", | |
1110 | tt_global->common.addr, msg); | |
1111 | ||
1112 | hlist_del_rcu(node); | |
1113 | ||
1114 | batadv_tt_global_entry_free_ref(tt_global); | |
1115 | } | |
7683fdc1 | 1116 | spin_unlock_bh(list_lock); |
cc47f66e | 1117 | } |
cc47f66e AQ |
1118 | } |
1119 | ||
56303d34 | 1120 | static void batadv_tt_global_table_free(struct batadv_priv *bat_priv) |
c6c8fea2 | 1121 | { |
5bf74e9c | 1122 | struct batadv_hashtable *hash; |
7683fdc1 | 1123 | spinlock_t *list_lock; /* protects write access to the hash lists */ |
56303d34 SE |
1124 | struct batadv_tt_common_entry *tt_common_entry; |
1125 | struct batadv_tt_global_entry *tt_global; | |
7683fdc1 AQ |
1126 | struct hlist_node *node, *node_tmp; |
1127 | struct hlist_head *head; | |
c90681b8 | 1128 | uint32_t i; |
7683fdc1 | 1129 | |
807736f6 | 1130 | if (!bat_priv->tt.global_hash) |
c6c8fea2 SE |
1131 | return; |
1132 | ||
807736f6 | 1133 | hash = bat_priv->tt.global_hash; |
7683fdc1 AQ |
1134 | |
1135 | for (i = 0; i < hash->size; i++) { | |
1136 | head = &hash->table[i]; | |
1137 | list_lock = &hash->list_locks[i]; | |
1138 | ||
1139 | spin_lock_bh(list_lock); | |
48100bac | 1140 | hlist_for_each_entry_safe(tt_common_entry, node, node_tmp, |
7683fdc1 AQ |
1141 | head, hash_entry) { |
1142 | hlist_del_rcu(node); | |
56303d34 SE |
1143 | tt_global = container_of(tt_common_entry, |
1144 | struct batadv_tt_global_entry, | |
1145 | common); | |
1146 | batadv_tt_global_entry_free_ref(tt_global); | |
7683fdc1 AQ |
1147 | } |
1148 | spin_unlock_bh(list_lock); | |
1149 | } | |
1150 | ||
1a8eaf07 | 1151 | batadv_hash_destroy(hash); |
7683fdc1 | 1152 | |
807736f6 | 1153 | bat_priv->tt.global_hash = NULL; |
c6c8fea2 SE |
1154 | } |
1155 | ||
56303d34 SE |
1156 | static bool |
1157 | _batadv_is_ap_isolated(struct batadv_tt_local_entry *tt_local_entry, | |
1158 | struct batadv_tt_global_entry *tt_global_entry) | |
59b699cd AQ |
1159 | { |
1160 | bool ret = false; | |
1161 | ||
acd34afa SE |
1162 | if (tt_local_entry->common.flags & BATADV_TT_CLIENT_WIFI && |
1163 | tt_global_entry->common.flags & BATADV_TT_CLIENT_WIFI) | |
59b699cd AQ |
1164 | ret = true; |
1165 | ||
1166 | return ret; | |
1167 | } | |
1168 | ||
56303d34 SE |
1169 | struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv, |
1170 | const uint8_t *src, | |
1171 | const uint8_t *addr) | |
c6c8fea2 | 1172 | { |
56303d34 SE |
1173 | struct batadv_tt_local_entry *tt_local_entry = NULL; |
1174 | struct batadv_tt_global_entry *tt_global_entry = NULL; | |
1175 | struct batadv_orig_node *orig_node = NULL; | |
1176 | struct batadv_neigh_node *router = NULL; | |
db08e6e5 SW |
1177 | struct hlist_head *head; |
1178 | struct hlist_node *node; | |
56303d34 | 1179 | struct batadv_tt_orig_list_entry *orig_entry; |
db08e6e5 | 1180 | int best_tq; |
c6c8fea2 | 1181 | |
3d393e47 | 1182 | if (src && atomic_read(&bat_priv->ap_isolation)) { |
a513088d | 1183 | tt_local_entry = batadv_tt_local_hash_find(bat_priv, src); |
3d393e47 AQ |
1184 | if (!tt_local_entry) |
1185 | goto out; | |
1186 | } | |
7aadf889 | 1187 | |
a513088d | 1188 | tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr); |
2dafb49d | 1189 | if (!tt_global_entry) |
7b36e8ee | 1190 | goto out; |
7aadf889 | 1191 | |
3d393e47 | 1192 | /* check whether the clients should not communicate due to AP |
9cfc7bd6 SE |
1193 | * isolation |
1194 | */ | |
a513088d SE |
1195 | if (tt_local_entry && |
1196 | _batadv_is_ap_isolated(tt_local_entry, tt_global_entry)) | |
3d393e47 AQ |
1197 | goto out; |
1198 | ||
db08e6e5 | 1199 | best_tq = 0; |
c6c8fea2 | 1200 | |
db08e6e5 SW |
1201 | rcu_read_lock(); |
1202 | head = &tt_global_entry->orig_list; | |
1203 | hlist_for_each_entry_rcu(orig_entry, node, head, list) { | |
7d211efc | 1204 | router = batadv_orig_node_get_router(orig_entry->orig_node); |
db08e6e5 SW |
1205 | if (!router) |
1206 | continue; | |
c6c8fea2 | 1207 | |
db08e6e5 SW |
1208 | if (router->tq_avg > best_tq) { |
1209 | orig_node = orig_entry->orig_node; | |
1210 | best_tq = router->tq_avg; | |
1211 | } | |
7d211efc | 1212 | batadv_neigh_node_free_ref(router); |
db08e6e5 SW |
1213 | } |
1214 | /* found anything? */ | |
1215 | if (orig_node && !atomic_inc_not_zero(&orig_node->refcount)) | |
1216 | orig_node = NULL; | |
1217 | rcu_read_unlock(); | |
7b36e8ee | 1218 | out: |
3d393e47 | 1219 | if (tt_global_entry) |
a513088d | 1220 | batadv_tt_global_entry_free_ref(tt_global_entry); |
3d393e47 | 1221 | if (tt_local_entry) |
a513088d | 1222 | batadv_tt_local_entry_free_ref(tt_local_entry); |
3d393e47 | 1223 | |
7b36e8ee | 1224 | return orig_node; |
c6c8fea2 | 1225 | } |
a73105b8 AQ |
1226 | |
1227 | /* Calculates the checksum of the local table of a given orig_node */ | |
56303d34 SE |
1228 | static uint16_t batadv_tt_global_crc(struct batadv_priv *bat_priv, |
1229 | struct batadv_orig_node *orig_node) | |
a73105b8 AQ |
1230 | { |
1231 | uint16_t total = 0, total_one; | |
807736f6 | 1232 | struct batadv_hashtable *hash = bat_priv->tt.global_hash; |
56303d34 SE |
1233 | struct batadv_tt_common_entry *tt_common; |
1234 | struct batadv_tt_global_entry *tt_global; | |
a73105b8 AQ |
1235 | struct hlist_node *node; |
1236 | struct hlist_head *head; | |
c90681b8 AQ |
1237 | uint32_t i; |
1238 | int j; | |
a73105b8 AQ |
1239 | |
1240 | for (i = 0; i < hash->size; i++) { | |
1241 | head = &hash->table[i]; | |
1242 | ||
1243 | rcu_read_lock(); | |
acd34afa | 1244 | hlist_for_each_entry_rcu(tt_common, node, head, hash_entry) { |
56303d34 SE |
1245 | tt_global = container_of(tt_common, |
1246 | struct batadv_tt_global_entry, | |
1247 | common); | |
db08e6e5 SW |
1248 | /* Roaming clients are in the global table for |
1249 | * consistency only. They don't have to be | |
1250 | * taken into account while computing the | |
1251 | * global crc | |
1252 | */ | |
acd34afa | 1253 | if (tt_common->flags & BATADV_TT_CLIENT_ROAM) |
db08e6e5 | 1254 | continue; |
30cfd02b AQ |
1255 | /* Temporary clients have not been announced yet, so |
1256 | * they have to be skipped while computing the global | |
1257 | * crc | |
1258 | */ | |
1259 | if (tt_common->flags & BATADV_TT_CLIENT_TEMP) | |
1260 | continue; | |
db08e6e5 SW |
1261 | |
1262 | /* find out if this global entry is announced by this | |
1263 | * originator | |
1264 | */ | |
56303d34 | 1265 | if (!batadv_tt_global_entry_has_orig(tt_global, |
a513088d | 1266 | orig_node)) |
db08e6e5 SW |
1267 | continue; |
1268 | ||
1269 | total_one = 0; | |
1270 | for (j = 0; j < ETH_ALEN; j++) | |
1271 | total_one = crc16_byte(total_one, | |
acd34afa | 1272 | tt_common->addr[j]); |
db08e6e5 | 1273 | total ^= total_one; |
a73105b8 AQ |
1274 | } |
1275 | rcu_read_unlock(); | |
1276 | } | |
1277 | ||
1278 | return total; | |
1279 | } | |
1280 | ||
1281 | /* Calculates the checksum of the local table */ | |
56303d34 | 1282 | static uint16_t batadv_tt_local_crc(struct batadv_priv *bat_priv) |
a73105b8 AQ |
1283 | { |
1284 | uint16_t total = 0, total_one; | |
807736f6 | 1285 | struct batadv_hashtable *hash = bat_priv->tt.local_hash; |
56303d34 | 1286 | struct batadv_tt_common_entry *tt_common; |
a73105b8 AQ |
1287 | struct hlist_node *node; |
1288 | struct hlist_head *head; | |
c90681b8 AQ |
1289 | uint32_t i; |
1290 | int j; | |
a73105b8 AQ |
1291 | |
1292 | for (i = 0; i < hash->size; i++) { | |
1293 | head = &hash->table[i]; | |
1294 | ||
1295 | rcu_read_lock(); | |
acd34afa | 1296 | hlist_for_each_entry_rcu(tt_common, node, head, hash_entry) { |
058d0e26 | 1297 | /* not yet committed clients have not to be taken into |
9cfc7bd6 SE |
1298 | * account while computing the CRC |
1299 | */ | |
acd34afa | 1300 | if (tt_common->flags & BATADV_TT_CLIENT_NEW) |
058d0e26 | 1301 | continue; |
a73105b8 AQ |
1302 | total_one = 0; |
1303 | for (j = 0; j < ETH_ALEN; j++) | |
1304 | total_one = crc16_byte(total_one, | |
acd34afa | 1305 | tt_common->addr[j]); |
a73105b8 AQ |
1306 | total ^= total_one; |
1307 | } | |
a73105b8 AQ |
1308 | rcu_read_unlock(); |
1309 | } | |
1310 | ||
1311 | return total; | |
1312 | } | |
1313 | ||
56303d34 | 1314 | static void batadv_tt_req_list_free(struct batadv_priv *bat_priv) |
a73105b8 | 1315 | { |
56303d34 | 1316 | struct batadv_tt_req_node *node, *safe; |
a73105b8 | 1317 | |
807736f6 | 1318 | spin_lock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 | 1319 | |
807736f6 | 1320 | list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) { |
a73105b8 AQ |
1321 | list_del(&node->list); |
1322 | kfree(node); | |
1323 | } | |
1324 | ||
807736f6 | 1325 | spin_unlock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 AQ |
1326 | } |
1327 | ||
56303d34 SE |
1328 | static void batadv_tt_save_orig_buffer(struct batadv_priv *bat_priv, |
1329 | struct batadv_orig_node *orig_node, | |
a513088d SE |
1330 | const unsigned char *tt_buff, |
1331 | uint8_t tt_num_changes) | |
a73105b8 | 1332 | { |
08c36d3e | 1333 | uint16_t tt_buff_len = batadv_tt_len(tt_num_changes); |
a73105b8 AQ |
1334 | |
1335 | /* Replace the old buffer only if I received something in the | |
9cfc7bd6 SE |
1336 | * last OGM (the OGM could carry no changes) |
1337 | */ | |
a73105b8 AQ |
1338 | spin_lock_bh(&orig_node->tt_buff_lock); |
1339 | if (tt_buff_len > 0) { | |
1340 | kfree(orig_node->tt_buff); | |
1341 | orig_node->tt_buff_len = 0; | |
1342 | orig_node->tt_buff = kmalloc(tt_buff_len, GFP_ATOMIC); | |
1343 | if (orig_node->tt_buff) { | |
1344 | memcpy(orig_node->tt_buff, tt_buff, tt_buff_len); | |
1345 | orig_node->tt_buff_len = tt_buff_len; | |
1346 | } | |
1347 | } | |
1348 | spin_unlock_bh(&orig_node->tt_buff_lock); | |
1349 | } | |
1350 | ||
56303d34 | 1351 | static void batadv_tt_req_purge(struct batadv_priv *bat_priv) |
a73105b8 | 1352 | { |
56303d34 | 1353 | struct batadv_tt_req_node *node, *safe; |
a73105b8 | 1354 | |
807736f6 SE |
1355 | spin_lock_bh(&bat_priv->tt.req_list_lock); |
1356 | list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) { | |
42d0b044 SE |
1357 | if (batadv_has_timed_out(node->issued_at, |
1358 | BATADV_TT_REQUEST_TIMEOUT)) { | |
a73105b8 AQ |
1359 | list_del(&node->list); |
1360 | kfree(node); | |
1361 | } | |
1362 | } | |
807736f6 | 1363 | spin_unlock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 AQ |
1364 | } |
1365 | ||
1366 | /* returns the pointer to the new tt_req_node struct if no request | |
9cfc7bd6 SE |
1367 | * has already been issued for this orig_node, NULL otherwise |
1368 | */ | |
56303d34 SE |
1369 | static struct batadv_tt_req_node * |
1370 | batadv_new_tt_req_node(struct batadv_priv *bat_priv, | |
1371 | struct batadv_orig_node *orig_node) | |
a73105b8 | 1372 | { |
56303d34 | 1373 | struct batadv_tt_req_node *tt_req_node_tmp, *tt_req_node = NULL; |
a73105b8 | 1374 | |
807736f6 SE |
1375 | spin_lock_bh(&bat_priv->tt.req_list_lock); |
1376 | list_for_each_entry(tt_req_node_tmp, &bat_priv->tt.req_list, list) { | |
1eda58bf SE |
1377 | if (batadv_compare_eth(tt_req_node_tmp, orig_node) && |
1378 | !batadv_has_timed_out(tt_req_node_tmp->issued_at, | |
42d0b044 | 1379 | BATADV_TT_REQUEST_TIMEOUT)) |
a73105b8 AQ |
1380 | goto unlock; |
1381 | } | |
1382 | ||
1383 | tt_req_node = kmalloc(sizeof(*tt_req_node), GFP_ATOMIC); | |
1384 | if (!tt_req_node) | |
1385 | goto unlock; | |
1386 | ||
1387 | memcpy(tt_req_node->addr, orig_node->orig, ETH_ALEN); | |
1388 | tt_req_node->issued_at = jiffies; | |
1389 | ||
807736f6 | 1390 | list_add(&tt_req_node->list, &bat_priv->tt.req_list); |
a73105b8 | 1391 | unlock: |
807736f6 | 1392 | spin_unlock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 AQ |
1393 | return tt_req_node; |
1394 | } | |
1395 | ||
058d0e26 | 1396 | /* data_ptr is useless here, but has to be kept to respect the prototype */ |
a513088d SE |
1397 | static int batadv_tt_local_valid_entry(const void *entry_ptr, |
1398 | const void *data_ptr) | |
058d0e26 | 1399 | { |
56303d34 | 1400 | const struct batadv_tt_common_entry *tt_common_entry = entry_ptr; |
058d0e26 | 1401 | |
acd34afa | 1402 | if (tt_common_entry->flags & BATADV_TT_CLIENT_NEW) |
058d0e26 AQ |
1403 | return 0; |
1404 | return 1; | |
1405 | } | |
1406 | ||
a513088d SE |
1407 | static int batadv_tt_global_valid(const void *entry_ptr, |
1408 | const void *data_ptr) | |
a73105b8 | 1409 | { |
56303d34 SE |
1410 | const struct batadv_tt_common_entry *tt_common_entry = entry_ptr; |
1411 | const struct batadv_tt_global_entry *tt_global_entry; | |
1412 | const struct batadv_orig_node *orig_node = data_ptr; | |
a73105b8 | 1413 | |
30cfd02b AQ |
1414 | if (tt_common_entry->flags & BATADV_TT_CLIENT_ROAM || |
1415 | tt_common_entry->flags & BATADV_TT_CLIENT_TEMP) | |
cc47f66e AQ |
1416 | return 0; |
1417 | ||
56303d34 SE |
1418 | tt_global_entry = container_of(tt_common_entry, |
1419 | struct batadv_tt_global_entry, | |
48100bac AQ |
1420 | common); |
1421 | ||
a513088d | 1422 | return batadv_tt_global_entry_has_orig(tt_global_entry, orig_node); |
a73105b8 AQ |
1423 | } |
1424 | ||
a513088d SE |
1425 | static struct sk_buff * |
1426 | batadv_tt_response_fill_table(uint16_t tt_len, uint8_t ttvn, | |
5bf74e9c | 1427 | struct batadv_hashtable *hash, |
56303d34 | 1428 | struct batadv_hard_iface *primary_if, |
a513088d SE |
1429 | int (*valid_cb)(const void *, const void *), |
1430 | void *cb_data) | |
a73105b8 | 1431 | { |
56303d34 | 1432 | struct batadv_tt_common_entry *tt_common_entry; |
96412690 SE |
1433 | struct batadv_tt_query_packet *tt_response; |
1434 | struct batadv_tt_change *tt_change; | |
a73105b8 AQ |
1435 | struct hlist_node *node; |
1436 | struct hlist_head *head; | |
1437 | struct sk_buff *skb = NULL; | |
1438 | uint16_t tt_tot, tt_count; | |
96412690 | 1439 | ssize_t tt_query_size = sizeof(struct batadv_tt_query_packet); |
c90681b8 | 1440 | uint32_t i; |
96412690 | 1441 | size_t len; |
a73105b8 AQ |
1442 | |
1443 | if (tt_query_size + tt_len > primary_if->soft_iface->mtu) { | |
1444 | tt_len = primary_if->soft_iface->mtu - tt_query_size; | |
96412690 | 1445 | tt_len -= tt_len % sizeof(struct batadv_tt_change); |
a73105b8 | 1446 | } |
96412690 | 1447 | tt_tot = tt_len / sizeof(struct batadv_tt_change); |
a73105b8 | 1448 | |
96412690 SE |
1449 | len = tt_query_size + tt_len; |
1450 | skb = dev_alloc_skb(len + ETH_HLEN); | |
a73105b8 AQ |
1451 | if (!skb) |
1452 | goto out; | |
1453 | ||
1454 | skb_reserve(skb, ETH_HLEN); | |
96412690 | 1455 | tt_response = (struct batadv_tt_query_packet *)skb_put(skb, len); |
a73105b8 | 1456 | tt_response->ttvn = ttvn; |
a73105b8 | 1457 | |
96412690 | 1458 | tt_change = (struct batadv_tt_change *)(skb->data + tt_query_size); |
a73105b8 AQ |
1459 | tt_count = 0; |
1460 | ||
1461 | rcu_read_lock(); | |
1462 | for (i = 0; i < hash->size; i++) { | |
1463 | head = &hash->table[i]; | |
1464 | ||
48100bac | 1465 | hlist_for_each_entry_rcu(tt_common_entry, node, |
a73105b8 AQ |
1466 | head, hash_entry) { |
1467 | if (tt_count == tt_tot) | |
1468 | break; | |
1469 | ||
48100bac | 1470 | if ((valid_cb) && (!valid_cb(tt_common_entry, cb_data))) |
a73105b8 AQ |
1471 | continue; |
1472 | ||
48100bac AQ |
1473 | memcpy(tt_change->addr, tt_common_entry->addr, |
1474 | ETH_ALEN); | |
42d0b044 | 1475 | tt_change->flags = BATADV_NO_FLAGS; |
a73105b8 AQ |
1476 | |
1477 | tt_count++; | |
1478 | tt_change++; | |
1479 | } | |
1480 | } | |
1481 | rcu_read_unlock(); | |
1482 | ||
9d852393 | 1483 | /* store in the message the number of entries we have successfully |
9cfc7bd6 SE |
1484 | * copied |
1485 | */ | |
9d852393 AQ |
1486 | tt_response->tt_data = htons(tt_count); |
1487 | ||
a73105b8 AQ |
1488 | out: |
1489 | return skb; | |
1490 | } | |
1491 | ||
56303d34 SE |
1492 | static int batadv_send_tt_request(struct batadv_priv *bat_priv, |
1493 | struct batadv_orig_node *dst_orig_node, | |
a513088d SE |
1494 | uint8_t ttvn, uint16_t tt_crc, |
1495 | bool full_table) | |
a73105b8 AQ |
1496 | { |
1497 | struct sk_buff *skb = NULL; | |
96412690 | 1498 | struct batadv_tt_query_packet *tt_request; |
56303d34 SE |
1499 | struct batadv_neigh_node *neigh_node = NULL; |
1500 | struct batadv_hard_iface *primary_if; | |
1501 | struct batadv_tt_req_node *tt_req_node = NULL; | |
a73105b8 | 1502 | int ret = 1; |
96412690 | 1503 | size_t tt_req_len; |
a73105b8 | 1504 | |
e5d89254 | 1505 | primary_if = batadv_primary_if_get_selected(bat_priv); |
a73105b8 AQ |
1506 | if (!primary_if) |
1507 | goto out; | |
1508 | ||
1509 | /* The new tt_req will be issued only if I'm not waiting for a | |
9cfc7bd6 SE |
1510 | * reply from the same orig_node yet |
1511 | */ | |
a513088d | 1512 | tt_req_node = batadv_new_tt_req_node(bat_priv, dst_orig_node); |
a73105b8 AQ |
1513 | if (!tt_req_node) |
1514 | goto out; | |
1515 | ||
96412690 | 1516 | skb = dev_alloc_skb(sizeof(*tt_request) + ETH_HLEN); |
a73105b8 AQ |
1517 | if (!skb) |
1518 | goto out; | |
1519 | ||
1520 | skb_reserve(skb, ETH_HLEN); | |
1521 | ||
96412690 SE |
1522 | tt_req_len = sizeof(*tt_request); |
1523 | tt_request = (struct batadv_tt_query_packet *)skb_put(skb, tt_req_len); | |
a73105b8 | 1524 | |
acd34afa | 1525 | tt_request->header.packet_type = BATADV_TT_QUERY; |
7e071c79 | 1526 | tt_request->header.version = BATADV_COMPAT_VERSION; |
a73105b8 AQ |
1527 | memcpy(tt_request->src, primary_if->net_dev->dev_addr, ETH_ALEN); |
1528 | memcpy(tt_request->dst, dst_orig_node->orig, ETH_ALEN); | |
42d0b044 | 1529 | tt_request->header.ttl = BATADV_TTL; |
a73105b8 | 1530 | tt_request->ttvn = ttvn; |
6d2003fc | 1531 | tt_request->tt_data = htons(tt_crc); |
acd34afa | 1532 | tt_request->flags = BATADV_TT_REQUEST; |
a73105b8 AQ |
1533 | |
1534 | if (full_table) | |
acd34afa | 1535 | tt_request->flags |= BATADV_TT_FULL_TABLE; |
a73105b8 | 1536 | |
7d211efc | 1537 | neigh_node = batadv_orig_node_get_router(dst_orig_node); |
a73105b8 AQ |
1538 | if (!neigh_node) |
1539 | goto out; | |
1540 | ||
39c75a51 | 1541 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf SE |
1542 | "Sending TT_REQUEST to %pM via %pM [%c]\n", |
1543 | dst_orig_node->orig, neigh_node->addr, | |
1544 | (full_table ? 'F' : '.')); | |
a73105b8 | 1545 | |
d69909d2 | 1546 | batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_TX); |
f8214865 | 1547 | |
9455e34c | 1548 | batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr); |
a73105b8 AQ |
1549 | ret = 0; |
1550 | ||
1551 | out: | |
1552 | if (neigh_node) | |
7d211efc | 1553 | batadv_neigh_node_free_ref(neigh_node); |
a73105b8 | 1554 | if (primary_if) |
e5d89254 | 1555 | batadv_hardif_free_ref(primary_if); |
a73105b8 AQ |
1556 | if (ret) |
1557 | kfree_skb(skb); | |
1558 | if (ret && tt_req_node) { | |
807736f6 | 1559 | spin_lock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 | 1560 | list_del(&tt_req_node->list); |
807736f6 | 1561 | spin_unlock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 AQ |
1562 | kfree(tt_req_node); |
1563 | } | |
1564 | return ret; | |
1565 | } | |
1566 | ||
96412690 | 1567 | static bool |
56303d34 | 1568 | batadv_send_other_tt_response(struct batadv_priv *bat_priv, |
96412690 | 1569 | struct batadv_tt_query_packet *tt_request) |
a73105b8 | 1570 | { |
56303d34 SE |
1571 | struct batadv_orig_node *req_dst_orig_node = NULL; |
1572 | struct batadv_orig_node *res_dst_orig_node = NULL; | |
1573 | struct batadv_neigh_node *neigh_node = NULL; | |
1574 | struct batadv_hard_iface *primary_if = NULL; | |
a73105b8 AQ |
1575 | uint8_t orig_ttvn, req_ttvn, ttvn; |
1576 | int ret = false; | |
1577 | unsigned char *tt_buff; | |
1578 | bool full_table; | |
1579 | uint16_t tt_len, tt_tot; | |
1580 | struct sk_buff *skb = NULL; | |
96412690 | 1581 | struct batadv_tt_query_packet *tt_response; |
c67893d1 | 1582 | uint8_t *packet_pos; |
96412690 | 1583 | size_t len; |
a73105b8 | 1584 | |
39c75a51 | 1585 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf SE |
1586 | "Received TT_REQUEST from %pM for ttvn: %u (%pM) [%c]\n", |
1587 | tt_request->src, tt_request->ttvn, tt_request->dst, | |
acd34afa | 1588 | (tt_request->flags & BATADV_TT_FULL_TABLE ? 'F' : '.')); |
a73105b8 AQ |
1589 | |
1590 | /* Let's get the orig node of the REAL destination */ | |
da641193 | 1591 | req_dst_orig_node = batadv_orig_hash_find(bat_priv, tt_request->dst); |
a73105b8 AQ |
1592 | if (!req_dst_orig_node) |
1593 | goto out; | |
1594 | ||
da641193 | 1595 | res_dst_orig_node = batadv_orig_hash_find(bat_priv, tt_request->src); |
a73105b8 AQ |
1596 | if (!res_dst_orig_node) |
1597 | goto out; | |
1598 | ||
7d211efc | 1599 | neigh_node = batadv_orig_node_get_router(res_dst_orig_node); |
a73105b8 AQ |
1600 | if (!neigh_node) |
1601 | goto out; | |
1602 | ||
e5d89254 | 1603 | primary_if = batadv_primary_if_get_selected(bat_priv); |
a73105b8 AQ |
1604 | if (!primary_if) |
1605 | goto out; | |
1606 | ||
1607 | orig_ttvn = (uint8_t)atomic_read(&req_dst_orig_node->last_ttvn); | |
1608 | req_ttvn = tt_request->ttvn; | |
1609 | ||
015758d0 | 1610 | /* I don't have the requested data */ |
a73105b8 | 1611 | if (orig_ttvn != req_ttvn || |
f25bd58a | 1612 | tt_request->tt_data != htons(req_dst_orig_node->tt_crc)) |
a73105b8 AQ |
1613 | goto out; |
1614 | ||
015758d0 | 1615 | /* If the full table has been explicitly requested */ |
acd34afa | 1616 | if (tt_request->flags & BATADV_TT_FULL_TABLE || |
a73105b8 AQ |
1617 | !req_dst_orig_node->tt_buff) |
1618 | full_table = true; | |
1619 | else | |
1620 | full_table = false; | |
1621 | ||
1622 | /* In this version, fragmentation is not implemented, then | |
9cfc7bd6 SE |
1623 | * I'll send only one packet with as much TT entries as I can |
1624 | */ | |
a73105b8 AQ |
1625 | if (!full_table) { |
1626 | spin_lock_bh(&req_dst_orig_node->tt_buff_lock); | |
1627 | tt_len = req_dst_orig_node->tt_buff_len; | |
96412690 | 1628 | tt_tot = tt_len / sizeof(struct batadv_tt_change); |
a73105b8 | 1629 | |
96412690 SE |
1630 | len = sizeof(*tt_response) + tt_len; |
1631 | skb = dev_alloc_skb(len + ETH_HLEN); | |
a73105b8 AQ |
1632 | if (!skb) |
1633 | goto unlock; | |
1634 | ||
1635 | skb_reserve(skb, ETH_HLEN); | |
c67893d1 SE |
1636 | packet_pos = skb_put(skb, len); |
1637 | tt_response = (struct batadv_tt_query_packet *)packet_pos; | |
a73105b8 AQ |
1638 | tt_response->ttvn = req_ttvn; |
1639 | tt_response->tt_data = htons(tt_tot); | |
1640 | ||
96412690 | 1641 | tt_buff = skb->data + sizeof(*tt_response); |
a73105b8 AQ |
1642 | /* Copy the last orig_node's OGM buffer */ |
1643 | memcpy(tt_buff, req_dst_orig_node->tt_buff, | |
1644 | req_dst_orig_node->tt_buff_len); | |
1645 | ||
1646 | spin_unlock_bh(&req_dst_orig_node->tt_buff_lock); | |
1647 | } else { | |
96412690 SE |
1648 | tt_len = (uint16_t)atomic_read(&req_dst_orig_node->tt_size); |
1649 | tt_len *= sizeof(struct batadv_tt_change); | |
a73105b8 AQ |
1650 | ttvn = (uint8_t)atomic_read(&req_dst_orig_node->last_ttvn); |
1651 | ||
a513088d | 1652 | skb = batadv_tt_response_fill_table(tt_len, ttvn, |
807736f6 | 1653 | bat_priv->tt.global_hash, |
a513088d SE |
1654 | primary_if, |
1655 | batadv_tt_global_valid, | |
1656 | req_dst_orig_node); | |
a73105b8 AQ |
1657 | if (!skb) |
1658 | goto out; | |
1659 | ||
96412690 | 1660 | tt_response = (struct batadv_tt_query_packet *)skb->data; |
a73105b8 AQ |
1661 | } |
1662 | ||
acd34afa | 1663 | tt_response->header.packet_type = BATADV_TT_QUERY; |
7e071c79 | 1664 | tt_response->header.version = BATADV_COMPAT_VERSION; |
42d0b044 | 1665 | tt_response->header.ttl = BATADV_TTL; |
a73105b8 AQ |
1666 | memcpy(tt_response->src, req_dst_orig_node->orig, ETH_ALEN); |
1667 | memcpy(tt_response->dst, tt_request->src, ETH_ALEN); | |
acd34afa | 1668 | tt_response->flags = BATADV_TT_RESPONSE; |
a73105b8 AQ |
1669 | |
1670 | if (full_table) | |
acd34afa | 1671 | tt_response->flags |= BATADV_TT_FULL_TABLE; |
a73105b8 | 1672 | |
39c75a51 | 1673 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf SE |
1674 | "Sending TT_RESPONSE %pM via %pM for %pM (ttvn: %u)\n", |
1675 | res_dst_orig_node->orig, neigh_node->addr, | |
1676 | req_dst_orig_node->orig, req_ttvn); | |
a73105b8 | 1677 | |
d69909d2 | 1678 | batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX); |
f8214865 | 1679 | |
9455e34c | 1680 | batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr); |
a73105b8 AQ |
1681 | ret = true; |
1682 | goto out; | |
1683 | ||
1684 | unlock: | |
1685 | spin_unlock_bh(&req_dst_orig_node->tt_buff_lock); | |
1686 | ||
1687 | out: | |
1688 | if (res_dst_orig_node) | |
7d211efc | 1689 | batadv_orig_node_free_ref(res_dst_orig_node); |
a73105b8 | 1690 | if (req_dst_orig_node) |
7d211efc | 1691 | batadv_orig_node_free_ref(req_dst_orig_node); |
a73105b8 | 1692 | if (neigh_node) |
7d211efc | 1693 | batadv_neigh_node_free_ref(neigh_node); |
a73105b8 | 1694 | if (primary_if) |
e5d89254 | 1695 | batadv_hardif_free_ref(primary_if); |
a73105b8 AQ |
1696 | if (!ret) |
1697 | kfree_skb(skb); | |
1698 | return ret; | |
1699 | ||
1700 | } | |
96412690 SE |
1701 | |
1702 | static bool | |
56303d34 | 1703 | batadv_send_my_tt_response(struct batadv_priv *bat_priv, |
96412690 | 1704 | struct batadv_tt_query_packet *tt_request) |
a73105b8 | 1705 | { |
56303d34 SE |
1706 | struct batadv_orig_node *orig_node = NULL; |
1707 | struct batadv_neigh_node *neigh_node = NULL; | |
1708 | struct batadv_hard_iface *primary_if = NULL; | |
a73105b8 AQ |
1709 | uint8_t my_ttvn, req_ttvn, ttvn; |
1710 | int ret = false; | |
1711 | unsigned char *tt_buff; | |
1712 | bool full_table; | |
1713 | uint16_t tt_len, tt_tot; | |
1714 | struct sk_buff *skb = NULL; | |
96412690 | 1715 | struct batadv_tt_query_packet *tt_response; |
c67893d1 | 1716 | uint8_t *packet_pos; |
96412690 | 1717 | size_t len; |
a73105b8 | 1718 | |
39c75a51 | 1719 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf SE |
1720 | "Received TT_REQUEST from %pM for ttvn: %u (me) [%c]\n", |
1721 | tt_request->src, tt_request->ttvn, | |
acd34afa | 1722 | (tt_request->flags & BATADV_TT_FULL_TABLE ? 'F' : '.')); |
a73105b8 AQ |
1723 | |
1724 | ||
807736f6 | 1725 | my_ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn); |
a73105b8 AQ |
1726 | req_ttvn = tt_request->ttvn; |
1727 | ||
da641193 | 1728 | orig_node = batadv_orig_hash_find(bat_priv, tt_request->src); |
a73105b8 AQ |
1729 | if (!orig_node) |
1730 | goto out; | |
1731 | ||
7d211efc | 1732 | neigh_node = batadv_orig_node_get_router(orig_node); |
a73105b8 AQ |
1733 | if (!neigh_node) |
1734 | goto out; | |
1735 | ||
e5d89254 | 1736 | primary_if = batadv_primary_if_get_selected(bat_priv); |
a73105b8 AQ |
1737 | if (!primary_if) |
1738 | goto out; | |
1739 | ||
1740 | /* If the full table has been explicitly requested or the gap | |
9cfc7bd6 SE |
1741 | * is too big send the whole local translation table |
1742 | */ | |
acd34afa | 1743 | if (tt_request->flags & BATADV_TT_FULL_TABLE || my_ttvn != req_ttvn || |
807736f6 | 1744 | !bat_priv->tt.last_changeset) |
a73105b8 AQ |
1745 | full_table = true; |
1746 | else | |
1747 | full_table = false; | |
1748 | ||
1749 | /* In this version, fragmentation is not implemented, then | |
9cfc7bd6 SE |
1750 | * I'll send only one packet with as much TT entries as I can |
1751 | */ | |
a73105b8 | 1752 | if (!full_table) { |
807736f6 SE |
1753 | spin_lock_bh(&bat_priv->tt.last_changeset_lock); |
1754 | tt_len = bat_priv->tt.last_changeset_len; | |
96412690 | 1755 | tt_tot = tt_len / sizeof(struct batadv_tt_change); |
a73105b8 | 1756 | |
96412690 SE |
1757 | len = sizeof(*tt_response) + tt_len; |
1758 | skb = dev_alloc_skb(len + ETH_HLEN); | |
a73105b8 AQ |
1759 | if (!skb) |
1760 | goto unlock; | |
1761 | ||
1762 | skb_reserve(skb, ETH_HLEN); | |
c67893d1 SE |
1763 | packet_pos = skb_put(skb, len); |
1764 | tt_response = (struct batadv_tt_query_packet *)packet_pos; | |
a73105b8 AQ |
1765 | tt_response->ttvn = req_ttvn; |
1766 | tt_response->tt_data = htons(tt_tot); | |
1767 | ||
96412690 | 1768 | tt_buff = skb->data + sizeof(*tt_response); |
807736f6 SE |
1769 | memcpy(tt_buff, bat_priv->tt.last_changeset, |
1770 | bat_priv->tt.last_changeset_len); | |
1771 | spin_unlock_bh(&bat_priv->tt.last_changeset_lock); | |
a73105b8 | 1772 | } else { |
807736f6 | 1773 | tt_len = (uint16_t)atomic_read(&bat_priv->tt.local_entry_num); |
96412690 | 1774 | tt_len *= sizeof(struct batadv_tt_change); |
807736f6 | 1775 | ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn); |
a73105b8 | 1776 | |
a513088d | 1777 | skb = batadv_tt_response_fill_table(tt_len, ttvn, |
807736f6 | 1778 | bat_priv->tt.local_hash, |
a513088d SE |
1779 | primary_if, |
1780 | batadv_tt_local_valid_entry, | |
1781 | NULL); | |
a73105b8 AQ |
1782 | if (!skb) |
1783 | goto out; | |
1784 | ||
96412690 | 1785 | tt_response = (struct batadv_tt_query_packet *)skb->data; |
a73105b8 AQ |
1786 | } |
1787 | ||
acd34afa | 1788 | tt_response->header.packet_type = BATADV_TT_QUERY; |
7e071c79 | 1789 | tt_response->header.version = BATADV_COMPAT_VERSION; |
42d0b044 | 1790 | tt_response->header.ttl = BATADV_TTL; |
a73105b8 AQ |
1791 | memcpy(tt_response->src, primary_if->net_dev->dev_addr, ETH_ALEN); |
1792 | memcpy(tt_response->dst, tt_request->src, ETH_ALEN); | |
acd34afa | 1793 | tt_response->flags = BATADV_TT_RESPONSE; |
a73105b8 AQ |
1794 | |
1795 | if (full_table) | |
acd34afa | 1796 | tt_response->flags |= BATADV_TT_FULL_TABLE; |
a73105b8 | 1797 | |
39c75a51 | 1798 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf SE |
1799 | "Sending TT_RESPONSE to %pM via %pM [%c]\n", |
1800 | orig_node->orig, neigh_node->addr, | |
acd34afa | 1801 | (tt_response->flags & BATADV_TT_FULL_TABLE ? 'F' : '.')); |
a73105b8 | 1802 | |
d69909d2 | 1803 | batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX); |
f8214865 | 1804 | |
9455e34c | 1805 | batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr); |
a73105b8 AQ |
1806 | ret = true; |
1807 | goto out; | |
1808 | ||
1809 | unlock: | |
807736f6 | 1810 | spin_unlock_bh(&bat_priv->tt.last_changeset_lock); |
a73105b8 AQ |
1811 | out: |
1812 | if (orig_node) | |
7d211efc | 1813 | batadv_orig_node_free_ref(orig_node); |
a73105b8 | 1814 | if (neigh_node) |
7d211efc | 1815 | batadv_neigh_node_free_ref(neigh_node); |
a73105b8 | 1816 | if (primary_if) |
e5d89254 | 1817 | batadv_hardif_free_ref(primary_if); |
a73105b8 AQ |
1818 | if (!ret) |
1819 | kfree_skb(skb); | |
1820 | /* This packet was for me, so it doesn't need to be re-routed */ | |
1821 | return true; | |
1822 | } | |
1823 | ||
56303d34 | 1824 | bool batadv_send_tt_response(struct batadv_priv *bat_priv, |
96412690 | 1825 | struct batadv_tt_query_packet *tt_request) |
a73105b8 | 1826 | { |
3193e8fd | 1827 | if (batadv_is_my_mac(tt_request->dst)) { |
20ff9d59 | 1828 | /* don't answer backbone gws! */ |
08adf151 | 1829 | if (batadv_bla_is_backbone_gw_orig(bat_priv, tt_request->src)) |
20ff9d59 SW |
1830 | return true; |
1831 | ||
a513088d | 1832 | return batadv_send_my_tt_response(bat_priv, tt_request); |
20ff9d59 | 1833 | } else { |
a513088d | 1834 | return batadv_send_other_tt_response(bat_priv, tt_request); |
20ff9d59 | 1835 | } |
a73105b8 AQ |
1836 | } |
1837 | ||
56303d34 SE |
1838 | static void _batadv_tt_update_changes(struct batadv_priv *bat_priv, |
1839 | struct batadv_orig_node *orig_node, | |
96412690 | 1840 | struct batadv_tt_change *tt_change, |
a513088d | 1841 | uint16_t tt_num_changes, uint8_t ttvn) |
a73105b8 AQ |
1842 | { |
1843 | int i; | |
a513088d | 1844 | int roams; |
a73105b8 AQ |
1845 | |
1846 | for (i = 0; i < tt_num_changes; i++) { | |
acd34afa SE |
1847 | if ((tt_change + i)->flags & BATADV_TT_CLIENT_DEL) { |
1848 | roams = (tt_change + i)->flags & BATADV_TT_CLIENT_ROAM; | |
a513088d SE |
1849 | batadv_tt_global_del(bat_priv, orig_node, |
1850 | (tt_change + i)->addr, | |
d4f44692 AQ |
1851 | "tt removed by changes", |
1852 | roams); | |
08c36d3e | 1853 | } else { |
08c36d3e | 1854 | if (!batadv_tt_global_add(bat_priv, orig_node, |
d4f44692 AQ |
1855 | (tt_change + i)->addr, |
1856 | (tt_change + i)->flags, ttvn)) | |
a73105b8 AQ |
1857 | /* In case of problem while storing a |
1858 | * global_entry, we stop the updating | |
1859 | * procedure without committing the | |
1860 | * ttvn change. This will avoid to send | |
1861 | * corrupted data on tt_request | |
1862 | */ | |
1863 | return; | |
08c36d3e | 1864 | } |
a73105b8 | 1865 | } |
17071578 | 1866 | orig_node->tt_initialised = true; |
a73105b8 AQ |
1867 | } |
1868 | ||
56303d34 | 1869 | static void batadv_tt_fill_gtable(struct batadv_priv *bat_priv, |
96412690 | 1870 | struct batadv_tt_query_packet *tt_response) |
a73105b8 | 1871 | { |
56303d34 | 1872 | struct batadv_orig_node *orig_node = NULL; |
a73105b8 | 1873 | |
da641193 | 1874 | orig_node = batadv_orig_hash_find(bat_priv, tt_response->src); |
a73105b8 AQ |
1875 | if (!orig_node) |
1876 | goto out; | |
1877 | ||
1878 | /* Purge the old table first.. */ | |
08c36d3e | 1879 | batadv_tt_global_del_orig(bat_priv, orig_node, "Received full table"); |
a73105b8 | 1880 | |
a513088d | 1881 | _batadv_tt_update_changes(bat_priv, orig_node, |
96412690 | 1882 | (struct batadv_tt_change *)(tt_response + 1), |
a513088d SE |
1883 | ntohs(tt_response->tt_data), |
1884 | tt_response->ttvn); | |
a73105b8 AQ |
1885 | |
1886 | spin_lock_bh(&orig_node->tt_buff_lock); | |
1887 | kfree(orig_node->tt_buff); | |
1888 | orig_node->tt_buff_len = 0; | |
1889 | orig_node->tt_buff = NULL; | |
1890 | spin_unlock_bh(&orig_node->tt_buff_lock); | |
1891 | ||
1892 | atomic_set(&orig_node->last_ttvn, tt_response->ttvn); | |
1893 | ||
1894 | out: | |
1895 | if (orig_node) | |
7d211efc | 1896 | batadv_orig_node_free_ref(orig_node); |
a73105b8 AQ |
1897 | } |
1898 | ||
56303d34 SE |
1899 | static void batadv_tt_update_changes(struct batadv_priv *bat_priv, |
1900 | struct batadv_orig_node *orig_node, | |
a513088d | 1901 | uint16_t tt_num_changes, uint8_t ttvn, |
96412690 | 1902 | struct batadv_tt_change *tt_change) |
a73105b8 | 1903 | { |
a513088d SE |
1904 | _batadv_tt_update_changes(bat_priv, orig_node, tt_change, |
1905 | tt_num_changes, ttvn); | |
a73105b8 | 1906 | |
a513088d SE |
1907 | batadv_tt_save_orig_buffer(bat_priv, orig_node, |
1908 | (unsigned char *)tt_change, tt_num_changes); | |
a73105b8 AQ |
1909 | atomic_set(&orig_node->last_ttvn, ttvn); |
1910 | } | |
1911 | ||
56303d34 | 1912 | bool batadv_is_my_client(struct batadv_priv *bat_priv, const uint8_t *addr) |
a73105b8 | 1913 | { |
56303d34 | 1914 | struct batadv_tt_local_entry *tt_local_entry = NULL; |
7683fdc1 | 1915 | bool ret = false; |
a73105b8 | 1916 | |
a513088d | 1917 | tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr); |
7683fdc1 AQ |
1918 | if (!tt_local_entry) |
1919 | goto out; | |
058d0e26 | 1920 | /* Check if the client has been logically deleted (but is kept for |
9cfc7bd6 SE |
1921 | * consistency purpose) |
1922 | */ | |
acd34afa | 1923 | if (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING) |
058d0e26 | 1924 | goto out; |
7683fdc1 AQ |
1925 | ret = true; |
1926 | out: | |
a73105b8 | 1927 | if (tt_local_entry) |
a513088d | 1928 | batadv_tt_local_entry_free_ref(tt_local_entry); |
7683fdc1 | 1929 | return ret; |
a73105b8 AQ |
1930 | } |
1931 | ||
56303d34 | 1932 | void batadv_handle_tt_response(struct batadv_priv *bat_priv, |
96412690 | 1933 | struct batadv_tt_query_packet *tt_response) |
a73105b8 | 1934 | { |
56303d34 SE |
1935 | struct batadv_tt_req_node *node, *safe; |
1936 | struct batadv_orig_node *orig_node = NULL; | |
96412690 | 1937 | struct batadv_tt_change *tt_change; |
a73105b8 | 1938 | |
39c75a51 | 1939 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf SE |
1940 | "Received TT_RESPONSE from %pM for ttvn %d t_size: %d [%c]\n", |
1941 | tt_response->src, tt_response->ttvn, | |
1942 | ntohs(tt_response->tt_data), | |
acd34afa | 1943 | (tt_response->flags & BATADV_TT_FULL_TABLE ? 'F' : '.')); |
a73105b8 | 1944 | |
20ff9d59 | 1945 | /* we should have never asked a backbone gw */ |
08adf151 | 1946 | if (batadv_bla_is_backbone_gw_orig(bat_priv, tt_response->src)) |
20ff9d59 SW |
1947 | goto out; |
1948 | ||
da641193 | 1949 | orig_node = batadv_orig_hash_find(bat_priv, tt_response->src); |
a73105b8 AQ |
1950 | if (!orig_node) |
1951 | goto out; | |
1952 | ||
96412690 | 1953 | if (tt_response->flags & BATADV_TT_FULL_TABLE) { |
a513088d | 1954 | batadv_tt_fill_gtable(bat_priv, tt_response); |
96412690 SE |
1955 | } else { |
1956 | tt_change = (struct batadv_tt_change *)(tt_response + 1); | |
a513088d SE |
1957 | batadv_tt_update_changes(bat_priv, orig_node, |
1958 | ntohs(tt_response->tt_data), | |
96412690 SE |
1959 | tt_response->ttvn, tt_change); |
1960 | } | |
a73105b8 AQ |
1961 | |
1962 | /* Delete the tt_req_node from pending tt_requests list */ | |
807736f6 SE |
1963 | spin_lock_bh(&bat_priv->tt.req_list_lock); |
1964 | list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) { | |
1eda58bf | 1965 | if (!batadv_compare_eth(node->addr, tt_response->src)) |
a73105b8 AQ |
1966 | continue; |
1967 | list_del(&node->list); | |
1968 | kfree(node); | |
1969 | } | |
807736f6 | 1970 | spin_unlock_bh(&bat_priv->tt.req_list_lock); |
a73105b8 AQ |
1971 | |
1972 | /* Recalculate the CRC for this orig_node and store it */ | |
a513088d | 1973 | orig_node->tt_crc = batadv_tt_global_crc(bat_priv, orig_node); |
cc47f66e | 1974 | /* Roaming phase is over: tables are in sync again. I can |
9cfc7bd6 SE |
1975 | * unset the flag |
1976 | */ | |
cc47f66e | 1977 | orig_node->tt_poss_change = false; |
a73105b8 AQ |
1978 | out: |
1979 | if (orig_node) | |
7d211efc | 1980 | batadv_orig_node_free_ref(orig_node); |
a73105b8 AQ |
1981 | } |
1982 | ||
56303d34 | 1983 | int batadv_tt_init(struct batadv_priv *bat_priv) |
a73105b8 | 1984 | { |
5346c35e | 1985 | int ret; |
a73105b8 | 1986 | |
a513088d | 1987 | ret = batadv_tt_local_init(bat_priv); |
5346c35e SE |
1988 | if (ret < 0) |
1989 | return ret; | |
1990 | ||
a513088d | 1991 | ret = batadv_tt_global_init(bat_priv); |
5346c35e SE |
1992 | if (ret < 0) |
1993 | return ret; | |
a73105b8 | 1994 | |
a513088d | 1995 | batadv_tt_start_timer(bat_priv); |
a73105b8 AQ |
1996 | |
1997 | return 1; | |
1998 | } | |
1999 | ||
56303d34 | 2000 | static void batadv_tt_roam_list_free(struct batadv_priv *bat_priv) |
a73105b8 | 2001 | { |
56303d34 | 2002 | struct batadv_tt_roam_node *node, *safe; |
a73105b8 | 2003 | |
807736f6 | 2004 | spin_lock_bh(&bat_priv->tt.roam_list_lock); |
a73105b8 | 2005 | |
807736f6 | 2006 | list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) { |
cc47f66e AQ |
2007 | list_del(&node->list); |
2008 | kfree(node); | |
2009 | } | |
2010 | ||
807736f6 | 2011 | spin_unlock_bh(&bat_priv->tt.roam_list_lock); |
cc47f66e AQ |
2012 | } |
2013 | ||
56303d34 | 2014 | static void batadv_tt_roam_purge(struct batadv_priv *bat_priv) |
cc47f66e | 2015 | { |
56303d34 | 2016 | struct batadv_tt_roam_node *node, *safe; |
cc47f66e | 2017 | |
807736f6 SE |
2018 | spin_lock_bh(&bat_priv->tt.roam_list_lock); |
2019 | list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) { | |
42d0b044 SE |
2020 | if (!batadv_has_timed_out(node->first_time, |
2021 | BATADV_ROAMING_MAX_TIME)) | |
cc47f66e AQ |
2022 | continue; |
2023 | ||
2024 | list_del(&node->list); | |
2025 | kfree(node); | |
2026 | } | |
807736f6 | 2027 | spin_unlock_bh(&bat_priv->tt.roam_list_lock); |
cc47f66e AQ |
2028 | } |
2029 | ||
2030 | /* This function checks whether the client already reached the | |
2031 | * maximum number of possible roaming phases. In this case the ROAMING_ADV | |
2032 | * will not be sent. | |
2033 | * | |
9cfc7bd6 SE |
2034 | * returns true if the ROAMING_ADV can be sent, false otherwise |
2035 | */ | |
56303d34 | 2036 | static bool batadv_tt_check_roam_count(struct batadv_priv *bat_priv, |
a513088d | 2037 | uint8_t *client) |
cc47f66e | 2038 | { |
56303d34 | 2039 | struct batadv_tt_roam_node *tt_roam_node; |
cc47f66e AQ |
2040 | bool ret = false; |
2041 | ||
807736f6 | 2042 | spin_lock_bh(&bat_priv->tt.roam_list_lock); |
cc47f66e | 2043 | /* The new tt_req will be issued only if I'm not waiting for a |
9cfc7bd6 SE |
2044 | * reply from the same orig_node yet |
2045 | */ | |
807736f6 | 2046 | list_for_each_entry(tt_roam_node, &bat_priv->tt.roam_list, list) { |
1eda58bf | 2047 | if (!batadv_compare_eth(tt_roam_node->addr, client)) |
cc47f66e AQ |
2048 | continue; |
2049 | ||
1eda58bf | 2050 | if (batadv_has_timed_out(tt_roam_node->first_time, |
42d0b044 | 2051 | BATADV_ROAMING_MAX_TIME)) |
cc47f66e AQ |
2052 | continue; |
2053 | ||
3e34819e | 2054 | if (!batadv_atomic_dec_not_zero(&tt_roam_node->counter)) |
cc47f66e AQ |
2055 | /* Sorry, you roamed too many times! */ |
2056 | goto unlock; | |
2057 | ret = true; | |
2058 | break; | |
2059 | } | |
2060 | ||
2061 | if (!ret) { | |
2062 | tt_roam_node = kmalloc(sizeof(*tt_roam_node), GFP_ATOMIC); | |
2063 | if (!tt_roam_node) | |
2064 | goto unlock; | |
2065 | ||
2066 | tt_roam_node->first_time = jiffies; | |
42d0b044 SE |
2067 | atomic_set(&tt_roam_node->counter, |
2068 | BATADV_ROAMING_MAX_COUNT - 1); | |
cc47f66e AQ |
2069 | memcpy(tt_roam_node->addr, client, ETH_ALEN); |
2070 | ||
807736f6 | 2071 | list_add(&tt_roam_node->list, &bat_priv->tt.roam_list); |
cc47f66e AQ |
2072 | ret = true; |
2073 | } | |
2074 | ||
2075 | unlock: | |
807736f6 | 2076 | spin_unlock_bh(&bat_priv->tt.roam_list_lock); |
cc47f66e AQ |
2077 | return ret; |
2078 | } | |
2079 | ||
56303d34 SE |
2080 | static void batadv_send_roam_adv(struct batadv_priv *bat_priv, uint8_t *client, |
2081 | struct batadv_orig_node *orig_node) | |
cc47f66e | 2082 | { |
56303d34 | 2083 | struct batadv_neigh_node *neigh_node = NULL; |
cc47f66e | 2084 | struct sk_buff *skb = NULL; |
96412690 | 2085 | struct batadv_roam_adv_packet *roam_adv_packet; |
cc47f66e | 2086 | int ret = 1; |
56303d34 | 2087 | struct batadv_hard_iface *primary_if; |
96412690 | 2088 | size_t len = sizeof(*roam_adv_packet); |
cc47f66e AQ |
2089 | |
2090 | /* before going on we have to check whether the client has | |
9cfc7bd6 SE |
2091 | * already roamed to us too many times |
2092 | */ | |
a513088d | 2093 | if (!batadv_tt_check_roam_count(bat_priv, client)) |
cc47f66e AQ |
2094 | goto out; |
2095 | ||
96412690 | 2096 | skb = dev_alloc_skb(sizeof(*roam_adv_packet) + ETH_HLEN); |
cc47f66e AQ |
2097 | if (!skb) |
2098 | goto out; | |
2099 | ||
2100 | skb_reserve(skb, ETH_HLEN); | |
2101 | ||
96412690 | 2102 | roam_adv_packet = (struct batadv_roam_adv_packet *)skb_put(skb, len); |
cc47f66e | 2103 | |
acd34afa | 2104 | roam_adv_packet->header.packet_type = BATADV_ROAM_ADV; |
7e071c79 | 2105 | roam_adv_packet->header.version = BATADV_COMPAT_VERSION; |
42d0b044 | 2106 | roam_adv_packet->header.ttl = BATADV_TTL; |
162d549c | 2107 | roam_adv_packet->reserved = 0; |
e5d89254 | 2108 | primary_if = batadv_primary_if_get_selected(bat_priv); |
cc47f66e AQ |
2109 | if (!primary_if) |
2110 | goto out; | |
2111 | memcpy(roam_adv_packet->src, primary_if->net_dev->dev_addr, ETH_ALEN); | |
e5d89254 | 2112 | batadv_hardif_free_ref(primary_if); |
cc47f66e AQ |
2113 | memcpy(roam_adv_packet->dst, orig_node->orig, ETH_ALEN); |
2114 | memcpy(roam_adv_packet->client, client, ETH_ALEN); | |
2115 | ||
7d211efc | 2116 | neigh_node = batadv_orig_node_get_router(orig_node); |
cc47f66e AQ |
2117 | if (!neigh_node) |
2118 | goto out; | |
2119 | ||
39c75a51 | 2120 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf SE |
2121 | "Sending ROAMING_ADV to %pM (client %pM) via %pM\n", |
2122 | orig_node->orig, client, neigh_node->addr); | |
cc47f66e | 2123 | |
d69909d2 | 2124 | batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_TX); |
f8214865 | 2125 | |
9455e34c | 2126 | batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr); |
cc47f66e AQ |
2127 | ret = 0; |
2128 | ||
2129 | out: | |
2130 | if (neigh_node) | |
7d211efc | 2131 | batadv_neigh_node_free_ref(neigh_node); |
cc47f66e AQ |
2132 | if (ret) |
2133 | kfree_skb(skb); | |
2134 | return; | |
a73105b8 AQ |
2135 | } |
2136 | ||
a513088d | 2137 | static void batadv_tt_purge(struct work_struct *work) |
a73105b8 | 2138 | { |
56303d34 | 2139 | struct delayed_work *delayed_work; |
807736f6 | 2140 | struct batadv_priv_tt *priv_tt; |
56303d34 SE |
2141 | struct batadv_priv *bat_priv; |
2142 | ||
2143 | delayed_work = container_of(work, struct delayed_work, work); | |
807736f6 SE |
2144 | priv_tt = container_of(delayed_work, struct batadv_priv_tt, work); |
2145 | bat_priv = container_of(priv_tt, struct batadv_priv, tt); | |
a73105b8 | 2146 | |
a513088d | 2147 | batadv_tt_local_purge(bat_priv); |
30cfd02b | 2148 | batadv_tt_global_purge(bat_priv); |
a513088d SE |
2149 | batadv_tt_req_purge(bat_priv); |
2150 | batadv_tt_roam_purge(bat_priv); | |
a73105b8 | 2151 | |
a513088d | 2152 | batadv_tt_start_timer(bat_priv); |
a73105b8 | 2153 | } |
cc47f66e | 2154 | |
56303d34 | 2155 | void batadv_tt_free(struct batadv_priv *bat_priv) |
cc47f66e | 2156 | { |
807736f6 | 2157 | cancel_delayed_work_sync(&bat_priv->tt.work); |
cc47f66e | 2158 | |
a513088d SE |
2159 | batadv_tt_local_table_free(bat_priv); |
2160 | batadv_tt_global_table_free(bat_priv); | |
2161 | batadv_tt_req_list_free(bat_priv); | |
2162 | batadv_tt_changes_list_free(bat_priv); | |
2163 | batadv_tt_roam_list_free(bat_priv); | |
cc47f66e | 2164 | |
807736f6 | 2165 | kfree(bat_priv->tt.last_changeset); |
cc47f66e | 2166 | } |
058d0e26 | 2167 | |
697f2531 | 2168 | /* This function will enable or disable the specified flags for all the entries |
9cfc7bd6 SE |
2169 | * in the given hash table and returns the number of modified entries |
2170 | */ | |
5bf74e9c SE |
2171 | static uint16_t batadv_tt_set_flags(struct batadv_hashtable *hash, |
2172 | uint16_t flags, bool enable) | |
058d0e26 | 2173 | { |
c90681b8 | 2174 | uint32_t i; |
697f2531 | 2175 | uint16_t changed_num = 0; |
058d0e26 AQ |
2176 | struct hlist_head *head; |
2177 | struct hlist_node *node; | |
56303d34 | 2178 | struct batadv_tt_common_entry *tt_common_entry; |
058d0e26 AQ |
2179 | |
2180 | if (!hash) | |
697f2531 | 2181 | goto out; |
058d0e26 AQ |
2182 | |
2183 | for (i = 0; i < hash->size; i++) { | |
2184 | head = &hash->table[i]; | |
2185 | ||
2186 | rcu_read_lock(); | |
48100bac | 2187 | hlist_for_each_entry_rcu(tt_common_entry, node, |
058d0e26 | 2188 | head, hash_entry) { |
697f2531 AQ |
2189 | if (enable) { |
2190 | if ((tt_common_entry->flags & flags) == flags) | |
2191 | continue; | |
2192 | tt_common_entry->flags |= flags; | |
2193 | } else { | |
2194 | if (!(tt_common_entry->flags & flags)) | |
2195 | continue; | |
2196 | tt_common_entry->flags &= ~flags; | |
2197 | } | |
2198 | changed_num++; | |
058d0e26 AQ |
2199 | } |
2200 | rcu_read_unlock(); | |
2201 | } | |
697f2531 AQ |
2202 | out: |
2203 | return changed_num; | |
058d0e26 AQ |
2204 | } |
2205 | ||
acd34afa | 2206 | /* Purge out all the tt local entries marked with BATADV_TT_CLIENT_PENDING */ |
56303d34 | 2207 | static void batadv_tt_local_purge_pending_clients(struct batadv_priv *bat_priv) |
058d0e26 | 2208 | { |
807736f6 | 2209 | struct batadv_hashtable *hash = bat_priv->tt.local_hash; |
56303d34 SE |
2210 | struct batadv_tt_common_entry *tt_common; |
2211 | struct batadv_tt_local_entry *tt_local; | |
058d0e26 AQ |
2212 | struct hlist_node *node, *node_tmp; |
2213 | struct hlist_head *head; | |
2214 | spinlock_t *list_lock; /* protects write access to the hash lists */ | |
c90681b8 | 2215 | uint32_t i; |
058d0e26 AQ |
2216 | |
2217 | if (!hash) | |
2218 | return; | |
2219 | ||
2220 | for (i = 0; i < hash->size; i++) { | |
2221 | head = &hash->table[i]; | |
2222 | list_lock = &hash->list_locks[i]; | |
2223 | ||
2224 | spin_lock_bh(list_lock); | |
acd34afa SE |
2225 | hlist_for_each_entry_safe(tt_common, node, node_tmp, head, |
2226 | hash_entry) { | |
2227 | if (!(tt_common->flags & BATADV_TT_CLIENT_PENDING)) | |
058d0e26 AQ |
2228 | continue; |
2229 | ||
39c75a51 | 2230 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf | 2231 | "Deleting local tt entry (%pM): pending\n", |
acd34afa | 2232 | tt_common->addr); |
058d0e26 | 2233 | |
807736f6 | 2234 | atomic_dec(&bat_priv->tt.local_entry_num); |
058d0e26 | 2235 | hlist_del_rcu(node); |
56303d34 SE |
2236 | tt_local = container_of(tt_common, |
2237 | struct batadv_tt_local_entry, | |
2238 | common); | |
2239 | batadv_tt_local_entry_free_ref(tt_local); | |
058d0e26 AQ |
2240 | } |
2241 | spin_unlock_bh(list_lock); | |
2242 | } | |
2243 | ||
2244 | } | |
2245 | ||
56303d34 | 2246 | static int batadv_tt_commit_changes(struct batadv_priv *bat_priv, |
a513088d SE |
2247 | unsigned char **packet_buff, |
2248 | int *packet_buff_len, int packet_min_len) | |
058d0e26 | 2249 | { |
be9aa4c1 ML |
2250 | uint16_t changed_num = 0; |
2251 | ||
807736f6 | 2252 | if (atomic_read(&bat_priv->tt.local_changes) < 1) |
be9aa4c1 ML |
2253 | return -ENOENT; |
2254 | ||
807736f6 | 2255 | changed_num = batadv_tt_set_flags(bat_priv->tt.local_hash, |
acd34afa | 2256 | BATADV_TT_CLIENT_NEW, false); |
be9aa4c1 ML |
2257 | |
2258 | /* all reset entries have to be counted as local entries */ | |
807736f6 | 2259 | atomic_add(changed_num, &bat_priv->tt.local_entry_num); |
a513088d | 2260 | batadv_tt_local_purge_pending_clients(bat_priv); |
807736f6 | 2261 | bat_priv->tt.local_crc = batadv_tt_local_crc(bat_priv); |
058d0e26 AQ |
2262 | |
2263 | /* Increment the TTVN only once per OGM interval */ | |
807736f6 | 2264 | atomic_inc(&bat_priv->tt.vn); |
39c75a51 | 2265 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf | 2266 | "Local changes committed, updating to ttvn %u\n", |
807736f6 SE |
2267 | (uint8_t)atomic_read(&bat_priv->tt.vn)); |
2268 | bat_priv->tt.poss_change = false; | |
be9aa4c1 ML |
2269 | |
2270 | /* reset the sending counter */ | |
807736f6 | 2271 | atomic_set(&bat_priv->tt.ogm_append_cnt, BATADV_TT_OGM_APPEND_MAX); |
be9aa4c1 | 2272 | |
a513088d SE |
2273 | return batadv_tt_changes_fill_buff(bat_priv, packet_buff, |
2274 | packet_buff_len, packet_min_len); | |
be9aa4c1 ML |
2275 | } |
2276 | ||
2277 | /* when calling this function (hard_iface == primary_if) has to be true */ | |
56303d34 | 2278 | int batadv_tt_append_diff(struct batadv_priv *bat_priv, |
be9aa4c1 ML |
2279 | unsigned char **packet_buff, int *packet_buff_len, |
2280 | int packet_min_len) | |
2281 | { | |
2282 | int tt_num_changes; | |
2283 | ||
2284 | /* if at least one change happened */ | |
a513088d SE |
2285 | tt_num_changes = batadv_tt_commit_changes(bat_priv, packet_buff, |
2286 | packet_buff_len, | |
2287 | packet_min_len); | |
be9aa4c1 ML |
2288 | |
2289 | /* if the changes have been sent often enough */ | |
2290 | if ((tt_num_changes < 0) && | |
807736f6 | 2291 | (!batadv_atomic_dec_not_zero(&bat_priv->tt.ogm_append_cnt))) { |
a513088d SE |
2292 | batadv_tt_realloc_packet_buff(packet_buff, packet_buff_len, |
2293 | packet_min_len, packet_min_len); | |
be9aa4c1 ML |
2294 | tt_num_changes = 0; |
2295 | } | |
2296 | ||
2297 | return tt_num_changes; | |
058d0e26 | 2298 | } |
59b699cd | 2299 | |
56303d34 | 2300 | bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, uint8_t *src, |
08c36d3e | 2301 | uint8_t *dst) |
59b699cd | 2302 | { |
56303d34 SE |
2303 | struct batadv_tt_local_entry *tt_local_entry = NULL; |
2304 | struct batadv_tt_global_entry *tt_global_entry = NULL; | |
5870adc6 | 2305 | bool ret = false; |
59b699cd AQ |
2306 | |
2307 | if (!atomic_read(&bat_priv->ap_isolation)) | |
5870adc6 | 2308 | goto out; |
59b699cd | 2309 | |
a513088d | 2310 | tt_local_entry = batadv_tt_local_hash_find(bat_priv, dst); |
59b699cd AQ |
2311 | if (!tt_local_entry) |
2312 | goto out; | |
2313 | ||
a513088d | 2314 | tt_global_entry = batadv_tt_global_hash_find(bat_priv, src); |
59b699cd AQ |
2315 | if (!tt_global_entry) |
2316 | goto out; | |
2317 | ||
1f129fef | 2318 | if (!_batadv_is_ap_isolated(tt_local_entry, tt_global_entry)) |
59b699cd AQ |
2319 | goto out; |
2320 | ||
5870adc6 | 2321 | ret = true; |
59b699cd AQ |
2322 | |
2323 | out: | |
2324 | if (tt_global_entry) | |
a513088d | 2325 | batadv_tt_global_entry_free_ref(tt_global_entry); |
59b699cd | 2326 | if (tt_local_entry) |
a513088d | 2327 | batadv_tt_local_entry_free_ref(tt_local_entry); |
59b699cd AQ |
2328 | return ret; |
2329 | } | |
a943cac1 | 2330 | |
56303d34 SE |
2331 | void batadv_tt_update_orig(struct batadv_priv *bat_priv, |
2332 | struct batadv_orig_node *orig_node, | |
08c36d3e SE |
2333 | const unsigned char *tt_buff, uint8_t tt_num_changes, |
2334 | uint8_t ttvn, uint16_t tt_crc) | |
a943cac1 ML |
2335 | { |
2336 | uint8_t orig_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn); | |
2337 | bool full_table = true; | |
96412690 | 2338 | struct batadv_tt_change *tt_change; |
a943cac1 | 2339 | |
20ff9d59 | 2340 | /* don't care about a backbone gateways updates. */ |
08adf151 | 2341 | if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig)) |
20ff9d59 SW |
2342 | return; |
2343 | ||
17071578 | 2344 | /* orig table not initialised AND first diff is in the OGM OR the ttvn |
9cfc7bd6 SE |
2345 | * increased by one -> we can apply the attached changes |
2346 | */ | |
17071578 AQ |
2347 | if ((!orig_node->tt_initialised && ttvn == 1) || |
2348 | ttvn - orig_ttvn == 1) { | |
a943cac1 | 2349 | /* the OGM could not contain the changes due to their size or |
42d0b044 SE |
2350 | * because they have already been sent BATADV_TT_OGM_APPEND_MAX |
2351 | * times. | |
9cfc7bd6 SE |
2352 | * In this case send a tt request |
2353 | */ | |
a943cac1 ML |
2354 | if (!tt_num_changes) { |
2355 | full_table = false; | |
2356 | goto request_table; | |
2357 | } | |
2358 | ||
96412690 | 2359 | tt_change = (struct batadv_tt_change *)tt_buff; |
a513088d | 2360 | batadv_tt_update_changes(bat_priv, orig_node, tt_num_changes, |
96412690 | 2361 | ttvn, tt_change); |
a943cac1 ML |
2362 | |
2363 | /* Even if we received the precomputed crc with the OGM, we | |
2364 | * prefer to recompute it to spot any possible inconsistency | |
9cfc7bd6 SE |
2365 | * in the global table |
2366 | */ | |
a513088d | 2367 | orig_node->tt_crc = batadv_tt_global_crc(bat_priv, orig_node); |
a943cac1 ML |
2368 | |
2369 | /* The ttvn alone is not enough to guarantee consistency | |
2370 | * because a single value could represent different states | |
2371 | * (due to the wrap around). Thus a node has to check whether | |
2372 | * the resulting table (after applying the changes) is still | |
2373 | * consistent or not. E.g. a node could disconnect while its | |
2374 | * ttvn is X and reconnect on ttvn = X + TTVN_MAX: in this case | |
2375 | * checking the CRC value is mandatory to detect the | |
9cfc7bd6 SE |
2376 | * inconsistency |
2377 | */ | |
a943cac1 ML |
2378 | if (orig_node->tt_crc != tt_crc) |
2379 | goto request_table; | |
2380 | ||
2381 | /* Roaming phase is over: tables are in sync again. I can | |
9cfc7bd6 SE |
2382 | * unset the flag |
2383 | */ | |
a943cac1 ML |
2384 | orig_node->tt_poss_change = false; |
2385 | } else { | |
2386 | /* if we missed more than one change or our tables are not | |
9cfc7bd6 SE |
2387 | * in sync anymore -> request fresh tt data |
2388 | */ | |
17071578 AQ |
2389 | if (!orig_node->tt_initialised || ttvn != orig_ttvn || |
2390 | orig_node->tt_crc != tt_crc) { | |
a943cac1 | 2391 | request_table: |
39c75a51 | 2392 | batadv_dbg(BATADV_DBG_TT, bat_priv, |
1eda58bf SE |
2393 | "TT inconsistency for %pM. Need to retrieve the correct information (ttvn: %u last_ttvn: %u crc: %u last_crc: %u num_changes: %u)\n", |
2394 | orig_node->orig, ttvn, orig_ttvn, tt_crc, | |
2395 | orig_node->tt_crc, tt_num_changes); | |
a513088d SE |
2396 | batadv_send_tt_request(bat_priv, orig_node, ttvn, |
2397 | tt_crc, full_table); | |
a943cac1 ML |
2398 | return; |
2399 | } | |
2400 | } | |
2401 | } | |
3275e7cc AQ |
2402 | |
2403 | /* returns true whether we know that the client has moved from its old | |
2404 | * originator to another one. This entry is kept is still kept for consistency | |
2405 | * purposes | |
2406 | */ | |
56303d34 | 2407 | bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv, |
08c36d3e | 2408 | uint8_t *addr) |
3275e7cc | 2409 | { |
56303d34 | 2410 | struct batadv_tt_global_entry *tt_global_entry; |
3275e7cc AQ |
2411 | bool ret = false; |
2412 | ||
a513088d | 2413 | tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr); |
3275e7cc AQ |
2414 | if (!tt_global_entry) |
2415 | goto out; | |
2416 | ||
acd34afa | 2417 | ret = tt_global_entry->common.flags & BATADV_TT_CLIENT_ROAM; |
a513088d | 2418 | batadv_tt_global_entry_free_ref(tt_global_entry); |
3275e7cc AQ |
2419 | out: |
2420 | return ret; | |
2421 | } | |
30cfd02b AQ |
2422 | |
2423 | bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv, | |
2424 | struct batadv_orig_node *orig_node, | |
2425 | const unsigned char *addr) | |
2426 | { | |
2427 | bool ret = false; | |
2428 | ||
2429 | if (!batadv_tt_global_add(bat_priv, orig_node, addr, | |
2430 | BATADV_TT_CLIENT_TEMP, | |
2431 | atomic_read(&orig_node->last_ttvn))) | |
2432 | goto out; | |
2433 | ||
2434 | batadv_dbg(BATADV_DBG_TT, bat_priv, | |
2435 | "Added temporary global client (addr: %pM orig: %pM)\n", | |
2436 | addr, orig_node->orig); | |
2437 | ret = true; | |
2438 | out: | |
2439 | return ret; | |
2440 | } |