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