blob: eeceb13c044e6e7898bc4252e7e6235a2785388b [file] [log] [blame]
Antonio Quartulli0b873932013-01-04 03:05:31 +01001/* Copyright (C) 2007-2013 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
Antonio Quartulli35c133a2012-03-14 13:03:01 +01003 * Marek Lindner, Simon Wunderlich, Antonio Quartulli
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00004 *
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
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000016 */
17
18#include "main.h"
19#include "translation-table.h"
20#include "soft-interface.h"
Marek Lindner32ae9b22011-04-20 15:40:58 +020021#include "hard-interface.h"
Antonio Quartullia73105b2011-04-27 14:27:44 +020022#include "send.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000023#include "hash.h"
24#include "originator.h"
Antonio Quartullia73105b2011-04-27 14:27:44 +020025#include "routing.h"
Simon Wunderlich20ff9d52012-01-22 20:00:23 +010026#include "bridge_loop_avoidance.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000027
Antonio Quartulliced72932013-04-24 16:37:51 +020028#include <linux/crc32c.h>
Antonio Quartullia73105b2011-04-27 14:27:44 +020029
Antonio Quartullidec05072012-11-10 11:00:32 +010030/* hash class keys */
31static struct lock_class_key batadv_tt_local_hash_lock_class_key;
32static struct lock_class_key batadv_tt_global_hash_lock_class_key;
33
Sven Eckelmann56303d32012-06-05 22:31:31 +020034static void batadv_send_roam_adv(struct batadv_priv *bat_priv, uint8_t *client,
Antonio Quartullic018ad32013-06-04 12:11:39 +020035 unsigned short vid,
Sven Eckelmann56303d32012-06-05 22:31:31 +020036 struct batadv_orig_node *orig_node);
Sven Eckelmanna5130882012-05-16 20:23:16 +020037static void batadv_tt_purge(struct work_struct *work);
38static void
Sven Eckelmann56303d32012-06-05 22:31:31 +020039batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry);
Antonio Quartulli30cfd022012-07-05 23:38:29 +020040static void batadv_tt_global_del(struct batadv_priv *bat_priv,
41 struct batadv_orig_node *orig_node,
42 const unsigned char *addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +020043 unsigned short vid, const char *message,
44 bool roaming);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000045
Marek Lindner7aadf882011-02-18 12:28:09 +000046/* returns 1 if they are the same mac addr */
Sven Eckelmanna5130882012-05-16 20:23:16 +020047static int batadv_compare_tt(const struct hlist_node *node, const void *data2)
Marek Lindner7aadf882011-02-18 12:28:09 +000048{
Sven Eckelmann56303d32012-06-05 22:31:31 +020049 const void *data1 = container_of(node, struct batadv_tt_common_entry,
Sven Eckelmann747e4222011-05-14 23:14:50 +020050 hash_entry);
Marek Lindner7aadf882011-02-18 12:28:09 +000051
dingtianhong323813e2013-12-26 19:40:39 +080052 return batadv_compare_eth(data1, data2);
Marek Lindner7aadf882011-02-18 12:28:09 +000053}
54
Antonio Quartullic018ad32013-06-04 12:11:39 +020055/**
56 * batadv_choose_tt - return the index of the tt entry in the hash table
57 * @data: pointer to the tt_common_entry object to map
58 * @size: the size of the hash table
59 *
60 * Returns the hash index where the object represented by 'data' should be
61 * stored at.
62 */
63static inline uint32_t batadv_choose_tt(const void *data, uint32_t size)
64{
65 struct batadv_tt_common_entry *tt;
66 uint32_t hash = 0;
67
68 tt = (struct batadv_tt_common_entry *)data;
69 hash = batadv_hash_bytes(hash, &tt->addr, ETH_ALEN);
70 hash = batadv_hash_bytes(hash, &tt->vid, sizeof(tt->vid));
71
72 hash += (hash << 3);
73 hash ^= (hash >> 11);
74 hash += (hash << 15);
75
76 return hash % size;
77}
78
79/**
80 * batadv_tt_hash_find - look for a client in the given hash table
81 * @hash: the hash table to search
82 * @addr: the mac address of the client to look for
83 * @vid: VLAN identifier
84 *
85 * Returns a pointer to the tt_common struct belonging to the searched client if
86 * found, NULL otherwise.
87 */
Sven Eckelmann56303d32012-06-05 22:31:31 +020088static struct batadv_tt_common_entry *
Antonio Quartullic018ad32013-06-04 12:11:39 +020089batadv_tt_hash_find(struct batadv_hashtable *hash, const uint8_t *addr,
90 unsigned short vid)
Marek Lindner7aadf882011-02-18 12:28:09 +000091{
Marek Lindner7aadf882011-02-18 12:28:09 +000092 struct hlist_head *head;
Antonio Quartullic018ad32013-06-04 12:11:39 +020093 struct batadv_tt_common_entry to_search, *tt, *tt_tmp = NULL;
Antonio Quartullic90681b2011-10-05 17:05:25 +020094 uint32_t index;
Marek Lindner7aadf882011-02-18 12:28:09 +000095
96 if (!hash)
97 return NULL;
98
Antonio Quartullic018ad32013-06-04 12:11:39 +020099 memcpy(to_search.addr, addr, ETH_ALEN);
100 to_search.vid = vid;
101
102 index = batadv_choose_tt(&to_search, hash->size);
Marek Lindner7aadf882011-02-18 12:28:09 +0000103 head = &hash->table[index];
104
105 rcu_read_lock();
Antonio Quartullic018ad32013-06-04 12:11:39 +0200106 hlist_for_each_entry_rcu(tt, head, hash_entry) {
107 if (!batadv_compare_eth(tt, addr))
Marek Lindner7aadf882011-02-18 12:28:09 +0000108 continue;
109
Antonio Quartullic018ad32013-06-04 12:11:39 +0200110 if (tt->vid != vid)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200111 continue;
112
Antonio Quartullic018ad32013-06-04 12:11:39 +0200113 if (!atomic_inc_not_zero(&tt->refcount))
114 continue;
115
116 tt_tmp = tt;
Marek Lindner7aadf882011-02-18 12:28:09 +0000117 break;
118 }
119 rcu_read_unlock();
120
Antonio Quartullic018ad32013-06-04 12:11:39 +0200121 return tt_tmp;
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100122}
123
Antonio Quartullic018ad32013-06-04 12:11:39 +0200124/**
125 * batadv_tt_local_hash_find - search the local table for a given client
126 * @bat_priv: the bat priv with all the soft interface information
127 * @addr: the mac address of the client to look for
128 * @vid: VLAN identifier
129 *
130 * Returns a pointer to the corresponding tt_local_entry struct if the client is
131 * found, NULL otherwise.
132 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200133static struct batadv_tt_local_entry *
Antonio Quartullic018ad32013-06-04 12:11:39 +0200134batadv_tt_local_hash_find(struct batadv_priv *bat_priv, const uint8_t *addr,
135 unsigned short vid)
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100136{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200137 struct batadv_tt_common_entry *tt_common_entry;
138 struct batadv_tt_local_entry *tt_local_entry = NULL;
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100139
Antonio Quartullic018ad32013-06-04 12:11:39 +0200140 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.local_hash, addr,
141 vid);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100142 if (tt_common_entry)
143 tt_local_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200144 struct batadv_tt_local_entry,
145 common);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100146 return tt_local_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000147}
148
Antonio Quartullic018ad32013-06-04 12:11:39 +0200149/**
150 * batadv_tt_global_hash_find - search the global table for a given client
151 * @bat_priv: the bat priv with all the soft interface information
152 * @addr: the mac address of the client to look for
153 * @vid: VLAN identifier
154 *
155 * Returns a pointer to the corresponding tt_global_entry struct if the client
156 * is found, NULL otherwise.
157 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200158static struct batadv_tt_global_entry *
Antonio Quartullic018ad32013-06-04 12:11:39 +0200159batadv_tt_global_hash_find(struct batadv_priv *bat_priv, const uint8_t *addr,
160 unsigned short vid)
Marek Lindner7aadf882011-02-18 12:28:09 +0000161{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200162 struct batadv_tt_common_entry *tt_common_entry;
163 struct batadv_tt_global_entry *tt_global_entry = NULL;
Marek Lindner7aadf882011-02-18 12:28:09 +0000164
Antonio Quartullic018ad32013-06-04 12:11:39 +0200165 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.global_hash, addr,
166 vid);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100167 if (tt_common_entry)
168 tt_global_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200169 struct batadv_tt_global_entry,
170 common);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100171 return tt_global_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000172}
173
Sven Eckelmanna5130882012-05-16 20:23:16 +0200174static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200175batadv_tt_local_entry_free_ref(struct batadv_tt_local_entry *tt_local_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200176{
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100177 if (atomic_dec_and_test(&tt_local_entry->common.refcount))
178 kfree_rcu(tt_local_entry, common.rcu);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200179}
180
Antonio Quartulli21026052013-05-07 00:29:22 +0200181/**
182 * batadv_tt_global_entry_free_ref - decrement the refcounter for a
183 * tt_global_entry and possibly free it
184 * @tt_global_entry: the object to free
185 */
Sven Eckelmanna5130882012-05-16 20:23:16 +0200186static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200187batadv_tt_global_entry_free_ref(struct batadv_tt_global_entry *tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200188{
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200189 if (atomic_dec_and_test(&tt_global_entry->common.refcount)) {
Sven Eckelmanna5130882012-05-16 20:23:16 +0200190 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartulli21026052013-05-07 00:29:22 +0200191 kfree_rcu(tt_global_entry, common.rcu);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200192 }
193}
194
Sven Eckelmanna5130882012-05-16 20:23:16 +0200195static void batadv_tt_orig_list_entry_free_rcu(struct rcu_head *rcu)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200196{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200197 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200198
Sven Eckelmann56303d32012-06-05 22:31:31 +0200199 orig_entry = container_of(rcu, struct batadv_tt_orig_list_entry, rcu);
Linus Lüssing72822222013-04-15 21:43:29 +0800200
201 /* We are in an rcu callback here, therefore we cannot use
202 * batadv_orig_node_free_ref() and its call_rcu():
203 * An rcu_barrier() wouldn't wait for that to finish
204 */
205 batadv_orig_node_free_ref_now(orig_entry->orig_node);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200206 kfree(orig_entry);
207}
208
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200209/**
210 * batadv_tt_local_size_mod - change the size by v of the local table identified
211 * by vid
212 * @bat_priv: the bat priv with all the soft interface information
213 * @vid: the VLAN identifier of the sub-table to change
214 * @v: the amount to sum to the local table size
215 */
216static void batadv_tt_local_size_mod(struct batadv_priv *bat_priv,
217 unsigned short vid, int v)
218{
219 struct batadv_softif_vlan *vlan;
220
221 vlan = batadv_softif_vlan_get(bat_priv, vid);
222 if (!vlan)
223 return;
224
225 atomic_add(v, &vlan->tt.num_entries);
226
227 batadv_softif_vlan_free_ref(vlan);
228}
229
230/**
231 * batadv_tt_local_size_inc - increase by one the local table size for the given
232 * vid
233 * @bat_priv: the bat priv with all the soft interface information
234 * @vid: the VLAN identifier
235 */
236static void batadv_tt_local_size_inc(struct batadv_priv *bat_priv,
237 unsigned short vid)
238{
239 batadv_tt_local_size_mod(bat_priv, vid, 1);
240}
241
242/**
243 * batadv_tt_local_size_dec - decrease by one the local table size for the given
244 * vid
245 * @bat_priv: the bat priv with all the soft interface information
246 * @vid: the VLAN identifier
247 */
248static void batadv_tt_local_size_dec(struct batadv_priv *bat_priv,
249 unsigned short vid)
250{
251 batadv_tt_local_size_mod(bat_priv, vid, -1);
252}
253
254/**
255 * batadv_tt_global_size_mod - change the size by v of the local table
256 * identified by vid
257 * @bat_priv: the bat priv with all the soft interface information
258 * @vid: the VLAN identifier
259 * @v: the amount to sum to the global table size
260 */
261static void batadv_tt_global_size_mod(struct batadv_orig_node *orig_node,
262 unsigned short vid, int v)
263{
264 struct batadv_orig_node_vlan *vlan;
265
266 vlan = batadv_orig_node_vlan_new(orig_node, vid);
267 if (!vlan)
268 return;
269
270 if (atomic_add_return(v, &vlan->tt.num_entries) == 0) {
271 spin_lock_bh(&orig_node->vlan_list_lock);
272 list_del_rcu(&vlan->list);
273 spin_unlock_bh(&orig_node->vlan_list_lock);
274 batadv_orig_node_vlan_free_ref(vlan);
275 }
276
277 batadv_orig_node_vlan_free_ref(vlan);
278}
279
280/**
281 * batadv_tt_global_size_inc - increase by one the global table size for the
282 * given vid
283 * @orig_node: the originator which global table size has to be decreased
284 * @vid: the vlan identifier
285 */
286static void batadv_tt_global_size_inc(struct batadv_orig_node *orig_node,
287 unsigned short vid)
288{
289 batadv_tt_global_size_mod(orig_node, vid, 1);
290}
291
292/**
293 * batadv_tt_global_size_dec - decrease by one the global table size for the
294 * given vid
295 * @orig_node: the originator which global table size has to be decreased
296 * @vid: the vlan identifier
297 */
298static void batadv_tt_global_size_dec(struct batadv_orig_node *orig_node,
299 unsigned short vid)
300{
301 batadv_tt_global_size_mod(orig_node, vid, -1);
302}
303
Sven Eckelmanna5130882012-05-16 20:23:16 +0200304static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200305batadv_tt_orig_list_entry_free_ref(struct batadv_tt_orig_list_entry *orig_entry)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200306{
Antonio Quartullid657e622012-07-01 14:09:12 +0200307 if (!atomic_dec_and_test(&orig_entry->refcount))
308 return;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200309
Sven Eckelmanna5130882012-05-16 20:23:16 +0200310 call_rcu(&orig_entry->rcu, batadv_tt_orig_list_entry_free_rcu);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200311}
312
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200313/**
314 * batadv_tt_local_event - store a local TT event (ADD/DEL)
315 * @bat_priv: the bat priv with all the soft interface information
316 * @tt_local_entry: the TT entry involved in the event
317 * @event_flags: flags to store in the event structure
318 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200319static void batadv_tt_local_event(struct batadv_priv *bat_priv,
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200320 struct batadv_tt_local_entry *tt_local_entry,
321 uint8_t event_flags)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200322{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200323 struct batadv_tt_change_node *tt_change_node, *entry, *safe;
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200324 struct batadv_tt_common_entry *common = &tt_local_entry->common;
325 uint8_t flags = common->flags | event_flags;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200326 bool event_removed = false;
327 bool del_op_requested, del_op_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200328
329 tt_change_node = kmalloc(sizeof(*tt_change_node), GFP_ATOMIC);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200330 if (!tt_change_node)
331 return;
332
Antonio Quartulliff66c972011-06-30 01:14:00 +0200333 tt_change_node->change.flags = flags;
Antonio Quartullica663042013-12-15 13:26:55 +0100334 memset(tt_change_node->change.reserved, 0,
335 sizeof(tt_change_node->change.reserved));
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200336 memcpy(tt_change_node->change.addr, common->addr, ETH_ALEN);
Antonio Quartullic018ad32013-06-04 12:11:39 +0200337 tt_change_node->change.vid = htons(common->vid);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200338
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200339 del_op_requested = flags & BATADV_TT_CLIENT_DEL;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200340
341 /* check for ADD+DEL or DEL+ADD events */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200342 spin_lock_bh(&bat_priv->tt.changes_list_lock);
343 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200344 list) {
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200345 if (!batadv_compare_eth(entry->change.addr, common->addr))
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200346 continue;
347
348 /* DEL+ADD in the same orig interval have no effect and can be
349 * removed to avoid silly behaviour on the receiver side. The
350 * other way around (ADD+DEL) can happen in case of roaming of
351 * a client still in the NEW state. Roaming of NEW clients is
352 * now possible due to automatically recognition of "temporary"
353 * clients
354 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200355 del_op_entry = entry->change.flags & BATADV_TT_CLIENT_DEL;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200356 if (!del_op_requested && del_op_entry)
357 goto del;
358 if (del_op_requested && !del_op_entry)
359 goto del;
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200360
361 /* this is a second add in the same originator interval. It
362 * means that flags have been changed: update them!
363 */
364 if (!del_op_requested && !del_op_entry)
365 entry->change.flags = flags;
366
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200367 continue;
368del:
369 list_del(&entry->list);
370 kfree(entry);
Jesper Juhl155e4e12012-08-07 08:32:34 +0000371 kfree(tt_change_node);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200372 event_removed = true;
373 goto unlock;
374 }
375
Antonio Quartullia73105b2011-04-27 14:27:44 +0200376 /* track the change in the OGMinterval list */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200377 list_add_tail(&tt_change_node->list, &bat_priv->tt.changes_list);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200378
379unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +0200380 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200381
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200382 if (event_removed)
Sven Eckelmann807736f2012-07-15 22:26:51 +0200383 atomic_dec(&bat_priv->tt.local_changes);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200384 else
Sven Eckelmann807736f2012-07-15 22:26:51 +0200385 atomic_inc(&bat_priv->tt.local_changes);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200386}
387
Marek Lindner335fbe02013-04-23 21:40:02 +0800388/**
389 * batadv_tt_len - compute length in bytes of given number of tt changes
390 * @changes_num: number of tt changes
391 *
392 * Returns computed length in bytes.
393 */
394static int batadv_tt_len(int changes_num)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200395{
Marek Lindner335fbe02013-04-23 21:40:02 +0800396 return changes_num * sizeof(struct batadv_tvlv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200397}
398
Antonio Quartulli298e6e62013-05-28 13:14:27 +0200399/**
400 * batadv_tt_entries - compute the number of entries fitting in tt_len bytes
401 * @tt_len: available space
402 *
403 * Returns the number of entries.
404 */
405static uint16_t batadv_tt_entries(uint16_t tt_len)
406{
407 return tt_len / batadv_tt_len(1);
408}
409
Marek Lindnera19d3d82013-05-27 15:33:25 +0800410/**
411 * batadv_tt_local_table_transmit_size - calculates the local translation table
412 * size when transmitted over the air
413 * @bat_priv: the bat priv with all the soft interface information
414 *
415 * Returns local translation table size in bytes.
416 */
417static int batadv_tt_local_table_transmit_size(struct batadv_priv *bat_priv)
418{
419 uint16_t num_vlan = 0, tt_local_entries = 0;
420 struct batadv_softif_vlan *vlan;
421 int hdr_size;
422
423 rcu_read_lock();
424 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
425 num_vlan++;
426 tt_local_entries += atomic_read(&vlan->tt.num_entries);
427 }
428 rcu_read_unlock();
429
430 /* header size of tvlv encapsulated tt response payload */
431 hdr_size = sizeof(struct batadv_unicast_tvlv_packet);
432 hdr_size += sizeof(struct batadv_tvlv_hdr);
433 hdr_size += sizeof(struct batadv_tvlv_tt_data);
434 hdr_size += num_vlan * sizeof(struct batadv_tvlv_tt_vlan_data);
435
436 return hdr_size + batadv_tt_len(tt_local_entries);
437}
438
Sven Eckelmann56303d32012-06-05 22:31:31 +0200439static int batadv_tt_local_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000440{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200441 if (bat_priv->tt.local_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200442 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000443
Sven Eckelmann807736f2012-07-15 22:26:51 +0200444 bat_priv->tt.local_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445
Sven Eckelmann807736f2012-07-15 22:26:51 +0200446 if (!bat_priv->tt.local_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200447 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000448
Antonio Quartullidec05072012-11-10 11:00:32 +0100449 batadv_hash_set_lock_class(bat_priv->tt.local_hash,
450 &batadv_tt_local_hash_lock_class_key);
451
Sven Eckelmann5346c352012-05-05 13:27:28 +0200452 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000453}
454
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200455static void batadv_tt_global_free(struct batadv_priv *bat_priv,
456 struct batadv_tt_global_entry *tt_global,
457 const char *message)
458{
459 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200460 "Deleting global tt entry %pM (vid: %d): %s\n",
461 tt_global->common.addr,
462 BATADV_PRINT_VID(tt_global->common.vid), message);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200463
464 batadv_hash_remove(bat_priv->tt.global_hash, batadv_compare_tt,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200465 batadv_choose_tt, &tt_global->common);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200466 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200467}
468
Antonio Quartullic018ad32013-06-04 12:11:39 +0200469/**
470 * batadv_tt_local_add - add a new client to the local table or update an
471 * existing client
472 * @soft_iface: netdev struct of the mesh interface
473 * @addr: the mac address of the client to add
474 * @vid: VLAN identifier
475 * @ifindex: index of the interface where the client is connected to (useful to
476 * identify wireless clients)
Antonio Quartulli9464d072013-11-16 12:03:48 +0100477 * @mark: the value contained in the skb->mark field of the received packet (if
478 * any)
Marek Lindnera19d3d82013-05-27 15:33:25 +0800479 *
480 * Returns true if the client was successfully added, false otherwise.
Antonio Quartullic018ad32013-06-04 12:11:39 +0200481 */
Marek Lindnera19d3d82013-05-27 15:33:25 +0800482bool batadv_tt_local_add(struct net_device *soft_iface, const uint8_t *addr,
Antonio Quartulli9464d072013-11-16 12:03:48 +0100483 unsigned short vid, int ifindex, uint32_t mark)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000484{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200485 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann170173b2012-10-07 12:02:22 +0200486 struct batadv_tt_local_entry *tt_local;
487 struct batadv_tt_global_entry *tt_global;
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200488 struct net_device *in_dev = NULL;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200489 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200490 struct batadv_tt_orig_list_entry *orig_entry;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800491 int hash_added, table_size, packet_size_max;
492 bool ret = false, roamed_back = false;
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200493 uint8_t remote_flags;
Antonio Quartulli9464d072013-11-16 12:03:48 +0100494 uint32_t match_mark;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000495
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200496 if (ifindex != BATADV_NULL_IFINDEX)
497 in_dev = dev_get_by_index(&init_net, ifindex);
498
Antonio Quartullic018ad32013-06-04 12:11:39 +0200499 tt_local = batadv_tt_local_hash_find(bat_priv, addr, vid);
500 tt_global = batadv_tt_global_hash_find(bat_priv, addr, vid);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000501
Antonio Quartulli47c94652012-09-23 22:38:35 +0200502 if (tt_local) {
503 tt_local->last_seen = jiffies;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200504 if (tt_local->common.flags & BATADV_TT_CLIENT_PENDING) {
505 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200506 "Re-adding pending client %pM (vid: %d)\n",
507 addr, BATADV_PRINT_VID(vid));
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200508 /* whatever the reason why the PENDING flag was set,
509 * this is a client which was enqueued to be removed in
510 * this orig_interval. Since it popped up again, the
511 * flag can be reset like it was never enqueued
512 */
513 tt_local->common.flags &= ~BATADV_TT_CLIENT_PENDING;
514 goto add_event;
515 }
516
517 if (tt_local->common.flags & BATADV_TT_CLIENT_ROAM) {
518 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200519 "Roaming client %pM (vid: %d) came back to its original location\n",
520 addr, BATADV_PRINT_VID(vid));
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200521 /* the ROAM flag is set because this client roamed away
522 * and the node got a roaming_advertisement message. Now
523 * that the client popped up again at its original
524 * location such flag can be unset
525 */
526 tt_local->common.flags &= ~BATADV_TT_CLIENT_ROAM;
527 roamed_back = true;
528 }
529 goto check_roaming;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000530 }
531
Marek Lindnera19d3d82013-05-27 15:33:25 +0800532 /* Ignore the client if we cannot send it in a full table response. */
533 table_size = batadv_tt_local_table_transmit_size(bat_priv);
534 table_size += batadv_tt_len(1);
535 packet_size_max = atomic_read(&bat_priv->packet_size_max);
536 if (table_size > packet_size_max) {
537 net_ratelimited_function(batadv_info, soft_iface,
538 "Local translation table size (%i) exceeds maximum packet size (%i); Ignoring new local tt entry: %pM\n",
539 table_size, packet_size_max, addr);
540 goto out;
541 }
542
Antonio Quartulli47c94652012-09-23 22:38:35 +0200543 tt_local = kmalloc(sizeof(*tt_local), GFP_ATOMIC);
544 if (!tt_local)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200545 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200546
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200547 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200548 "Creating new local tt entry: %pM (vid: %d, ttvn: %d)\n",
549 addr, BATADV_PRINT_VID(vid),
Sven Eckelmann807736f2012-07-15 22:26:51 +0200550 (uint8_t)atomic_read(&bat_priv->tt.vn));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000551
Antonio Quartulli47c94652012-09-23 22:38:35 +0200552 memcpy(tt_local->common.addr, addr, ETH_ALEN);
Antonio Quartulli8425ec62012-11-19 09:01:44 +0100553 /* The local entry has to be marked as NEW to avoid to send it in
554 * a full table response going out before the next ttvn increment
555 * (consistency check)
556 */
557 tt_local->common.flags = BATADV_TT_CLIENT_NEW;
Antonio Quartullic018ad32013-06-04 12:11:39 +0200558 tt_local->common.vid = vid;
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200559 if (batadv_is_wifi_netdev(in_dev))
Antonio Quartulli47c94652012-09-23 22:38:35 +0200560 tt_local->common.flags |= BATADV_TT_CLIENT_WIFI;
561 atomic_set(&tt_local->common.refcount, 2);
562 tt_local->last_seen = jiffies;
563 tt_local->common.added_at = tt_local->last_seen;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000564
565 /* the batman interface mac address should never be purged */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200566 if (batadv_compare_eth(addr, soft_iface->dev_addr))
Antonio Quartulli47c94652012-09-23 22:38:35 +0200567 tt_local->common.flags |= BATADV_TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000568
Sven Eckelmann807736f2012-07-15 22:26:51 +0200569 hash_added = batadv_hash_add(bat_priv->tt.local_hash, batadv_compare_tt,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200570 batadv_choose_tt, &tt_local->common,
Antonio Quartulli47c94652012-09-23 22:38:35 +0200571 &tt_local->common.hash_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100572
573 if (unlikely(hash_added != 0)) {
574 /* remove the reference for the hash */
Antonio Quartulli47c94652012-09-23 22:38:35 +0200575 batadv_tt_local_entry_free_ref(tt_local);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100576 goto out;
577 }
578
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200579add_event:
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200580 batadv_tt_local_event(bat_priv, tt_local, BATADV_NO_FLAGS);
Antonio Quartulliff66c972011-06-30 01:14:00 +0200581
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200582check_roaming:
583 /* Check whether it is a roaming, but don't do anything if the roaming
584 * process has already been handled
585 */
586 if (tt_global && !(tt_global->common.flags & BATADV_TT_CLIENT_ROAM)) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200587 /* These node are probably going to update their tt table */
Antonio Quartulli47c94652012-09-23 22:38:35 +0200588 head = &tt_global->orig_list;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200589 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800590 hlist_for_each_entry_rcu(orig_entry, head, list) {
Antonio Quartulli47c94652012-09-23 22:38:35 +0200591 batadv_send_roam_adv(bat_priv, tt_global->common.addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200592 tt_global->common.vid,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200593 orig_entry->orig_node);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200594 }
595 rcu_read_unlock();
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200596 if (roamed_back) {
597 batadv_tt_global_free(bat_priv, tt_global,
598 "Roaming canceled");
599 tt_global = NULL;
600 } else {
601 /* The global entry has to be marked as ROAMING and
602 * has to be kept for consistency purpose
603 */
604 tt_global->common.flags |= BATADV_TT_CLIENT_ROAM;
605 tt_global->roam_at = jiffies;
606 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200607 }
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200608
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200609 /* store the current remote flags before altering them. This helps
610 * understanding is flags are changing or not
611 */
612 remote_flags = tt_local->common.flags & BATADV_TT_REMOTE_MASK;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800613
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200614 if (batadv_is_wifi_netdev(in_dev))
615 tt_local->common.flags |= BATADV_TT_CLIENT_WIFI;
616 else
617 tt_local->common.flags &= ~BATADV_TT_CLIENT_WIFI;
618
Antonio Quartulli9464d072013-11-16 12:03:48 +0100619 /* check the mark in the skb: if it's equal to the configured
620 * isolation_mark, it means the packet is coming from an isolated
621 * non-mesh client
622 */
623 match_mark = (mark & bat_priv->isolation_mark_mask);
624 if (bat_priv->isolation_mark_mask &&
625 match_mark == bat_priv->isolation_mark)
626 tt_local->common.flags |= BATADV_TT_CLIENT_ISOLA;
627 else
628 tt_local->common.flags &= ~BATADV_TT_CLIENT_ISOLA;
629
Antonio Quartulli3c4f7ab2013-10-13 02:50:19 +0200630 /* if any "dynamic" flag has been modified, resend an ADD event for this
631 * entry so that all the nodes can get the new flags
632 */
633 if (remote_flags ^ (tt_local->common.flags & BATADV_TT_REMOTE_MASK))
634 batadv_tt_local_event(bat_priv, tt_local, BATADV_NO_FLAGS);
635
636 ret = true;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200637out:
Antonio Quartulli0c69aec2013-10-13 02:50:18 +0200638 if (in_dev)
639 dev_put(in_dev);
Antonio Quartulli47c94652012-09-23 22:38:35 +0200640 if (tt_local)
641 batadv_tt_local_entry_free_ref(tt_local);
642 if (tt_global)
643 batadv_tt_global_entry_free_ref(tt_global);
Marek Lindnera19d3d82013-05-27 15:33:25 +0800644 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000645}
646
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800647/**
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200648 * batadv_tt_prepare_tvlv_global_data - prepare the TVLV TT header to send
649 * within a TT Response directed to another node
650 * @orig_node: originator for which the TT data has to be prepared
651 * @tt_data: uninitialised pointer to the address of the TVLV buffer
652 * @tt_change: uninitialised pointer to the address of the area where the TT
653 * changed can be stored
654 * @tt_len: pointer to the length to reserve to the tt_change. if -1 this
655 * function reserves the amount of space needed to send the entire global TT
656 * table. In case of success the value is updated with the real amount of
657 * reserved bytes
658
659 * Allocate the needed amount of memory for the entire TT TVLV and write its
660 * header made up by one tvlv_tt_data object and a series of tvlv_tt_vlan_data
661 * objects, one per active VLAN served by the originator node.
662 *
663 * Return the size of the allocated buffer or 0 in case of failure.
664 */
665static uint16_t
666batadv_tt_prepare_tvlv_global_data(struct batadv_orig_node *orig_node,
667 struct batadv_tvlv_tt_data **tt_data,
668 struct batadv_tvlv_tt_change **tt_change,
669 int32_t *tt_len)
670{
671 uint16_t num_vlan = 0, num_entries = 0, change_offset, tvlv_len;
672 struct batadv_tvlv_tt_vlan_data *tt_vlan;
673 struct batadv_orig_node_vlan *vlan;
674 uint8_t *tt_change_ptr;
675
676 rcu_read_lock();
677 list_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
678 num_vlan++;
679 num_entries += atomic_read(&vlan->tt.num_entries);
680 }
681
682 change_offset = sizeof(**tt_data);
683 change_offset += num_vlan * sizeof(*tt_vlan);
684
685 /* if tt_len is negative, allocate the space needed by the full table */
686 if (*tt_len < 0)
687 *tt_len = batadv_tt_len(num_entries);
688
689 tvlv_len = *tt_len;
690 tvlv_len += change_offset;
691
692 *tt_data = kmalloc(tvlv_len, GFP_ATOMIC);
693 if (!*tt_data) {
694 *tt_len = 0;
695 goto out;
696 }
697
698 (*tt_data)->flags = BATADV_NO_FLAGS;
699 (*tt_data)->ttvn = atomic_read(&orig_node->last_ttvn);
700 (*tt_data)->num_vlan = htons(num_vlan);
701
702 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(*tt_data + 1);
703 list_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
704 tt_vlan->vid = htons(vlan->vid);
705 tt_vlan->crc = htonl(vlan->tt.crc);
706
707 tt_vlan++;
708 }
709
710 tt_change_ptr = (uint8_t *)*tt_data + change_offset;
711 *tt_change = (struct batadv_tvlv_tt_change *)tt_change_ptr;
712
713out:
714 rcu_read_unlock();
715 return tvlv_len;
716}
717
718/**
719 * batadv_tt_prepare_tvlv_local_data - allocate and prepare the TT TVLV for this
720 * node
721 * @bat_priv: the bat priv with all the soft interface information
722 * @tt_data: uninitialised pointer to the address of the TVLV buffer
723 * @tt_change: uninitialised pointer to the address of the area where the TT
724 * changes can be stored
725 * @tt_len: pointer to the length to reserve to the tt_change. if -1 this
726 * function reserves the amount of space needed to send the entire local TT
727 * table. In case of success the value is updated with the real amount of
728 * reserved bytes
729 *
730 * Allocate the needed amount of memory for the entire TT TVLV and write its
731 * header made up by one tvlv_tt_data object and a series of tvlv_tt_vlan_data
732 * objects, one per active VLAN.
733 *
734 * Return the size of the allocated buffer or 0 in case of failure.
735 */
736static uint16_t
737batadv_tt_prepare_tvlv_local_data(struct batadv_priv *bat_priv,
738 struct batadv_tvlv_tt_data **tt_data,
739 struct batadv_tvlv_tt_change **tt_change,
740 int32_t *tt_len)
741{
742 struct batadv_tvlv_tt_vlan_data *tt_vlan;
743 struct batadv_softif_vlan *vlan;
744 uint16_t num_vlan = 0, num_entries = 0, tvlv_len;
745 uint8_t *tt_change_ptr;
746 int change_offset;
747
748 rcu_read_lock();
749 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
750 num_vlan++;
751 num_entries += atomic_read(&vlan->tt.num_entries);
752 }
753
754 change_offset = sizeof(**tt_data);
755 change_offset += num_vlan * sizeof(*tt_vlan);
756
757 /* if tt_len is negative, allocate the space needed by the full table */
758 if (*tt_len < 0)
759 *tt_len = batadv_tt_len(num_entries);
760
761 tvlv_len = *tt_len;
762 tvlv_len += change_offset;
763
764 *tt_data = kmalloc(tvlv_len, GFP_ATOMIC);
765 if (!*tt_data) {
766 tvlv_len = 0;
767 goto out;
768 }
769
770 (*tt_data)->flags = BATADV_NO_FLAGS;
771 (*tt_data)->ttvn = atomic_read(&bat_priv->tt.vn);
772 (*tt_data)->num_vlan = htons(num_vlan);
773
774 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(*tt_data + 1);
775 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
776 tt_vlan->vid = htons(vlan->vid);
777 tt_vlan->crc = htonl(vlan->tt.crc);
778
779 tt_vlan++;
780 }
781
782 tt_change_ptr = (uint8_t *)*tt_data + change_offset;
783 *tt_change = (struct batadv_tvlv_tt_change *)tt_change_ptr;
784
785out:
786 rcu_read_unlock();
787 return tvlv_len;
788}
789
790/**
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800791 * batadv_tt_tvlv_container_update - update the translation table tvlv container
792 * after local tt changes have been committed
793 * @bat_priv: the bat priv with all the soft interface information
794 */
795static void batadv_tt_tvlv_container_update(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000796{
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800797 struct batadv_tt_change_node *entry, *safe;
798 struct batadv_tvlv_tt_data *tt_data;
799 struct batadv_tvlv_tt_change *tt_change;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200800 int tt_diff_len, tt_change_len = 0;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800801 int tt_diff_entries_num = 0, tt_diff_entries_count = 0;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200802 uint16_t tvlv_len;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000803
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200804 tt_diff_entries_num = atomic_read(&bat_priv->tt.local_changes);
805 tt_diff_len = batadv_tt_len(tt_diff_entries_num);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800806
807 /* if we have too many changes for one packet don't send any
808 * and wait for the tt table request which will be fragmented
809 */
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800810 if (tt_diff_len > bat_priv->soft_iface->mtu)
811 tt_diff_len = 0;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800812
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200813 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv, &tt_data,
814 &tt_change, &tt_diff_len);
815 if (!tvlv_len)
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800816 return;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800817
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800818 tt_data->flags = BATADV_TT_OGM_DIFF;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800819
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800820 if (tt_diff_len == 0)
821 goto container_register;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800822
Sven Eckelmann807736f2012-07-15 22:26:51 +0200823 spin_lock_bh(&bat_priv->tt.changes_list_lock);
824 atomic_set(&bat_priv->tt.local_changes, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000825
Sven Eckelmann807736f2012-07-15 22:26:51 +0200826 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100827 list) {
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800828 if (tt_diff_entries_count < tt_diff_entries_num) {
829 memcpy(tt_change + tt_diff_entries_count,
830 &entry->change,
831 sizeof(struct batadv_tvlv_tt_change));
832 tt_diff_entries_count++;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000833 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200834 list_del(&entry->list);
835 kfree(entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000836 }
Sven Eckelmann807736f2012-07-15 22:26:51 +0200837 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000838
Antonio Quartullia73105b2011-04-27 14:27:44 +0200839 /* Keep the buffer for possible tt_request */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200840 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
841 kfree(bat_priv->tt.last_changeset);
842 bat_priv->tt.last_changeset_len = 0;
843 bat_priv->tt.last_changeset = NULL;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800844 tt_change_len = batadv_tt_len(tt_diff_entries_count);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800845 /* check whether this new OGM has no changes due to size problems */
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800846 if (tt_diff_entries_count > 0) {
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800847 /* if kmalloc() fails we will reply with the full table
Antonio Quartullia73105b2011-04-27 14:27:44 +0200848 * instead of providing the diff
849 */
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800850 bat_priv->tt.last_changeset = kzalloc(tt_diff_len, GFP_ATOMIC);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200851 if (bat_priv->tt.last_changeset) {
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800852 memcpy(bat_priv->tt.last_changeset,
853 tt_change, tt_change_len);
854 bat_priv->tt.last_changeset_len = tt_diff_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200855 }
856 }
Sven Eckelmann807736f2012-07-15 22:26:51 +0200857 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000858
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800859container_register:
860 batadv_tvlv_container_register(bat_priv, BATADV_TVLV_TT, 1, tt_data,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200861 tvlv_len);
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800862 kfree(tt_data);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000863}
864
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200865int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000866{
867 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200868 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200869 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200870 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100871 struct batadv_tt_local_entry *tt_local;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200872 struct batadv_hard_iface *primary_if;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200873 struct batadv_softif_vlan *vlan;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000874 struct hlist_head *head;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200875 unsigned short vid;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200876 uint32_t i;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100877 int last_seen_secs;
878 int last_seen_msecs;
879 unsigned long last_seen_jiffies;
880 bool no_purge;
881 uint16_t np_flag = BATADV_TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000882
Marek Lindner30da63a2012-08-03 17:15:46 +0200883 primary_if = batadv_seq_print_text_primary_if_get(seq);
884 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200885 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000886
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100887 seq_printf(seq,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200888 "Locally retrieved addresses (from %s) announced via TT (TTVN: %u):\n",
889 net_dev->name, (uint8_t)atomic_read(&bat_priv->tt.vn));
Antonio Quartullidd24ddb2013-11-16 12:03:49 +0100890 seq_printf(seq, " %-13s %s %-8s %-9s (%-10s)\n", "Client", "VID",
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200891 "Flags", "Last seen", "CRC");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000892
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000893 for (i = 0; i < hash->size; i++) {
894 head = &hash->table[i];
895
Marek Lindner7aadf882011-02-18 12:28:09 +0000896 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800897 hlist_for_each_entry_rcu(tt_common_entry,
Marek Lindner7aadf882011-02-18 12:28:09 +0000898 head, hash_entry) {
Antonio Quartulli85766a82012-11-08 22:16:16 +0100899 tt_local = container_of(tt_common_entry,
900 struct batadv_tt_local_entry,
901 common);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200902 vid = tt_common_entry->vid;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100903 last_seen_jiffies = jiffies - tt_local->last_seen;
904 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
905 last_seen_secs = last_seen_msecs / 1000;
906 last_seen_msecs = last_seen_msecs % 1000;
907
908 no_purge = tt_common_entry->flags & np_flag;
909
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200910 vlan = batadv_softif_vlan_get(bat_priv, vid);
911 if (!vlan) {
912 seq_printf(seq, "Cannot retrieve VLAN %d\n",
913 BATADV_PRINT_VID(vid));
914 continue;
915 }
916
917 seq_printf(seq,
Antonio Quartullidd24ddb2013-11-16 12:03:49 +0100918 " * %pM %4i [%c%c%c%c%c%c] %3u.%03u (%#.8x)\n",
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100919 tt_common_entry->addr,
Antonio Quartulli16052782013-06-04 12:11:41 +0200920 BATADV_PRINT_VID(tt_common_entry->vid),
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100921 (tt_common_entry->flags &
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200922 BATADV_TT_CLIENT_ROAM ? 'R' : '.'),
Antonio Quartulli85766a82012-11-08 22:16:16 +0100923 no_purge ? 'P' : '.',
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100924 (tt_common_entry->flags &
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200925 BATADV_TT_CLIENT_NEW ? 'N' : '.'),
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100926 (tt_common_entry->flags &
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200927 BATADV_TT_CLIENT_PENDING ? 'X' : '.'),
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100928 (tt_common_entry->flags &
Antonio Quartulli85766a82012-11-08 22:16:16 +0100929 BATADV_TT_CLIENT_WIFI ? 'W' : '.'),
Antonio Quartullidd24ddb2013-11-16 12:03:49 +0100930 (tt_common_entry->flags &
931 BATADV_TT_CLIENT_ISOLA ? 'I' : '.'),
Antonio Quartullia7966d92013-01-24 11:41:39 +0100932 no_purge ? 0 : last_seen_secs,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200933 no_purge ? 0 : last_seen_msecs,
934 vlan->tt.crc);
935
936 batadv_softif_vlan_free_ref(vlan);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000937 }
Marek Lindner7aadf882011-02-18 12:28:09 +0000938 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000939 }
Marek Lindner32ae9b22011-04-20 15:40:58 +0200940out:
941 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200942 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +0200943 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000944}
945
Sven Eckelmann56303d32012-06-05 22:31:31 +0200946static void
947batadv_tt_local_set_pending(struct batadv_priv *bat_priv,
948 struct batadv_tt_local_entry *tt_local_entry,
949 uint16_t flags, const char *message)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000950{
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +0200951 batadv_tt_local_event(bat_priv, tt_local_entry, flags);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000952
Antonio Quartulli015758d2011-07-09 17:52:13 +0200953 /* The local client has to be marked as "pending to be removed" but has
954 * to be kept in the table in order to send it in a full table
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200955 * response issued before the net ttvn increment (consistency check)
956 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200957 tt_local_entry->common.flags |= BATADV_TT_CLIENT_PENDING;
Antonio Quartullic566dbb2012-01-06 21:31:34 +0100958
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200959 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +0200960 "Local tt entry (%pM, vid: %d) pending to be removed: %s\n",
961 tt_local_entry->common.addr,
962 BATADV_PRINT_VID(tt_local_entry->common.vid), message);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000963}
964
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200965/**
966 * batadv_tt_local_remove - logically remove an entry from the local table
967 * @bat_priv: the bat priv with all the soft interface information
968 * @addr: the MAC address of the client to remove
Antonio Quartullic018ad32013-06-04 12:11:39 +0200969 * @vid: VLAN identifier
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200970 * @message: message to append to the log on deletion
971 * @roaming: true if the deletion is due to a roaming event
972 *
973 * Returns the flags assigned to the local entry before being deleted
974 */
975uint16_t batadv_tt_local_remove(struct batadv_priv *bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200976 const uint8_t *addr, unsigned short vid,
977 const char *message, bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000978{
Sven Eckelmann170173b2012-10-07 12:02:22 +0200979 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200980 uint16_t flags, curr_flags = BATADV_NO_FLAGS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000981
Antonio Quartullic018ad32013-06-04 12:11:39 +0200982 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200983 if (!tt_local_entry)
984 goto out;
985
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200986 curr_flags = tt_local_entry->common.flags;
987
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200988 flags = BATADV_TT_CLIENT_DEL;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200989 /* if this global entry addition is due to a roaming, the node has to
990 * mark the local entry as "roamed" in order to correctly reroute
991 * packets later
992 */
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200993 if (roaming) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200994 flags |= BATADV_TT_CLIENT_ROAM;
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200995 /* mark the local client as ROAMed */
996 tt_local_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
997 }
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200998
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200999 if (!(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW)) {
1000 batadv_tt_local_set_pending(bat_priv, tt_local_entry, flags,
1001 message);
1002 goto out;
1003 }
1004 /* if this client has been added right now, it is possible to
1005 * immediately purge it
1006 */
Antonio Quartulli3abe4ad2013-04-03 11:15:33 +02001007 batadv_tt_local_event(bat_priv, tt_local_entry, BATADV_TT_CLIENT_DEL);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001008 hlist_del_rcu(&tt_local_entry->common.hash_entry);
1009 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001010
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001011out:
1012 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001013 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001014
1015 return curr_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001016}
1017
Marek Lindnera19d3d82013-05-27 15:33:25 +08001018/**
1019 * batadv_tt_local_purge_list - purge inactive tt local entries
1020 * @bat_priv: the bat priv with all the soft interface information
1021 * @head: pointer to the list containing the local tt entries
1022 * @timeout: parameter deciding whether a given tt local entry is considered
1023 * inactive or not
1024 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001025static void batadv_tt_local_purge_list(struct batadv_priv *bat_priv,
Marek Lindnera19d3d82013-05-27 15:33:25 +08001026 struct hlist_head *head,
1027 int timeout)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001028{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001029 struct batadv_tt_local_entry *tt_local_entry;
1030 struct batadv_tt_common_entry *tt_common_entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001031 struct hlist_node *node_tmp;
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001032
Sasha Levinb67bfe02013-02-27 17:06:00 -08001033 hlist_for_each_entry_safe(tt_common_entry, node_tmp, head,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001034 hash_entry) {
1035 tt_local_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001036 struct batadv_tt_local_entry,
1037 common);
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001038 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_NOPURGE)
1039 continue;
1040
1041 /* entry already marked for deletion */
1042 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING)
1043 continue;
1044
Marek Lindnera19d3d82013-05-27 15:33:25 +08001045 if (!batadv_has_timed_out(tt_local_entry->last_seen, timeout))
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001046 continue;
1047
1048 batadv_tt_local_set_pending(bat_priv, tt_local_entry,
1049 BATADV_TT_CLIENT_DEL, "timed out");
1050 }
1051}
1052
Marek Lindnera19d3d82013-05-27 15:33:25 +08001053/**
1054 * batadv_tt_local_purge - purge inactive tt local entries
1055 * @bat_priv: the bat priv with all the soft interface information
1056 * @timeout: parameter deciding whether a given tt local entry is considered
1057 * inactive or not
1058 */
1059static void batadv_tt_local_purge(struct batadv_priv *bat_priv,
1060 int timeout)
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001061{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001062 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001063 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001064 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02001065 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001066
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001067 for (i = 0; i < hash->size; i++) {
1068 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001069 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001070
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001071 spin_lock_bh(list_lock);
Marek Lindnera19d3d82013-05-27 15:33:25 +08001072 batadv_tt_local_purge_list(bat_priv, head, timeout);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001073 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001074 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001075}
1076
Sven Eckelmann56303d32012-06-05 22:31:31 +02001077static void batadv_tt_local_table_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001078{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001079 struct batadv_hashtable *hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001080 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001081 struct batadv_tt_common_entry *tt_common_entry;
1082 struct batadv_tt_local_entry *tt_local;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001083 struct hlist_node *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001084 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001085 uint32_t i;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001086
Sven Eckelmann807736f2012-07-15 22:26:51 +02001087 if (!bat_priv->tt.local_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001088 return;
1089
Sven Eckelmann807736f2012-07-15 22:26:51 +02001090 hash = bat_priv->tt.local_hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001091
1092 for (i = 0; i < hash->size; i++) {
1093 head = &hash->table[i];
1094 list_lock = &hash->list_locks[i];
1095
1096 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001097 hlist_for_each_entry_safe(tt_common_entry, node_tmp,
Antonio Quartullia73105b2011-04-27 14:27:44 +02001098 head, hash_entry) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001099 hlist_del_rcu(&tt_common_entry->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001100 tt_local = container_of(tt_common_entry,
1101 struct batadv_tt_local_entry,
1102 common);
1103 batadv_tt_local_entry_free_ref(tt_local);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001104 }
1105 spin_unlock_bh(list_lock);
1106 }
1107
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +02001108 batadv_hash_destroy(hash);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001109
Sven Eckelmann807736f2012-07-15 22:26:51 +02001110 bat_priv->tt.local_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001111}
1112
Sven Eckelmann56303d32012-06-05 22:31:31 +02001113static int batadv_tt_global_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001114{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001115 if (bat_priv->tt.global_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +02001116 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001117
Sven Eckelmann807736f2012-07-15 22:26:51 +02001118 bat_priv->tt.global_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001119
Sven Eckelmann807736f2012-07-15 22:26:51 +02001120 if (!bat_priv->tt.global_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +02001121 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001122
Antonio Quartullidec05072012-11-10 11:00:32 +01001123 batadv_hash_set_lock_class(bat_priv->tt.global_hash,
1124 &batadv_tt_global_hash_lock_class_key);
1125
Sven Eckelmann5346c352012-05-05 13:27:28 +02001126 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001127}
1128
Sven Eckelmann56303d32012-06-05 22:31:31 +02001129static void batadv_tt_changes_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001130{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001131 struct batadv_tt_change_node *entry, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001132
Sven Eckelmann807736f2012-07-15 22:26:51 +02001133 spin_lock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001134
Sven Eckelmann807736f2012-07-15 22:26:51 +02001135 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Antonio Quartullia73105b2011-04-27 14:27:44 +02001136 list) {
1137 list_del(&entry->list);
1138 kfree(entry);
1139 }
1140
Sven Eckelmann807736f2012-07-15 22:26:51 +02001141 atomic_set(&bat_priv->tt.local_changes, 0);
1142 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001143}
1144
Antonio Quartullid657e622012-07-01 14:09:12 +02001145/* retrieves the orig_tt_list_entry belonging to orig_node from the
1146 * batadv_tt_global_entry list
1147 *
1148 * returns it with an increased refcounter, NULL if not found
1149 */
1150static struct batadv_tt_orig_list_entry *
1151batadv_tt_global_orig_entry_find(const struct batadv_tt_global_entry *entry,
1152 const struct batadv_orig_node *orig_node)
1153{
1154 struct batadv_tt_orig_list_entry *tmp_orig_entry, *orig_entry = NULL;
1155 const struct hlist_head *head;
Antonio Quartullid657e622012-07-01 14:09:12 +02001156
1157 rcu_read_lock();
1158 head = &entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001159 hlist_for_each_entry_rcu(tmp_orig_entry, head, list) {
Antonio Quartullid657e622012-07-01 14:09:12 +02001160 if (tmp_orig_entry->orig_node != orig_node)
1161 continue;
1162 if (!atomic_inc_not_zero(&tmp_orig_entry->refcount))
1163 continue;
1164
1165 orig_entry = tmp_orig_entry;
1166 break;
1167 }
1168 rcu_read_unlock();
1169
1170 return orig_entry;
1171}
1172
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001173/* find out if an orig_node is already in the list of a tt_global_entry.
Antonio Quartullid657e622012-07-01 14:09:12 +02001174 * returns true if found, false otherwise
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001175 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001176static bool
1177batadv_tt_global_entry_has_orig(const struct batadv_tt_global_entry *entry,
1178 const struct batadv_orig_node *orig_node)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001179{
Antonio Quartullid657e622012-07-01 14:09:12 +02001180 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001181 bool found = false;
1182
Antonio Quartullid657e622012-07-01 14:09:12 +02001183 orig_entry = batadv_tt_global_orig_entry_find(entry, orig_node);
1184 if (orig_entry) {
1185 found = true;
1186 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001187 }
Antonio Quartullid657e622012-07-01 14:09:12 +02001188
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001189 return found;
1190}
1191
Sven Eckelmanna5130882012-05-16 20:23:16 +02001192static void
Antonio Quartullid657e622012-07-01 14:09:12 +02001193batadv_tt_global_orig_entry_add(struct batadv_tt_global_entry *tt_global,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001194 struct batadv_orig_node *orig_node, int ttvn)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001195{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001196 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001197
Antonio Quartullid657e622012-07-01 14:09:12 +02001198 orig_entry = batadv_tt_global_orig_entry_find(tt_global, orig_node);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001199 if (orig_entry) {
1200 /* refresh the ttvn: the current value could be a bogus one that
1201 * was added during a "temporary client detection"
1202 */
1203 orig_entry->ttvn = ttvn;
Antonio Quartullid657e622012-07-01 14:09:12 +02001204 goto out;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001205 }
Antonio Quartullid657e622012-07-01 14:09:12 +02001206
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001207 orig_entry = kzalloc(sizeof(*orig_entry), GFP_ATOMIC);
1208 if (!orig_entry)
Antonio Quartullid657e622012-07-01 14:09:12 +02001209 goto out;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001210
1211 INIT_HLIST_NODE(&orig_entry->list);
1212 atomic_inc(&orig_node->refcount);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001213 batadv_tt_global_size_inc(orig_node, tt_global->common.vid);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001214 orig_entry->orig_node = orig_node;
1215 orig_entry->ttvn = ttvn;
Antonio Quartullid657e622012-07-01 14:09:12 +02001216 atomic_set(&orig_entry->refcount, 2);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001217
Antonio Quartullid657e622012-07-01 14:09:12 +02001218 spin_lock_bh(&tt_global->list_lock);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001219 hlist_add_head_rcu(&orig_entry->list,
Antonio Quartullid657e622012-07-01 14:09:12 +02001220 &tt_global->orig_list);
1221 spin_unlock_bh(&tt_global->list_lock);
1222out:
1223 if (orig_entry)
1224 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001225}
1226
Antonio Quartullid4ff40f2013-04-18 15:13:01 +02001227/**
1228 * batadv_tt_global_add - add a new TT global entry or update an existing one
1229 * @bat_priv: the bat priv with all the soft interface information
1230 * @orig_node: the originator announcing the client
1231 * @tt_addr: the mac address of the non-mesh client
Antonio Quartullic018ad32013-06-04 12:11:39 +02001232 * @vid: VLAN identifier
Antonio Quartullid4ff40f2013-04-18 15:13:01 +02001233 * @flags: TT flags that have to be set for this non-mesh client
1234 * @ttvn: the tt version number ever announcing this non-mesh client
1235 *
1236 * Add a new TT global entry for the given originator. If the entry already
1237 * exists add a new reference to the given originator (a global entry can have
1238 * references to multiple originators) and adjust the flags attribute to reflect
1239 * the function argument.
1240 * If a TT local entry exists for this non-mesh client remove it.
1241 *
1242 * The caller must hold orig_node refcount.
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001243 *
1244 * Return true if the new entry has been added, false otherwise
Antonio Quartullid4ff40f2013-04-18 15:13:01 +02001245 */
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001246static bool batadv_tt_global_add(struct batadv_priv *bat_priv,
1247 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001248 const unsigned char *tt_addr,
1249 unsigned short vid, uint16_t flags,
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001250 uint8_t ttvn)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001251{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001252 struct batadv_tt_global_entry *tt_global_entry;
1253 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001254 bool ret = false;
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001255 int hash_added;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001256 struct batadv_tt_common_entry *common;
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001257 uint16_t local_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001258
Antonio Quartullicfd4f752013-08-07 18:28:56 +02001259 /* ignore global entries from backbone nodes */
1260 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig, vid))
1261 return true;
1262
Antonio Quartullic018ad32013-06-04 12:11:39 +02001263 tt_global_entry = batadv_tt_global_hash_find(bat_priv, tt_addr, vid);
1264 tt_local_entry = batadv_tt_local_hash_find(bat_priv, tt_addr, vid);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001265
1266 /* if the node already has a local client for this entry, it has to wait
1267 * for a roaming advertisement instead of manually messing up the global
1268 * table
1269 */
1270 if ((flags & BATADV_TT_CLIENT_TEMP) && tt_local_entry &&
1271 !(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW))
1272 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001273
Antonio Quartullia73105b2011-04-27 14:27:44 +02001274 if (!tt_global_entry) {
Antonio Quartullid4f44692012-05-25 00:00:54 +02001275 tt_global_entry = kzalloc(sizeof(*tt_global_entry), GFP_ATOMIC);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001276 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001277 goto out;
1278
Sven Eckelmannc0a55922012-05-12 13:48:55 +02001279 common = &tt_global_entry->common;
1280 memcpy(common->addr, tt_addr, ETH_ALEN);
Antonio Quartullic018ad32013-06-04 12:11:39 +02001281 common->vid = vid;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001282
Antonio Quartullid4f44692012-05-25 00:00:54 +02001283 common->flags = flags;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001284 tt_global_entry->roam_at = 0;
Antonio Quartullifdf79322012-08-24 17:54:07 +02001285 /* node must store current time in case of roaming. This is
1286 * needed to purge this entry out on timeout (if nobody claims
1287 * it)
1288 */
1289 if (flags & BATADV_TT_CLIENT_ROAM)
1290 tt_global_entry->roam_at = jiffies;
Sven Eckelmannc0a55922012-05-12 13:48:55 +02001291 atomic_set(&common->refcount, 2);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001292 common->added_at = jiffies;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001293
1294 INIT_HLIST_HEAD(&tt_global_entry->orig_list);
1295 spin_lock_init(&tt_global_entry->list_lock);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001296
Sven Eckelmann807736f2012-07-15 22:26:51 +02001297 hash_added = batadv_hash_add(bat_priv->tt.global_hash,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001298 batadv_compare_tt,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001299 batadv_choose_tt, common,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001300 &common->hash_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001301
1302 if (unlikely(hash_added != 0)) {
1303 /* remove the reference for the hash */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001304 batadv_tt_global_entry_free_ref(tt_global_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001305 goto out_remove;
1306 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001307 } else {
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001308 common = &tt_global_entry->common;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001309 /* If there is already a global entry, we can use this one for
1310 * our processing.
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001311 * But if we are trying to add a temporary client then here are
1312 * two options at this point:
1313 * 1) the global client is not a temporary client: the global
1314 * client has to be left as it is, temporary information
1315 * should never override any already known client state
1316 * 2) the global client is a temporary client: purge the
1317 * originator list and add the new one orig_entry
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001318 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001319 if (flags & BATADV_TT_CLIENT_TEMP) {
1320 if (!(common->flags & BATADV_TT_CLIENT_TEMP))
1321 goto out;
1322 if (batadv_tt_global_entry_has_orig(tt_global_entry,
1323 orig_node))
1324 goto out_remove;
1325 batadv_tt_global_del_orig_list(tt_global_entry);
1326 goto add_orig_entry;
1327 }
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001328
1329 /* if the client was temporary added before receiving the first
1330 * OGM announcing it, we have to clear the TEMP flag
1331 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001332 common->flags &= ~BATADV_TT_CLIENT_TEMP;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001333
Antonio Quartullie9c001362012-11-07 15:05:33 +01001334 /* the change can carry possible "attribute" flags like the
1335 * TT_CLIENT_WIFI, therefore they have to be copied in the
1336 * client entry
1337 */
1338 tt_global_entry->common.flags |= flags;
1339
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001340 /* If there is the BATADV_TT_CLIENT_ROAM flag set, there is only
1341 * one originator left in the list and we previously received a
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001342 * delete + roaming change for this originator.
1343 *
1344 * We should first delete the old originator before adding the
1345 * new one.
1346 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001347 if (common->flags & BATADV_TT_CLIENT_ROAM) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02001348 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001349 common->flags &= ~BATADV_TT_CLIENT_ROAM;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001350 tt_global_entry->roam_at = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001351 }
1352 }
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001353add_orig_entry:
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001354 /* add the new orig_entry (if needed) or update it */
Antonio Quartullid657e622012-07-01 14:09:12 +02001355 batadv_tt_global_orig_entry_add(tt_global_entry, orig_node, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001356
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001357 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001358 "Creating new global tt entry: %pM (vid: %d, via %pM)\n",
1359 common->addr, BATADV_PRINT_VID(common->vid),
1360 orig_node->orig);
Antonio Quartulli1e5d49f2013-05-05 19:32:38 +02001361 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001362
Simon Wunderlich80b3f582011-11-02 20:26:45 +01001363out_remove:
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001364
Antonio Quartullia73105b2011-04-27 14:27:44 +02001365 /* remove address from local hash if present */
Antonio Quartullic018ad32013-06-04 12:11:39 +02001366 local_flags = batadv_tt_local_remove(bat_priv, tt_addr, vid,
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001367 "global tt received",
Antonio Quartullic1d07432013-01-15 22:17:19 +10001368 flags & BATADV_TT_CLIENT_ROAM);
Antonio Quartulli7f91d062012-08-27 11:44:43 +02001369 tt_global_entry->common.flags |= local_flags & BATADV_TT_CLIENT_WIFI;
1370
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001371 if (!(flags & BATADV_TT_CLIENT_ROAM))
1372 /* this is a normal global add. Therefore the client is not in a
1373 * roaming state anymore.
1374 */
1375 tt_global_entry->common.flags &= ~BATADV_TT_CLIENT_ROAM;
1376
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001377out:
1378 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001379 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001380 if (tt_local_entry)
1381 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001382 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001383}
1384
Sven Eckelmann981d8902012-10-07 13:34:15 +02001385/* batadv_transtable_best_orig - Get best originator list entry from tt entry
Antonio Quartulli46274562013-09-03 11:10:24 +02001386 * @bat_priv: the bat priv with all the soft interface information
Sven Eckelmann981d8902012-10-07 13:34:15 +02001387 * @tt_global_entry: global translation table entry to be analyzed
1388 *
1389 * This functon assumes the caller holds rcu_read_lock().
1390 * Returns best originator list entry or NULL on errors.
1391 */
1392static struct batadv_tt_orig_list_entry *
Antonio Quartulli46274562013-09-03 11:10:24 +02001393batadv_transtable_best_orig(struct batadv_priv *bat_priv,
1394 struct batadv_tt_global_entry *tt_global_entry)
Sven Eckelmann981d8902012-10-07 13:34:15 +02001395{
Antonio Quartulli46274562013-09-03 11:10:24 +02001396 struct batadv_neigh_node *router, *best_router = NULL;
1397 struct batadv_algo_ops *bao = bat_priv->bat_algo_ops;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001398 struct hlist_head *head;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001399 struct batadv_tt_orig_list_entry *orig_entry, *best_entry = NULL;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001400
1401 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001402 hlist_for_each_entry_rcu(orig_entry, head, list) {
Sven Eckelmann981d8902012-10-07 13:34:15 +02001403 router = batadv_orig_node_get_router(orig_entry->orig_node);
1404 if (!router)
1405 continue;
1406
Antonio Quartulli46274562013-09-03 11:10:24 +02001407 if (best_router &&
1408 bao->bat_neigh_cmp(router, best_router) <= 0) {
1409 batadv_neigh_node_free_ref(router);
1410 continue;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001411 }
1412
Antonio Quartulli46274562013-09-03 11:10:24 +02001413 /* release the refcount for the "old" best */
1414 if (best_router)
1415 batadv_neigh_node_free_ref(best_router);
1416
1417 best_entry = orig_entry;
1418 best_router = router;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001419 }
1420
Antonio Quartulli46274562013-09-03 11:10:24 +02001421 if (best_router)
1422 batadv_neigh_node_free_ref(best_router);
1423
Sven Eckelmann981d8902012-10-07 13:34:15 +02001424 return best_entry;
1425}
1426
1427/* batadv_tt_global_print_entry - print all orig nodes who announce the address
1428 * for this global entry
Antonio Quartulli46274562013-09-03 11:10:24 +02001429 * @bat_priv: the bat priv with all the soft interface information
Sven Eckelmann981d8902012-10-07 13:34:15 +02001430 * @tt_global_entry: global translation table entry to be printed
1431 * @seq: debugfs table seq_file struct
1432 *
1433 * This functon assumes the caller holds rcu_read_lock().
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001434 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001435static void
Antonio Quartulli46274562013-09-03 11:10:24 +02001436batadv_tt_global_print_entry(struct batadv_priv *bat_priv,
1437 struct batadv_tt_global_entry *tt_global_entry,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001438 struct seq_file *seq)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001439{
Sven Eckelmann981d8902012-10-07 13:34:15 +02001440 struct batadv_tt_orig_list_entry *orig_entry, *best_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001441 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001442 struct batadv_orig_node_vlan *vlan;
1443 struct hlist_head *head;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001444 uint8_t last_ttvn;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001445 uint16_t flags;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001446
1447 tt_common_entry = &tt_global_entry->common;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001448 flags = tt_common_entry->flags;
1449
Antonio Quartulli46274562013-09-03 11:10:24 +02001450 best_entry = batadv_transtable_best_orig(bat_priv, tt_global_entry);
Sven Eckelmann981d8902012-10-07 13:34:15 +02001451 if (best_entry) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001452 vlan = batadv_orig_node_vlan_get(best_entry->orig_node,
1453 tt_common_entry->vid);
1454 if (!vlan) {
1455 seq_printf(seq,
1456 " * Cannot retrieve VLAN %d for originator %pM\n",
1457 BATADV_PRINT_VID(tt_common_entry->vid),
1458 best_entry->orig_node->orig);
1459 goto print_list;
1460 }
1461
Sven Eckelmann981d8902012-10-07 13:34:15 +02001462 last_ttvn = atomic_read(&best_entry->orig_node->last_ttvn);
Antonio Quartullif9d8a532012-11-19 09:01:42 +01001463 seq_printf(seq,
Antonio Quartullidd24ddb2013-11-16 12:03:49 +01001464 " %c %pM %4i (%3u) via %pM (%3u) (%#.8x) [%c%c%c%c]\n",
Sven Eckelmann981d8902012-10-07 13:34:15 +02001465 '*', tt_global_entry->common.addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02001466 BATADV_PRINT_VID(tt_global_entry->common.vid),
Sven Eckelmann981d8902012-10-07 13:34:15 +02001467 best_entry->ttvn, best_entry->orig_node->orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001468 last_ttvn, vlan->tt.crc,
Sven Eckelmann981d8902012-10-07 13:34:15 +02001469 (flags & BATADV_TT_CLIENT_ROAM ? 'R' : '.'),
1470 (flags & BATADV_TT_CLIENT_WIFI ? 'W' : '.'),
Antonio Quartullidd24ddb2013-11-16 12:03:49 +01001471 (flags & BATADV_TT_CLIENT_ISOLA ? 'I' : '.'),
Sven Eckelmann981d8902012-10-07 13:34:15 +02001472 (flags & BATADV_TT_CLIENT_TEMP ? 'T' : '.'));
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001473
1474 batadv_orig_node_vlan_free_ref(vlan);
Sven Eckelmann981d8902012-10-07 13:34:15 +02001475 }
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001476
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001477print_list:
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001478 head = &tt_global_entry->orig_list;
1479
Sasha Levinb67bfe02013-02-27 17:06:00 -08001480 hlist_for_each_entry_rcu(orig_entry, head, list) {
Sven Eckelmann981d8902012-10-07 13:34:15 +02001481 if (best_entry == orig_entry)
1482 continue;
1483
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001484 vlan = batadv_orig_node_vlan_get(orig_entry->orig_node,
1485 tt_common_entry->vid);
1486 if (!vlan) {
1487 seq_printf(seq,
1488 " + Cannot retrieve VLAN %d for originator %pM\n",
1489 BATADV_PRINT_VID(tt_common_entry->vid),
1490 orig_entry->orig_node->orig);
1491 continue;
1492 }
1493
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001494 last_ttvn = atomic_read(&orig_entry->orig_node->last_ttvn);
Antonio Quartulli16052782013-06-04 12:11:41 +02001495 seq_printf(seq,
Antonio Quartullidd24ddb2013-11-16 12:03:49 +01001496 " %c %pM %4d (%3u) via %pM (%3u) (%#.8x) [%c%c%c%c]\n",
Sven Eckelmann981d8902012-10-07 13:34:15 +02001497 '+', tt_global_entry->common.addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02001498 BATADV_PRINT_VID(tt_global_entry->common.vid),
Sven Eckelmann981d8902012-10-07 13:34:15 +02001499 orig_entry->ttvn, orig_entry->orig_node->orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001500 last_ttvn, vlan->tt.crc,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001501 (flags & BATADV_TT_CLIENT_ROAM ? 'R' : '.'),
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001502 (flags & BATADV_TT_CLIENT_WIFI ? 'W' : '.'),
Antonio Quartullidd24ddb2013-11-16 12:03:49 +01001503 (flags & BATADV_TT_CLIENT_ISOLA ? 'I' : '.'),
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001504 (flags & BATADV_TT_CLIENT_TEMP ? 'T' : '.'));
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001505
1506 batadv_orig_node_vlan_free_ref(vlan);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001507 }
1508}
1509
Sven Eckelmann08c36d32012-05-12 02:09:39 +02001510int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001511{
1512 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001513 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001514 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001515 struct batadv_tt_common_entry *tt_common_entry;
1516 struct batadv_tt_global_entry *tt_global;
1517 struct batadv_hard_iface *primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001518 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001519 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001520
Marek Lindner30da63a2012-08-03 17:15:46 +02001521 primary_if = batadv_seq_print_text_primary_if_get(seq);
1522 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +02001523 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001524
Antonio Quartulli2dafb492011-05-05 08:42:45 +02001525 seq_printf(seq,
1526 "Globally announced TT entries received via the mesh %s\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001527 net_dev->name);
Antonio Quartulli16052782013-06-04 12:11:41 +02001528 seq_printf(seq, " %-13s %s %s %-15s %s (%-10s) %s\n",
1529 "Client", "VID", "(TTVN)", "Originator", "(Curr TTVN)",
1530 "CRC", "Flags");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001531
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001532 for (i = 0; i < hash->size; i++) {
1533 head = &hash->table[i];
1534
Marek Lindner7aadf882011-02-18 12:28:09 +00001535 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001536 hlist_for_each_entry_rcu(tt_common_entry,
Marek Lindner7aadf882011-02-18 12:28:09 +00001537 head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001538 tt_global = container_of(tt_common_entry,
1539 struct batadv_tt_global_entry,
1540 common);
Antonio Quartulli46274562013-09-03 11:10:24 +02001541 batadv_tt_global_print_entry(bat_priv, tt_global, seq);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001542 }
Marek Lindner7aadf882011-02-18 12:28:09 +00001543 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001544 }
Marek Lindner32ae9b22011-04-20 15:40:58 +02001545out:
1546 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001547 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +02001548 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001549}
1550
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001551/* deletes the orig list of a tt_global_entry */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001552static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001553batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001554{
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001555 struct hlist_head *head;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001556 struct hlist_node *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001557 struct batadv_tt_orig_list_entry *orig_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001558
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001559 spin_lock_bh(&tt_global_entry->list_lock);
1560 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001561 hlist_for_each_entry_safe(orig_entry, safe, head, list) {
1562 hlist_del_rcu(&orig_entry->list);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001563 batadv_tt_global_size_dec(orig_entry->orig_node,
1564 tt_global_entry->common.vid);
Sven Eckelmanna5130882012-05-16 20:23:16 +02001565 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001566 }
1567 spin_unlock_bh(&tt_global_entry->list_lock);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001568}
1569
Sven Eckelmanna5130882012-05-16 20:23:16 +02001570static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001571batadv_tt_global_del_orig_entry(struct batadv_priv *bat_priv,
1572 struct batadv_tt_global_entry *tt_global_entry,
1573 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001574 const char *message)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001575{
1576 struct hlist_head *head;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001577 struct hlist_node *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001578 struct batadv_tt_orig_list_entry *orig_entry;
Antonio Quartulli16052782013-06-04 12:11:41 +02001579 unsigned short vid;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001580
1581 spin_lock_bh(&tt_global_entry->list_lock);
1582 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001583 hlist_for_each_entry_safe(orig_entry, safe, head, list) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001584 if (orig_entry->orig_node == orig_node) {
Antonio Quartulli16052782013-06-04 12:11:41 +02001585 vid = tt_global_entry->common.vid;
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001586 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001587 "Deleting %pM from global tt entry %pM (vid: %d): %s\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001588 orig_node->orig,
Antonio Quartulli16052782013-06-04 12:11:41 +02001589 tt_global_entry->common.addr,
1590 BATADV_PRINT_VID(vid), message);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001591 hlist_del_rcu(&orig_entry->list);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001592 batadv_tt_global_size_dec(orig_node,
1593 tt_global_entry->common.vid);
Sven Eckelmanna5130882012-05-16 20:23:16 +02001594 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001595 }
1596 }
1597 spin_unlock_bh(&tt_global_entry->list_lock);
1598}
1599
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001600/* If the client is to be deleted, we check if it is the last origantor entry
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001601 * within tt_global entry. If yes, we set the BATADV_TT_CLIENT_ROAM flag and the
1602 * timer, otherwise we simply remove the originator scheduled for deletion.
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001603 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001604static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001605batadv_tt_global_del_roaming(struct batadv_priv *bat_priv,
1606 struct batadv_tt_global_entry *tt_global_entry,
1607 struct batadv_orig_node *orig_node,
1608 const char *message)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001609{
1610 bool last_entry = true;
1611 struct hlist_head *head;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001612 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001613
1614 /* no local entry exists, case 1:
1615 * Check if this is the last one or if other entries exist.
1616 */
1617
1618 rcu_read_lock();
1619 head = &tt_global_entry->orig_list;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001620 hlist_for_each_entry_rcu(orig_entry, head, list) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001621 if (orig_entry->orig_node != orig_node) {
1622 last_entry = false;
1623 break;
1624 }
1625 }
1626 rcu_read_unlock();
1627
1628 if (last_entry) {
1629 /* its the last one, mark for roaming. */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001630 tt_global_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001631 tt_global_entry->roam_at = jiffies;
1632 } else
1633 /* there is another entry, we can simply delete this
1634 * one and can still use the other one.
1635 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001636 batadv_tt_global_del_orig_entry(bat_priv, tt_global_entry,
1637 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001638}
1639
Antonio Quartullic018ad32013-06-04 12:11:39 +02001640/**
1641 * batadv_tt_global_del - remove a client from the global table
1642 * @bat_priv: the bat priv with all the soft interface information
1643 * @orig_node: an originator serving this client
1644 * @addr: the mac address of the client
1645 * @vid: VLAN identifier
1646 * @message: a message explaining the reason for deleting the client to print
1647 * for debugging purpose
1648 * @roaming: true if the deletion has been triggered by a roaming event
1649 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001650static void batadv_tt_global_del(struct batadv_priv *bat_priv,
1651 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001652 const unsigned char *addr, unsigned short vid,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001653 const char *message, bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001654{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001655 struct batadv_tt_global_entry *tt_global_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001656 struct batadv_tt_local_entry *local_entry = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001657
Antonio Quartullic018ad32013-06-04 12:11:39 +02001658 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001659 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001660 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001661
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001662 if (!roaming) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02001663 batadv_tt_global_del_orig_entry(bat_priv, tt_global_entry,
1664 orig_node, message);
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001665
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001666 if (hlist_empty(&tt_global_entry->orig_list))
Antonio Quartullibe73b482012-09-23 22:38:36 +02001667 batadv_tt_global_free(bat_priv, tt_global_entry,
1668 message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001669
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001670 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001671 }
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001672
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001673 /* if we are deleting a global entry due to a roam
1674 * event, there are two possibilities:
1675 * 1) the client roamed from node A to node B => if there
1676 * is only one originator left for this client, we mark
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001677 * it with BATADV_TT_CLIENT_ROAM, we start a timer and we
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001678 * wait for node B to claim it. In case of timeout
1679 * the entry is purged.
1680 *
1681 * If there are other originators left, we directly delete
1682 * the originator.
1683 * 2) the client roamed to us => we can directly delete
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001684 * the global entry, since it is useless now.
1685 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001686 local_entry = batadv_tt_local_hash_find(bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001687 tt_global_entry->common.addr,
1688 vid);
Sven Eckelmanna5130882012-05-16 20:23:16 +02001689 if (local_entry) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001690 /* local entry exists, case 2: client roamed to us. */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001691 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartullibe73b482012-09-23 22:38:36 +02001692 batadv_tt_global_free(bat_priv, tt_global_entry, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001693 } else
1694 /* no local entry exists, case 1: check for roaming */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001695 batadv_tt_global_del_roaming(bat_priv, tt_global_entry,
1696 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001697
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001698
Antonio Quartullicc47f662011-04-27 14:27:57 +02001699out:
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001700 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001701 batadv_tt_global_entry_free_ref(tt_global_entry);
1702 if (local_entry)
1703 batadv_tt_local_entry_free_ref(local_entry);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001704}
1705
Antonio Quartulli95fb1302013-08-07 18:28:55 +02001706/**
1707 * batadv_tt_global_del_orig - remove all the TT global entries belonging to the
1708 * given originator matching the provided vid
1709 * @bat_priv: the bat priv with all the soft interface information
1710 * @orig_node: the originator owning the entries to remove
1711 * @match_vid: the VLAN identifier to match. If negative all the entries will be
1712 * removed
1713 * @message: debug message to print as "reason"
1714 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001715void batadv_tt_global_del_orig(struct batadv_priv *bat_priv,
1716 struct batadv_orig_node *orig_node,
Antonio Quartulli95fb1302013-08-07 18:28:55 +02001717 int32_t match_vid,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001718 const char *message)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001719{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001720 struct batadv_tt_global_entry *tt_global;
1721 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001722 uint32_t i;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001723 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001724 struct hlist_node *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001725 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001726 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartulli16052782013-06-04 12:11:41 +02001727 unsigned short vid;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001728
Simon Wunderlich6e801492011-10-19 10:28:26 +02001729 if (!hash)
1730 return;
1731
Antonio Quartullia73105b2011-04-27 14:27:44 +02001732 for (i = 0; i < hash->size; i++) {
1733 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001734 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001735
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001736 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001737 hlist_for_each_entry_safe(tt_common_entry, safe,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +01001738 head, hash_entry) {
Antonio Quartulli95fb1302013-08-07 18:28:55 +02001739 /* remove only matching entries */
1740 if (match_vid >= 0 && tt_common_entry->vid != match_vid)
1741 continue;
1742
Sven Eckelmann56303d32012-06-05 22:31:31 +02001743 tt_global = container_of(tt_common_entry,
1744 struct batadv_tt_global_entry,
1745 common);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001746
Sven Eckelmann56303d32012-06-05 22:31:31 +02001747 batadv_tt_global_del_orig_entry(bat_priv, tt_global,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001748 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001749
Sven Eckelmann56303d32012-06-05 22:31:31 +02001750 if (hlist_empty(&tt_global->orig_list)) {
Antonio Quartulli16052782013-06-04 12:11:41 +02001751 vid = tt_global->common.vid;
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001752 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001753 "Deleting global tt entry %pM (vid: %d): %s\n",
1754 tt_global->common.addr,
1755 BATADV_PRINT_VID(vid), message);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001756 hlist_del_rcu(&tt_common_entry->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001757 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001758 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001759 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001760 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001761 }
Antonio Quartulli17071572011-11-07 16:36:40 +01001762 orig_node->tt_initialised = false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001763}
1764
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001765static bool batadv_tt_global_to_purge(struct batadv_tt_global_entry *tt_global,
1766 char **msg)
Antonio Quartullicc47f662011-04-27 14:27:57 +02001767{
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001768 bool purge = false;
1769 unsigned long roam_timeout = BATADV_TT_CLIENT_ROAM_TIMEOUT;
1770 unsigned long temp_timeout = BATADV_TT_CLIENT_TEMP_TIMEOUT;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001771
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001772 if ((tt_global->common.flags & BATADV_TT_CLIENT_ROAM) &&
1773 batadv_has_timed_out(tt_global->roam_at, roam_timeout)) {
1774 purge = true;
1775 *msg = "Roaming timeout\n";
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001776 }
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001777
1778 if ((tt_global->common.flags & BATADV_TT_CLIENT_TEMP) &&
1779 batadv_has_timed_out(tt_global->common.added_at, temp_timeout)) {
1780 purge = true;
1781 *msg = "Temporary client timeout\n";
1782 }
1783
1784 return purge;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001785}
1786
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001787static void batadv_tt_global_purge(struct batadv_priv *bat_priv)
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001788{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001789 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001790 struct hlist_head *head;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001791 struct hlist_node *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001792 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02001793 uint32_t i;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001794 char *msg = NULL;
1795 struct batadv_tt_common_entry *tt_common;
1796 struct batadv_tt_global_entry *tt_global;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001797
Antonio Quartullicc47f662011-04-27 14:27:57 +02001798 for (i = 0; i < hash->size; i++) {
1799 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001800 list_lock = &hash->list_locks[i];
Antonio Quartullicc47f662011-04-27 14:27:57 +02001801
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001802 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001803 hlist_for_each_entry_safe(tt_common, node_tmp, head,
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001804 hash_entry) {
1805 tt_global = container_of(tt_common,
1806 struct batadv_tt_global_entry,
1807 common);
1808
1809 if (!batadv_tt_global_to_purge(tt_global, &msg))
1810 continue;
1811
1812 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02001813 "Deleting global tt entry %pM (vid: %d): %s\n",
1814 tt_global->common.addr,
1815 BATADV_PRINT_VID(tt_global->common.vid),
1816 msg);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001817
Sasha Levinb67bfe02013-02-27 17:06:00 -08001818 hlist_del_rcu(&tt_common->hash_entry);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001819
1820 batadv_tt_global_entry_free_ref(tt_global);
1821 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001822 spin_unlock_bh(list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02001823 }
Antonio Quartullicc47f662011-04-27 14:27:57 +02001824}
1825
Sven Eckelmann56303d32012-06-05 22:31:31 +02001826static void batadv_tt_global_table_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001827{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001828 struct batadv_hashtable *hash;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001829 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001830 struct batadv_tt_common_entry *tt_common_entry;
1831 struct batadv_tt_global_entry *tt_global;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001832 struct hlist_node *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001833 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001834 uint32_t i;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001835
Sven Eckelmann807736f2012-07-15 22:26:51 +02001836 if (!bat_priv->tt.global_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001837 return;
1838
Sven Eckelmann807736f2012-07-15 22:26:51 +02001839 hash = bat_priv->tt.global_hash;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001840
1841 for (i = 0; i < hash->size; i++) {
1842 head = &hash->table[i];
1843 list_lock = &hash->list_locks[i];
1844
1845 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001846 hlist_for_each_entry_safe(tt_common_entry, node_tmp,
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001847 head, hash_entry) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001848 hlist_del_rcu(&tt_common_entry->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001849 tt_global = container_of(tt_common_entry,
1850 struct batadv_tt_global_entry,
1851 common);
1852 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001853 }
1854 spin_unlock_bh(list_lock);
1855 }
1856
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +02001857 batadv_hash_destroy(hash);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001858
Sven Eckelmann807736f2012-07-15 22:26:51 +02001859 bat_priv->tt.global_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001860}
1861
Sven Eckelmann56303d32012-06-05 22:31:31 +02001862static bool
1863_batadv_is_ap_isolated(struct batadv_tt_local_entry *tt_local_entry,
1864 struct batadv_tt_global_entry *tt_global_entry)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02001865{
1866 bool ret = false;
1867
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001868 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_WIFI &&
1869 tt_global_entry->common.flags & BATADV_TT_CLIENT_WIFI)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02001870 ret = true;
1871
1872 return ret;
1873}
1874
Antonio Quartullic018ad32013-06-04 12:11:39 +02001875/**
1876 * batadv_transtable_search - get the mesh destination for a given client
1877 * @bat_priv: the bat priv with all the soft interface information
1878 * @src: mac address of the source client
1879 * @addr: mac address of the destination client
1880 * @vid: VLAN identifier
1881 *
1882 * Returns a pointer to the originator that was selected as destination in the
1883 * mesh for contacting the client 'addr', NULL otherwise.
1884 * In case of multiple originators serving the same client, the function returns
1885 * the best one (best in terms of metric towards the destination node).
1886 *
1887 * If the two clients are AP isolated the function returns NULL.
1888 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001889struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv,
1890 const uint8_t *src,
Antonio Quartullic018ad32013-06-04 12:11:39 +02001891 const uint8_t *addr,
1892 unsigned short vid)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001893{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001894 struct batadv_tt_local_entry *tt_local_entry = NULL;
1895 struct batadv_tt_global_entry *tt_global_entry = NULL;
1896 struct batadv_orig_node *orig_node = NULL;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001897 struct batadv_tt_orig_list_entry *best_entry;
Antonio Quartullib8cbd812013-07-02 11:04:36 +02001898 bool ap_isolation_enabled = false;
1899 struct batadv_softif_vlan *vlan;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001900
Antonio Quartullib8cbd812013-07-02 11:04:36 +02001901 /* if the AP isolation is requested on a VLAN, then check for its
1902 * setting in the proper VLAN private data structure
1903 */
1904 vlan = batadv_softif_vlan_get(bat_priv, vid);
1905 if (vlan) {
1906 ap_isolation_enabled = atomic_read(&vlan->ap_isolation);
1907 batadv_softif_vlan_free_ref(vlan);
1908 }
1909
1910 if (src && ap_isolation_enabled) {
Antonio Quartullic018ad32013-06-04 12:11:39 +02001911 tt_local_entry = batadv_tt_local_hash_find(bat_priv, src, vid);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001912 if (!tt_local_entry ||
1913 (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING))
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001914 goto out;
1915 }
Marek Lindner7aadf882011-02-18 12:28:09 +00001916
Antonio Quartullic018ad32013-06-04 12:11:39 +02001917 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
Antonio Quartulli2dafb492011-05-05 08:42:45 +02001918 if (!tt_global_entry)
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001919 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001920
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001921 /* check whether the clients should not communicate due to AP
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001922 * isolation
1923 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001924 if (tt_local_entry &&
1925 _batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001926 goto out;
1927
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001928 rcu_read_lock();
Antonio Quartulli46274562013-09-03 11:10:24 +02001929 best_entry = batadv_transtable_best_orig(bat_priv, tt_global_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001930 /* found anything? */
Sven Eckelmann981d8902012-10-07 13:34:15 +02001931 if (best_entry)
1932 orig_node = best_entry->orig_node;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001933 if (orig_node && !atomic_inc_not_zero(&orig_node->refcount))
1934 orig_node = NULL;
1935 rcu_read_unlock();
Sven Eckelmann981d8902012-10-07 13:34:15 +02001936
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001937out:
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001938 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001939 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001940 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001941 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001942
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001943 return orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001944}
Antonio Quartullia73105b2011-04-27 14:27:44 +02001945
Antonio Quartulliced72932013-04-24 16:37:51 +02001946/**
1947 * batadv_tt_global_crc - calculates the checksum of the local table belonging
1948 * to the given orig_node
1949 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02001950 * @orig_node: originator for which the CRC should be computed
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001951 * @vid: VLAN identifier for which the CRC32 has to be computed
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02001952 *
1953 * This function computes the checksum for the global table corresponding to a
1954 * specific originator. In particular, the checksum is computed as follows: For
1955 * each client connected to the originator the CRC32C of the MAC address and the
1956 * VID is computed and then all the CRC32Cs of the various clients are xor'ed
1957 * together.
1958 *
1959 * The idea behind is that CRC32C should be used as much as possible in order to
1960 * produce a unique hash of the table, but since the order which is used to feed
1961 * the CRC32C function affects the result and since every node in the network
1962 * probably sorts the clients differently, the hash function cannot be directly
1963 * computed over the entire table. Hence the CRC32C is used only on
1964 * the single client entry, while all the results are then xor'ed together
1965 * because the XOR operation can combine them all while trying to reduce the
1966 * noise as much as possible.
1967 *
1968 * Returns the checksum of the global table of a given originator.
Antonio Quartulliced72932013-04-24 16:37:51 +02001969 */
1970static uint32_t batadv_tt_global_crc(struct batadv_priv *bat_priv,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001971 struct batadv_orig_node *orig_node,
1972 unsigned short vid)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001973{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001974 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001975 struct batadv_tt_common_entry *tt_common;
1976 struct batadv_tt_global_entry *tt_global;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001977 struct hlist_head *head;
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02001978 uint32_t i, crc_tmp, crc = 0;
Antonio Quartulli0eb015682013-10-13 02:50:20 +02001979 uint8_t flags;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001980
1981 for (i = 0; i < hash->size; i++) {
1982 head = &hash->table[i];
1983
1984 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001985 hlist_for_each_entry_rcu(tt_common, head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001986 tt_global = container_of(tt_common,
1987 struct batadv_tt_global_entry,
1988 common);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02001989 /* compute the CRC only for entries belonging to the
1990 * VLAN identified by the vid passed as parameter
1991 */
1992 if (tt_common->vid != vid)
1993 continue;
1994
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001995 /* Roaming clients are in the global table for
1996 * consistency only. They don't have to be
1997 * taken into account while computing the
1998 * global crc
1999 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002000 if (tt_common->flags & BATADV_TT_CLIENT_ROAM)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002001 continue;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002002 /* Temporary clients have not been announced yet, so
2003 * they have to be skipped while computing the global
2004 * crc
2005 */
2006 if (tt_common->flags & BATADV_TT_CLIENT_TEMP)
2007 continue;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002008
2009 /* find out if this global entry is announced by this
2010 * originator
2011 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002012 if (!batadv_tt_global_entry_has_orig(tt_global,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002013 orig_node))
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02002014 continue;
2015
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002016 crc_tmp = crc32c(0, &tt_common->vid,
2017 sizeof(tt_common->vid));
Antonio Quartulli0eb015682013-10-13 02:50:20 +02002018
2019 /* compute the CRC on flags that have to be kept in sync
2020 * among nodes
2021 */
2022 flags = tt_common->flags & BATADV_TT_SYNC_MASK;
2023 crc_tmp = crc32c(crc_tmp, &flags, sizeof(flags));
2024
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002025 crc ^= crc32c(crc_tmp, tt_common->addr, ETH_ALEN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002026 }
2027 rcu_read_unlock();
2028 }
2029
Antonio Quartulliced72932013-04-24 16:37:51 +02002030 return crc;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002031}
2032
Antonio Quartulliced72932013-04-24 16:37:51 +02002033/**
2034 * batadv_tt_local_crc - calculates the checksum of the local table
2035 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002036 * @vid: VLAN identifier for which the CRC32 has to be computed
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002037 *
2038 * For details about the computation, please refer to the documentation for
2039 * batadv_tt_global_crc().
2040 *
2041 * Returns the checksum of the local table
Antonio Quartulliced72932013-04-24 16:37:51 +02002042 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002043static uint32_t batadv_tt_local_crc(struct batadv_priv *bat_priv,
2044 unsigned short vid)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002045{
Sven Eckelmann807736f2012-07-15 22:26:51 +02002046 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002047 struct batadv_tt_common_entry *tt_common;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002048 struct hlist_head *head;
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002049 uint32_t i, crc_tmp, crc = 0;
Antonio Quartulli0eb015682013-10-13 02:50:20 +02002050 uint8_t flags;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002051
2052 for (i = 0; i < hash->size; i++) {
2053 head = &hash->table[i];
2054
2055 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08002056 hlist_for_each_entry_rcu(tt_common, head, hash_entry) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002057 /* compute the CRC only for entries belonging to the
2058 * VLAN identified by vid
2059 */
2060 if (tt_common->vid != vid)
2061 continue;
2062
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002063 /* not yet committed clients have not to be taken into
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002064 * account while computing the CRC
2065 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002066 if (tt_common->flags & BATADV_TT_CLIENT_NEW)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002067 continue;
Antonio Quartulliced72932013-04-24 16:37:51 +02002068
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002069 crc_tmp = crc32c(0, &tt_common->vid,
2070 sizeof(tt_common->vid));
Antonio Quartulli0eb015682013-10-13 02:50:20 +02002071
2072 /* compute the CRC on flags that have to be kept in sync
2073 * among nodes
2074 */
2075 flags = tt_common->flags & BATADV_TT_SYNC_MASK;
2076 crc_tmp = crc32c(crc_tmp, &flags, sizeof(flags));
2077
Antonio Quartulli0ffa9e82013-06-04 12:11:40 +02002078 crc ^= crc32c(crc_tmp, tt_common->addr, ETH_ALEN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002079 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002080 rcu_read_unlock();
2081 }
2082
Antonio Quartulliced72932013-04-24 16:37:51 +02002083 return crc;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002084}
2085
Sven Eckelmann56303d32012-06-05 22:31:31 +02002086static void batadv_tt_req_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002087{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002088 struct batadv_tt_req_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002089
Sven Eckelmann807736f2012-07-15 22:26:51 +02002090 spin_lock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002091
Sven Eckelmann807736f2012-07-15 22:26:51 +02002092 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Antonio Quartullia73105b2011-04-27 14:27:44 +02002093 list_del(&node->list);
2094 kfree(node);
2095 }
2096
Sven Eckelmann807736f2012-07-15 22:26:51 +02002097 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002098}
2099
Sven Eckelmann56303d32012-06-05 22:31:31 +02002100static void batadv_tt_save_orig_buffer(struct batadv_priv *bat_priv,
2101 struct batadv_orig_node *orig_node,
Antonio Quartullie8cf2342013-05-28 13:14:28 +02002102 const void *tt_buff,
2103 uint16_t tt_buff_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002104{
Antonio Quartullia73105b2011-04-27 14:27:44 +02002105 /* Replace the old buffer only if I received something in the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002106 * last OGM (the OGM could carry no changes)
2107 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002108 spin_lock_bh(&orig_node->tt_buff_lock);
2109 if (tt_buff_len > 0) {
2110 kfree(orig_node->tt_buff);
2111 orig_node->tt_buff_len = 0;
2112 orig_node->tt_buff = kmalloc(tt_buff_len, GFP_ATOMIC);
2113 if (orig_node->tt_buff) {
2114 memcpy(orig_node->tt_buff, tt_buff, tt_buff_len);
2115 orig_node->tt_buff_len = tt_buff_len;
2116 }
2117 }
2118 spin_unlock_bh(&orig_node->tt_buff_lock);
2119}
2120
Sven Eckelmann56303d32012-06-05 22:31:31 +02002121static void batadv_tt_req_purge(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002122{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002123 struct batadv_tt_req_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002124
Sven Eckelmann807736f2012-07-15 22:26:51 +02002125 spin_lock_bh(&bat_priv->tt.req_list_lock);
2126 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002127 if (batadv_has_timed_out(node->issued_at,
2128 BATADV_TT_REQUEST_TIMEOUT)) {
Antonio Quartullia73105b2011-04-27 14:27:44 +02002129 list_del(&node->list);
2130 kfree(node);
2131 }
2132 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02002133 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002134}
2135
2136/* returns the pointer to the new tt_req_node struct if no request
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002137 * has already been issued for this orig_node, NULL otherwise
2138 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002139static struct batadv_tt_req_node *
2140batadv_new_tt_req_node(struct batadv_priv *bat_priv,
2141 struct batadv_orig_node *orig_node)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002142{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002143 struct batadv_tt_req_node *tt_req_node_tmp, *tt_req_node = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002144
Sven Eckelmann807736f2012-07-15 22:26:51 +02002145 spin_lock_bh(&bat_priv->tt.req_list_lock);
2146 list_for_each_entry(tt_req_node_tmp, &bat_priv->tt.req_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002147 if (batadv_compare_eth(tt_req_node_tmp, orig_node) &&
2148 !batadv_has_timed_out(tt_req_node_tmp->issued_at,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002149 BATADV_TT_REQUEST_TIMEOUT))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002150 goto unlock;
2151 }
2152
2153 tt_req_node = kmalloc(sizeof(*tt_req_node), GFP_ATOMIC);
2154 if (!tt_req_node)
2155 goto unlock;
2156
2157 memcpy(tt_req_node->addr, orig_node->orig, ETH_ALEN);
2158 tt_req_node->issued_at = jiffies;
2159
Sven Eckelmann807736f2012-07-15 22:26:51 +02002160 list_add(&tt_req_node->list, &bat_priv->tt.req_list);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002161unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02002162 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002163 return tt_req_node;
2164}
2165
Marek Lindner335fbe02013-04-23 21:40:02 +08002166/**
2167 * batadv_tt_local_valid - verify that given tt entry is a valid one
2168 * @entry_ptr: to be checked local tt entry
2169 * @data_ptr: not used but definition required to satisfy the callback prototype
2170 *
2171 * Returns 1 if the entry is a valid, 0 otherwise.
2172 */
2173static int batadv_tt_local_valid(const void *entry_ptr, const void *data_ptr)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002174{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002175 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002176
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002177 if (tt_common_entry->flags & BATADV_TT_CLIENT_NEW)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002178 return 0;
2179 return 1;
2180}
2181
Sven Eckelmanna5130882012-05-16 20:23:16 +02002182static int batadv_tt_global_valid(const void *entry_ptr,
2183 const void *data_ptr)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002184{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002185 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
2186 const struct batadv_tt_global_entry *tt_global_entry;
2187 const struct batadv_orig_node *orig_node = data_ptr;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002188
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002189 if (tt_common_entry->flags & BATADV_TT_CLIENT_ROAM ||
2190 tt_common_entry->flags & BATADV_TT_CLIENT_TEMP)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002191 return 0;
2192
Sven Eckelmann56303d32012-06-05 22:31:31 +02002193 tt_global_entry = container_of(tt_common_entry,
2194 struct batadv_tt_global_entry,
Antonio Quartulli48100ba2011-10-30 12:17:33 +01002195 common);
2196
Sven Eckelmanna5130882012-05-16 20:23:16 +02002197 return batadv_tt_global_entry_has_orig(tt_global_entry, orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002198}
2199
Marek Lindner335fbe02013-04-23 21:40:02 +08002200/**
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002201 * batadv_tt_tvlv_generate - fill the tvlv buff with the tt entries from the
2202 * specified tt hash
Marek Lindner335fbe02013-04-23 21:40:02 +08002203 * @bat_priv: the bat priv with all the soft interface information
2204 * @hash: hash table containing the tt entries
2205 * @tt_len: expected tvlv tt data buffer length in number of bytes
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002206 * @tvlv_buff: pointer to the buffer to fill with the TT data
Marek Lindner335fbe02013-04-23 21:40:02 +08002207 * @valid_cb: function to filter tt change entries
2208 * @cb_data: data passed to the filter function as argument
Marek Lindner335fbe02013-04-23 21:40:02 +08002209 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002210static void batadv_tt_tvlv_generate(struct batadv_priv *bat_priv,
2211 struct batadv_hashtable *hash,
2212 void *tvlv_buff, uint16_t tt_len,
2213 int (*valid_cb)(const void *, const void *),
2214 void *cb_data)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002215{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002216 struct batadv_tt_common_entry *tt_common_entry;
Marek Lindner335fbe02013-04-23 21:40:02 +08002217 struct batadv_tvlv_tt_change *tt_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002218 struct hlist_head *head;
Marek Lindner335fbe02013-04-23 21:40:02 +08002219 uint16_t tt_tot, tt_num_entries = 0;
Antonio Quartullic90681b2011-10-05 17:05:25 +02002220 uint32_t i;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002221
Antonio Quartulli298e6e62013-05-28 13:14:27 +02002222 tt_tot = batadv_tt_entries(tt_len);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002223 tt_change = (struct batadv_tvlv_tt_change *)tvlv_buff;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002224
2225 rcu_read_lock();
2226 for (i = 0; i < hash->size; i++) {
2227 head = &hash->table[i];
2228
Sasha Levinb67bfe02013-02-27 17:06:00 -08002229 hlist_for_each_entry_rcu(tt_common_entry,
Antonio Quartullia73105b2011-04-27 14:27:44 +02002230 head, hash_entry) {
Marek Lindner335fbe02013-04-23 21:40:02 +08002231 if (tt_tot == tt_num_entries)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002232 break;
2233
Antonio Quartulli48100ba2011-10-30 12:17:33 +01002234 if ((valid_cb) && (!valid_cb(tt_common_entry, cb_data)))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002235 continue;
2236
Antonio Quartulli48100ba2011-10-30 12:17:33 +01002237 memcpy(tt_change->addr, tt_common_entry->addr,
2238 ETH_ALEN);
Antonio Quartulli27b37eb2012-11-08 14:21:11 +01002239 tt_change->flags = tt_common_entry->flags;
Antonio Quartullic018ad32013-06-04 12:11:39 +02002240 tt_change->vid = htons(tt_common_entry->vid);
Antonio Quartullica663042013-12-15 13:26:55 +01002241 memset(tt_change->reserved, 0,
2242 sizeof(tt_change->reserved));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002243
Marek Lindner335fbe02013-04-23 21:40:02 +08002244 tt_num_entries++;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002245 tt_change++;
2246 }
2247 }
2248 rcu_read_unlock();
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002249}
Antonio Quartullia73105b2011-04-27 14:27:44 +02002250
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002251/**
2252 * batadv_tt_global_check_crc - check if all the CRCs are correct
2253 * @orig_node: originator for which the CRCs have to be checked
2254 * @tt_vlan: pointer to the first tvlv VLAN entry
2255 * @num_vlan: number of tvlv VLAN entries
2256 * @create: if true, create VLAN objects if not found
2257 *
2258 * Return true if all the received CRCs match the locally stored ones, false
2259 * otherwise
2260 */
2261static bool batadv_tt_global_check_crc(struct batadv_orig_node *orig_node,
2262 struct batadv_tvlv_tt_vlan_data *tt_vlan,
2263 uint16_t num_vlan)
2264{
2265 struct batadv_tvlv_tt_vlan_data *tt_vlan_tmp;
2266 struct batadv_orig_node_vlan *vlan;
2267 int i;
2268
2269 /* check if each received CRC matches the locally stored one */
2270 for (i = 0; i < num_vlan; i++) {
2271 tt_vlan_tmp = tt_vlan + i;
2272
2273 /* if orig_node is a backbone node for this VLAN, don't check
2274 * the CRC as we ignore all the global entries over it
2275 */
2276 if (batadv_bla_is_backbone_gw_orig(orig_node->bat_priv,
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002277 orig_node->orig,
2278 ntohs(tt_vlan_tmp->vid)))
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002279 continue;
2280
2281 vlan = batadv_orig_node_vlan_get(orig_node,
2282 ntohs(tt_vlan_tmp->vid));
2283 if (!vlan)
2284 return false;
2285
2286 if (vlan->tt.crc != ntohl(tt_vlan_tmp->crc))
2287 return false;
2288 }
2289
2290 return true;
2291}
2292
2293/**
2294 * batadv_tt_local_update_crc - update all the local CRCs
2295 * @bat_priv: the bat priv with all the soft interface information
2296 */
2297static void batadv_tt_local_update_crc(struct batadv_priv *bat_priv)
2298{
2299 struct batadv_softif_vlan *vlan;
2300
2301 /* recompute the global CRC for each VLAN */
2302 rcu_read_lock();
2303 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
2304 vlan->tt.crc = batadv_tt_local_crc(bat_priv, vlan->vid);
2305 }
2306 rcu_read_unlock();
2307}
2308
2309/**
2310 * batadv_tt_global_update_crc - update all the global CRCs for this orig_node
2311 * @bat_priv: the bat priv with all the soft interface information
2312 * @orig_node: the orig_node for which the CRCs have to be updated
2313 */
2314static void batadv_tt_global_update_crc(struct batadv_priv *bat_priv,
2315 struct batadv_orig_node *orig_node)
2316{
2317 struct batadv_orig_node_vlan *vlan;
2318 uint32_t crc;
2319
2320 /* recompute the global CRC for each VLAN */
2321 rcu_read_lock();
2322 list_for_each_entry_rcu(vlan, &orig_node->vlan_list, list) {
2323 /* if orig_node is a backbone node for this VLAN, don't compute
2324 * the CRC as we ignore all the global entries over it
2325 */
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002326 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig,
2327 vlan->vid))
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002328 continue;
2329
2330 crc = batadv_tt_global_crc(bat_priv, orig_node, vlan->vid);
2331 vlan->tt.crc = crc;
2332 }
2333 rcu_read_unlock();
Antonio Quartullia73105b2011-04-27 14:27:44 +02002334}
2335
Antonio Quartulliced72932013-04-24 16:37:51 +02002336/**
2337 * batadv_send_tt_request - send a TT Request message to a given node
2338 * @bat_priv: the bat priv with all the soft interface information
2339 * @dst_orig_node: the destination of the message
2340 * @ttvn: the version number that the source of the message is looking for
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002341 * @tt_vlan: pointer to the first tvlv VLAN object to request
2342 * @num_vlan: number of tvlv VLAN entries
Antonio Quartulliced72932013-04-24 16:37:51 +02002343 * @full_table: ask for the entire translation table if true, while only for the
2344 * last TT diff otherwise
2345 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002346static int batadv_send_tt_request(struct batadv_priv *bat_priv,
2347 struct batadv_orig_node *dst_orig_node,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002348 uint8_t ttvn,
2349 struct batadv_tvlv_tt_vlan_data *tt_vlan,
2350 uint16_t num_vlan, bool full_table)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002351{
Marek Lindner335fbe02013-04-23 21:40:02 +08002352 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002353 struct batadv_tt_req_node *tt_req_node = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002354 struct batadv_tvlv_tt_vlan_data *tt_vlan_req;
2355 struct batadv_hard_iface *primary_if;
Marek Lindner335fbe02013-04-23 21:40:02 +08002356 bool ret = false;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002357 int i, size;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002358
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002359 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002360 if (!primary_if)
2361 goto out;
2362
2363 /* The new tt_req will be issued only if I'm not waiting for a
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002364 * reply from the same orig_node yet
2365 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002366 tt_req_node = batadv_new_tt_req_node(bat_priv, dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002367 if (!tt_req_node)
2368 goto out;
2369
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002370 size = sizeof(*tvlv_tt_data) + sizeof(*tt_vlan_req) * num_vlan;
2371 tvlv_tt_data = kzalloc(size, GFP_ATOMIC);
Marek Lindner335fbe02013-04-23 21:40:02 +08002372 if (!tvlv_tt_data)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002373 goto out;
2374
Marek Lindner335fbe02013-04-23 21:40:02 +08002375 tvlv_tt_data->flags = BATADV_TT_REQUEST;
2376 tvlv_tt_data->ttvn = ttvn;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002377 tvlv_tt_data->num_vlan = htons(num_vlan);
2378
2379 /* send all the CRCs within the request. This is needed by intermediate
2380 * nodes to ensure they have the correct table before replying
2381 */
2382 tt_vlan_req = (struct batadv_tvlv_tt_vlan_data *)(tvlv_tt_data + 1);
2383 for (i = 0; i < num_vlan; i++) {
2384 tt_vlan_req->vid = tt_vlan->vid;
2385 tt_vlan_req->crc = tt_vlan->crc;
2386
2387 tt_vlan_req++;
2388 tt_vlan++;
2389 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002390
2391 if (full_table)
Marek Lindner335fbe02013-04-23 21:40:02 +08002392 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002393
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02002394 batadv_dbg(BATADV_DBG_TT, bat_priv, "Sending TT_REQUEST to %pM [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08002395 dst_orig_node->orig, full_table ? 'F' : '.');
Antonio Quartullia73105b2011-04-27 14:27:44 +02002396
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002397 batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_TX);
Marek Lindner335fbe02013-04-23 21:40:02 +08002398 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
2399 dst_orig_node->orig, BATADV_TVLV_TT, 1,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002400 tvlv_tt_data, size);
Marek Lindner335fbe02013-04-23 21:40:02 +08002401 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002402
2403out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02002404 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002405 batadv_hardif_free_ref(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002406 if (ret && tt_req_node) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02002407 spin_lock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002408 list_del(&tt_req_node->list);
Sven Eckelmann807736f2012-07-15 22:26:51 +02002409 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002410 kfree(tt_req_node);
2411 }
Marek Lindner335fbe02013-04-23 21:40:02 +08002412 kfree(tvlv_tt_data);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002413 return ret;
2414}
2415
Marek Lindner335fbe02013-04-23 21:40:02 +08002416/**
2417 * batadv_send_other_tt_response - send reply to tt request concerning another
2418 * node's translation table
2419 * @bat_priv: the bat priv with all the soft interface information
2420 * @tt_data: tt data containing the tt request information
2421 * @req_src: mac address of tt request sender
2422 * @req_dst: mac address of tt request recipient
2423 *
2424 * Returns true if tt request reply was sent, false otherwise.
2425 */
2426static bool batadv_send_other_tt_response(struct batadv_priv *bat_priv,
2427 struct batadv_tvlv_tt_data *tt_data,
2428 uint8_t *req_src, uint8_t *req_dst)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002429{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002430 struct batadv_orig_node *req_dst_orig_node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002431 struct batadv_orig_node *res_dst_orig_node = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002432 struct batadv_tvlv_tt_change *tt_change;
Marek Lindner335fbe02013-04-23 21:40:02 +08002433 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002434 struct batadv_tvlv_tt_vlan_data *tt_vlan;
Marek Lindner335fbe02013-04-23 21:40:02 +08002435 bool ret = false, full_table;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002436 uint8_t orig_ttvn, req_ttvn;
2437 uint16_t tvlv_len;
2438 int32_t tt_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002439
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002440 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002441 "Received TT_REQUEST from %pM for ttvn: %u (%pM) [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08002442 req_src, tt_data->ttvn, req_dst,
2443 (tt_data->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002444
2445 /* Let's get the orig node of the REAL destination */
Marek Lindner335fbe02013-04-23 21:40:02 +08002446 req_dst_orig_node = batadv_orig_hash_find(bat_priv, req_dst);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002447 if (!req_dst_orig_node)
2448 goto out;
2449
Marek Lindner335fbe02013-04-23 21:40:02 +08002450 res_dst_orig_node = batadv_orig_hash_find(bat_priv, req_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002451 if (!res_dst_orig_node)
2452 goto out;
2453
Antonio Quartullia73105b2011-04-27 14:27:44 +02002454 orig_ttvn = (uint8_t)atomic_read(&req_dst_orig_node->last_ttvn);
Marek Lindner335fbe02013-04-23 21:40:02 +08002455 req_ttvn = tt_data->ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002456
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002457 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(tt_data + 1);
Marek Lindner335fbe02013-04-23 21:40:02 +08002458 /* this node doesn't have the requested data */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002459 if (orig_ttvn != req_ttvn ||
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002460 !batadv_tt_global_check_crc(req_dst_orig_node, tt_vlan,
2461 ntohs(tt_data->num_vlan)))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002462 goto out;
2463
Antonio Quartulli015758d2011-07-09 17:52:13 +02002464 /* If the full table has been explicitly requested */
Marek Lindner335fbe02013-04-23 21:40:02 +08002465 if (tt_data->flags & BATADV_TT_FULL_TABLE ||
Antonio Quartullia73105b2011-04-27 14:27:44 +02002466 !req_dst_orig_node->tt_buff)
2467 full_table = true;
2468 else
2469 full_table = false;
2470
Marek Lindner335fbe02013-04-23 21:40:02 +08002471 /* TT fragmentation hasn't been implemented yet, so send as many
2472 * TT entries fit a single packet as possible only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002473 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002474 if (!full_table) {
2475 spin_lock_bh(&req_dst_orig_node->tt_buff_lock);
2476 tt_len = req_dst_orig_node->tt_buff_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002477
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002478 tvlv_len = batadv_tt_prepare_tvlv_global_data(req_dst_orig_node,
2479 &tvlv_tt_data,
2480 &tt_change,
2481 &tt_len);
2482 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002483 goto unlock;
2484
Antonio Quartullia73105b2011-04-27 14:27:44 +02002485 /* Copy the last orig_node's OGM buffer */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002486 memcpy(tt_change, req_dst_orig_node->tt_buff,
Antonio Quartullia73105b2011-04-27 14:27:44 +02002487 req_dst_orig_node->tt_buff_len);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002488 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
2489 } else {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002490 /* allocate the tvlv, put the tt_data and all the tt_vlan_data
2491 * in the initial part
2492 */
2493 tt_len = -1;
2494 tvlv_len = batadv_tt_prepare_tvlv_global_data(req_dst_orig_node,
2495 &tvlv_tt_data,
2496 &tt_change,
2497 &tt_len);
2498 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002499 goto out;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002500
2501 /* fill the rest of the tvlv with the real TT entries */
2502 batadv_tt_tvlv_generate(bat_priv, bat_priv->tt.global_hash,
2503 tt_change, tt_len,
2504 batadv_tt_global_valid,
2505 req_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002506 }
2507
Marek Lindnera19d3d82013-05-27 15:33:25 +08002508 /* Don't send the response, if larger than fragmented packet. */
2509 tt_len = sizeof(struct batadv_unicast_tvlv_packet) + tvlv_len;
2510 if (tt_len > atomic_read(&bat_priv->packet_size_max)) {
2511 net_ratelimited_function(batadv_info, bat_priv->soft_iface,
2512 "Ignoring TT_REQUEST from %pM; Response size exceeds max packet size.\n",
2513 res_dst_orig_node->orig);
2514 goto out;
2515 }
2516
Marek Lindner335fbe02013-04-23 21:40:02 +08002517 tvlv_tt_data->flags = BATADV_TT_RESPONSE;
2518 tvlv_tt_data->ttvn = req_ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002519
2520 if (full_table)
Marek Lindner335fbe02013-04-23 21:40:02 +08002521 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002522
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002523 batadv_dbg(BATADV_DBG_TT, bat_priv,
Marek Lindner335fbe02013-04-23 21:40:02 +08002524 "Sending TT_RESPONSE %pM for %pM [%c] (ttvn: %u)\n",
2525 res_dst_orig_node->orig, req_dst_orig_node->orig,
2526 full_table ? 'F' : '.', req_ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002527
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002528 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02002529
Marek Lindner335fbe02013-04-23 21:40:02 +08002530 batadv_tvlv_unicast_send(bat_priv, req_dst_orig_node->orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002531 req_src, BATADV_TVLV_TT, 1, tvlv_tt_data,
2532 tvlv_len);
Martin Hundebølle91ecfc2013-04-20 13:54:39 +02002533
Marek Lindner335fbe02013-04-23 21:40:02 +08002534 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002535 goto out;
2536
2537unlock:
2538 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
2539
2540out:
2541 if (res_dst_orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002542 batadv_orig_node_free_ref(res_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002543 if (req_dst_orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002544 batadv_orig_node_free_ref(req_dst_orig_node);
Marek Lindner335fbe02013-04-23 21:40:02 +08002545 kfree(tvlv_tt_data);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002546 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002547}
Sven Eckelmann96412692012-06-05 22:31:30 +02002548
Marek Lindner335fbe02013-04-23 21:40:02 +08002549/**
2550 * batadv_send_my_tt_response - send reply to tt request concerning this node's
2551 * translation table
2552 * @bat_priv: the bat priv with all the soft interface information
2553 * @tt_data: tt data containing the tt request information
2554 * @req_src: mac address of tt request sender
2555 *
2556 * Returns true if tt request reply was sent, false otherwise.
2557 */
2558static bool batadv_send_my_tt_response(struct batadv_priv *bat_priv,
2559 struct batadv_tvlv_tt_data *tt_data,
2560 uint8_t *req_src)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002561{
Marek Lindner335fbe02013-04-23 21:40:02 +08002562 struct batadv_tvlv_tt_data *tvlv_tt_data = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002563 struct batadv_hard_iface *primary_if = NULL;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002564 struct batadv_tvlv_tt_change *tt_change;
2565 struct batadv_orig_node *orig_node;
Marek Lindner335fbe02013-04-23 21:40:02 +08002566 uint8_t my_ttvn, req_ttvn;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002567 uint16_t tvlv_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002568 bool full_table;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002569 int32_t tt_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002570
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002571 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002572 "Received TT_REQUEST from %pM for ttvn: %u (me) [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08002573 req_src, tt_data->ttvn,
2574 (tt_data->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002575
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002576 spin_lock_bh(&bat_priv->tt.commit_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002577
Sven Eckelmann807736f2012-07-15 22:26:51 +02002578 my_ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
Marek Lindner335fbe02013-04-23 21:40:02 +08002579 req_ttvn = tt_data->ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002580
Marek Lindner335fbe02013-04-23 21:40:02 +08002581 orig_node = batadv_orig_hash_find(bat_priv, req_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002582 if (!orig_node)
2583 goto out;
2584
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002585 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002586 if (!primary_if)
2587 goto out;
2588
2589 /* If the full table has been explicitly requested or the gap
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002590 * is too big send the whole local translation table
2591 */
Marek Lindner335fbe02013-04-23 21:40:02 +08002592 if (tt_data->flags & BATADV_TT_FULL_TABLE || my_ttvn != req_ttvn ||
Sven Eckelmann807736f2012-07-15 22:26:51 +02002593 !bat_priv->tt.last_changeset)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002594 full_table = true;
2595 else
2596 full_table = false;
2597
Marek Lindner335fbe02013-04-23 21:40:02 +08002598 /* TT fragmentation hasn't been implemented yet, so send as many
2599 * TT entries fit a single packet as possible only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002600 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002601 if (!full_table) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02002602 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002603
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002604 tt_len = bat_priv->tt.last_changeset_len;
2605 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv,
2606 &tvlv_tt_data,
2607 &tt_change,
2608 &tt_len);
2609 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002610 goto unlock;
2611
Marek Lindner335fbe02013-04-23 21:40:02 +08002612 /* Copy the last orig_node's OGM buffer */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002613 memcpy(tt_change, bat_priv->tt.last_changeset,
Sven Eckelmann807736f2012-07-15 22:26:51 +02002614 bat_priv->tt.last_changeset_len);
2615 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002616 } else {
Marek Lindner335fbe02013-04-23 21:40:02 +08002617 req_ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002618
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002619 /* allocate the tvlv, put the tt_data and all the tt_vlan_data
2620 * in the initial part
2621 */
2622 tt_len = -1;
2623 tvlv_len = batadv_tt_prepare_tvlv_local_data(bat_priv,
2624 &tvlv_tt_data,
2625 &tt_change,
2626 &tt_len);
2627 if (!tt_len)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002628 goto out;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002629
2630 /* fill the rest of the tvlv with the real TT entries */
2631 batadv_tt_tvlv_generate(bat_priv, bat_priv->tt.local_hash,
2632 tt_change, tt_len,
2633 batadv_tt_local_valid, NULL);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002634 }
2635
Marek Lindner335fbe02013-04-23 21:40:02 +08002636 tvlv_tt_data->flags = BATADV_TT_RESPONSE;
2637 tvlv_tt_data->ttvn = req_ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002638
2639 if (full_table)
Marek Lindner335fbe02013-04-23 21:40:02 +08002640 tvlv_tt_data->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002641
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002642 batadv_dbg(BATADV_DBG_TT, bat_priv,
Marek Lindner335fbe02013-04-23 21:40:02 +08002643 "Sending TT_RESPONSE to %pM [%c] (ttvn: %u)\n",
2644 orig_node->orig, full_table ? 'F' : '.', req_ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002645
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002646 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02002647
Marek Lindner335fbe02013-04-23 21:40:02 +08002648 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002649 req_src, BATADV_TVLV_TT, 1, tvlv_tt_data,
2650 tvlv_len);
Marek Lindner335fbe02013-04-23 21:40:02 +08002651
Antonio Quartullia73105b2011-04-27 14:27:44 +02002652 goto out;
2653
2654unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02002655 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002656out:
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002657 spin_unlock_bh(&bat_priv->tt.commit_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002658 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002659 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002660 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002661 batadv_hardif_free_ref(primary_if);
Marek Lindner335fbe02013-04-23 21:40:02 +08002662 kfree(tvlv_tt_data);
2663 /* The packet was for this host, so it doesn't need to be re-routed */
Antonio Quartullia73105b2011-04-27 14:27:44 +02002664 return true;
2665}
2666
Marek Lindner335fbe02013-04-23 21:40:02 +08002667/**
2668 * batadv_send_tt_response - send reply to tt request
2669 * @bat_priv: the bat priv with all the soft interface information
2670 * @tt_data: tt data containing the tt request information
2671 * @req_src: mac address of tt request sender
2672 * @req_dst: mac address of tt request recipient
2673 *
2674 * Returns true if tt request reply was sent, false otherwise.
2675 */
2676static bool batadv_send_tt_response(struct batadv_priv *bat_priv,
2677 struct batadv_tvlv_tt_data *tt_data,
2678 uint8_t *req_src, uint8_t *req_dst)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002679{
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002680 if (batadv_is_my_mac(bat_priv, req_dst))
Marek Lindner335fbe02013-04-23 21:40:02 +08002681 return batadv_send_my_tt_response(bat_priv, tt_data, req_src);
Antonio Quartullicfd4f752013-08-07 18:28:56 +02002682 else
Marek Lindner335fbe02013-04-23 21:40:02 +08002683 return batadv_send_other_tt_response(bat_priv, tt_data,
2684 req_src, req_dst);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002685}
2686
Sven Eckelmann56303d32012-06-05 22:31:31 +02002687static void _batadv_tt_update_changes(struct batadv_priv *bat_priv,
2688 struct batadv_orig_node *orig_node,
Marek Lindner335fbe02013-04-23 21:40:02 +08002689 struct batadv_tvlv_tt_change *tt_change,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002690 uint16_t tt_num_changes, uint8_t ttvn)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002691{
2692 int i;
Sven Eckelmanna5130882012-05-16 20:23:16 +02002693 int roams;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002694
2695 for (i = 0; i < tt_num_changes; i++) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002696 if ((tt_change + i)->flags & BATADV_TT_CLIENT_DEL) {
2697 roams = (tt_change + i)->flags & BATADV_TT_CLIENT_ROAM;
Sven Eckelmanna5130882012-05-16 20:23:16 +02002698 batadv_tt_global_del(bat_priv, orig_node,
2699 (tt_change + i)->addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +02002700 ntohs((tt_change + i)->vid),
Antonio Quartullid4f44692012-05-25 00:00:54 +02002701 "tt removed by changes",
2702 roams);
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002703 } else {
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002704 if (!batadv_tt_global_add(bat_priv, orig_node,
Antonio Quartullid4f44692012-05-25 00:00:54 +02002705 (tt_change + i)->addr,
Antonio Quartullic018ad32013-06-04 12:11:39 +02002706 ntohs((tt_change + i)->vid),
Antonio Quartullid4f44692012-05-25 00:00:54 +02002707 (tt_change + i)->flags, ttvn))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002708 /* In case of problem while storing a
2709 * global_entry, we stop the updating
2710 * procedure without committing the
2711 * ttvn change. This will avoid to send
2712 * corrupted data on tt_request
2713 */
2714 return;
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002715 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002716 }
Antonio Quartulli17071572011-11-07 16:36:40 +01002717 orig_node->tt_initialised = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002718}
2719
Sven Eckelmann56303d32012-06-05 22:31:31 +02002720static void batadv_tt_fill_gtable(struct batadv_priv *bat_priv,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002721 struct batadv_tvlv_tt_change *tt_change,
2722 uint8_t ttvn, uint8_t *resp_src,
2723 uint16_t num_entries)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002724{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002725 struct batadv_orig_node *orig_node;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002726
Marek Lindner335fbe02013-04-23 21:40:02 +08002727 orig_node = batadv_orig_hash_find(bat_priv, resp_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002728 if (!orig_node)
2729 goto out;
2730
2731 /* Purge the old table first.. */
Antonio Quartulli95fb1302013-08-07 18:28:55 +02002732 batadv_tt_global_del_orig(bat_priv, orig_node, -1,
2733 "Received full table");
Antonio Quartullia73105b2011-04-27 14:27:44 +02002734
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002735 _batadv_tt_update_changes(bat_priv, orig_node, tt_change, num_entries,
2736 ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002737
2738 spin_lock_bh(&orig_node->tt_buff_lock);
2739 kfree(orig_node->tt_buff);
2740 orig_node->tt_buff_len = 0;
2741 orig_node->tt_buff = NULL;
2742 spin_unlock_bh(&orig_node->tt_buff_lock);
2743
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002744 atomic_set(&orig_node->last_ttvn, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002745
2746out:
2747 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002748 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002749}
2750
Sven Eckelmann56303d32012-06-05 22:31:31 +02002751static void batadv_tt_update_changes(struct batadv_priv *bat_priv,
2752 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002753 uint16_t tt_num_changes, uint8_t ttvn,
Marek Lindner335fbe02013-04-23 21:40:02 +08002754 struct batadv_tvlv_tt_change *tt_change)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002755{
Sven Eckelmanna5130882012-05-16 20:23:16 +02002756 _batadv_tt_update_changes(bat_priv, orig_node, tt_change,
2757 tt_num_changes, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002758
Antonio Quartullie8cf2342013-05-28 13:14:28 +02002759 batadv_tt_save_orig_buffer(bat_priv, orig_node, tt_change,
2760 batadv_tt_len(tt_num_changes));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002761 atomic_set(&orig_node->last_ttvn, ttvn);
2762}
2763
Antonio Quartullic018ad32013-06-04 12:11:39 +02002764/**
2765 * batadv_is_my_client - check if a client is served by the local node
2766 * @bat_priv: the bat priv with all the soft interface information
2767 * @addr: the mac adress of the client to check
2768 * @vid: VLAN identifier
2769 *
2770 * Returns true if the client is served by this node, false otherwise.
2771 */
2772bool batadv_is_my_client(struct batadv_priv *bat_priv, const uint8_t *addr,
2773 unsigned short vid)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002774{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002775 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002776 bool ret = false;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002777
Antonio Quartullic018ad32013-06-04 12:11:39 +02002778 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002779 if (!tt_local_entry)
2780 goto out;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002781 /* Check if the client has been logically deleted (but is kept for
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002782 * consistency purpose)
2783 */
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02002784 if ((tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING) ||
2785 (tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM))
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002786 goto out;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002787 ret = true;
2788out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02002789 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02002790 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002791 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002792}
2793
Marek Lindner335fbe02013-04-23 21:40:02 +08002794/**
2795 * batadv_handle_tt_response - process incoming tt reply
2796 * @bat_priv: the bat priv with all the soft interface information
2797 * @tt_data: tt data containing the tt request information
2798 * @resp_src: mac address of tt reply sender
2799 * @num_entries: number of tt change entries appended to the tt data
2800 */
2801static void batadv_handle_tt_response(struct batadv_priv *bat_priv,
2802 struct batadv_tvlv_tt_data *tt_data,
2803 uint8_t *resp_src, uint16_t num_entries)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002804{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002805 struct batadv_tt_req_node *node, *safe;
2806 struct batadv_orig_node *orig_node = NULL;
Marek Lindner335fbe02013-04-23 21:40:02 +08002807 struct batadv_tvlv_tt_change *tt_change;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002808 uint8_t *tvlv_ptr = (uint8_t *)tt_data;
2809 uint16_t change_offset;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002810
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002811 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002812 "Received TT_RESPONSE from %pM for ttvn %d t_size: %d [%c]\n",
Marek Lindner335fbe02013-04-23 21:40:02 +08002813 resp_src, tt_data->ttvn, num_entries,
2814 (tt_data->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002815
Marek Lindner335fbe02013-04-23 21:40:02 +08002816 orig_node = batadv_orig_hash_find(bat_priv, resp_src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002817 if (!orig_node)
2818 goto out;
2819
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002820 spin_lock_bh(&orig_node->tt_lock);
2821
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002822 change_offset = sizeof(struct batadv_tvlv_tt_vlan_data);
2823 change_offset *= ntohs(tt_data->num_vlan);
2824 change_offset += sizeof(*tt_data);
2825 tvlv_ptr += change_offset;
2826
2827 tt_change = (struct batadv_tvlv_tt_change *)tvlv_ptr;
Marek Lindner335fbe02013-04-23 21:40:02 +08002828 if (tt_data->flags & BATADV_TT_FULL_TABLE) {
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002829 batadv_tt_fill_gtable(bat_priv, tt_change, tt_data->ttvn,
2830 resp_src, num_entries);
Sven Eckelmann96412692012-06-05 22:31:30 +02002831 } else {
Marek Lindner335fbe02013-04-23 21:40:02 +08002832 batadv_tt_update_changes(bat_priv, orig_node, num_entries,
2833 tt_data->ttvn, tt_change);
Sven Eckelmann96412692012-06-05 22:31:30 +02002834 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002835
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002836 /* Recalculate the CRC for this orig_node and store it */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002837 batadv_tt_global_update_crc(bat_priv, orig_node);
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02002838
2839 spin_unlock_bh(&orig_node->tt_lock);
2840
Antonio Quartullia73105b2011-04-27 14:27:44 +02002841 /* Delete the tt_req_node from pending tt_requests list */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002842 spin_lock_bh(&bat_priv->tt.req_list_lock);
2843 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Marek Lindner335fbe02013-04-23 21:40:02 +08002844 if (!batadv_compare_eth(node->addr, resp_src))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002845 continue;
2846 list_del(&node->list);
2847 kfree(node);
2848 }
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02002849
Sven Eckelmann807736f2012-07-15 22:26:51 +02002850 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002851out:
2852 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002853 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002854}
2855
Sven Eckelmann56303d32012-06-05 22:31:31 +02002856static void batadv_tt_roam_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002857{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002858 struct batadv_tt_roam_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002859
Sven Eckelmann807736f2012-07-15 22:26:51 +02002860 spin_lock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002861
Sven Eckelmann807736f2012-07-15 22:26:51 +02002862 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
Antonio Quartullicc47f662011-04-27 14:27:57 +02002863 list_del(&node->list);
2864 kfree(node);
2865 }
2866
Sven Eckelmann807736f2012-07-15 22:26:51 +02002867 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002868}
2869
Sven Eckelmann56303d32012-06-05 22:31:31 +02002870static void batadv_tt_roam_purge(struct batadv_priv *bat_priv)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002871{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002872 struct batadv_tt_roam_node *node, *safe;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002873
Sven Eckelmann807736f2012-07-15 22:26:51 +02002874 spin_lock_bh(&bat_priv->tt.roam_list_lock);
2875 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002876 if (!batadv_has_timed_out(node->first_time,
2877 BATADV_ROAMING_MAX_TIME))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002878 continue;
2879
2880 list_del(&node->list);
2881 kfree(node);
2882 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02002883 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002884}
2885
2886/* This function checks whether the client already reached the
2887 * maximum number of possible roaming phases. In this case the ROAMING_ADV
2888 * will not be sent.
2889 *
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002890 * returns true if the ROAMING_ADV can be sent, false otherwise
2891 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002892static bool batadv_tt_check_roam_count(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002893 uint8_t *client)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002894{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002895 struct batadv_tt_roam_node *tt_roam_node;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002896 bool ret = false;
2897
Sven Eckelmann807736f2012-07-15 22:26:51 +02002898 spin_lock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002899 /* The new tt_req will be issued only if I'm not waiting for a
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002900 * reply from the same orig_node yet
2901 */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002902 list_for_each_entry(tt_roam_node, &bat_priv->tt.roam_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002903 if (!batadv_compare_eth(tt_roam_node->addr, client))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002904 continue;
2905
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002906 if (batadv_has_timed_out(tt_roam_node->first_time,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002907 BATADV_ROAMING_MAX_TIME))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002908 continue;
2909
Sven Eckelmann3e348192012-05-16 20:23:22 +02002910 if (!batadv_atomic_dec_not_zero(&tt_roam_node->counter))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002911 /* Sorry, you roamed too many times! */
2912 goto unlock;
2913 ret = true;
2914 break;
2915 }
2916
2917 if (!ret) {
2918 tt_roam_node = kmalloc(sizeof(*tt_roam_node), GFP_ATOMIC);
2919 if (!tt_roam_node)
2920 goto unlock;
2921
2922 tt_roam_node->first_time = jiffies;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002923 atomic_set(&tt_roam_node->counter,
2924 BATADV_ROAMING_MAX_COUNT - 1);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002925 memcpy(tt_roam_node->addr, client, ETH_ALEN);
2926
Sven Eckelmann807736f2012-07-15 22:26:51 +02002927 list_add(&tt_roam_node->list, &bat_priv->tt.roam_list);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002928 ret = true;
2929 }
2930
2931unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02002932 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002933 return ret;
2934}
2935
Antonio Quartullic018ad32013-06-04 12:11:39 +02002936/**
2937 * batadv_send_roam_adv - send a roaming advertisement message
2938 * @bat_priv: the bat priv with all the soft interface information
2939 * @client: mac address of the roaming client
2940 * @vid: VLAN identifier
2941 * @orig_node: message destination
2942 *
2943 * Send a ROAMING_ADV message to the node which was previously serving this
2944 * client. This is done to inform the node that from now on all traffic destined
2945 * for this particular roamed client has to be forwarded to the sender of the
2946 * roaming message.
2947 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002948static void batadv_send_roam_adv(struct batadv_priv *bat_priv, uint8_t *client,
Antonio Quartullic018ad32013-06-04 12:11:39 +02002949 unsigned short vid,
Sven Eckelmann56303d32012-06-05 22:31:31 +02002950 struct batadv_orig_node *orig_node)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002951{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002952 struct batadv_hard_iface *primary_if;
Marek Lindner122edaa2013-04-23 21:40:03 +08002953 struct batadv_tvlv_roam_adv tvlv_roam;
2954
2955 primary_if = batadv_primary_if_get_selected(bat_priv);
2956 if (!primary_if)
2957 goto out;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002958
2959 /* before going on we have to check whether the client has
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002960 * already roamed to us too many times
2961 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002962 if (!batadv_tt_check_roam_count(bat_priv, client))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002963 goto out;
2964
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002965 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02002966 "Sending ROAMING_ADV to %pM (client %pM, vid: %d)\n",
2967 orig_node->orig, client, BATADV_PRINT_VID(vid));
Antonio Quartullicc47f662011-04-27 14:27:57 +02002968
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002969 batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02002970
Marek Lindner122edaa2013-04-23 21:40:03 +08002971 memcpy(tvlv_roam.client, client, sizeof(tvlv_roam.client));
Antonio Quartullic018ad32013-06-04 12:11:39 +02002972 tvlv_roam.vid = htons(vid);
Marek Lindner122edaa2013-04-23 21:40:03 +08002973
2974 batadv_tvlv_unicast_send(bat_priv, primary_if->net_dev->dev_addr,
2975 orig_node->orig, BATADV_TVLV_ROAM, 1,
2976 &tvlv_roam, sizeof(tvlv_roam));
Antonio Quartullicc47f662011-04-27 14:27:57 +02002977
2978out:
Marek Lindner122edaa2013-04-23 21:40:03 +08002979 if (primary_if)
2980 batadv_hardif_free_ref(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002981}
2982
Sven Eckelmanna5130882012-05-16 20:23:16 +02002983static void batadv_tt_purge(struct work_struct *work)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002984{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002985 struct delayed_work *delayed_work;
Sven Eckelmann807736f2012-07-15 22:26:51 +02002986 struct batadv_priv_tt *priv_tt;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002987 struct batadv_priv *bat_priv;
2988
2989 delayed_work = container_of(work, struct delayed_work, work);
Sven Eckelmann807736f2012-07-15 22:26:51 +02002990 priv_tt = container_of(delayed_work, struct batadv_priv_tt, work);
2991 bat_priv = container_of(priv_tt, struct batadv_priv, tt);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002992
Marek Lindnera19d3d82013-05-27 15:33:25 +08002993 batadv_tt_local_purge(bat_priv, BATADV_TT_LOCAL_TIMEOUT);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002994 batadv_tt_global_purge(bat_priv);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002995 batadv_tt_req_purge(bat_priv);
2996 batadv_tt_roam_purge(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002997
Antonio Quartulli72414442012-12-25 13:14:37 +01002998 queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work,
2999 msecs_to_jiffies(BATADV_TT_WORK_PERIOD));
Antonio Quartullia73105b2011-04-27 14:27:44 +02003000}
Antonio Quartullicc47f662011-04-27 14:27:57 +02003001
Sven Eckelmann56303d32012-06-05 22:31:31 +02003002void batadv_tt_free(struct batadv_priv *bat_priv)
Antonio Quartullicc47f662011-04-27 14:27:57 +02003003{
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003004 batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_TT, 1);
3005 batadv_tvlv_handler_unregister(bat_priv, BATADV_TVLV_TT, 1);
3006
Sven Eckelmann807736f2012-07-15 22:26:51 +02003007 cancel_delayed_work_sync(&bat_priv->tt.work);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003008
Sven Eckelmanna5130882012-05-16 20:23:16 +02003009 batadv_tt_local_table_free(bat_priv);
3010 batadv_tt_global_table_free(bat_priv);
3011 batadv_tt_req_list_free(bat_priv);
3012 batadv_tt_changes_list_free(bat_priv);
3013 batadv_tt_roam_list_free(bat_priv);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003014
Sven Eckelmann807736f2012-07-15 22:26:51 +02003015 kfree(bat_priv->tt.last_changeset);
Antonio Quartullicc47f662011-04-27 14:27:57 +02003016}
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003017
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003018/**
3019 * batadv_tt_local_set_flags - set or unset the specified flags on the local
3020 * table and possibly count them in the TT size
3021 * @bat_priv: the bat priv with all the soft interface information
3022 * @flags: the flag to switch
3023 * @enable: whether to set or unset the flag
3024 * @count: whether to increase the TT size by the number of changed entries
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003025 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003026static void batadv_tt_local_set_flags(struct batadv_priv *bat_priv,
3027 uint16_t flags, bool enable, bool count)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003028{
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003029 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
3030 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli697f2532011-11-07 16:47:01 +01003031 uint16_t changed_num = 0;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003032 struct hlist_head *head;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003033 uint32_t i;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003034
3035 if (!hash)
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003036 return;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003037
3038 for (i = 0; i < hash->size; i++) {
3039 head = &hash->table[i];
3040
3041 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003042 hlist_for_each_entry_rcu(tt_common_entry,
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003043 head, hash_entry) {
Antonio Quartulli697f2532011-11-07 16:47:01 +01003044 if (enable) {
3045 if ((tt_common_entry->flags & flags) == flags)
3046 continue;
3047 tt_common_entry->flags |= flags;
3048 } else {
3049 if (!(tt_common_entry->flags & flags))
3050 continue;
3051 tt_common_entry->flags &= ~flags;
3052 }
3053 changed_num++;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003054
3055 if (!count)
3056 continue;
3057
3058 batadv_tt_local_size_inc(bat_priv,
3059 tt_common_entry->vid);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003060 }
3061 rcu_read_unlock();
3062 }
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003063}
3064
Sven Eckelmannacd34af2012-06-03 22:19:21 +02003065/* Purge out all the tt local entries marked with BATADV_TT_CLIENT_PENDING */
Sven Eckelmann56303d32012-06-05 22:31:31 +02003066static void batadv_tt_local_purge_pending_clients(struct batadv_priv *bat_priv)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003067{
Sven Eckelmann807736f2012-07-15 22:26:51 +02003068 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02003069 struct batadv_tt_common_entry *tt_common;
3070 struct batadv_tt_local_entry *tt_local;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003071 struct hlist_node *node_tmp;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003072 struct hlist_head *head;
3073 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02003074 uint32_t i;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003075
3076 if (!hash)
3077 return;
3078
3079 for (i = 0; i < hash->size; i++) {
3080 head = &hash->table[i];
3081 list_lock = &hash->list_locks[i];
3082
3083 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08003084 hlist_for_each_entry_safe(tt_common, node_tmp, head,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02003085 hash_entry) {
3086 if (!(tt_common->flags & BATADV_TT_CLIENT_PENDING))
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003087 continue;
3088
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003089 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02003090 "Deleting local tt entry (%pM, vid: %d): pending\n",
3091 tt_common->addr,
3092 BATADV_PRINT_VID(tt_common->vid));
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003093
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003094 batadv_tt_local_size_dec(bat_priv, tt_common->vid);
Sasha Levinb67bfe02013-02-27 17:06:00 -08003095 hlist_del_rcu(&tt_common->hash_entry);
Sven Eckelmann56303d32012-06-05 22:31:31 +02003096 tt_local = container_of(tt_common,
3097 struct batadv_tt_local_entry,
3098 common);
3099 batadv_tt_local_entry_free_ref(tt_local);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003100 }
3101 spin_unlock_bh(list_lock);
3102 }
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003103}
3104
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003105/**
Marek Lindnera19d3d82013-05-27 15:33:25 +08003106 * batadv_tt_local_commit_changes_nolock - commit all pending local tt changes
3107 * which have been queued in the time since the last commit
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003108 * @bat_priv: the bat priv with all the soft interface information
Marek Lindnera19d3d82013-05-27 15:33:25 +08003109 *
3110 * Caller must hold tt->commit_lock.
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003111 */
Marek Lindnera19d3d82013-05-27 15:33:25 +08003112static void batadv_tt_local_commit_changes_nolock(struct batadv_priv *bat_priv)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003113{
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003114 if (atomic_read(&bat_priv->tt.local_changes) < 1) {
3115 if (!batadv_atomic_dec_not_zero(&bat_priv->tt.ogm_append_cnt))
3116 batadv_tt_tvlv_container_update(bat_priv);
Marek Lindnera19d3d82013-05-27 15:33:25 +08003117 return;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003118 }
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08003119
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003120 batadv_tt_local_set_flags(bat_priv, BATADV_TT_CLIENT_NEW, false, true);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08003121
Sven Eckelmanna5130882012-05-16 20:23:16 +02003122 batadv_tt_local_purge_pending_clients(bat_priv);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003123 batadv_tt_local_update_crc(bat_priv);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003124
3125 /* Increment the TTVN only once per OGM interval */
Sven Eckelmann807736f2012-07-15 22:26:51 +02003126 atomic_inc(&bat_priv->tt.vn);
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003127 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02003128 "Local changes committed, updating to ttvn %u\n",
Sven Eckelmann807736f2012-07-15 22:26:51 +02003129 (uint8_t)atomic_read(&bat_priv->tt.vn));
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08003130
3131 /* reset the sending counter */
Sven Eckelmann807736f2012-07-15 22:26:51 +02003132 atomic_set(&bat_priv->tt.ogm_append_cnt, BATADV_TT_OGM_APPEND_MAX);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003133 batadv_tt_tvlv_container_update(bat_priv);
Marek Lindnera19d3d82013-05-27 15:33:25 +08003134}
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003135
Marek Lindnera19d3d82013-05-27 15:33:25 +08003136/**
3137 * batadv_tt_local_commit_changes - commit all pending local tt changes which
3138 * have been queued in the time since the last commit
3139 * @bat_priv: the bat priv with all the soft interface information
3140 */
3141void batadv_tt_local_commit_changes(struct batadv_priv *bat_priv)
3142{
3143 spin_lock_bh(&bat_priv->tt.commit_lock);
3144 batadv_tt_local_commit_changes_nolock(bat_priv);
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003145 spin_unlock_bh(&bat_priv->tt.commit_lock);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02003146}
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003147
Sven Eckelmann56303d32012-06-05 22:31:31 +02003148bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, uint8_t *src,
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003149 uint8_t *dst, unsigned short vid)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003150{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003151 struct batadv_tt_local_entry *tt_local_entry = NULL;
3152 struct batadv_tt_global_entry *tt_global_entry = NULL;
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003153 struct batadv_softif_vlan *vlan;
Marek Lindner5870adc2012-06-20 17:16:05 +02003154 bool ret = false;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003155
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003156 vlan = batadv_softif_vlan_get(bat_priv, vid);
3157 if (!vlan || !atomic_read(&vlan->ap_isolation))
Marek Lindner5870adc2012-06-20 17:16:05 +02003158 goto out;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003159
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003160 tt_local_entry = batadv_tt_local_hash_find(bat_priv, dst, vid);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003161 if (!tt_local_entry)
3162 goto out;
3163
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003164 tt_global_entry = batadv_tt_global_hash_find(bat_priv, src, vid);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003165 if (!tt_global_entry)
3166 goto out;
3167
Antonio Quartulli1f129fe2012-06-25 20:49:50 +00003168 if (!_batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003169 goto out;
3170
Marek Lindner5870adc2012-06-20 17:16:05 +02003171 ret = true;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003172
3173out:
Antonio Quartullib8cbd812013-07-02 11:04:36 +02003174 if (vlan)
3175 batadv_softif_vlan_free_ref(vlan);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003176 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02003177 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003178 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02003179 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02003180 return ret;
3181}
Marek Lindnera943cac2011-07-30 13:10:18 +02003182
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003183/**
3184 * batadv_tt_update_orig - update global translation table with new tt
3185 * information received via ogms
3186 * @bat_priv: the bat priv with all the soft interface information
3187 * @orig: the orig_node of the ogm
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003188 * @tt_vlan: pointer to the first tvlv VLAN entry
3189 * @tt_num_vlan: number of tvlv VLAN entries
3190 * @tt_change: pointer to the first entry in the TT buffer
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003191 * @tt_num_changes: number of tt changes inside the tt buffer
3192 * @ttvn: translation table version number of this changeset
Antonio Quartulliced72932013-04-24 16:37:51 +02003193 * @tt_crc: crc32 checksum of orig node's translation table
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003194 */
3195static void batadv_tt_update_orig(struct batadv_priv *bat_priv,
3196 struct batadv_orig_node *orig_node,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003197 const void *tt_buff, uint16_t tt_num_vlan,
3198 struct batadv_tvlv_tt_change *tt_change,
3199 uint16_t tt_num_changes, uint8_t ttvn)
Marek Lindnera943cac2011-07-30 13:10:18 +02003200{
3201 uint8_t orig_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003202 struct batadv_tvlv_tt_vlan_data *tt_vlan;
Marek Lindnera943cac2011-07-30 13:10:18 +02003203 bool full_table = true;
3204
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003205 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)tt_buff;
Antonio Quartulli17071572011-11-07 16:36:40 +01003206 /* orig table not initialised AND first diff is in the OGM OR the ttvn
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003207 * increased by one -> we can apply the attached changes
3208 */
Antonio Quartulli17071572011-11-07 16:36:40 +01003209 if ((!orig_node->tt_initialised && ttvn == 1) ||
3210 ttvn - orig_ttvn == 1) {
Marek Lindnera943cac2011-07-30 13:10:18 +02003211 /* the OGM could not contain the changes due to their size or
Sven Eckelmann42d0b042012-06-03 22:19:17 +02003212 * because they have already been sent BATADV_TT_OGM_APPEND_MAX
3213 * times.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003214 * In this case send a tt request
3215 */
Marek Lindnera943cac2011-07-30 13:10:18 +02003216 if (!tt_num_changes) {
3217 full_table = false;
3218 goto request_table;
3219 }
3220
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003221 spin_lock_bh(&orig_node->tt_lock);
3222
Marek Lindner335fbe02013-04-23 21:40:02 +08003223 tt_change = (struct batadv_tvlv_tt_change *)tt_buff;
Sven Eckelmanna5130882012-05-16 20:23:16 +02003224 batadv_tt_update_changes(bat_priv, orig_node, tt_num_changes,
Sven Eckelmann96412692012-06-05 22:31:30 +02003225 ttvn, tt_change);
Marek Lindnera943cac2011-07-30 13:10:18 +02003226
3227 /* Even if we received the precomputed crc with the OGM, we
3228 * prefer to recompute it to spot any possible inconsistency
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003229 * in the global table
3230 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003231 batadv_tt_global_update_crc(bat_priv, orig_node);
Marek Lindnera943cac2011-07-30 13:10:18 +02003232
Antonio Quartullia70a9aa2013-07-30 22:16:24 +02003233 spin_unlock_bh(&orig_node->tt_lock);
3234
Marek Lindnera943cac2011-07-30 13:10:18 +02003235 /* The ttvn alone is not enough to guarantee consistency
3236 * because a single value could represent different states
3237 * (due to the wrap around). Thus a node has to check whether
3238 * the resulting table (after applying the changes) is still
3239 * consistent or not. E.g. a node could disconnect while its
3240 * ttvn is X and reconnect on ttvn = X + TTVN_MAX: in this case
3241 * checking the CRC value is mandatory to detect the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003242 * inconsistency
3243 */
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003244 if (!batadv_tt_global_check_crc(orig_node, tt_vlan,
3245 tt_num_vlan))
Marek Lindnera943cac2011-07-30 13:10:18 +02003246 goto request_table;
Marek Lindnera943cac2011-07-30 13:10:18 +02003247 } else {
3248 /* if we missed more than one change or our tables are not
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02003249 * in sync anymore -> request fresh tt data
3250 */
Antonio Quartulli17071572011-11-07 16:36:40 +01003251 if (!orig_node->tt_initialised || ttvn != orig_ttvn ||
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003252 !batadv_tt_global_check_crc(orig_node, tt_vlan,
3253 tt_num_vlan)) {
Marek Lindnera943cac2011-07-30 13:10:18 +02003254request_table:
Sven Eckelmann39c75a52012-06-03 22:19:22 +02003255 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003256 "TT inconsistency for %pM. Need to retrieve the correct information (ttvn: %u last_ttvn: %u num_changes: %u)\n",
3257 orig_node->orig, ttvn, orig_ttvn,
3258 tt_num_changes);
Sven Eckelmanna5130882012-05-16 20:23:16 +02003259 batadv_send_tt_request(bat_priv, orig_node, ttvn,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003260 tt_vlan, tt_num_vlan,
3261 full_table);
Marek Lindnera943cac2011-07-30 13:10:18 +02003262 return;
3263 }
3264 }
3265}
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003266
Antonio Quartullic018ad32013-06-04 12:11:39 +02003267/**
3268 * batadv_tt_global_client_is_roaming - check if a client is marked as roaming
3269 * @bat_priv: the bat priv with all the soft interface information
3270 * @addr: the mac address of the client to check
3271 * @vid: VLAN identifier
3272 *
3273 * Returns true if we know that the client has moved from its old originator
3274 * to another one. This entry is still kept for consistency purposes and will be
3275 * deleted later by a DEL or because of timeout
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003276 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02003277bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003278 uint8_t *addr, unsigned short vid)
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003279{
Sven Eckelmann56303d32012-06-05 22:31:31 +02003280 struct batadv_tt_global_entry *tt_global_entry;
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003281 bool ret = false;
3282
Antonio Quartullic018ad32013-06-04 12:11:39 +02003283 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr, vid);
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003284 if (!tt_global_entry)
3285 goto out;
3286
Antonio Quartullic1d07432013-01-15 22:17:19 +10003287 ret = tt_global_entry->common.flags & BATADV_TT_CLIENT_ROAM;
Sven Eckelmanna5130882012-05-16 20:23:16 +02003288 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01003289out:
3290 return ret;
3291}
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003292
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003293/**
3294 * batadv_tt_local_client_is_roaming - tells whether the client is roaming
3295 * @bat_priv: the bat priv with all the soft interface information
Antonio Quartullic018ad32013-06-04 12:11:39 +02003296 * @addr: the mac address of the local client to query
3297 * @vid: VLAN identifier
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003298 *
3299 * Returns true if the local client is known to be roaming (it is not served by
3300 * this node anymore) or not. If yes, the client is still present in the table
3301 * to keep the latter consistent with the node TTVN
3302 */
3303bool batadv_tt_local_client_is_roaming(struct batadv_priv *bat_priv,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003304 uint8_t *addr, unsigned short vid)
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003305{
3306 struct batadv_tt_local_entry *tt_local_entry;
3307 bool ret = false;
3308
Antonio Quartullic018ad32013-06-04 12:11:39 +02003309 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr, vid);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003310 if (!tt_local_entry)
3311 goto out;
3312
3313 ret = tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM;
3314 batadv_tt_local_entry_free_ref(tt_local_entry);
3315out:
3316 return ret;
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02003317}
3318
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003319bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv,
3320 struct batadv_orig_node *orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003321 const unsigned char *addr,
Antonio Quartulli16052782013-06-04 12:11:41 +02003322 unsigned short vid)
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003323{
3324 bool ret = false;
3325
Antonio Quartulli16052782013-06-04 12:11:41 +02003326 if (!batadv_tt_global_add(bat_priv, orig_node, addr, vid,
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003327 BATADV_TT_CLIENT_TEMP,
3328 atomic_read(&orig_node->last_ttvn)))
3329 goto out;
3330
3331 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli16052782013-06-04 12:11:41 +02003332 "Added temporary global client (addr: %pM, vid: %d, orig: %pM)\n",
3333 addr, BATADV_PRINT_VID(vid), orig_node->orig);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02003334 ret = true;
3335out:
3336 return ret;
3337}
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003338
3339/**
Marek Lindnera19d3d82013-05-27 15:33:25 +08003340 * batadv_tt_local_resize_to_mtu - resize the local translation table fit the
3341 * maximum packet size that can be transported through the mesh
3342 * @soft_iface: netdev struct of the mesh interface
3343 *
3344 * Remove entries older than 'timeout' and half timeout if more entries need
3345 * to be removed.
3346 */
3347void batadv_tt_local_resize_to_mtu(struct net_device *soft_iface)
3348{
3349 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
3350 int packet_size_max = atomic_read(&bat_priv->packet_size_max);
3351 int table_size, timeout = BATADV_TT_LOCAL_TIMEOUT / 2;
3352 bool reduced = false;
3353
3354 spin_lock_bh(&bat_priv->tt.commit_lock);
3355
3356 while (true) {
3357 table_size = batadv_tt_local_table_transmit_size(bat_priv);
3358 if (packet_size_max >= table_size)
3359 break;
3360
3361 batadv_tt_local_purge(bat_priv, timeout);
3362 batadv_tt_local_purge_pending_clients(bat_priv);
3363
3364 timeout /= 2;
3365 reduced = true;
3366 net_ratelimited_function(batadv_info, soft_iface,
3367 "Forced to purge local tt entries to fit new maximum fragment MTU (%i)\n",
3368 packet_size_max);
3369 }
3370
3371 /* commit these changes immediately, to avoid synchronization problem
3372 * with the TTVN
3373 */
3374 if (reduced)
3375 batadv_tt_local_commit_changes_nolock(bat_priv);
3376
3377 spin_unlock_bh(&bat_priv->tt.commit_lock);
3378}
3379
3380/**
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003381 * batadv_tt_tvlv_ogm_handler_v1 - process incoming tt tvlv container
3382 * @bat_priv: the bat priv with all the soft interface information
3383 * @orig: the orig_node of the ogm
3384 * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags)
3385 * @tvlv_value: tvlv buffer containing the gateway data
3386 * @tvlv_value_len: tvlv buffer length
3387 */
3388static void batadv_tt_tvlv_ogm_handler_v1(struct batadv_priv *bat_priv,
3389 struct batadv_orig_node *orig,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003390 uint8_t flags, void *tvlv_value,
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003391 uint16_t tvlv_value_len)
3392{
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003393 struct batadv_tvlv_tt_vlan_data *tt_vlan;
3394 struct batadv_tvlv_tt_change *tt_change;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003395 struct batadv_tvlv_tt_data *tt_data;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003396 uint16_t num_entries, num_vlan;
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003397
3398 if (tvlv_value_len < sizeof(*tt_data))
3399 return;
3400
3401 tt_data = (struct batadv_tvlv_tt_data *)tvlv_value;
3402 tvlv_value_len -= sizeof(*tt_data);
3403
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003404 num_vlan = ntohs(tt_data->num_vlan);
3405
3406 if (tvlv_value_len < sizeof(*tt_vlan) * num_vlan)
3407 return;
3408
3409 tt_vlan = (struct batadv_tvlv_tt_vlan_data *)(tt_data + 1);
3410 tt_change = (struct batadv_tvlv_tt_change *)(tt_vlan + num_vlan);
3411 tvlv_value_len -= sizeof(*tt_vlan) * num_vlan;
3412
Antonio Quartulli298e6e62013-05-28 13:14:27 +02003413 num_entries = batadv_tt_entries(tvlv_value_len);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003414
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003415 batadv_tt_update_orig(bat_priv, orig, tt_vlan, num_vlan, tt_change,
3416 num_entries, tt_data->ttvn);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003417}
3418
3419/**
Marek Lindner335fbe02013-04-23 21:40:02 +08003420 * batadv_tt_tvlv_unicast_handler_v1 - process incoming (unicast) tt tvlv
3421 * container
3422 * @bat_priv: the bat priv with all the soft interface information
3423 * @src: mac address of tt tvlv sender
3424 * @dst: mac address of tt tvlv recipient
3425 * @tvlv_value: tvlv buffer containing the tt data
3426 * @tvlv_value_len: tvlv buffer length
3427 *
3428 * Returns NET_RX_DROP if the tt tvlv is to be re-routed, NET_RX_SUCCESS
3429 * otherwise.
3430 */
3431static int batadv_tt_tvlv_unicast_handler_v1(struct batadv_priv *bat_priv,
3432 uint8_t *src, uint8_t *dst,
3433 void *tvlv_value,
3434 uint16_t tvlv_value_len)
3435{
3436 struct batadv_tvlv_tt_data *tt_data;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003437 uint16_t tt_vlan_len, tt_num_entries;
Marek Lindner335fbe02013-04-23 21:40:02 +08003438 char tt_flag;
3439 bool ret;
3440
3441 if (tvlv_value_len < sizeof(*tt_data))
3442 return NET_RX_SUCCESS;
3443
3444 tt_data = (struct batadv_tvlv_tt_data *)tvlv_value;
3445 tvlv_value_len -= sizeof(*tt_data);
3446
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003447 tt_vlan_len = sizeof(struct batadv_tvlv_tt_vlan_data);
3448 tt_vlan_len *= ntohs(tt_data->num_vlan);
3449
3450 if (tvlv_value_len < tt_vlan_len)
3451 return NET_RX_SUCCESS;
3452
3453 tvlv_value_len -= tt_vlan_len;
3454 tt_num_entries = batadv_tt_entries(tvlv_value_len);
Marek Lindner335fbe02013-04-23 21:40:02 +08003455
3456 switch (tt_data->flags & BATADV_TT_DATA_TYPE_MASK) {
3457 case BATADV_TT_REQUEST:
3458 batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_RX);
3459
3460 /* If this node cannot provide a TT response the tt_request is
3461 * forwarded
3462 */
3463 ret = batadv_send_tt_response(bat_priv, tt_data, src, dst);
3464 if (!ret) {
3465 if (tt_data->flags & BATADV_TT_FULL_TABLE)
3466 tt_flag = 'F';
3467 else
3468 tt_flag = '.';
3469
3470 batadv_dbg(BATADV_DBG_TT, bat_priv,
3471 "Routing TT_REQUEST to %pM [%c]\n",
3472 dst, tt_flag);
3473 /* tvlv API will re-route the packet */
3474 return NET_RX_DROP;
3475 }
3476 break;
3477 case BATADV_TT_RESPONSE:
3478 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_RX);
3479
3480 if (batadv_is_my_mac(bat_priv, dst)) {
3481 batadv_handle_tt_response(bat_priv, tt_data,
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +02003482 src, tt_num_entries);
Marek Lindner335fbe02013-04-23 21:40:02 +08003483 return NET_RX_SUCCESS;
3484 }
3485
3486 if (tt_data->flags & BATADV_TT_FULL_TABLE)
3487 tt_flag = 'F';
3488 else
3489 tt_flag = '.';
3490
3491 batadv_dbg(BATADV_DBG_TT, bat_priv,
3492 "Routing TT_RESPONSE to %pM [%c]\n", dst, tt_flag);
3493
3494 /* tvlv API will re-route the packet */
3495 return NET_RX_DROP;
3496 }
3497
3498 return NET_RX_SUCCESS;
3499}
3500
3501/**
Marek Lindner122edaa2013-04-23 21:40:03 +08003502 * batadv_roam_tvlv_unicast_handler_v1 - process incoming tt roam tvlv container
3503 * @bat_priv: the bat priv with all the soft interface information
3504 * @src: mac address of tt tvlv sender
3505 * @dst: mac address of tt tvlv recipient
3506 * @tvlv_value: tvlv buffer containing the tt data
3507 * @tvlv_value_len: tvlv buffer length
3508 *
3509 * Returns NET_RX_DROP if the tt roam tvlv is to be re-routed, NET_RX_SUCCESS
3510 * otherwise.
3511 */
3512static int batadv_roam_tvlv_unicast_handler_v1(struct batadv_priv *bat_priv,
3513 uint8_t *src, uint8_t *dst,
3514 void *tvlv_value,
3515 uint16_t tvlv_value_len)
3516{
3517 struct batadv_tvlv_roam_adv *roaming_adv;
3518 struct batadv_orig_node *orig_node = NULL;
3519
3520 /* If this node is not the intended recipient of the
3521 * roaming advertisement the packet is forwarded
3522 * (the tvlv API will re-route the packet).
3523 */
3524 if (!batadv_is_my_mac(bat_priv, dst))
3525 return NET_RX_DROP;
3526
Marek Lindner122edaa2013-04-23 21:40:03 +08003527 if (tvlv_value_len < sizeof(*roaming_adv))
3528 goto out;
3529
3530 orig_node = batadv_orig_hash_find(bat_priv, src);
3531 if (!orig_node)
3532 goto out;
3533
3534 batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_RX);
3535 roaming_adv = (struct batadv_tvlv_roam_adv *)tvlv_value;
3536
3537 batadv_dbg(BATADV_DBG_TT, bat_priv,
3538 "Received ROAMING_ADV from %pM (client %pM)\n",
3539 src, roaming_adv->client);
3540
3541 batadv_tt_global_add(bat_priv, orig_node, roaming_adv->client,
Antonio Quartullic018ad32013-06-04 12:11:39 +02003542 ntohs(roaming_adv->vid), BATADV_TT_CLIENT_ROAM,
Marek Lindner122edaa2013-04-23 21:40:03 +08003543 atomic_read(&orig_node->last_ttvn) + 1);
3544
3545out:
3546 if (orig_node)
3547 batadv_orig_node_free_ref(orig_node);
3548 return NET_RX_SUCCESS;
3549}
3550
3551/**
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003552 * batadv_tt_init - initialise the translation table internals
3553 * @bat_priv: the bat priv with all the soft interface information
3554 *
3555 * Return 0 on success or negative error number in case of failure.
3556 */
3557int batadv_tt_init(struct batadv_priv *bat_priv)
3558{
3559 int ret;
3560
Antonio Quartulli0eb015682013-10-13 02:50:20 +02003561 /* synchronized flags must be remote */
3562 BUILD_BUG_ON(!(BATADV_TT_SYNC_MASK & BATADV_TT_REMOTE_MASK));
3563
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003564 ret = batadv_tt_local_init(bat_priv);
3565 if (ret < 0)
3566 return ret;
3567
3568 ret = batadv_tt_global_init(bat_priv);
3569 if (ret < 0)
3570 return ret;
3571
3572 batadv_tvlv_handler_register(bat_priv, batadv_tt_tvlv_ogm_handler_v1,
Marek Lindner335fbe02013-04-23 21:40:02 +08003573 batadv_tt_tvlv_unicast_handler_v1,
3574 BATADV_TVLV_TT, 1, BATADV_NO_FLAGS);
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003575
Marek Lindner122edaa2013-04-23 21:40:03 +08003576 batadv_tvlv_handler_register(bat_priv, NULL,
3577 batadv_roam_tvlv_unicast_handler_v1,
3578 BATADV_TVLV_ROAM, 1, BATADV_NO_FLAGS);
3579
Marek Lindnere1bf0c12013-04-23 21:40:01 +08003580 INIT_DELAYED_WORK(&bat_priv->tt.work, batadv_tt_purge);
3581 queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work,
3582 msecs_to_jiffies(BATADV_TT_WORK_PERIOD));
3583
3584 return 1;
3585}