2 * Copyright (C) 2007-2011 B.A.T.M.A.N. contributors:
4 * Marek Lindner, Simon Wunderlich
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 #include "translation-table.h"
24 #include "soft-interface.h"
25 #include "hard-interface.h"
28 #include "originator.h"
31 #include <linux/crc16.h>
33 static void _tt_global_del(struct bat_priv
*bat_priv
,
34 struct tt_global_entry
*tt_global_entry
,
36 static void tt_purge(struct work_struct
*work
);
38 /* returns 1 if they are the same mac addr */
39 static int compare_ltt(const struct hlist_node
*node
, const void *data2
)
41 const void *data1
= container_of(node
, struct tt_local_entry
,
44 return (memcmp(data1
, data2
, ETH_ALEN
) == 0 ? 1 : 0);
47 /* returns 1 if they are the same mac addr */
48 static int compare_gtt(const struct hlist_node
*node
, const void *data2
)
50 const void *data1
= container_of(node
, struct tt_global_entry
,
53 return (memcmp(data1
, data2
, ETH_ALEN
) == 0 ? 1 : 0);
56 static void tt_start_timer(struct bat_priv
*bat_priv
)
58 INIT_DELAYED_WORK(&bat_priv
->tt_work
, tt_purge
);
59 queue_delayed_work(bat_event_workqueue
, &bat_priv
->tt_work
,
60 msecs_to_jiffies(5000));
63 static struct tt_local_entry
*tt_local_hash_find(struct bat_priv
*bat_priv
,
66 struct hashtable_t
*hash
= bat_priv
->tt_local_hash
;
67 struct hlist_head
*head
;
68 struct hlist_node
*node
;
69 struct tt_local_entry
*tt_local_entry
, *tt_local_entry_tmp
= NULL
;
75 index
= choose_orig(data
, hash
->size
);
76 head
= &hash
->table
[index
];
79 hlist_for_each_entry_rcu(tt_local_entry
, node
, head
, hash_entry
) {
80 if (!compare_eth(tt_local_entry
, data
))
83 if (!atomic_inc_not_zero(&tt_local_entry
->refcount
))
86 tt_local_entry_tmp
= tt_local_entry
;
91 return tt_local_entry_tmp
;
94 static struct tt_global_entry
*tt_global_hash_find(struct bat_priv
*bat_priv
,
97 struct hashtable_t
*hash
= bat_priv
->tt_global_hash
;
98 struct hlist_head
*head
;
99 struct hlist_node
*node
;
100 struct tt_global_entry
*tt_global_entry
;
101 struct tt_global_entry
*tt_global_entry_tmp
= NULL
;
107 index
= choose_orig(data
, hash
->size
);
108 head
= &hash
->table
[index
];
111 hlist_for_each_entry_rcu(tt_global_entry
, node
, head
, hash_entry
) {
112 if (!compare_eth(tt_global_entry
, data
))
115 if (!atomic_inc_not_zero(&tt_global_entry
->refcount
))
118 tt_global_entry_tmp
= tt_global_entry
;
123 return tt_global_entry_tmp
;
126 static bool is_out_of_time(unsigned long starting_time
, unsigned long timeout
)
128 unsigned long deadline
;
129 deadline
= starting_time
+ msecs_to_jiffies(timeout
);
131 return time_after(jiffies
, deadline
);
134 static void tt_local_entry_free_ref(struct tt_local_entry
*tt_local_entry
)
136 if (atomic_dec_and_test(&tt_local_entry
->refcount
))
137 kfree_rcu(tt_local_entry
, rcu
);
140 static void tt_global_entry_free_ref(struct tt_global_entry
*tt_global_entry
)
142 if (atomic_dec_and_test(&tt_global_entry
->refcount
))
143 kfree_rcu(tt_global_entry
, rcu
);
146 static void tt_local_event(struct bat_priv
*bat_priv
, const uint8_t *addr
,
149 struct tt_change_node
*tt_change_node
;
151 tt_change_node
= kmalloc(sizeof(*tt_change_node
), GFP_ATOMIC
);
156 tt_change_node
->change
.flags
= flags
;
157 memcpy(tt_change_node
->change
.addr
, addr
, ETH_ALEN
);
159 spin_lock_bh(&bat_priv
->tt_changes_list_lock
);
160 /* track the change in the OGMinterval list */
161 list_add_tail(&tt_change_node
->list
, &bat_priv
->tt_changes_list
);
162 atomic_inc(&bat_priv
->tt_local_changes
);
163 spin_unlock_bh(&bat_priv
->tt_changes_list_lock
);
165 atomic_set(&bat_priv
->tt_ogm_append_cnt
, 0);
168 int tt_len(int changes_num
)
170 return changes_num
* sizeof(struct tt_change
);
173 static int tt_local_init(struct bat_priv
*bat_priv
)
175 if (bat_priv
->tt_local_hash
)
178 bat_priv
->tt_local_hash
= hash_new(1024);
180 if (!bat_priv
->tt_local_hash
)
186 void tt_local_add(struct net_device
*soft_iface
, const uint8_t *addr
)
188 struct bat_priv
*bat_priv
= netdev_priv(soft_iface
);
189 struct tt_local_entry
*tt_local_entry
= NULL
;
190 struct tt_global_entry
*tt_global_entry
= NULL
;
192 tt_local_entry
= tt_local_hash_find(bat_priv
, addr
);
194 if (tt_local_entry
) {
195 tt_local_entry
->last_seen
= jiffies
;
199 tt_local_entry
= kmalloc(sizeof(*tt_local_entry
), GFP_ATOMIC
);
203 bat_dbg(DBG_TT
, bat_priv
,
204 "Creating new local tt entry: %pM (ttvn: %d)\n", addr
,
205 (uint8_t)atomic_read(&bat_priv
->ttvn
));
207 memcpy(tt_local_entry
->addr
, addr
, ETH_ALEN
);
208 tt_local_entry
->last_seen
= jiffies
;
209 tt_local_entry
->flags
= NO_FLAGS
;
210 atomic_set(&tt_local_entry
->refcount
, 2);
212 /* the batman interface mac address should never be purged */
213 if (compare_eth(addr
, soft_iface
->dev_addr
))
214 tt_local_entry
->flags
|= TT_CLIENT_NOPURGE
;
216 tt_local_event(bat_priv
, addr
, tt_local_entry
->flags
);
218 /* The local entry has to be marked as NEW to avoid to send it in
219 * a full table response going out before the next ttvn increment
220 * (consistency check) */
221 tt_local_entry
->flags
|= TT_CLIENT_NEW
;
223 hash_add(bat_priv
->tt_local_hash
, compare_ltt
, choose_orig
,
224 tt_local_entry
, &tt_local_entry
->hash_entry
);
226 /* remove address from global hash if present */
227 tt_global_entry
= tt_global_hash_find(bat_priv
, addr
);
229 /* Check whether it is a roaming! */
230 if (tt_global_entry
) {
231 /* This node is probably going to update its tt table */
232 tt_global_entry
->orig_node
->tt_poss_change
= true;
233 /* The global entry has to be marked as PENDING and has to be
234 * kept for consistency purpose */
235 tt_global_entry
->flags
|= TT_CLIENT_PENDING
;
236 send_roam_adv(bat_priv
, tt_global_entry
->addr
,
237 tt_global_entry
->orig_node
);
241 tt_local_entry_free_ref(tt_local_entry
);
243 tt_global_entry_free_ref(tt_global_entry
);
246 int tt_changes_fill_buffer(struct bat_priv
*bat_priv
,
247 unsigned char *buff
, int buff_len
)
249 int count
= 0, tot_changes
= 0;
250 struct tt_change_node
*entry
, *safe
;
253 tot_changes
= buff_len
/ tt_len(1);
255 spin_lock_bh(&bat_priv
->tt_changes_list_lock
);
256 atomic_set(&bat_priv
->tt_local_changes
, 0);
258 list_for_each_entry_safe(entry
, safe
, &bat_priv
->tt_changes_list
,
260 if (count
< tot_changes
) {
261 memcpy(buff
+ tt_len(count
),
262 &entry
->change
, sizeof(struct tt_change
));
265 list_del(&entry
->list
);
268 spin_unlock_bh(&bat_priv
->tt_changes_list_lock
);
270 /* Keep the buffer for possible tt_request */
271 spin_lock_bh(&bat_priv
->tt_buff_lock
);
272 kfree(bat_priv
->tt_buff
);
273 bat_priv
->tt_buff_len
= 0;
274 bat_priv
->tt_buff
= NULL
;
275 /* We check whether this new OGM has no changes due to size
279 * if kmalloc() fails we will reply with the full table
280 * instead of providing the diff
282 bat_priv
->tt_buff
= kmalloc(buff_len
, GFP_ATOMIC
);
283 if (bat_priv
->tt_buff
) {
284 memcpy(bat_priv
->tt_buff
, buff
, buff_len
);
285 bat_priv
->tt_buff_len
= buff_len
;
288 spin_unlock_bh(&bat_priv
->tt_buff_lock
);
293 int tt_local_seq_print_text(struct seq_file
*seq
, void *offset
)
295 struct net_device
*net_dev
= (struct net_device
*)seq
->private;
296 struct bat_priv
*bat_priv
= netdev_priv(net_dev
);
297 struct hashtable_t
*hash
= bat_priv
->tt_local_hash
;
298 struct tt_local_entry
*tt_local_entry
;
299 struct hard_iface
*primary_if
;
300 struct hlist_node
*node
;
301 struct hlist_head
*head
;
302 size_t buf_size
, pos
;
306 primary_if
= primary_if_get_selected(bat_priv
);
308 ret
= seq_printf(seq
, "BATMAN mesh %s disabled - "
309 "please specify interfaces to enable it\n",
314 if (primary_if
->if_status
!= IF_ACTIVE
) {
315 ret
= seq_printf(seq
, "BATMAN mesh %s disabled - "
316 "primary interface not active\n",
321 seq_printf(seq
, "Locally retrieved addresses (from %s) "
322 "announced via TT (TTVN: %u):\n",
323 net_dev
->name
, (uint8_t)atomic_read(&bat_priv
->ttvn
));
326 /* Estimate length for: " * xx:xx:xx:xx:xx:xx\n" */
327 for (i
= 0; i
< hash
->size
; i
++) {
328 head
= &hash
->table
[i
];
331 __hlist_for_each_rcu(node
, head
)
336 buff
= kmalloc(buf_size
, GFP_ATOMIC
);
345 for (i
= 0; i
< hash
->size
; i
++) {
346 head
= &hash
->table
[i
];
349 hlist_for_each_entry_rcu(tt_local_entry
, node
,
351 pos
+= snprintf(buff
+ pos
, 22, " * %pM\n",
352 tt_local_entry
->addr
);
357 seq_printf(seq
, "%s", buff
);
361 hardif_free_ref(primary_if
);
365 static void tt_local_set_pending(struct bat_priv
*bat_priv
,
366 struct tt_local_entry
*tt_local_entry
,
369 tt_local_event(bat_priv
, tt_local_entry
->addr
,
370 tt_local_entry
->flags
| flags
);
372 /* The local client has to be merked as "pending to be removed" but has
373 * to be kept in the table in order to send it in an full tables
374 * response issued before the net ttvn increment (consistency check) */
375 tt_local_entry
->flags
|= TT_CLIENT_PENDING
;
378 void tt_local_remove(struct bat_priv
*bat_priv
, const uint8_t *addr
,
379 const char *message
, bool roaming
)
381 struct tt_local_entry
*tt_local_entry
= NULL
;
383 tt_local_entry
= tt_local_hash_find(bat_priv
, addr
);
387 tt_local_set_pending(bat_priv
, tt_local_entry
, TT_CLIENT_DEL
|
388 (roaming
? TT_CLIENT_ROAM
: NO_FLAGS
));
390 bat_dbg(DBG_TT
, bat_priv
, "Local tt entry (%pM) pending to be removed: "
391 "%s\n", tt_local_entry
->addr
, message
);
394 tt_local_entry_free_ref(tt_local_entry
);
397 static void tt_local_purge(struct bat_priv
*bat_priv
)
399 struct hashtable_t
*hash
= bat_priv
->tt_local_hash
;
400 struct tt_local_entry
*tt_local_entry
;
401 struct hlist_node
*node
, *node_tmp
;
402 struct hlist_head
*head
;
403 spinlock_t
*list_lock
; /* protects write access to the hash lists */
406 for (i
= 0; i
< hash
->size
; i
++) {
407 head
= &hash
->table
[i
];
408 list_lock
= &hash
->list_locks
[i
];
410 spin_lock_bh(list_lock
);
411 hlist_for_each_entry_safe(tt_local_entry
, node
, node_tmp
,
413 if (tt_local_entry
->flags
& TT_CLIENT_NOPURGE
)
416 /* entry already marked for deletion */
417 if (tt_local_entry
->flags
& TT_CLIENT_PENDING
)
420 if (!is_out_of_time(tt_local_entry
->last_seen
,
421 TT_LOCAL_TIMEOUT
* 1000))
424 tt_local_set_pending(bat_priv
, tt_local_entry
,
426 bat_dbg(DBG_TT
, bat_priv
, "Local tt entry (%pM) "
427 "pending to be removed: timed out\n",
428 tt_local_entry
->addr
);
430 spin_unlock_bh(list_lock
);
435 static void tt_local_table_free(struct bat_priv
*bat_priv
)
437 struct hashtable_t
*hash
;
438 spinlock_t
*list_lock
; /* protects write access to the hash lists */
439 struct tt_local_entry
*tt_local_entry
;
440 struct hlist_node
*node
, *node_tmp
;
441 struct hlist_head
*head
;
444 if (!bat_priv
->tt_local_hash
)
447 hash
= bat_priv
->tt_local_hash
;
449 for (i
= 0; i
< hash
->size
; i
++) {
450 head
= &hash
->table
[i
];
451 list_lock
= &hash
->list_locks
[i
];
453 spin_lock_bh(list_lock
);
454 hlist_for_each_entry_safe(tt_local_entry
, node
, node_tmp
,
457 tt_local_entry_free_ref(tt_local_entry
);
459 spin_unlock_bh(list_lock
);
464 bat_priv
->tt_local_hash
= NULL
;
467 static int tt_global_init(struct bat_priv
*bat_priv
)
469 if (bat_priv
->tt_global_hash
)
472 bat_priv
->tt_global_hash
= hash_new(1024);
474 if (!bat_priv
->tt_global_hash
)
480 static void tt_changes_list_free(struct bat_priv
*bat_priv
)
482 struct tt_change_node
*entry
, *safe
;
484 spin_lock_bh(&bat_priv
->tt_changes_list_lock
);
486 list_for_each_entry_safe(entry
, safe
, &bat_priv
->tt_changes_list
,
488 list_del(&entry
->list
);
492 atomic_set(&bat_priv
->tt_local_changes
, 0);
493 spin_unlock_bh(&bat_priv
->tt_changes_list_lock
);
496 /* caller must hold orig_node refcount */
497 int tt_global_add(struct bat_priv
*bat_priv
, struct orig_node
*orig_node
,
498 const unsigned char *tt_addr
, uint8_t ttvn
, bool roaming
)
500 struct tt_global_entry
*tt_global_entry
;
501 struct orig_node
*orig_node_tmp
;
504 tt_global_entry
= tt_global_hash_find(bat_priv
, tt_addr
);
506 if (!tt_global_entry
) {
508 kmalloc(sizeof(*tt_global_entry
),
510 if (!tt_global_entry
)
513 memcpy(tt_global_entry
->addr
, tt_addr
, ETH_ALEN
);
514 /* Assign the new orig_node */
515 atomic_inc(&orig_node
->refcount
);
516 tt_global_entry
->orig_node
= orig_node
;
517 tt_global_entry
->ttvn
= ttvn
;
518 tt_global_entry
->flags
= NO_FLAGS
;
519 tt_global_entry
->roam_at
= 0;
520 atomic_set(&tt_global_entry
->refcount
, 2);
522 hash_add(bat_priv
->tt_global_hash
, compare_gtt
,
523 choose_orig
, tt_global_entry
,
524 &tt_global_entry
->hash_entry
);
525 atomic_inc(&orig_node
->tt_size
);
527 if (tt_global_entry
->orig_node
!= orig_node
) {
528 atomic_dec(&tt_global_entry
->orig_node
->tt_size
);
529 orig_node_tmp
= tt_global_entry
->orig_node
;
530 atomic_inc(&orig_node
->refcount
);
531 tt_global_entry
->orig_node
= orig_node
;
532 orig_node_free_ref(orig_node_tmp
);
533 atomic_inc(&orig_node
->tt_size
);
535 tt_global_entry
->ttvn
= ttvn
;
536 tt_global_entry
->flags
= NO_FLAGS
;
537 tt_global_entry
->roam_at
= 0;
540 bat_dbg(DBG_TT
, bat_priv
,
541 "Creating new global tt entry: %pM (via %pM)\n",
542 tt_global_entry
->addr
, orig_node
->orig
);
544 /* remove address from local hash if present */
545 tt_local_remove(bat_priv
, tt_global_entry
->addr
,
546 "global tt received", roaming
);
550 tt_global_entry_free_ref(tt_global_entry
);
554 int tt_global_seq_print_text(struct seq_file
*seq
, void *offset
)
556 struct net_device
*net_dev
= (struct net_device
*)seq
->private;
557 struct bat_priv
*bat_priv
= netdev_priv(net_dev
);
558 struct hashtable_t
*hash
= bat_priv
->tt_global_hash
;
559 struct tt_global_entry
*tt_global_entry
;
560 struct hard_iface
*primary_if
;
561 struct hlist_node
*node
;
562 struct hlist_head
*head
;
563 size_t buf_size
, pos
;
567 primary_if
= primary_if_get_selected(bat_priv
);
569 ret
= seq_printf(seq
, "BATMAN mesh %s disabled - please "
570 "specify interfaces to enable it\n",
575 if (primary_if
->if_status
!= IF_ACTIVE
) {
576 ret
= seq_printf(seq
, "BATMAN mesh %s disabled - "
577 "primary interface not active\n",
583 "Globally announced TT entries received via the mesh %s\n",
585 seq_printf(seq
, " %-13s %s %-15s %s\n",
586 "Client", "(TTVN)", "Originator", "(Curr TTVN)");
589 /* Estimate length for: " * xx:xx:xx:xx:xx:xx (ttvn) via
590 * xx:xx:xx:xx:xx:xx (cur_ttvn)\n"*/
591 for (i
= 0; i
< hash
->size
; i
++) {
592 head
= &hash
->table
[i
];
595 __hlist_for_each_rcu(node
, head
)
600 buff
= kmalloc(buf_size
, GFP_ATOMIC
);
609 for (i
= 0; i
< hash
->size
; i
++) {
610 head
= &hash
->table
[i
];
613 hlist_for_each_entry_rcu(tt_global_entry
, node
,
615 pos
+= snprintf(buff
+ pos
, 61,
616 " * %pM (%3u) via %pM (%3u)\n",
617 tt_global_entry
->addr
,
618 tt_global_entry
->ttvn
,
619 tt_global_entry
->orig_node
->orig
,
620 (uint8_t) atomic_read(
621 &tt_global_entry
->orig_node
->
627 seq_printf(seq
, "%s", buff
);
631 hardif_free_ref(primary_if
);
635 static void _tt_global_del(struct bat_priv
*bat_priv
,
636 struct tt_global_entry
*tt_global_entry
,
639 if (!tt_global_entry
)
642 bat_dbg(DBG_TT
, bat_priv
,
643 "Deleting global tt entry %pM (via %pM): %s\n",
644 tt_global_entry
->addr
, tt_global_entry
->orig_node
->orig
,
647 atomic_dec(&tt_global_entry
->orig_node
->tt_size
);
649 hash_remove(bat_priv
->tt_global_hash
, compare_gtt
, choose_orig
,
650 tt_global_entry
->addr
);
653 tt_global_entry_free_ref(tt_global_entry
);
656 void tt_global_del(struct bat_priv
*bat_priv
,
657 struct orig_node
*orig_node
, const unsigned char *addr
,
658 const char *message
, bool roaming
)
660 struct tt_global_entry
*tt_global_entry
= NULL
;
662 tt_global_entry
= tt_global_hash_find(bat_priv
, addr
);
663 if (!tt_global_entry
)
666 if (tt_global_entry
->orig_node
== orig_node
) {
668 tt_global_entry
->flags
|= TT_CLIENT_ROAM
;
669 tt_global_entry
->roam_at
= jiffies
;
672 _tt_global_del(bat_priv
, tt_global_entry
, message
);
676 tt_global_entry_free_ref(tt_global_entry
);
679 void tt_global_del_orig(struct bat_priv
*bat_priv
,
680 struct orig_node
*orig_node
, const char *message
)
682 struct tt_global_entry
*tt_global_entry
;
684 struct hashtable_t
*hash
= bat_priv
->tt_global_hash
;
685 struct hlist_node
*node
, *safe
;
686 struct hlist_head
*head
;
687 spinlock_t
*list_lock
; /* protects write access to the hash lists */
689 for (i
= 0; i
< hash
->size
; i
++) {
690 head
= &hash
->table
[i
];
691 list_lock
= &hash
->list_locks
[i
];
693 spin_lock_bh(list_lock
);
694 hlist_for_each_entry_safe(tt_global_entry
, node
, safe
,
696 if (tt_global_entry
->orig_node
== orig_node
) {
697 bat_dbg(DBG_TT
, bat_priv
,
698 "Deleting global tt entry %pM "
699 "(via %pM): originator time out\n",
700 tt_global_entry
->addr
,
701 tt_global_entry
->orig_node
->orig
);
703 tt_global_entry_free_ref(tt_global_entry
);
706 spin_unlock_bh(list_lock
);
708 atomic_set(&orig_node
->tt_size
, 0);
711 static void tt_global_roam_purge(struct bat_priv
*bat_priv
)
713 struct hashtable_t
*hash
= bat_priv
->tt_global_hash
;
714 struct tt_global_entry
*tt_global_entry
;
715 struct hlist_node
*node
, *node_tmp
;
716 struct hlist_head
*head
;
717 spinlock_t
*list_lock
; /* protects write access to the hash lists */
720 for (i
= 0; i
< hash
->size
; i
++) {
721 head
= &hash
->table
[i
];
722 list_lock
= &hash
->list_locks
[i
];
724 spin_lock_bh(list_lock
);
725 hlist_for_each_entry_safe(tt_global_entry
, node
, node_tmp
,
727 if (!(tt_global_entry
->flags
& TT_CLIENT_ROAM
))
729 if (!is_out_of_time(tt_global_entry
->roam_at
,
730 TT_CLIENT_ROAM_TIMEOUT
* 1000))
733 bat_dbg(DBG_TT
, bat_priv
, "Deleting global "
734 "tt entry (%pM): Roaming timeout\n",
735 tt_global_entry
->addr
);
736 atomic_dec(&tt_global_entry
->orig_node
->tt_size
);
738 tt_global_entry_free_ref(tt_global_entry
);
740 spin_unlock_bh(list_lock
);
745 static void tt_global_table_free(struct bat_priv
*bat_priv
)
747 struct hashtable_t
*hash
;
748 spinlock_t
*list_lock
; /* protects write access to the hash lists */
749 struct tt_global_entry
*tt_global_entry
;
750 struct hlist_node
*node
, *node_tmp
;
751 struct hlist_head
*head
;
754 if (!bat_priv
->tt_global_hash
)
757 hash
= bat_priv
->tt_global_hash
;
759 for (i
= 0; i
< hash
->size
; i
++) {
760 head
= &hash
->table
[i
];
761 list_lock
= &hash
->list_locks
[i
];
763 spin_lock_bh(list_lock
);
764 hlist_for_each_entry_safe(tt_global_entry
, node
, node_tmp
,
767 tt_global_entry_free_ref(tt_global_entry
);
769 spin_unlock_bh(list_lock
);
774 bat_priv
->tt_global_hash
= NULL
;
777 struct orig_node
*transtable_search(struct bat_priv
*bat_priv
,
780 struct tt_global_entry
*tt_global_entry
;
781 struct orig_node
*orig_node
= NULL
;
783 tt_global_entry
= tt_global_hash_find(bat_priv
, addr
);
785 if (!tt_global_entry
)
788 if (!atomic_inc_not_zero(&tt_global_entry
->orig_node
->refcount
))
791 /* A global client marked as PENDING has already moved from that
793 if (tt_global_entry
->flags
& TT_CLIENT_PENDING
)
796 orig_node
= tt_global_entry
->orig_node
;
799 tt_global_entry_free_ref(tt_global_entry
);
804 /* Calculates the checksum of the local table of a given orig_node */
805 uint16_t tt_global_crc(struct bat_priv
*bat_priv
, struct orig_node
*orig_node
)
807 uint16_t total
= 0, total_one
;
808 struct hashtable_t
*hash
= bat_priv
->tt_global_hash
;
809 struct tt_global_entry
*tt_global_entry
;
810 struct hlist_node
*node
;
811 struct hlist_head
*head
;
814 for (i
= 0; i
< hash
->size
; i
++) {
815 head
= &hash
->table
[i
];
818 hlist_for_each_entry_rcu(tt_global_entry
, node
,
820 if (compare_eth(tt_global_entry
->orig_node
,
822 /* Roaming clients are in the global table for
823 * consistency only. They don't have to be
824 * taken into account while computing the
826 if (tt_global_entry
->flags
& TT_CLIENT_ROAM
)
829 for (j
= 0; j
< ETH_ALEN
; j
++)
830 total_one
= crc16_byte(total_one
,
831 tt_global_entry
->addr
[j
]);
841 /* Calculates the checksum of the local table */
842 uint16_t tt_local_crc(struct bat_priv
*bat_priv
)
844 uint16_t total
= 0, total_one
;
845 struct hashtable_t
*hash
= bat_priv
->tt_local_hash
;
846 struct tt_local_entry
*tt_local_entry
;
847 struct hlist_node
*node
;
848 struct hlist_head
*head
;
851 for (i
= 0; i
< hash
->size
; i
++) {
852 head
= &hash
->table
[i
];
855 hlist_for_each_entry_rcu(tt_local_entry
, node
,
857 /* not yet committed clients have not to be taken into
858 * account while computing the CRC */
859 if (tt_local_entry
->flags
& TT_CLIENT_NEW
)
862 for (j
= 0; j
< ETH_ALEN
; j
++)
863 total_one
= crc16_byte(total_one
,
864 tt_local_entry
->addr
[j
]);
873 static void tt_req_list_free(struct bat_priv
*bat_priv
)
875 struct tt_req_node
*node
, *safe
;
877 spin_lock_bh(&bat_priv
->tt_req_list_lock
);
879 list_for_each_entry_safe(node
, safe
, &bat_priv
->tt_req_list
, list
) {
880 list_del(&node
->list
);
884 spin_unlock_bh(&bat_priv
->tt_req_list_lock
);
887 void tt_save_orig_buffer(struct bat_priv
*bat_priv
, struct orig_node
*orig_node
,
888 const unsigned char *tt_buff
, uint8_t tt_num_changes
)
890 uint16_t tt_buff_len
= tt_len(tt_num_changes
);
892 /* Replace the old buffer only if I received something in the
893 * last OGM (the OGM could carry no changes) */
894 spin_lock_bh(&orig_node
->tt_buff_lock
);
895 if (tt_buff_len
> 0) {
896 kfree(orig_node
->tt_buff
);
897 orig_node
->tt_buff_len
= 0;
898 orig_node
->tt_buff
= kmalloc(tt_buff_len
, GFP_ATOMIC
);
899 if (orig_node
->tt_buff
) {
900 memcpy(orig_node
->tt_buff
, tt_buff
, tt_buff_len
);
901 orig_node
->tt_buff_len
= tt_buff_len
;
904 spin_unlock_bh(&orig_node
->tt_buff_lock
);
907 static void tt_req_purge(struct bat_priv
*bat_priv
)
909 struct tt_req_node
*node
, *safe
;
911 spin_lock_bh(&bat_priv
->tt_req_list_lock
);
912 list_for_each_entry_safe(node
, safe
, &bat_priv
->tt_req_list
, list
) {
913 if (is_out_of_time(node
->issued_at
,
914 TT_REQUEST_TIMEOUT
* 1000)) {
915 list_del(&node
->list
);
919 spin_unlock_bh(&bat_priv
->tt_req_list_lock
);
922 /* returns the pointer to the new tt_req_node struct if no request
923 * has already been issued for this orig_node, NULL otherwise */
924 static struct tt_req_node
*new_tt_req_node(struct bat_priv
*bat_priv
,
925 struct orig_node
*orig_node
)
927 struct tt_req_node
*tt_req_node_tmp
, *tt_req_node
= NULL
;
929 spin_lock_bh(&bat_priv
->tt_req_list_lock
);
930 list_for_each_entry(tt_req_node_tmp
, &bat_priv
->tt_req_list
, list
) {
931 if (compare_eth(tt_req_node_tmp
, orig_node
) &&
932 !is_out_of_time(tt_req_node_tmp
->issued_at
,
933 TT_REQUEST_TIMEOUT
* 1000))
937 tt_req_node
= kmalloc(sizeof(*tt_req_node
), GFP_ATOMIC
);
941 memcpy(tt_req_node
->addr
, orig_node
->orig
, ETH_ALEN
);
942 tt_req_node
->issued_at
= jiffies
;
944 list_add(&tt_req_node
->list
, &bat_priv
->tt_req_list
);
946 spin_unlock_bh(&bat_priv
->tt_req_list_lock
);
950 /* data_ptr is useless here, but has to be kept to respect the prototype */
951 static int tt_local_valid_entry(const void *entry_ptr
, const void *data_ptr
)
953 const struct tt_local_entry
*tt_local_entry
= entry_ptr
;
955 if (tt_local_entry
->flags
& TT_CLIENT_NEW
)
960 static int tt_global_valid_entry(const void *entry_ptr
, const void *data_ptr
)
962 const struct tt_global_entry
*tt_global_entry
= entry_ptr
;
963 const struct orig_node
*orig_node
= data_ptr
;
965 if (tt_global_entry
->flags
& TT_CLIENT_ROAM
)
968 return (tt_global_entry
->orig_node
== orig_node
);
971 static struct sk_buff
*tt_response_fill_table(uint16_t tt_len
, uint8_t ttvn
,
972 struct hashtable_t
*hash
,
973 struct hard_iface
*primary_if
,
974 int (*valid_cb
)(const void *,
978 struct tt_local_entry
*tt_local_entry
;
979 struct tt_query_packet
*tt_response
;
980 struct tt_change
*tt_change
;
981 struct hlist_node
*node
;
982 struct hlist_head
*head
;
983 struct sk_buff
*skb
= NULL
;
984 uint16_t tt_tot
, tt_count
;
985 ssize_t tt_query_size
= sizeof(struct tt_query_packet
);
988 if (tt_query_size
+ tt_len
> primary_if
->soft_iface
->mtu
) {
989 tt_len
= primary_if
->soft_iface
->mtu
- tt_query_size
;
990 tt_len
-= tt_len
% sizeof(struct tt_change
);
992 tt_tot
= tt_len
/ sizeof(struct tt_change
);
994 skb
= dev_alloc_skb(tt_query_size
+ tt_len
+ ETH_HLEN
);
998 skb_reserve(skb
, ETH_HLEN
);
999 tt_response
= (struct tt_query_packet
*)skb_put(skb
,
1000 tt_query_size
+ tt_len
);
1001 tt_response
->ttvn
= ttvn
;
1002 tt_response
->tt_data
= htons(tt_tot
);
1004 tt_change
= (struct tt_change
*)(skb
->data
+ tt_query_size
);
1008 for (i
= 0; i
< hash
->size
; i
++) {
1009 head
= &hash
->table
[i
];
1011 hlist_for_each_entry_rcu(tt_local_entry
, node
,
1013 if (tt_count
== tt_tot
)
1016 if ((valid_cb
) && (!valid_cb(tt_local_entry
, cb_data
)))
1019 memcpy(tt_change
->addr
, tt_local_entry
->addr
, ETH_ALEN
);
1020 tt_change
->flags
= NO_FLAGS
;
1032 int send_tt_request(struct bat_priv
*bat_priv
, struct orig_node
*dst_orig_node
,
1033 uint8_t ttvn
, uint16_t tt_crc
, bool full_table
)
1035 struct sk_buff
*skb
= NULL
;
1036 struct tt_query_packet
*tt_request
;
1037 struct neigh_node
*neigh_node
= NULL
;
1038 struct hard_iface
*primary_if
;
1039 struct tt_req_node
*tt_req_node
= NULL
;
1042 primary_if
= primary_if_get_selected(bat_priv
);
1046 /* The new tt_req will be issued only if I'm not waiting for a
1047 * reply from the same orig_node yet */
1048 tt_req_node
= new_tt_req_node(bat_priv
, dst_orig_node
);
1052 skb
= dev_alloc_skb(sizeof(struct tt_query_packet
) + ETH_HLEN
);
1056 skb_reserve(skb
, ETH_HLEN
);
1058 tt_request
= (struct tt_query_packet
*)skb_put(skb
,
1059 sizeof(struct tt_query_packet
));
1061 tt_request
->packet_type
= BAT_TT_QUERY
;
1062 tt_request
->version
= COMPAT_VERSION
;
1063 memcpy(tt_request
->src
, primary_if
->net_dev
->dev_addr
, ETH_ALEN
);
1064 memcpy(tt_request
->dst
, dst_orig_node
->orig
, ETH_ALEN
);
1065 tt_request
->ttl
= TTL
;
1066 tt_request
->ttvn
= ttvn
;
1067 tt_request
->tt_data
= tt_crc
;
1068 tt_request
->flags
= TT_REQUEST
;
1071 tt_request
->flags
|= TT_FULL_TABLE
;
1073 neigh_node
= orig_node_get_router(dst_orig_node
);
1077 bat_dbg(DBG_TT
, bat_priv
, "Sending TT_REQUEST to %pM via %pM "
1078 "[%c]\n", dst_orig_node
->orig
, neigh_node
->addr
,
1079 (full_table
? 'F' : '.'));
1081 send_skb_packet(skb
, neigh_node
->if_incoming
, neigh_node
->addr
);
1086 neigh_node_free_ref(neigh_node
);
1088 hardif_free_ref(primary_if
);
1091 if (ret
&& tt_req_node
) {
1092 spin_lock_bh(&bat_priv
->tt_req_list_lock
);
1093 list_del(&tt_req_node
->list
);
1094 spin_unlock_bh(&bat_priv
->tt_req_list_lock
);
1100 static bool send_other_tt_response(struct bat_priv
*bat_priv
,
1101 struct tt_query_packet
*tt_request
)
1103 struct orig_node
*req_dst_orig_node
= NULL
, *res_dst_orig_node
= NULL
;
1104 struct neigh_node
*neigh_node
= NULL
;
1105 struct hard_iface
*primary_if
= NULL
;
1106 uint8_t orig_ttvn
, req_ttvn
, ttvn
;
1108 unsigned char *tt_buff
;
1110 uint16_t tt_len
, tt_tot
;
1111 struct sk_buff
*skb
= NULL
;
1112 struct tt_query_packet
*tt_response
;
1114 bat_dbg(DBG_TT
, bat_priv
,
1115 "Received TT_REQUEST from %pM for "
1116 "ttvn: %u (%pM) [%c]\n", tt_request
->src
,
1117 tt_request
->ttvn
, tt_request
->dst
,
1118 (tt_request
->flags
& TT_FULL_TABLE
? 'F' : '.'));
1120 /* Let's get the orig node of the REAL destination */
1121 req_dst_orig_node
= get_orig_node(bat_priv
, tt_request
->dst
);
1122 if (!req_dst_orig_node
)
1125 res_dst_orig_node
= get_orig_node(bat_priv
, tt_request
->src
);
1126 if (!res_dst_orig_node
)
1129 neigh_node
= orig_node_get_router(res_dst_orig_node
);
1133 primary_if
= primary_if_get_selected(bat_priv
);
1137 orig_ttvn
= (uint8_t)atomic_read(&req_dst_orig_node
->last_ttvn
);
1138 req_ttvn
= tt_request
->ttvn
;
1140 /* I have not the requested data */
1141 if (orig_ttvn
!= req_ttvn
||
1142 tt_request
->tt_data
!= req_dst_orig_node
->tt_crc
)
1145 /* If it has explicitly been requested the full table */
1146 if (tt_request
->flags
& TT_FULL_TABLE
||
1147 !req_dst_orig_node
->tt_buff
)
1152 /* In this version, fragmentation is not implemented, then
1153 * I'll send only one packet with as much TT entries as I can */
1155 spin_lock_bh(&req_dst_orig_node
->tt_buff_lock
);
1156 tt_len
= req_dst_orig_node
->tt_buff_len
;
1157 tt_tot
= tt_len
/ sizeof(struct tt_change
);
1159 skb
= dev_alloc_skb(sizeof(struct tt_query_packet
) +
1164 skb_reserve(skb
, ETH_HLEN
);
1165 tt_response
= (struct tt_query_packet
*)skb_put(skb
,
1166 sizeof(struct tt_query_packet
) + tt_len
);
1167 tt_response
->ttvn
= req_ttvn
;
1168 tt_response
->tt_data
= htons(tt_tot
);
1170 tt_buff
= skb
->data
+ sizeof(struct tt_query_packet
);
1171 /* Copy the last orig_node's OGM buffer */
1172 memcpy(tt_buff
, req_dst_orig_node
->tt_buff
,
1173 req_dst_orig_node
->tt_buff_len
);
1175 spin_unlock_bh(&req_dst_orig_node
->tt_buff_lock
);
1177 tt_len
= (uint16_t)atomic_read(&req_dst_orig_node
->tt_size
) *
1178 sizeof(struct tt_change
);
1179 ttvn
= (uint8_t)atomic_read(&req_dst_orig_node
->last_ttvn
);
1181 skb
= tt_response_fill_table(tt_len
, ttvn
,
1182 bat_priv
->tt_global_hash
,
1183 primary_if
, tt_global_valid_entry
,
1188 tt_response
= (struct tt_query_packet
*)skb
->data
;
1191 tt_response
->packet_type
= BAT_TT_QUERY
;
1192 tt_response
->version
= COMPAT_VERSION
;
1193 tt_response
->ttl
= TTL
;
1194 memcpy(tt_response
->src
, req_dst_orig_node
->orig
, ETH_ALEN
);
1195 memcpy(tt_response
->dst
, tt_request
->src
, ETH_ALEN
);
1196 tt_response
->flags
= TT_RESPONSE
;
1199 tt_response
->flags
|= TT_FULL_TABLE
;
1201 bat_dbg(DBG_TT
, bat_priv
,
1202 "Sending TT_RESPONSE %pM via %pM for %pM (ttvn: %u)\n",
1203 res_dst_orig_node
->orig
, neigh_node
->addr
,
1204 req_dst_orig_node
->orig
, req_ttvn
);
1206 send_skb_packet(skb
, neigh_node
->if_incoming
, neigh_node
->addr
);
1211 spin_unlock_bh(&req_dst_orig_node
->tt_buff_lock
);
1214 if (res_dst_orig_node
)
1215 orig_node_free_ref(res_dst_orig_node
);
1216 if (req_dst_orig_node
)
1217 orig_node_free_ref(req_dst_orig_node
);
1219 neigh_node_free_ref(neigh_node
);
1221 hardif_free_ref(primary_if
);
1227 static bool send_my_tt_response(struct bat_priv
*bat_priv
,
1228 struct tt_query_packet
*tt_request
)
1230 struct orig_node
*orig_node
= NULL
;
1231 struct neigh_node
*neigh_node
= NULL
;
1232 struct hard_iface
*primary_if
= NULL
;
1233 uint8_t my_ttvn
, req_ttvn
, ttvn
;
1235 unsigned char *tt_buff
;
1237 uint16_t tt_len
, tt_tot
;
1238 struct sk_buff
*skb
= NULL
;
1239 struct tt_query_packet
*tt_response
;
1241 bat_dbg(DBG_TT
, bat_priv
,
1242 "Received TT_REQUEST from %pM for "
1243 "ttvn: %u (me) [%c]\n", tt_request
->src
,
1245 (tt_request
->flags
& TT_FULL_TABLE
? 'F' : '.'));
1248 my_ttvn
= (uint8_t)atomic_read(&bat_priv
->ttvn
);
1249 req_ttvn
= tt_request
->ttvn
;
1251 orig_node
= get_orig_node(bat_priv
, tt_request
->src
);
1255 neigh_node
= orig_node_get_router(orig_node
);
1259 primary_if
= primary_if_get_selected(bat_priv
);
1263 /* If the full table has been explicitly requested or the gap
1264 * is too big send the whole local translation table */
1265 if (tt_request
->flags
& TT_FULL_TABLE
|| my_ttvn
!= req_ttvn
||
1271 /* In this version, fragmentation is not implemented, then
1272 * I'll send only one packet with as much TT entries as I can */
1274 spin_lock_bh(&bat_priv
->tt_buff_lock
);
1275 tt_len
= bat_priv
->tt_buff_len
;
1276 tt_tot
= tt_len
/ sizeof(struct tt_change
);
1278 skb
= dev_alloc_skb(sizeof(struct tt_query_packet
) +
1283 skb_reserve(skb
, ETH_HLEN
);
1284 tt_response
= (struct tt_query_packet
*)skb_put(skb
,
1285 sizeof(struct tt_query_packet
) + tt_len
);
1286 tt_response
->ttvn
= req_ttvn
;
1287 tt_response
->tt_data
= htons(tt_tot
);
1289 tt_buff
= skb
->data
+ sizeof(struct tt_query_packet
);
1290 memcpy(tt_buff
, bat_priv
->tt_buff
,
1291 bat_priv
->tt_buff_len
);
1292 spin_unlock_bh(&bat_priv
->tt_buff_lock
);
1294 tt_len
= (uint16_t)atomic_read(&bat_priv
->num_local_tt
) *
1295 sizeof(struct tt_change
);
1296 ttvn
= (uint8_t)atomic_read(&bat_priv
->ttvn
);
1298 skb
= tt_response_fill_table(tt_len
, ttvn
,
1299 bat_priv
->tt_local_hash
,
1300 primary_if
, tt_local_valid_entry
,
1305 tt_response
= (struct tt_query_packet
*)skb
->data
;
1308 tt_response
->packet_type
= BAT_TT_QUERY
;
1309 tt_response
->version
= COMPAT_VERSION
;
1310 tt_response
->ttl
= TTL
;
1311 memcpy(tt_response
->src
, primary_if
->net_dev
->dev_addr
, ETH_ALEN
);
1312 memcpy(tt_response
->dst
, tt_request
->src
, ETH_ALEN
);
1313 tt_response
->flags
= TT_RESPONSE
;
1316 tt_response
->flags
|= TT_FULL_TABLE
;
1318 bat_dbg(DBG_TT
, bat_priv
,
1319 "Sending TT_RESPONSE to %pM via %pM [%c]\n",
1320 orig_node
->orig
, neigh_node
->addr
,
1321 (tt_response
->flags
& TT_FULL_TABLE
? 'F' : '.'));
1323 send_skb_packet(skb
, neigh_node
->if_incoming
, neigh_node
->addr
);
1328 spin_unlock_bh(&bat_priv
->tt_buff_lock
);
1331 orig_node_free_ref(orig_node
);
1333 neigh_node_free_ref(neigh_node
);
1335 hardif_free_ref(primary_if
);
1338 /* This packet was for me, so it doesn't need to be re-routed */
1342 bool send_tt_response(struct bat_priv
*bat_priv
,
1343 struct tt_query_packet
*tt_request
)
1345 if (is_my_mac(tt_request
->dst
))
1346 return send_my_tt_response(bat_priv
, tt_request
);
1348 return send_other_tt_response(bat_priv
, tt_request
);
1351 static void _tt_update_changes(struct bat_priv
*bat_priv
,
1352 struct orig_node
*orig_node
,
1353 struct tt_change
*tt_change
,
1354 uint16_t tt_num_changes
, uint8_t ttvn
)
1358 for (i
= 0; i
< tt_num_changes
; i
++) {
1359 if ((tt_change
+ i
)->flags
& TT_CLIENT_DEL
)
1360 tt_global_del(bat_priv
, orig_node
,
1361 (tt_change
+ i
)->addr
,
1362 "tt removed by changes",
1363 (tt_change
+ i
)->flags
& TT_CLIENT_ROAM
);
1365 if (!tt_global_add(bat_priv
, orig_node
,
1366 (tt_change
+ i
)->addr
, ttvn
, false))
1367 /* In case of problem while storing a
1368 * global_entry, we stop the updating
1369 * procedure without committing the
1370 * ttvn change. This will avoid to send
1371 * corrupted data on tt_request
1377 static void tt_fill_gtable(struct bat_priv
*bat_priv
,
1378 struct tt_query_packet
*tt_response
)
1380 struct orig_node
*orig_node
= NULL
;
1382 orig_node
= orig_hash_find(bat_priv
, tt_response
->src
);
1386 /* Purge the old table first.. */
1387 tt_global_del_orig(bat_priv
, orig_node
, "Received full table");
1389 _tt_update_changes(bat_priv
, orig_node
,
1390 (struct tt_change
*)(tt_response
+ 1),
1391 tt_response
->tt_data
, tt_response
->ttvn
);
1393 spin_lock_bh(&orig_node
->tt_buff_lock
);
1394 kfree(orig_node
->tt_buff
);
1395 orig_node
->tt_buff_len
= 0;
1396 orig_node
->tt_buff
= NULL
;
1397 spin_unlock_bh(&orig_node
->tt_buff_lock
);
1399 atomic_set(&orig_node
->last_ttvn
, tt_response
->ttvn
);
1403 orig_node_free_ref(orig_node
);
1406 void tt_update_changes(struct bat_priv
*bat_priv
, struct orig_node
*orig_node
,
1407 uint16_t tt_num_changes
, uint8_t ttvn
,
1408 struct tt_change
*tt_change
)
1410 _tt_update_changes(bat_priv
, orig_node
, tt_change
, tt_num_changes
,
1413 tt_save_orig_buffer(bat_priv
, orig_node
, (unsigned char *)tt_change
,
1415 atomic_set(&orig_node
->last_ttvn
, ttvn
);
1418 bool is_my_client(struct bat_priv
*bat_priv
, const uint8_t *addr
)
1420 struct tt_local_entry
*tt_local_entry
= NULL
;
1423 tt_local_entry
= tt_local_hash_find(bat_priv
, addr
);
1424 if (!tt_local_entry
)
1426 /* Check if the client has been logically deleted (but is kept for
1427 * consistency purpose) */
1428 if (tt_local_entry
->flags
& TT_CLIENT_PENDING
)
1433 tt_local_entry_free_ref(tt_local_entry
);
1437 void handle_tt_response(struct bat_priv
*bat_priv
,
1438 struct tt_query_packet
*tt_response
)
1440 struct tt_req_node
*node
, *safe
;
1441 struct orig_node
*orig_node
= NULL
;
1443 bat_dbg(DBG_TT
, bat_priv
, "Received TT_RESPONSE from %pM for "
1444 "ttvn %d t_size: %d [%c]\n",
1445 tt_response
->src
, tt_response
->ttvn
,
1446 tt_response
->tt_data
,
1447 (tt_response
->flags
& TT_FULL_TABLE
? 'F' : '.'));
1449 orig_node
= orig_hash_find(bat_priv
, tt_response
->src
);
1453 if (tt_response
->flags
& TT_FULL_TABLE
)
1454 tt_fill_gtable(bat_priv
, tt_response
);
1456 tt_update_changes(bat_priv
, orig_node
, tt_response
->tt_data
,
1458 (struct tt_change
*)(tt_response
+ 1));
1460 /* Delete the tt_req_node from pending tt_requests list */
1461 spin_lock_bh(&bat_priv
->tt_req_list_lock
);
1462 list_for_each_entry_safe(node
, safe
, &bat_priv
->tt_req_list
, list
) {
1463 if (!compare_eth(node
->addr
, tt_response
->src
))
1465 list_del(&node
->list
);
1468 spin_unlock_bh(&bat_priv
->tt_req_list_lock
);
1470 /* Recalculate the CRC for this orig_node and store it */
1471 orig_node
->tt_crc
= tt_global_crc(bat_priv
, orig_node
);
1472 /* Roaming phase is over: tables are in sync again. I can
1474 orig_node
->tt_poss_change
= false;
1477 orig_node_free_ref(orig_node
);
1480 int tt_init(struct bat_priv
*bat_priv
)
1482 if (!tt_local_init(bat_priv
))
1485 if (!tt_global_init(bat_priv
))
1488 tt_start_timer(bat_priv
);
1493 static void tt_roam_list_free(struct bat_priv
*bat_priv
)
1495 struct tt_roam_node
*node
, *safe
;
1497 spin_lock_bh(&bat_priv
->tt_roam_list_lock
);
1499 list_for_each_entry_safe(node
, safe
, &bat_priv
->tt_roam_list
, list
) {
1500 list_del(&node
->list
);
1504 spin_unlock_bh(&bat_priv
->tt_roam_list_lock
);
1507 static void tt_roam_purge(struct bat_priv
*bat_priv
)
1509 struct tt_roam_node
*node
, *safe
;
1511 spin_lock_bh(&bat_priv
->tt_roam_list_lock
);
1512 list_for_each_entry_safe(node
, safe
, &bat_priv
->tt_roam_list
, list
) {
1513 if (!is_out_of_time(node
->first_time
,
1514 ROAMING_MAX_TIME
* 1000))
1517 list_del(&node
->list
);
1520 spin_unlock_bh(&bat_priv
->tt_roam_list_lock
);
1523 /* This function checks whether the client already reached the
1524 * maximum number of possible roaming phases. In this case the ROAMING_ADV
1527 * returns true if the ROAMING_ADV can be sent, false otherwise */
1528 static bool tt_check_roam_count(struct bat_priv
*bat_priv
,
1531 struct tt_roam_node
*tt_roam_node
;
1534 spin_lock_bh(&bat_priv
->tt_roam_list_lock
);
1535 /* The new tt_req will be issued only if I'm not waiting for a
1536 * reply from the same orig_node yet */
1537 list_for_each_entry(tt_roam_node
, &bat_priv
->tt_roam_list
, list
) {
1538 if (!compare_eth(tt_roam_node
->addr
, client
))
1541 if (is_out_of_time(tt_roam_node
->first_time
,
1542 ROAMING_MAX_TIME
* 1000))
1545 if (!atomic_dec_not_zero(&tt_roam_node
->counter
))
1546 /* Sorry, you roamed too many times! */
1553 tt_roam_node
= kmalloc(sizeof(*tt_roam_node
), GFP_ATOMIC
);
1557 tt_roam_node
->first_time
= jiffies
;
1558 atomic_set(&tt_roam_node
->counter
, ROAMING_MAX_COUNT
- 1);
1559 memcpy(tt_roam_node
->addr
, client
, ETH_ALEN
);
1561 list_add(&tt_roam_node
->list
, &bat_priv
->tt_roam_list
);
1566 spin_unlock_bh(&bat_priv
->tt_roam_list_lock
);
1570 void send_roam_adv(struct bat_priv
*bat_priv
, uint8_t *client
,
1571 struct orig_node
*orig_node
)
1573 struct neigh_node
*neigh_node
= NULL
;
1574 struct sk_buff
*skb
= NULL
;
1575 struct roam_adv_packet
*roam_adv_packet
;
1577 struct hard_iface
*primary_if
;
1579 /* before going on we have to check whether the client has
1580 * already roamed to us too many times */
1581 if (!tt_check_roam_count(bat_priv
, client
))
1584 skb
= dev_alloc_skb(sizeof(struct roam_adv_packet
) + ETH_HLEN
);
1588 skb_reserve(skb
, ETH_HLEN
);
1590 roam_adv_packet
= (struct roam_adv_packet
*)skb_put(skb
,
1591 sizeof(struct roam_adv_packet
));
1593 roam_adv_packet
->packet_type
= BAT_ROAM_ADV
;
1594 roam_adv_packet
->version
= COMPAT_VERSION
;
1595 roam_adv_packet
->ttl
= TTL
;
1596 primary_if
= primary_if_get_selected(bat_priv
);
1599 memcpy(roam_adv_packet
->src
, primary_if
->net_dev
->dev_addr
, ETH_ALEN
);
1600 hardif_free_ref(primary_if
);
1601 memcpy(roam_adv_packet
->dst
, orig_node
->orig
, ETH_ALEN
);
1602 memcpy(roam_adv_packet
->client
, client
, ETH_ALEN
);
1604 neigh_node
= orig_node_get_router(orig_node
);
1608 bat_dbg(DBG_TT
, bat_priv
,
1609 "Sending ROAMING_ADV to %pM (client %pM) via %pM\n",
1610 orig_node
->orig
, client
, neigh_node
->addr
);
1612 send_skb_packet(skb
, neigh_node
->if_incoming
, neigh_node
->addr
);
1617 neigh_node_free_ref(neigh_node
);
1623 static void tt_purge(struct work_struct
*work
)
1625 struct delayed_work
*delayed_work
=
1626 container_of(work
, struct delayed_work
, work
);
1627 struct bat_priv
*bat_priv
=
1628 container_of(delayed_work
, struct bat_priv
, tt_work
);
1630 tt_local_purge(bat_priv
);
1631 tt_global_roam_purge(bat_priv
);
1632 tt_req_purge(bat_priv
);
1633 tt_roam_purge(bat_priv
);
1635 tt_start_timer(bat_priv
);
1638 void tt_free(struct bat_priv
*bat_priv
)
1640 cancel_delayed_work_sync(&bat_priv
->tt_work
);
1642 tt_local_table_free(bat_priv
);
1643 tt_global_table_free(bat_priv
);
1644 tt_req_list_free(bat_priv
);
1645 tt_changes_list_free(bat_priv
);
1646 tt_roam_list_free(bat_priv
);
1648 kfree(bat_priv
->tt_buff
);
1651 /* This function will reset the specified flags from all the entries in
1652 * the given hash table and will increment num_local_tt for each involved
1654 static void tt_local_reset_flags(struct bat_priv
*bat_priv
, uint16_t flags
)
1657 struct hashtable_t
*hash
= bat_priv
->tt_local_hash
;
1658 struct hlist_head
*head
;
1659 struct hlist_node
*node
;
1660 struct tt_local_entry
*tt_local_entry
;
1665 for (i
= 0; i
< hash
->size
; i
++) {
1666 head
= &hash
->table
[i
];
1669 hlist_for_each_entry_rcu(tt_local_entry
, node
,
1671 tt_local_entry
->flags
&= ~flags
;
1672 atomic_inc(&bat_priv
->num_local_tt
);
1679 /* Purge out all the tt local entries marked with TT_CLIENT_PENDING */
1680 static void tt_local_purge_pending_clients(struct bat_priv
*bat_priv
)
1682 struct hashtable_t
*hash
= bat_priv
->tt_local_hash
;
1683 struct tt_local_entry
*tt_local_entry
;
1684 struct hlist_node
*node
, *node_tmp
;
1685 struct hlist_head
*head
;
1686 spinlock_t
*list_lock
; /* protects write access to the hash lists */
1692 for (i
= 0; i
< hash
->size
; i
++) {
1693 head
= &hash
->table
[i
];
1694 list_lock
= &hash
->list_locks
[i
];
1696 spin_lock_bh(list_lock
);
1697 hlist_for_each_entry_safe(tt_local_entry
, node
, node_tmp
,
1699 if (!(tt_local_entry
->flags
& TT_CLIENT_PENDING
))
1702 bat_dbg(DBG_TT
, bat_priv
, "Deleting local tt entry "
1703 "(%pM): pending\n", tt_local_entry
->addr
);
1705 atomic_dec(&bat_priv
->num_local_tt
);
1706 hlist_del_rcu(node
);
1707 tt_local_entry_free_ref(tt_local_entry
);
1709 spin_unlock_bh(list_lock
);
1714 void tt_commit_changes(struct bat_priv
*bat_priv
)
1716 tt_local_reset_flags(bat_priv
, TT_CLIENT_NEW
);
1717 tt_local_purge_pending_clients(bat_priv
);
1719 /* Increment the TTVN only once per OGM interval */
1720 atomic_inc(&bat_priv
->ttvn
);
1721 bat_priv
->tt_poss_change
= false;