blob: c6fd0b760d3e8a2f8b4c9310ad608fa367731fb4 [file] [log] [blame]
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001/* Copyright (C) 2007-2012 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
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018 */
19
20#include "main.h"
21#include "translation-table.h"
22#include "soft-interface.h"
Marek Lindner32ae9b22011-04-20 15:40:58 +020023#include "hard-interface.h"
Antonio Quartullia73105b2011-04-27 14:27:44 +020024#include "send.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000025#include "hash.h"
26#include "originator.h"
Antonio Quartullia73105b2011-04-27 14:27:44 +020027#include "routing.h"
Simon Wunderlich20ff9d52012-01-22 20:00:23 +010028#include "bridge_loop_avoidance.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000029
Antonio Quartullia73105b2011-04-27 14:27:44 +020030#include <linux/crc16.h>
31
Antonio Quartullidec05072012-11-10 11:00:32 +010032/* hash class keys */
33static struct lock_class_key batadv_tt_local_hash_lock_class_key;
34static struct lock_class_key batadv_tt_global_hash_lock_class_key;
35
Sven Eckelmann56303d32012-06-05 22:31:31 +020036static void batadv_send_roam_adv(struct batadv_priv *bat_priv, uint8_t *client,
37 struct batadv_orig_node *orig_node);
Sven Eckelmanna5130882012-05-16 20:23:16 +020038static void batadv_tt_purge(struct work_struct *work);
39static void
Sven Eckelmann56303d32012-06-05 22:31:31 +020040batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry);
Antonio Quartulli30cfd022012-07-05 23:38:29 +020041static void batadv_tt_global_del(struct batadv_priv *bat_priv,
42 struct batadv_orig_node *orig_node,
43 const unsigned char *addr,
44 const char *message, 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
52 return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
53}
54
Sven Eckelmann56303d32012-06-05 22:31:31 +020055static void batadv_tt_start_timer(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056{
Sven Eckelmann807736f2012-07-15 22:26:51 +020057 INIT_DELAYED_WORK(&bat_priv->tt.work, batadv_tt_purge);
58 queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work,
Antonio Quartullia73105b2011-04-27 14:27:44 +020059 msecs_to_jiffies(5000));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060}
61
Sven Eckelmann56303d32012-06-05 22:31:31 +020062static struct batadv_tt_common_entry *
Sven Eckelmann5bf74e92012-06-05 22:31:28 +020063batadv_tt_hash_find(struct batadv_hashtable *hash, const void *data)
Marek Lindner7aadf882011-02-18 12:28:09 +000064{
Marek Lindner7aadf882011-02-18 12:28:09 +000065 struct hlist_head *head;
66 struct hlist_node *node;
Sven Eckelmann56303d32012-06-05 22:31:31 +020067 struct batadv_tt_common_entry *tt_common_entry;
68 struct batadv_tt_common_entry *tt_common_entry_tmp = NULL;
Antonio Quartullic90681b2011-10-05 17:05:25 +020069 uint32_t index;
Marek Lindner7aadf882011-02-18 12:28:09 +000070
71 if (!hash)
72 return NULL;
73
Sven Eckelmannda641192012-05-12 13:48:56 +020074 index = batadv_choose_orig(data, hash->size);
Marek Lindner7aadf882011-02-18 12:28:09 +000075 head = &hash->table[index];
76
77 rcu_read_lock();
Antonio Quartulli48100ba2011-10-30 12:17:33 +010078 hlist_for_each_entry_rcu(tt_common_entry, node, head, hash_entry) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +020079 if (!batadv_compare_eth(tt_common_entry, data))
Marek Lindner7aadf882011-02-18 12:28:09 +000080 continue;
81
Antonio Quartulli48100ba2011-10-30 12:17:33 +010082 if (!atomic_inc_not_zero(&tt_common_entry->refcount))
Antonio Quartulli7683fdc2011-04-27 14:28:07 +020083 continue;
84
Antonio Quartulli48100ba2011-10-30 12:17:33 +010085 tt_common_entry_tmp = tt_common_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +000086 break;
87 }
88 rcu_read_unlock();
89
Antonio Quartulli48100ba2011-10-30 12:17:33 +010090 return tt_common_entry_tmp;
91}
92
Sven Eckelmann56303d32012-06-05 22:31:31 +020093static struct batadv_tt_local_entry *
94batadv_tt_local_hash_find(struct batadv_priv *bat_priv, const void *data)
Antonio Quartulli48100ba2011-10-30 12:17:33 +010095{
Sven Eckelmann56303d32012-06-05 22:31:31 +020096 struct batadv_tt_common_entry *tt_common_entry;
97 struct batadv_tt_local_entry *tt_local_entry = NULL;
Antonio Quartulli48100ba2011-10-30 12:17:33 +010098
Sven Eckelmann807736f2012-07-15 22:26:51 +020099 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.local_hash, data);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100100 if (tt_common_entry)
101 tt_local_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200102 struct batadv_tt_local_entry,
103 common);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100104 return tt_local_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000105}
106
Sven Eckelmann56303d32012-06-05 22:31:31 +0200107static struct batadv_tt_global_entry *
108batadv_tt_global_hash_find(struct batadv_priv *bat_priv, const void *data)
Marek Lindner7aadf882011-02-18 12:28:09 +0000109{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200110 struct batadv_tt_common_entry *tt_common_entry;
111 struct batadv_tt_global_entry *tt_global_entry = NULL;
Marek Lindner7aadf882011-02-18 12:28:09 +0000112
Sven Eckelmann807736f2012-07-15 22:26:51 +0200113 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.global_hash, data);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100114 if (tt_common_entry)
115 tt_global_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200116 struct batadv_tt_global_entry,
117 common);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100118 return tt_global_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000119
Marek Lindner7aadf882011-02-18 12:28:09 +0000120}
121
Sven Eckelmanna5130882012-05-16 20:23:16 +0200122static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200123batadv_tt_local_entry_free_ref(struct batadv_tt_local_entry *tt_local_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200124{
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100125 if (atomic_dec_and_test(&tt_local_entry->common.refcount))
126 kfree_rcu(tt_local_entry, common.rcu);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200127}
128
Sven Eckelmanna5130882012-05-16 20:23:16 +0200129static void batadv_tt_global_entry_free_rcu(struct rcu_head *rcu)
Simon Wunderlich531027f2011-10-19 11:02:25 +0200130{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200131 struct batadv_tt_common_entry *tt_common_entry;
132 struct batadv_tt_global_entry *tt_global_entry;
Simon Wunderlich531027f2011-10-19 11:02:25 +0200133
Sven Eckelmann56303d32012-06-05 22:31:31 +0200134 tt_common_entry = container_of(rcu, struct batadv_tt_common_entry, rcu);
135 tt_global_entry = container_of(tt_common_entry,
136 struct batadv_tt_global_entry, common);
Simon Wunderlich531027f2011-10-19 11:02:25 +0200137
Simon Wunderlich531027f2011-10-19 11:02:25 +0200138 kfree(tt_global_entry);
139}
140
Sven Eckelmanna5130882012-05-16 20:23:16 +0200141static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200142batadv_tt_global_entry_free_ref(struct batadv_tt_global_entry *tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200143{
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200144 if (atomic_dec_and_test(&tt_global_entry->common.refcount)) {
Sven Eckelmanna5130882012-05-16 20:23:16 +0200145 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100146 call_rcu(&tt_global_entry->common.rcu,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200147 batadv_tt_global_entry_free_rcu);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200148 }
149}
150
Sven Eckelmanna5130882012-05-16 20:23:16 +0200151static void batadv_tt_orig_list_entry_free_rcu(struct rcu_head *rcu)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200152{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200153 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200154
Sven Eckelmann56303d32012-06-05 22:31:31 +0200155 orig_entry = container_of(rcu, struct batadv_tt_orig_list_entry, rcu);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200156 batadv_orig_node_free_ref(orig_entry->orig_node);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200157 kfree(orig_entry);
158}
159
Sven Eckelmanna5130882012-05-16 20:23:16 +0200160static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200161batadv_tt_orig_list_entry_free_ref(struct batadv_tt_orig_list_entry *orig_entry)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200162{
Antonio Quartullid657e622012-07-01 14:09:12 +0200163 if (!atomic_dec_and_test(&orig_entry->refcount))
164 return;
Antonio Quartulli29cb99d2012-06-25 20:49:51 +0000165 /* to avoid race conditions, immediately decrease the tt counter */
166 atomic_dec(&orig_entry->orig_node->tt_size);
Sven Eckelmanna5130882012-05-16 20:23:16 +0200167 call_rcu(&orig_entry->rcu, batadv_tt_orig_list_entry_free_rcu);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200168}
169
Sven Eckelmann56303d32012-06-05 22:31:31 +0200170static void batadv_tt_local_event(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200171 const uint8_t *addr, uint8_t flags)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200172{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200173 struct batadv_tt_change_node *tt_change_node, *entry, *safe;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200174 bool event_removed = false;
175 bool del_op_requested, del_op_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200176
177 tt_change_node = kmalloc(sizeof(*tt_change_node), GFP_ATOMIC);
178
179 if (!tt_change_node)
180 return;
181
Antonio Quartulliff66c972011-06-30 01:14:00 +0200182 tt_change_node->change.flags = flags;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200183 memcpy(tt_change_node->change.addr, addr, ETH_ALEN);
184
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200185 del_op_requested = flags & BATADV_TT_CLIENT_DEL;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200186
187 /* check for ADD+DEL or DEL+ADD events */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200188 spin_lock_bh(&bat_priv->tt.changes_list_lock);
189 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200190 list) {
191 if (!batadv_compare_eth(entry->change.addr, addr))
192 continue;
193
194 /* DEL+ADD in the same orig interval have no effect and can be
195 * removed to avoid silly behaviour on the receiver side. The
196 * other way around (ADD+DEL) can happen in case of roaming of
197 * a client still in the NEW state. Roaming of NEW clients is
198 * now possible due to automatically recognition of "temporary"
199 * clients
200 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200201 del_op_entry = entry->change.flags & BATADV_TT_CLIENT_DEL;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200202 if (!del_op_requested && del_op_entry)
203 goto del;
204 if (del_op_requested && !del_op_entry)
205 goto del;
206 continue;
207del:
208 list_del(&entry->list);
209 kfree(entry);
Jesper Juhl155e4e12012-08-07 08:32:34 +0000210 kfree(tt_change_node);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200211 event_removed = true;
212 goto unlock;
213 }
214
Antonio Quartullia73105b2011-04-27 14:27:44 +0200215 /* track the change in the OGMinterval list */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200216 list_add_tail(&tt_change_node->list, &bat_priv->tt.changes_list);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200217
218unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +0200219 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200220
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200221 if (event_removed)
Sven Eckelmann807736f2012-07-15 22:26:51 +0200222 atomic_dec(&bat_priv->tt.local_changes);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200223 else
Sven Eckelmann807736f2012-07-15 22:26:51 +0200224 atomic_inc(&bat_priv->tt.local_changes);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200225}
226
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200227int batadv_tt_len(int changes_num)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200228{
Sven Eckelmann96412692012-06-05 22:31:30 +0200229 return changes_num * sizeof(struct batadv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200230}
231
Sven Eckelmann56303d32012-06-05 22:31:31 +0200232static int batadv_tt_local_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000233{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200234 if (bat_priv->tt.local_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200235 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000236
Sven Eckelmann807736f2012-07-15 22:26:51 +0200237 bat_priv->tt.local_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000238
Sven Eckelmann807736f2012-07-15 22:26:51 +0200239 if (!bat_priv->tt.local_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200240 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000241
Antonio Quartullidec05072012-11-10 11:00:32 +0100242 batadv_hash_set_lock_class(bat_priv->tt.local_hash,
243 &batadv_tt_local_hash_lock_class_key);
244
Sven Eckelmann5346c352012-05-05 13:27:28 +0200245 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000246}
247
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200248static void batadv_tt_global_free(struct batadv_priv *bat_priv,
249 struct batadv_tt_global_entry *tt_global,
250 const char *message)
251{
252 batadv_dbg(BATADV_DBG_TT, bat_priv,
253 "Deleting global tt entry %pM: %s\n",
254 tt_global->common.addr, message);
255
256 batadv_hash_remove(bat_priv->tt.global_hash, batadv_compare_tt,
257 batadv_choose_orig, tt_global->common.addr);
258 batadv_tt_global_entry_free_ref(tt_global);
259
260}
261
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200262void batadv_tt_local_add(struct net_device *soft_iface, const uint8_t *addr,
263 int ifindex)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000264{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200265 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann170173b2012-10-07 12:02:22 +0200266 struct batadv_tt_local_entry *tt_local;
267 struct batadv_tt_global_entry *tt_global;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200268 struct hlist_head *head;
269 struct hlist_node *node;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200270 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100271 int hash_added;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200272 bool roamed_back = false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000273
Antonio Quartulli47c94652012-09-23 22:38:35 +0200274 tt_local = batadv_tt_local_hash_find(bat_priv, addr);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200275 tt_global = batadv_tt_global_hash_find(bat_priv, addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000276
Antonio Quartulli47c94652012-09-23 22:38:35 +0200277 if (tt_local) {
278 tt_local->last_seen = jiffies;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200279 if (tt_local->common.flags & BATADV_TT_CLIENT_PENDING) {
280 batadv_dbg(BATADV_DBG_TT, bat_priv,
281 "Re-adding pending client %pM\n", addr);
282 /* whatever the reason why the PENDING flag was set,
283 * this is a client which was enqueued to be removed in
284 * this orig_interval. Since it popped up again, the
285 * flag can be reset like it was never enqueued
286 */
287 tt_local->common.flags &= ~BATADV_TT_CLIENT_PENDING;
288 goto add_event;
289 }
290
291 if (tt_local->common.flags & BATADV_TT_CLIENT_ROAM) {
292 batadv_dbg(BATADV_DBG_TT, bat_priv,
293 "Roaming client %pM came back to its original location\n",
294 addr);
295 /* the ROAM flag is set because this client roamed away
296 * and the node got a roaming_advertisement message. Now
297 * that the client popped up again at its original
298 * location such flag can be unset
299 */
300 tt_local->common.flags &= ~BATADV_TT_CLIENT_ROAM;
301 roamed_back = true;
302 }
303 goto check_roaming;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304 }
305
Antonio Quartulli47c94652012-09-23 22:38:35 +0200306 tt_local = kmalloc(sizeof(*tt_local), GFP_ATOMIC);
307 if (!tt_local)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200308 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200309
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200310 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200311 "Creating new local tt entry: %pM (ttvn: %d)\n", addr,
Sven Eckelmann807736f2012-07-15 22:26:51 +0200312 (uint8_t)atomic_read(&bat_priv->tt.vn));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000313
Antonio Quartulli47c94652012-09-23 22:38:35 +0200314 memcpy(tt_local->common.addr, addr, ETH_ALEN);
Antonio Quartulli8425ec62012-11-19 09:01:44 +0100315 /* The local entry has to be marked as NEW to avoid to send it in
316 * a full table response going out before the next ttvn increment
317 * (consistency check)
318 */
319 tt_local->common.flags = BATADV_TT_CLIENT_NEW;
Sven Eckelmann95638772012-05-12 02:09:31 +0200320 if (batadv_is_wifi_iface(ifindex))
Antonio Quartulli47c94652012-09-23 22:38:35 +0200321 tt_local->common.flags |= BATADV_TT_CLIENT_WIFI;
322 atomic_set(&tt_local->common.refcount, 2);
323 tt_local->last_seen = jiffies;
324 tt_local->common.added_at = tt_local->last_seen;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000325
326 /* the batman interface mac address should never be purged */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200327 if (batadv_compare_eth(addr, soft_iface->dev_addr))
Antonio Quartulli47c94652012-09-23 22:38:35 +0200328 tt_local->common.flags |= BATADV_TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000329
Sven Eckelmann807736f2012-07-15 22:26:51 +0200330 hash_added = batadv_hash_add(bat_priv->tt.local_hash, batadv_compare_tt,
Antonio Quartulli47c94652012-09-23 22:38:35 +0200331 batadv_choose_orig, &tt_local->common,
332 &tt_local->common.hash_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100333
334 if (unlikely(hash_added != 0)) {
335 /* remove the reference for the hash */
Antonio Quartulli47c94652012-09-23 22:38:35 +0200336 batadv_tt_local_entry_free_ref(tt_local);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100337 goto out;
338 }
339
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200340add_event:
Antonio Quartulli47c94652012-09-23 22:38:35 +0200341 batadv_tt_local_event(bat_priv, addr, tt_local->common.flags);
Antonio Quartulliff66c972011-06-30 01:14:00 +0200342
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200343check_roaming:
344 /* Check whether it is a roaming, but don't do anything if the roaming
345 * process has already been handled
346 */
347 if (tt_global && !(tt_global->common.flags & BATADV_TT_CLIENT_ROAM)) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200348 /* These node are probably going to update their tt table */
Antonio Quartulli47c94652012-09-23 22:38:35 +0200349 head = &tt_global->orig_list;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200350 rcu_read_lock();
351 hlist_for_each_entry_rcu(orig_entry, node, head, list) {
Antonio Quartulli47c94652012-09-23 22:38:35 +0200352 batadv_send_roam_adv(bat_priv, tt_global->common.addr,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200353 orig_entry->orig_node);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200354 }
355 rcu_read_unlock();
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200356 if (roamed_back) {
357 batadv_tt_global_free(bat_priv, tt_global,
358 "Roaming canceled");
359 tt_global = NULL;
360 } else {
361 /* The global entry has to be marked as ROAMING and
362 * has to be kept for consistency purpose
363 */
364 tt_global->common.flags |= BATADV_TT_CLIENT_ROAM;
365 tt_global->roam_at = jiffies;
366 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200367 }
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200368
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200369out:
Antonio Quartulli47c94652012-09-23 22:38:35 +0200370 if (tt_local)
371 batadv_tt_local_entry_free_ref(tt_local);
372 if (tt_global)
373 batadv_tt_global_entry_free_ref(tt_global);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000374}
375
Sven Eckelmanna5130882012-05-16 20:23:16 +0200376static void batadv_tt_realloc_packet_buff(unsigned char **packet_buff,
377 int *packet_buff_len,
378 int min_packet_len,
379 int new_packet_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000380{
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800381 unsigned char *new_buff;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000382
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800383 new_buff = kmalloc(new_packet_len, GFP_ATOMIC);
384
385 /* keep old buffer if kmalloc should fail */
386 if (new_buff) {
387 memcpy(new_buff, *packet_buff, min_packet_len);
388 kfree(*packet_buff);
389 *packet_buff = new_buff;
390 *packet_buff_len = new_packet_len;
391 }
392}
393
Sven Eckelmann56303d32012-06-05 22:31:31 +0200394static void batadv_tt_prepare_packet_buff(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200395 unsigned char **packet_buff,
396 int *packet_buff_len,
397 int min_packet_len)
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800398{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200399 struct batadv_hard_iface *primary_if;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800400 int req_len;
401
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200402 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800403
404 req_len = min_packet_len;
Sven Eckelmann807736f2012-07-15 22:26:51 +0200405 req_len += batadv_tt_len(atomic_read(&bat_priv->tt.local_changes));
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800406
407 /* if we have too many changes for one packet don't send any
408 * and wait for the tt table request which will be fragmented
409 */
410 if ((!primary_if) || (req_len > primary_if->soft_iface->mtu))
411 req_len = min_packet_len;
412
Sven Eckelmanna5130882012-05-16 20:23:16 +0200413 batadv_tt_realloc_packet_buff(packet_buff, packet_buff_len,
414 min_packet_len, req_len);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800415
416 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200417 batadv_hardif_free_ref(primary_if);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800418}
419
Sven Eckelmann56303d32012-06-05 22:31:31 +0200420static int batadv_tt_changes_fill_buff(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200421 unsigned char **packet_buff,
422 int *packet_buff_len,
423 int min_packet_len)
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800424{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200425 struct batadv_tt_change_node *entry, *safe;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800426 int count = 0, tot_changes = 0, new_len;
427 unsigned char *tt_buff;
428
Sven Eckelmanna5130882012-05-16 20:23:16 +0200429 batadv_tt_prepare_packet_buff(bat_priv, packet_buff,
430 packet_buff_len, min_packet_len);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800431
432 new_len = *packet_buff_len - min_packet_len;
433 tt_buff = *packet_buff + min_packet_len;
434
435 if (new_len > 0)
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200436 tot_changes = new_len / batadv_tt_len(1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000437
Sven Eckelmann807736f2012-07-15 22:26:51 +0200438 spin_lock_bh(&bat_priv->tt.changes_list_lock);
439 atomic_set(&bat_priv->tt.local_changes, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000440
Sven Eckelmann807736f2012-07-15 22:26:51 +0200441 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100442 list) {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200443 if (count < tot_changes) {
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200444 memcpy(tt_buff + batadv_tt_len(count),
Sven Eckelmann96412692012-06-05 22:31:30 +0200445 &entry->change, sizeof(struct batadv_tt_change));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000446 count++;
447 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200448 list_del(&entry->list);
449 kfree(entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000450 }
Sven Eckelmann807736f2012-07-15 22:26:51 +0200451 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000452
Antonio Quartullia73105b2011-04-27 14:27:44 +0200453 /* Keep the buffer for possible tt_request */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200454 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
455 kfree(bat_priv->tt.last_changeset);
456 bat_priv->tt.last_changeset_len = 0;
457 bat_priv->tt.last_changeset = NULL;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800458 /* check whether this new OGM has no changes due to size problems */
459 if (new_len > 0) {
460 /* if kmalloc() fails we will reply with the full table
Antonio Quartullia73105b2011-04-27 14:27:44 +0200461 * instead of providing the diff
462 */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200463 bat_priv->tt.last_changeset = kmalloc(new_len, GFP_ATOMIC);
464 if (bat_priv->tt.last_changeset) {
465 memcpy(bat_priv->tt.last_changeset, tt_buff, new_len);
466 bat_priv->tt.last_changeset_len = new_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200467 }
468 }
Sven Eckelmann807736f2012-07-15 22:26:51 +0200469 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000470
Marek Lindner08ad76e2012-04-23 16:32:55 +0800471 return count;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000472}
473
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200474int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000475{
476 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200477 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200478 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200479 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100480 struct batadv_tt_local_entry *tt_local;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200481 struct batadv_hard_iface *primary_if;
Marek Lindner7aadf882011-02-18 12:28:09 +0000482 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000483 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200484 uint32_t i;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100485 int last_seen_secs;
486 int last_seen_msecs;
487 unsigned long last_seen_jiffies;
488 bool no_purge;
489 uint16_t np_flag = BATADV_TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000490
Marek Lindner30da63a2012-08-03 17:15:46 +0200491 primary_if = batadv_seq_print_text_primary_if_get(seq);
492 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200493 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000494
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100495 seq_printf(seq,
Antonio Quartullif9d8a532012-11-19 09:01:42 +0100496 "Locally retrieved addresses (from %s) announced via TT (TTVN: %u CRC: %#.4x):\n",
497 net_dev->name, (uint8_t)atomic_read(&bat_priv->tt.vn),
498 bat_priv->tt.local_crc);
Antonio Quartulli85766a82012-11-08 22:16:16 +0100499 seq_printf(seq, " %-13s %-7s %-10s\n", "Client", "Flags",
500 "Last seen");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000501
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000502 for (i = 0; i < hash->size; i++) {
503 head = &hash->table[i];
504
Marek Lindner7aadf882011-02-18 12:28:09 +0000505 rcu_read_lock();
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100506 hlist_for_each_entry_rcu(tt_common_entry, node,
Marek Lindner7aadf882011-02-18 12:28:09 +0000507 head, hash_entry) {
Antonio Quartulli85766a82012-11-08 22:16:16 +0100508 tt_local = container_of(tt_common_entry,
509 struct batadv_tt_local_entry,
510 common);
511 last_seen_jiffies = jiffies - tt_local->last_seen;
512 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
513 last_seen_secs = last_seen_msecs / 1000;
514 last_seen_msecs = last_seen_msecs % 1000;
515
516 no_purge = tt_common_entry->flags & np_flag;
517
518 seq_printf(seq, " * %pM [%c%c%c%c%c] %3u.%03u\n",
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100519 tt_common_entry->addr,
520 (tt_common_entry->flags &
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200521 BATADV_TT_CLIENT_ROAM ? 'R' : '.'),
Antonio Quartulli85766a82012-11-08 22:16:16 +0100522 no_purge ? 'P' : '.',
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100523 (tt_common_entry->flags &
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200524 BATADV_TT_CLIENT_NEW ? 'N' : '.'),
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100525 (tt_common_entry->flags &
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200526 BATADV_TT_CLIENT_PENDING ? 'X' : '.'),
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100527 (tt_common_entry->flags &
Antonio Quartulli85766a82012-11-08 22:16:16 +0100528 BATADV_TT_CLIENT_WIFI ? 'W' : '.'),
529 no_purge ? last_seen_secs : 0,
530 no_purge ? last_seen_msecs : 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000531 }
Marek Lindner7aadf882011-02-18 12:28:09 +0000532 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000533 }
Marek Lindner32ae9b22011-04-20 15:40:58 +0200534out:
535 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200536 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +0200537 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000538}
539
Sven Eckelmann56303d32012-06-05 22:31:31 +0200540static void
541batadv_tt_local_set_pending(struct batadv_priv *bat_priv,
542 struct batadv_tt_local_entry *tt_local_entry,
543 uint16_t flags, const char *message)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000544{
Sven Eckelmanna5130882012-05-16 20:23:16 +0200545 batadv_tt_local_event(bat_priv, tt_local_entry->common.addr,
546 tt_local_entry->common.flags | flags);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000547
Antonio Quartulli015758d2011-07-09 17:52:13 +0200548 /* The local client has to be marked as "pending to be removed" but has
549 * to be kept in the table in order to send it in a full table
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200550 * response issued before the net ttvn increment (consistency check)
551 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200552 tt_local_entry->common.flags |= BATADV_TT_CLIENT_PENDING;
Antonio Quartullic566dbb2012-01-06 21:31:34 +0100553
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200554 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200555 "Local tt entry (%pM) pending to be removed: %s\n",
556 tt_local_entry->common.addr, message);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000557}
558
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200559/**
560 * batadv_tt_local_remove - logically remove an entry from the local table
561 * @bat_priv: the bat priv with all the soft interface information
562 * @addr: the MAC address of the client to remove
563 * @message: message to append to the log on deletion
564 * @roaming: true if the deletion is due to a roaming event
565 *
566 * Returns the flags assigned to the local entry before being deleted
567 */
568uint16_t batadv_tt_local_remove(struct batadv_priv *bat_priv,
569 const uint8_t *addr, const char *message,
570 bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000571{
Sven Eckelmann170173b2012-10-07 12:02:22 +0200572 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200573 uint16_t flags, curr_flags = BATADV_NO_FLAGS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000574
Sven Eckelmanna5130882012-05-16 20:23:16 +0200575 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200576 if (!tt_local_entry)
577 goto out;
578
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200579 curr_flags = tt_local_entry->common.flags;
580
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200581 flags = BATADV_TT_CLIENT_DEL;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200582 /* if this global entry addition is due to a roaming, the node has to
583 * mark the local entry as "roamed" in order to correctly reroute
584 * packets later
585 */
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200586 if (roaming) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200587 flags |= BATADV_TT_CLIENT_ROAM;
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200588 /* mark the local client as ROAMed */
589 tt_local_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
590 }
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200591
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200592 if (!(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW)) {
593 batadv_tt_local_set_pending(bat_priv, tt_local_entry, flags,
594 message);
595 goto out;
596 }
597 /* if this client has been added right now, it is possible to
598 * immediately purge it
599 */
600 batadv_tt_local_event(bat_priv, tt_local_entry->common.addr,
601 curr_flags | BATADV_TT_CLIENT_DEL);
602 hlist_del_rcu(&tt_local_entry->common.hash_entry);
603 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200604
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200605out:
606 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +0200607 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200608
609 return curr_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000610}
611
Sven Eckelmann56303d32012-06-05 22:31:31 +0200612static void batadv_tt_local_purge_list(struct batadv_priv *bat_priv,
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200613 struct hlist_head *head)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000614{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200615 struct batadv_tt_local_entry *tt_local_entry;
616 struct batadv_tt_common_entry *tt_common_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000617 struct hlist_node *node, *node_tmp;
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200618
619 hlist_for_each_entry_safe(tt_common_entry, node, node_tmp, head,
620 hash_entry) {
621 tt_local_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200622 struct batadv_tt_local_entry,
623 common);
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200624 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_NOPURGE)
625 continue;
626
627 /* entry already marked for deletion */
628 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING)
629 continue;
630
631 if (!batadv_has_timed_out(tt_local_entry->last_seen,
632 BATADV_TT_LOCAL_TIMEOUT))
633 continue;
634
635 batadv_tt_local_set_pending(bat_priv, tt_local_entry,
636 BATADV_TT_CLIENT_DEL, "timed out");
637 }
638}
639
Sven Eckelmann56303d32012-06-05 22:31:31 +0200640static void batadv_tt_local_purge(struct batadv_priv *bat_priv)
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200641{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200642 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000643 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200644 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +0200645 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000646
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000647 for (i = 0; i < hash->size; i++) {
648 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200649 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000650
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200651 spin_lock_bh(list_lock);
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200652 batadv_tt_local_purge_list(bat_priv, head);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200653 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000654 }
655
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000656}
657
Sven Eckelmann56303d32012-06-05 22:31:31 +0200658static void batadv_tt_local_table_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000659{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +0200660 struct batadv_hashtable *hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200661 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200662 struct batadv_tt_common_entry *tt_common_entry;
663 struct batadv_tt_local_entry *tt_local;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200664 struct hlist_node *node, *node_tmp;
665 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200666 uint32_t i;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200667
Sven Eckelmann807736f2012-07-15 22:26:51 +0200668 if (!bat_priv->tt.local_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000669 return;
670
Sven Eckelmann807736f2012-07-15 22:26:51 +0200671 hash = bat_priv->tt.local_hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200672
673 for (i = 0; i < hash->size; i++) {
674 head = &hash->table[i];
675 list_lock = &hash->list_locks[i];
676
677 spin_lock_bh(list_lock);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100678 hlist_for_each_entry_safe(tt_common_entry, node, node_tmp,
Antonio Quartullia73105b2011-04-27 14:27:44 +0200679 head, hash_entry) {
680 hlist_del_rcu(node);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200681 tt_local = container_of(tt_common_entry,
682 struct batadv_tt_local_entry,
683 common);
684 batadv_tt_local_entry_free_ref(tt_local);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200685 }
686 spin_unlock_bh(list_lock);
687 }
688
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +0200689 batadv_hash_destroy(hash);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200690
Sven Eckelmann807736f2012-07-15 22:26:51 +0200691 bat_priv->tt.local_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000692}
693
Sven Eckelmann56303d32012-06-05 22:31:31 +0200694static int batadv_tt_global_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000695{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200696 if (bat_priv->tt.global_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200697 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000698
Sven Eckelmann807736f2012-07-15 22:26:51 +0200699 bat_priv->tt.global_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000700
Sven Eckelmann807736f2012-07-15 22:26:51 +0200701 if (!bat_priv->tt.global_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200702 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000703
Antonio Quartullidec05072012-11-10 11:00:32 +0100704 batadv_hash_set_lock_class(bat_priv->tt.global_hash,
705 &batadv_tt_global_hash_lock_class_key);
706
Sven Eckelmann5346c352012-05-05 13:27:28 +0200707 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000708}
709
Sven Eckelmann56303d32012-06-05 22:31:31 +0200710static void batadv_tt_changes_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200711{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200712 struct batadv_tt_change_node *entry, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200713
Sven Eckelmann807736f2012-07-15 22:26:51 +0200714 spin_lock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200715
Sven Eckelmann807736f2012-07-15 22:26:51 +0200716 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Antonio Quartullia73105b2011-04-27 14:27:44 +0200717 list) {
718 list_del(&entry->list);
719 kfree(entry);
720 }
721
Sven Eckelmann807736f2012-07-15 22:26:51 +0200722 atomic_set(&bat_priv->tt.local_changes, 0);
723 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200724}
725
Antonio Quartullid657e622012-07-01 14:09:12 +0200726/* retrieves the orig_tt_list_entry belonging to orig_node from the
727 * batadv_tt_global_entry list
728 *
729 * returns it with an increased refcounter, NULL if not found
730 */
731static struct batadv_tt_orig_list_entry *
732batadv_tt_global_orig_entry_find(const struct batadv_tt_global_entry *entry,
733 const struct batadv_orig_node *orig_node)
734{
735 struct batadv_tt_orig_list_entry *tmp_orig_entry, *orig_entry = NULL;
736 const struct hlist_head *head;
737 struct hlist_node *node;
738
739 rcu_read_lock();
740 head = &entry->orig_list;
741 hlist_for_each_entry_rcu(tmp_orig_entry, node, head, list) {
742 if (tmp_orig_entry->orig_node != orig_node)
743 continue;
744 if (!atomic_inc_not_zero(&tmp_orig_entry->refcount))
745 continue;
746
747 orig_entry = tmp_orig_entry;
748 break;
749 }
750 rcu_read_unlock();
751
752 return orig_entry;
753}
754
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200755/* find out if an orig_node is already in the list of a tt_global_entry.
Antonio Quartullid657e622012-07-01 14:09:12 +0200756 * returns true if found, false otherwise
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200757 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200758static bool
759batadv_tt_global_entry_has_orig(const struct batadv_tt_global_entry *entry,
760 const struct batadv_orig_node *orig_node)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200761{
Antonio Quartullid657e622012-07-01 14:09:12 +0200762 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200763 bool found = false;
764
Antonio Quartullid657e622012-07-01 14:09:12 +0200765 orig_entry = batadv_tt_global_orig_entry_find(entry, orig_node);
766 if (orig_entry) {
767 found = true;
768 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200769 }
Antonio Quartullid657e622012-07-01 14:09:12 +0200770
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200771 return found;
772}
773
Sven Eckelmanna5130882012-05-16 20:23:16 +0200774static void
Antonio Quartullid657e622012-07-01 14:09:12 +0200775batadv_tt_global_orig_entry_add(struct batadv_tt_global_entry *tt_global,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200776 struct batadv_orig_node *orig_node, int ttvn)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200777{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200778 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200779
Antonio Quartullid657e622012-07-01 14:09:12 +0200780 orig_entry = batadv_tt_global_orig_entry_find(tt_global, orig_node);
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200781 if (orig_entry) {
782 /* refresh the ttvn: the current value could be a bogus one that
783 * was added during a "temporary client detection"
784 */
785 orig_entry->ttvn = ttvn;
Antonio Quartullid657e622012-07-01 14:09:12 +0200786 goto out;
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200787 }
Antonio Quartullid657e622012-07-01 14:09:12 +0200788
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200789 orig_entry = kzalloc(sizeof(*orig_entry), GFP_ATOMIC);
790 if (!orig_entry)
Antonio Quartullid657e622012-07-01 14:09:12 +0200791 goto out;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200792
793 INIT_HLIST_NODE(&orig_entry->list);
794 atomic_inc(&orig_node->refcount);
795 atomic_inc(&orig_node->tt_size);
796 orig_entry->orig_node = orig_node;
797 orig_entry->ttvn = ttvn;
Antonio Quartullid657e622012-07-01 14:09:12 +0200798 atomic_set(&orig_entry->refcount, 2);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200799
Antonio Quartullid657e622012-07-01 14:09:12 +0200800 spin_lock_bh(&tt_global->list_lock);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200801 hlist_add_head_rcu(&orig_entry->list,
Antonio Quartullid657e622012-07-01 14:09:12 +0200802 &tt_global->orig_list);
803 spin_unlock_bh(&tt_global->list_lock);
804out:
805 if (orig_entry)
806 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200807}
808
Antonio Quartullia73105b2011-04-27 14:27:44 +0200809/* caller must hold orig_node refcount */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200810int batadv_tt_global_add(struct batadv_priv *bat_priv,
811 struct batadv_orig_node *orig_node,
Antonio Quartullid4f44692012-05-25 00:00:54 +0200812 const unsigned char *tt_addr, uint8_t flags,
813 uint8_t ttvn)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000814{
Sven Eckelmann170173b2012-10-07 12:02:22 +0200815 struct batadv_tt_global_entry *tt_global_entry;
816 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200817 int ret = 0;
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100818 int hash_added;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200819 struct batadv_tt_common_entry *common;
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200820 uint16_t local_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000821
Sven Eckelmanna5130882012-05-16 20:23:16 +0200822 tt_global_entry = batadv_tt_global_hash_find(bat_priv, tt_addr);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200823 tt_local_entry = batadv_tt_local_hash_find(bat_priv, tt_addr);
824
825 /* if the node already has a local client for this entry, it has to wait
826 * for a roaming advertisement instead of manually messing up the global
827 * table
828 */
829 if ((flags & BATADV_TT_CLIENT_TEMP) && tt_local_entry &&
830 !(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW))
831 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000832
Antonio Quartullia73105b2011-04-27 14:27:44 +0200833 if (!tt_global_entry) {
Antonio Quartullid4f44692012-05-25 00:00:54 +0200834 tt_global_entry = kzalloc(sizeof(*tt_global_entry), GFP_ATOMIC);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200835 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200836 goto out;
837
Sven Eckelmannc0a55922012-05-12 13:48:55 +0200838 common = &tt_global_entry->common;
839 memcpy(common->addr, tt_addr, ETH_ALEN);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200840
Antonio Quartullid4f44692012-05-25 00:00:54 +0200841 common->flags = flags;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200842 tt_global_entry->roam_at = 0;
Antonio Quartullifdf79322012-08-24 17:54:07 +0200843 /* node must store current time in case of roaming. This is
844 * needed to purge this entry out on timeout (if nobody claims
845 * it)
846 */
847 if (flags & BATADV_TT_CLIENT_ROAM)
848 tt_global_entry->roam_at = jiffies;
Sven Eckelmannc0a55922012-05-12 13:48:55 +0200849 atomic_set(&common->refcount, 2);
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200850 common->added_at = jiffies;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200851
852 INIT_HLIST_HEAD(&tt_global_entry->orig_list);
853 spin_lock_init(&tt_global_entry->list_lock);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200854
Sven Eckelmann807736f2012-07-15 22:26:51 +0200855 hash_added = batadv_hash_add(bat_priv->tt.global_hash,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200856 batadv_compare_tt,
857 batadv_choose_orig, common,
858 &common->hash_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100859
860 if (unlikely(hash_added != 0)) {
861 /* remove the reference for the hash */
Sven Eckelmanna5130882012-05-16 20:23:16 +0200862 batadv_tt_global_entry_free_ref(tt_global_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100863 goto out_remove;
864 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200865 } else {
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200866 common = &tt_global_entry->common;
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200867 /* If there is already a global entry, we can use this one for
868 * our processing.
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200869 * But if we are trying to add a temporary client then here are
870 * two options at this point:
871 * 1) the global client is not a temporary client: the global
872 * client has to be left as it is, temporary information
873 * should never override any already known client state
874 * 2) the global client is a temporary client: purge the
875 * originator list and add the new one orig_entry
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200876 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200877 if (flags & BATADV_TT_CLIENT_TEMP) {
878 if (!(common->flags & BATADV_TT_CLIENT_TEMP))
879 goto out;
880 if (batadv_tt_global_entry_has_orig(tt_global_entry,
881 orig_node))
882 goto out_remove;
883 batadv_tt_global_del_orig_list(tt_global_entry);
884 goto add_orig_entry;
885 }
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200886
887 /* if the client was temporary added before receiving the first
888 * OGM announcing it, we have to clear the TEMP flag
889 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200890 common->flags &= ~BATADV_TT_CLIENT_TEMP;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200891
Antonio Quartullie9c001362012-11-07 15:05:33 +0100892 /* the change can carry possible "attribute" flags like the
893 * TT_CLIENT_WIFI, therefore they have to be copied in the
894 * client entry
895 */
896 tt_global_entry->common.flags |= flags;
897
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200898 /* If there is the BATADV_TT_CLIENT_ROAM flag set, there is only
899 * one originator left in the list and we previously received a
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200900 * delete + roaming change for this originator.
901 *
902 * We should first delete the old originator before adding the
903 * new one.
904 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200905 if (common->flags & BATADV_TT_CLIENT_ROAM) {
Sven Eckelmanna5130882012-05-16 20:23:16 +0200906 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200907 common->flags &= ~BATADV_TT_CLIENT_ROAM;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200908 tt_global_entry->roam_at = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000909 }
910 }
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200911add_orig_entry:
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200912 /* add the new orig_entry (if needed) or update it */
Antonio Quartullid657e622012-07-01 14:09:12 +0200913 batadv_tt_global_orig_entry_add(tt_global_entry, orig_node, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200914
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200915 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200916 "Creating new global tt entry: %pM (via %pM)\n",
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200917 common->addr, orig_node->orig);
Antonio Quartullic10dba02012-08-11 11:11:00 +0200918 ret = 1;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200919
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100920out_remove:
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200921
Antonio Quartullia73105b2011-04-27 14:27:44 +0200922 /* remove address from local hash if present */
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200923 local_flags = batadv_tt_local_remove(bat_priv, tt_addr,
924 "global tt received",
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200925 !!(flags & BATADV_TT_CLIENT_ROAM));
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200926 tt_global_entry->common.flags |= local_flags & BATADV_TT_CLIENT_WIFI;
927
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200928 if (!(flags & BATADV_TT_CLIENT_ROAM))
929 /* this is a normal global add. Therefore the client is not in a
930 * roaming state anymore.
931 */
932 tt_global_entry->common.flags &= ~BATADV_TT_CLIENT_ROAM;
933
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200934out:
935 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +0200936 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200937 if (tt_local_entry)
938 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200939 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000940}
941
Sven Eckelmann981d8902012-10-07 13:34:15 +0200942/* batadv_transtable_best_orig - Get best originator list entry from tt entry
943 * @tt_global_entry: global translation table entry to be analyzed
944 *
945 * This functon assumes the caller holds rcu_read_lock().
946 * Returns best originator list entry or NULL on errors.
947 */
948static struct batadv_tt_orig_list_entry *
949batadv_transtable_best_orig(struct batadv_tt_global_entry *tt_global_entry)
950{
951 struct batadv_neigh_node *router = NULL;
952 struct hlist_head *head;
953 struct hlist_node *node;
954 struct batadv_tt_orig_list_entry *orig_entry, *best_entry = NULL;
955 int best_tq = 0;
956
957 head = &tt_global_entry->orig_list;
958 hlist_for_each_entry_rcu(orig_entry, node, head, list) {
959 router = batadv_orig_node_get_router(orig_entry->orig_node);
960 if (!router)
961 continue;
962
963 if (router->tq_avg > best_tq) {
964 best_entry = orig_entry;
965 best_tq = router->tq_avg;
966 }
967
968 batadv_neigh_node_free_ref(router);
969 }
970
971 return best_entry;
972}
973
974/* batadv_tt_global_print_entry - print all orig nodes who announce the address
975 * for this global entry
976 * @tt_global_entry: global translation table entry to be printed
977 * @seq: debugfs table seq_file struct
978 *
979 * This functon assumes the caller holds rcu_read_lock().
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200980 */
Sven Eckelmanna5130882012-05-16 20:23:16 +0200981static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200982batadv_tt_global_print_entry(struct batadv_tt_global_entry *tt_global_entry,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200983 struct seq_file *seq)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200984{
985 struct hlist_head *head;
986 struct hlist_node *node;
Sven Eckelmann981d8902012-10-07 13:34:15 +0200987 struct batadv_tt_orig_list_entry *orig_entry, *best_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200988 struct batadv_tt_common_entry *tt_common_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200989 uint16_t flags;
990 uint8_t last_ttvn;
991
992 tt_common_entry = &tt_global_entry->common;
Sven Eckelmann981d8902012-10-07 13:34:15 +0200993 flags = tt_common_entry->flags;
994
995 best_entry = batadv_transtable_best_orig(tt_global_entry);
996 if (best_entry) {
997 last_ttvn = atomic_read(&best_entry->orig_node->last_ttvn);
Antonio Quartullif9d8a532012-11-19 09:01:42 +0100998 seq_printf(seq,
999 " %c %pM (%3u) via %pM (%3u) (%#.4x) [%c%c%c]\n",
Sven Eckelmann981d8902012-10-07 13:34:15 +02001000 '*', tt_global_entry->common.addr,
1001 best_entry->ttvn, best_entry->orig_node->orig,
Antonio Quartullif9d8a532012-11-19 09:01:42 +01001002 last_ttvn, best_entry->orig_node->tt_crc,
Sven Eckelmann981d8902012-10-07 13:34:15 +02001003 (flags & BATADV_TT_CLIENT_ROAM ? 'R' : '.'),
1004 (flags & BATADV_TT_CLIENT_WIFI ? 'W' : '.'),
1005 (flags & BATADV_TT_CLIENT_TEMP ? 'T' : '.'));
1006 }
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001007
1008 head = &tt_global_entry->orig_list;
1009
1010 hlist_for_each_entry_rcu(orig_entry, node, head, list) {
Sven Eckelmann981d8902012-10-07 13:34:15 +02001011 if (best_entry == orig_entry)
1012 continue;
1013
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001014 last_ttvn = atomic_read(&orig_entry->orig_node->last_ttvn);
Sven Eckelmann981d8902012-10-07 13:34:15 +02001015 seq_printf(seq, " %c %pM (%3u) via %pM (%3u) [%c%c%c]\n",
1016 '+', tt_global_entry->common.addr,
1017 orig_entry->ttvn, orig_entry->orig_node->orig,
1018 last_ttvn,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001019 (flags & BATADV_TT_CLIENT_ROAM ? 'R' : '.'),
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001020 (flags & BATADV_TT_CLIENT_WIFI ? 'W' : '.'),
1021 (flags & BATADV_TT_CLIENT_TEMP ? 'T' : '.'));
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001022 }
1023}
1024
Sven Eckelmann08c36d32012-05-12 02:09:39 +02001025int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001026{
1027 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001028 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001029 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001030 struct batadv_tt_common_entry *tt_common_entry;
1031 struct batadv_tt_global_entry *tt_global;
1032 struct batadv_hard_iface *primary_if;
Marek Lindner7aadf882011-02-18 12:28:09 +00001033 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001034 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001035 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001036
Marek Lindner30da63a2012-08-03 17:15:46 +02001037 primary_if = batadv_seq_print_text_primary_if_get(seq);
1038 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +02001039 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001040
Antonio Quartulli2dafb492011-05-05 08:42:45 +02001041 seq_printf(seq,
1042 "Globally announced TT entries received via the mesh %s\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001043 net_dev->name);
Antonio Quartullif9d8a532012-11-19 09:01:42 +01001044 seq_printf(seq, " %-13s %s %-15s %s (%-6s) %s\n",
1045 "Client", "(TTVN)", "Originator", "(Curr TTVN)", "CRC",
1046 "Flags");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001047
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001048 for (i = 0; i < hash->size; i++) {
1049 head = &hash->table[i];
1050
Marek Lindner7aadf882011-02-18 12:28:09 +00001051 rcu_read_lock();
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001052 hlist_for_each_entry_rcu(tt_common_entry, node,
Marek Lindner7aadf882011-02-18 12:28:09 +00001053 head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001054 tt_global = container_of(tt_common_entry,
1055 struct batadv_tt_global_entry,
1056 common);
1057 batadv_tt_global_print_entry(tt_global, seq);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001058 }
Marek Lindner7aadf882011-02-18 12:28:09 +00001059 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001060 }
Marek Lindner32ae9b22011-04-20 15:40:58 +02001061out:
1062 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001063 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +02001064 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001065}
1066
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001067/* deletes the orig list of a tt_global_entry */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001068static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001069batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001070{
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001071 struct hlist_head *head;
1072 struct hlist_node *node, *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001073 struct batadv_tt_orig_list_entry *orig_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001074
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001075 spin_lock_bh(&tt_global_entry->list_lock);
1076 head = &tt_global_entry->orig_list;
1077 hlist_for_each_entry_safe(orig_entry, node, safe, head, list) {
1078 hlist_del_rcu(node);
Sven Eckelmanna5130882012-05-16 20:23:16 +02001079 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001080 }
1081 spin_unlock_bh(&tt_global_entry->list_lock);
1082
1083}
1084
Sven Eckelmanna5130882012-05-16 20:23:16 +02001085static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001086batadv_tt_global_del_orig_entry(struct batadv_priv *bat_priv,
1087 struct batadv_tt_global_entry *tt_global_entry,
1088 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001089 const char *message)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001090{
1091 struct hlist_head *head;
1092 struct hlist_node *node, *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001093 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001094
1095 spin_lock_bh(&tt_global_entry->list_lock);
1096 head = &tt_global_entry->orig_list;
1097 hlist_for_each_entry_safe(orig_entry, node, safe, head, list) {
1098 if (orig_entry->orig_node == orig_node) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001099 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001100 "Deleting %pM from global tt entry %pM: %s\n",
1101 orig_node->orig,
1102 tt_global_entry->common.addr, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001103 hlist_del_rcu(node);
Sven Eckelmanna5130882012-05-16 20:23:16 +02001104 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001105 }
1106 }
1107 spin_unlock_bh(&tt_global_entry->list_lock);
1108}
1109
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001110/* If the client is to be deleted, we check if it is the last origantor entry
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001111 * within tt_global entry. If yes, we set the BATADV_TT_CLIENT_ROAM flag and the
1112 * timer, otherwise we simply remove the originator scheduled for deletion.
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001113 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001114static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001115batadv_tt_global_del_roaming(struct batadv_priv *bat_priv,
1116 struct batadv_tt_global_entry *tt_global_entry,
1117 struct batadv_orig_node *orig_node,
1118 const char *message)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001119{
1120 bool last_entry = true;
1121 struct hlist_head *head;
1122 struct hlist_node *node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001123 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001124
1125 /* no local entry exists, case 1:
1126 * Check if this is the last one or if other entries exist.
1127 */
1128
1129 rcu_read_lock();
1130 head = &tt_global_entry->orig_list;
1131 hlist_for_each_entry_rcu(orig_entry, node, head, list) {
1132 if (orig_entry->orig_node != orig_node) {
1133 last_entry = false;
1134 break;
1135 }
1136 }
1137 rcu_read_unlock();
1138
1139 if (last_entry) {
1140 /* its the last one, mark for roaming. */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001141 tt_global_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001142 tt_global_entry->roam_at = jiffies;
1143 } else
1144 /* there is another entry, we can simply delete this
1145 * one and can still use the other one.
1146 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001147 batadv_tt_global_del_orig_entry(bat_priv, tt_global_entry,
1148 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001149}
1150
1151
1152
Sven Eckelmann56303d32012-06-05 22:31:31 +02001153static void batadv_tt_global_del(struct batadv_priv *bat_priv,
1154 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001155 const unsigned char *addr,
1156 const char *message, bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001157{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001158 struct batadv_tt_global_entry *tt_global_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001159 struct batadv_tt_local_entry *local_entry = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001160
Sven Eckelmanna5130882012-05-16 20:23:16 +02001161 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001162 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001163 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001164
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001165 if (!roaming) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02001166 batadv_tt_global_del_orig_entry(bat_priv, tt_global_entry,
1167 orig_node, message);
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001168
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001169 if (hlist_empty(&tt_global_entry->orig_list))
Antonio Quartullibe73b482012-09-23 22:38:36 +02001170 batadv_tt_global_free(bat_priv, tt_global_entry,
1171 message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001172
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001173 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001174 }
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001175
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001176 /* if we are deleting a global entry due to a roam
1177 * event, there are two possibilities:
1178 * 1) the client roamed from node A to node B => if there
1179 * is only one originator left for this client, we mark
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001180 * it with BATADV_TT_CLIENT_ROAM, we start a timer and we
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001181 * wait for node B to claim it. In case of timeout
1182 * the entry is purged.
1183 *
1184 * If there are other originators left, we directly delete
1185 * the originator.
1186 * 2) the client roamed to us => we can directly delete
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001187 * the global entry, since it is useless now.
1188 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001189 local_entry = batadv_tt_local_hash_find(bat_priv,
1190 tt_global_entry->common.addr);
1191 if (local_entry) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001192 /* local entry exists, case 2: client roamed to us. */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001193 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartullibe73b482012-09-23 22:38:36 +02001194 batadv_tt_global_free(bat_priv, tt_global_entry, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001195 } else
1196 /* no local entry exists, case 1: check for roaming */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001197 batadv_tt_global_del_roaming(bat_priv, tt_global_entry,
1198 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001199
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001200
Antonio Quartullicc47f662011-04-27 14:27:57 +02001201out:
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001202 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001203 batadv_tt_global_entry_free_ref(tt_global_entry);
1204 if (local_entry)
1205 batadv_tt_local_entry_free_ref(local_entry);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001206}
1207
Sven Eckelmann56303d32012-06-05 22:31:31 +02001208void batadv_tt_global_del_orig(struct batadv_priv *bat_priv,
1209 struct batadv_orig_node *orig_node,
1210 const char *message)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001211{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001212 struct batadv_tt_global_entry *tt_global;
1213 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001214 uint32_t i;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001215 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001216 struct hlist_node *node, *safe;
1217 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001218 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001219
Simon Wunderlich6e801492011-10-19 10:28:26 +02001220 if (!hash)
1221 return;
1222
Antonio Quartullia73105b2011-04-27 14:27:44 +02001223 for (i = 0; i < hash->size; i++) {
1224 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001225 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001226
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001227 spin_lock_bh(list_lock);
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001228 hlist_for_each_entry_safe(tt_common_entry, node, safe,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +01001229 head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001230 tt_global = container_of(tt_common_entry,
1231 struct batadv_tt_global_entry,
1232 common);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001233
Sven Eckelmann56303d32012-06-05 22:31:31 +02001234 batadv_tt_global_del_orig_entry(bat_priv, tt_global,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001235 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001236
Sven Eckelmann56303d32012-06-05 22:31:31 +02001237 if (hlist_empty(&tt_global->orig_list)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001238 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001239 "Deleting global tt entry %pM: %s\n",
Sven Eckelmann56303d32012-06-05 22:31:31 +02001240 tt_global->common.addr, message);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001241 hlist_del_rcu(node);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001242 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001243 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001244 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001245 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001246 }
Antonio Quartulli17071572011-11-07 16:36:40 +01001247 orig_node->tt_initialised = false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001248}
1249
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001250static bool batadv_tt_global_to_purge(struct batadv_tt_global_entry *tt_global,
1251 char **msg)
Antonio Quartullicc47f662011-04-27 14:27:57 +02001252{
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001253 bool purge = false;
1254 unsigned long roam_timeout = BATADV_TT_CLIENT_ROAM_TIMEOUT;
1255 unsigned long temp_timeout = BATADV_TT_CLIENT_TEMP_TIMEOUT;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001256
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001257 if ((tt_global->common.flags & BATADV_TT_CLIENT_ROAM) &&
1258 batadv_has_timed_out(tt_global->roam_at, roam_timeout)) {
1259 purge = true;
1260 *msg = "Roaming timeout\n";
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001261 }
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001262
1263 if ((tt_global->common.flags & BATADV_TT_CLIENT_TEMP) &&
1264 batadv_has_timed_out(tt_global->common.added_at, temp_timeout)) {
1265 purge = true;
1266 *msg = "Temporary client timeout\n";
1267 }
1268
1269 return purge;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001270}
1271
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001272static void batadv_tt_global_purge(struct batadv_priv *bat_priv)
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001273{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001274 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001275 struct hlist_head *head;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001276 struct hlist_node *node, *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001277 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02001278 uint32_t i;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001279 char *msg = NULL;
1280 struct batadv_tt_common_entry *tt_common;
1281 struct batadv_tt_global_entry *tt_global;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001282
Antonio Quartullicc47f662011-04-27 14:27:57 +02001283 for (i = 0; i < hash->size; i++) {
1284 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001285 list_lock = &hash->list_locks[i];
Antonio Quartullicc47f662011-04-27 14:27:57 +02001286
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001287 spin_lock_bh(list_lock);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001288 hlist_for_each_entry_safe(tt_common, node, node_tmp, head,
1289 hash_entry) {
1290 tt_global = container_of(tt_common,
1291 struct batadv_tt_global_entry,
1292 common);
1293
1294 if (!batadv_tt_global_to_purge(tt_global, &msg))
1295 continue;
1296
1297 batadv_dbg(BATADV_DBG_TT, bat_priv,
1298 "Deleting global tt entry (%pM): %s\n",
1299 tt_global->common.addr, msg);
1300
1301 hlist_del_rcu(node);
1302
1303 batadv_tt_global_entry_free_ref(tt_global);
1304 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001305 spin_unlock_bh(list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02001306 }
Antonio Quartullicc47f662011-04-27 14:27:57 +02001307}
1308
Sven Eckelmann56303d32012-06-05 22:31:31 +02001309static void batadv_tt_global_table_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001310{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001311 struct batadv_hashtable *hash;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001312 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001313 struct batadv_tt_common_entry *tt_common_entry;
1314 struct batadv_tt_global_entry *tt_global;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001315 struct hlist_node *node, *node_tmp;
1316 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001317 uint32_t i;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001318
Sven Eckelmann807736f2012-07-15 22:26:51 +02001319 if (!bat_priv->tt.global_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001320 return;
1321
Sven Eckelmann807736f2012-07-15 22:26:51 +02001322 hash = bat_priv->tt.global_hash;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001323
1324 for (i = 0; i < hash->size; i++) {
1325 head = &hash->table[i];
1326 list_lock = &hash->list_locks[i];
1327
1328 spin_lock_bh(list_lock);
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001329 hlist_for_each_entry_safe(tt_common_entry, node, node_tmp,
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001330 head, hash_entry) {
1331 hlist_del_rcu(node);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001332 tt_global = container_of(tt_common_entry,
1333 struct batadv_tt_global_entry,
1334 common);
1335 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001336 }
1337 spin_unlock_bh(list_lock);
1338 }
1339
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +02001340 batadv_hash_destroy(hash);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001341
Sven Eckelmann807736f2012-07-15 22:26:51 +02001342 bat_priv->tt.global_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001343}
1344
Sven Eckelmann56303d32012-06-05 22:31:31 +02001345static bool
1346_batadv_is_ap_isolated(struct batadv_tt_local_entry *tt_local_entry,
1347 struct batadv_tt_global_entry *tt_global_entry)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02001348{
1349 bool ret = false;
1350
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001351 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_WIFI &&
1352 tt_global_entry->common.flags & BATADV_TT_CLIENT_WIFI)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02001353 ret = true;
1354
1355 return ret;
1356}
1357
Sven Eckelmann56303d32012-06-05 22:31:31 +02001358struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv,
1359 const uint8_t *src,
1360 const uint8_t *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001361{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001362 struct batadv_tt_local_entry *tt_local_entry = NULL;
1363 struct batadv_tt_global_entry *tt_global_entry = NULL;
1364 struct batadv_orig_node *orig_node = NULL;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001365 struct batadv_tt_orig_list_entry *best_entry;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001366
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001367 if (src && atomic_read(&bat_priv->ap_isolation)) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02001368 tt_local_entry = batadv_tt_local_hash_find(bat_priv, src);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001369 if (!tt_local_entry ||
1370 (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING))
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001371 goto out;
1372 }
Marek Lindner7aadf882011-02-18 12:28:09 +00001373
Sven Eckelmanna5130882012-05-16 20:23:16 +02001374 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr);
Antonio Quartulli2dafb492011-05-05 08:42:45 +02001375 if (!tt_global_entry)
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001376 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001377
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001378 /* check whether the clients should not communicate due to AP
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001379 * isolation
1380 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001381 if (tt_local_entry &&
1382 _batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001383 goto out;
1384
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001385 rcu_read_lock();
Sven Eckelmann981d8902012-10-07 13:34:15 +02001386 best_entry = batadv_transtable_best_orig(tt_global_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001387 /* found anything? */
Sven Eckelmann981d8902012-10-07 13:34:15 +02001388 if (best_entry)
1389 orig_node = best_entry->orig_node;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001390 if (orig_node && !atomic_inc_not_zero(&orig_node->refcount))
1391 orig_node = NULL;
1392 rcu_read_unlock();
Sven Eckelmann981d8902012-10-07 13:34:15 +02001393
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001394out:
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001395 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001396 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001397 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001398 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001399
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001400 return orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001401}
Antonio Quartullia73105b2011-04-27 14:27:44 +02001402
1403/* Calculates the checksum of the local table of a given orig_node */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001404static uint16_t batadv_tt_global_crc(struct batadv_priv *bat_priv,
1405 struct batadv_orig_node *orig_node)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001406{
1407 uint16_t total = 0, total_one;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001408 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001409 struct batadv_tt_common_entry *tt_common;
1410 struct batadv_tt_global_entry *tt_global;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001411 struct hlist_node *node;
1412 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001413 uint32_t i;
1414 int j;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001415
1416 for (i = 0; i < hash->size; i++) {
1417 head = &hash->table[i];
1418
1419 rcu_read_lock();
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001420 hlist_for_each_entry_rcu(tt_common, node, head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001421 tt_global = container_of(tt_common,
1422 struct batadv_tt_global_entry,
1423 common);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001424 /* Roaming clients are in the global table for
1425 * consistency only. They don't have to be
1426 * taken into account while computing the
1427 * global crc
1428 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001429 if (tt_common->flags & BATADV_TT_CLIENT_ROAM)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001430 continue;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001431 /* Temporary clients have not been announced yet, so
1432 * they have to be skipped while computing the global
1433 * crc
1434 */
1435 if (tt_common->flags & BATADV_TT_CLIENT_TEMP)
1436 continue;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001437
1438 /* find out if this global entry is announced by this
1439 * originator
1440 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001441 if (!batadv_tt_global_entry_has_orig(tt_global,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001442 orig_node))
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001443 continue;
1444
1445 total_one = 0;
1446 for (j = 0; j < ETH_ALEN; j++)
1447 total_one = crc16_byte(total_one,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001448 tt_common->addr[j]);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001449 total ^= total_one;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001450 }
1451 rcu_read_unlock();
1452 }
1453
1454 return total;
1455}
1456
1457/* Calculates the checksum of the local table */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001458static uint16_t batadv_tt_local_crc(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001459{
1460 uint16_t total = 0, total_one;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001461 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001462 struct batadv_tt_common_entry *tt_common;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001463 struct hlist_node *node;
1464 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001465 uint32_t i;
1466 int j;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001467
1468 for (i = 0; i < hash->size; i++) {
1469 head = &hash->table[i];
1470
1471 rcu_read_lock();
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001472 hlist_for_each_entry_rcu(tt_common, node, head, hash_entry) {
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001473 /* not yet committed clients have not to be taken into
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001474 * account while computing the CRC
1475 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001476 if (tt_common->flags & BATADV_TT_CLIENT_NEW)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001477 continue;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001478 total_one = 0;
1479 for (j = 0; j < ETH_ALEN; j++)
1480 total_one = crc16_byte(total_one,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001481 tt_common->addr[j]);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001482 total ^= total_one;
1483 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001484 rcu_read_unlock();
1485 }
1486
1487 return total;
1488}
1489
Sven Eckelmann56303d32012-06-05 22:31:31 +02001490static void batadv_tt_req_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001491{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001492 struct batadv_tt_req_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001493
Sven Eckelmann807736f2012-07-15 22:26:51 +02001494 spin_lock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001495
Sven Eckelmann807736f2012-07-15 22:26:51 +02001496 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Antonio Quartullia73105b2011-04-27 14:27:44 +02001497 list_del(&node->list);
1498 kfree(node);
1499 }
1500
Sven Eckelmann807736f2012-07-15 22:26:51 +02001501 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001502}
1503
Sven Eckelmann56303d32012-06-05 22:31:31 +02001504static void batadv_tt_save_orig_buffer(struct batadv_priv *bat_priv,
1505 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001506 const unsigned char *tt_buff,
1507 uint8_t tt_num_changes)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001508{
Sven Eckelmann08c36d32012-05-12 02:09:39 +02001509 uint16_t tt_buff_len = batadv_tt_len(tt_num_changes);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001510
1511 /* Replace the old buffer only if I received something in the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001512 * last OGM (the OGM could carry no changes)
1513 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001514 spin_lock_bh(&orig_node->tt_buff_lock);
1515 if (tt_buff_len > 0) {
1516 kfree(orig_node->tt_buff);
1517 orig_node->tt_buff_len = 0;
1518 orig_node->tt_buff = kmalloc(tt_buff_len, GFP_ATOMIC);
1519 if (orig_node->tt_buff) {
1520 memcpy(orig_node->tt_buff, tt_buff, tt_buff_len);
1521 orig_node->tt_buff_len = tt_buff_len;
1522 }
1523 }
1524 spin_unlock_bh(&orig_node->tt_buff_lock);
1525}
1526
Sven Eckelmann56303d32012-06-05 22:31:31 +02001527static void batadv_tt_req_purge(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001528{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001529 struct batadv_tt_req_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001530
Sven Eckelmann807736f2012-07-15 22:26:51 +02001531 spin_lock_bh(&bat_priv->tt.req_list_lock);
1532 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001533 if (batadv_has_timed_out(node->issued_at,
1534 BATADV_TT_REQUEST_TIMEOUT)) {
Antonio Quartullia73105b2011-04-27 14:27:44 +02001535 list_del(&node->list);
1536 kfree(node);
1537 }
1538 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02001539 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001540}
1541
1542/* returns the pointer to the new tt_req_node struct if no request
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001543 * has already been issued for this orig_node, NULL otherwise
1544 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001545static struct batadv_tt_req_node *
1546batadv_new_tt_req_node(struct batadv_priv *bat_priv,
1547 struct batadv_orig_node *orig_node)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001548{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001549 struct batadv_tt_req_node *tt_req_node_tmp, *tt_req_node = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001550
Sven Eckelmann807736f2012-07-15 22:26:51 +02001551 spin_lock_bh(&bat_priv->tt.req_list_lock);
1552 list_for_each_entry(tt_req_node_tmp, &bat_priv->tt.req_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001553 if (batadv_compare_eth(tt_req_node_tmp, orig_node) &&
1554 !batadv_has_timed_out(tt_req_node_tmp->issued_at,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001555 BATADV_TT_REQUEST_TIMEOUT))
Antonio Quartullia73105b2011-04-27 14:27:44 +02001556 goto unlock;
1557 }
1558
1559 tt_req_node = kmalloc(sizeof(*tt_req_node), GFP_ATOMIC);
1560 if (!tt_req_node)
1561 goto unlock;
1562
1563 memcpy(tt_req_node->addr, orig_node->orig, ETH_ALEN);
1564 tt_req_node->issued_at = jiffies;
1565
Sven Eckelmann807736f2012-07-15 22:26:51 +02001566 list_add(&tt_req_node->list, &bat_priv->tt.req_list);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001567unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02001568 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001569 return tt_req_node;
1570}
1571
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001572/* data_ptr is useless here, but has to be kept to respect the prototype */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001573static int batadv_tt_local_valid_entry(const void *entry_ptr,
1574 const void *data_ptr)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001575{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001576 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001577
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001578 if (tt_common_entry->flags & BATADV_TT_CLIENT_NEW)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001579 return 0;
1580 return 1;
1581}
1582
Sven Eckelmanna5130882012-05-16 20:23:16 +02001583static int batadv_tt_global_valid(const void *entry_ptr,
1584 const void *data_ptr)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001585{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001586 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
1587 const struct batadv_tt_global_entry *tt_global_entry;
1588 const struct batadv_orig_node *orig_node = data_ptr;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001589
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001590 if (tt_common_entry->flags & BATADV_TT_CLIENT_ROAM ||
1591 tt_common_entry->flags & BATADV_TT_CLIENT_TEMP)
Antonio Quartullicc47f662011-04-27 14:27:57 +02001592 return 0;
1593
Sven Eckelmann56303d32012-06-05 22:31:31 +02001594 tt_global_entry = container_of(tt_common_entry,
1595 struct batadv_tt_global_entry,
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001596 common);
1597
Sven Eckelmanna5130882012-05-16 20:23:16 +02001598 return batadv_tt_global_entry_has_orig(tt_global_entry, orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001599}
1600
Sven Eckelmanna5130882012-05-16 20:23:16 +02001601static struct sk_buff *
1602batadv_tt_response_fill_table(uint16_t tt_len, uint8_t ttvn,
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001603 struct batadv_hashtable *hash,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001604 struct batadv_hard_iface *primary_if,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001605 int (*valid_cb)(const void *, const void *),
1606 void *cb_data)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001607{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001608 struct batadv_tt_common_entry *tt_common_entry;
Sven Eckelmann96412692012-06-05 22:31:30 +02001609 struct batadv_tt_query_packet *tt_response;
1610 struct batadv_tt_change *tt_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001611 struct hlist_node *node;
1612 struct hlist_head *head;
1613 struct sk_buff *skb = NULL;
1614 uint16_t tt_tot, tt_count;
Sven Eckelmann96412692012-06-05 22:31:30 +02001615 ssize_t tt_query_size = sizeof(struct batadv_tt_query_packet);
Antonio Quartullic90681b2011-10-05 17:05:25 +02001616 uint32_t i;
Sven Eckelmann96412692012-06-05 22:31:30 +02001617 size_t len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001618
1619 if (tt_query_size + tt_len > primary_if->soft_iface->mtu) {
1620 tt_len = primary_if->soft_iface->mtu - tt_query_size;
Sven Eckelmann96412692012-06-05 22:31:30 +02001621 tt_len -= tt_len % sizeof(struct batadv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001622 }
Sven Eckelmann96412692012-06-05 22:31:30 +02001623 tt_tot = tt_len / sizeof(struct batadv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001624
Sven Eckelmann96412692012-06-05 22:31:30 +02001625 len = tt_query_size + tt_len;
Sven Eckelmann5b246572012-11-04 17:11:45 +01001626 skb = dev_alloc_skb(len + ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001627 if (!skb)
1628 goto out;
1629
Sven Eckelmann5b246572012-11-04 17:11:45 +01001630 skb_reserve(skb, ETH_HLEN + NET_IP_ALIGN);
Sven Eckelmann96412692012-06-05 22:31:30 +02001631 tt_response = (struct batadv_tt_query_packet *)skb_put(skb, len);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001632 tt_response->ttvn = ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001633
Sven Eckelmann96412692012-06-05 22:31:30 +02001634 tt_change = (struct batadv_tt_change *)(skb->data + tt_query_size);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001635 tt_count = 0;
1636
1637 rcu_read_lock();
1638 for (i = 0; i < hash->size; i++) {
1639 head = &hash->table[i];
1640
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001641 hlist_for_each_entry_rcu(tt_common_entry, node,
Antonio Quartullia73105b2011-04-27 14:27:44 +02001642 head, hash_entry) {
1643 if (tt_count == tt_tot)
1644 break;
1645
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001646 if ((valid_cb) && (!valid_cb(tt_common_entry, cb_data)))
Antonio Quartullia73105b2011-04-27 14:27:44 +02001647 continue;
1648
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001649 memcpy(tt_change->addr, tt_common_entry->addr,
1650 ETH_ALEN);
Antonio Quartulli27b37eb2012-11-08 14:21:11 +01001651 tt_change->flags = tt_common_entry->flags;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001652
1653 tt_count++;
1654 tt_change++;
1655 }
1656 }
1657 rcu_read_unlock();
1658
Antonio Quartulli9d852392011-10-17 14:25:13 +02001659 /* store in the message the number of entries we have successfully
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001660 * copied
1661 */
Antonio Quartulli9d852392011-10-17 14:25:13 +02001662 tt_response->tt_data = htons(tt_count);
1663
Antonio Quartullia73105b2011-04-27 14:27:44 +02001664out:
1665 return skb;
1666}
1667
Sven Eckelmann56303d32012-06-05 22:31:31 +02001668static int batadv_send_tt_request(struct batadv_priv *bat_priv,
1669 struct batadv_orig_node *dst_orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001670 uint8_t ttvn, uint16_t tt_crc,
1671 bool full_table)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001672{
1673 struct sk_buff *skb = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +02001674 struct batadv_tt_query_packet *tt_request;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001675 struct batadv_hard_iface *primary_if;
1676 struct batadv_tt_req_node *tt_req_node = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001677 int ret = 1;
Sven Eckelmann96412692012-06-05 22:31:30 +02001678 size_t tt_req_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001679
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001680 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001681 if (!primary_if)
1682 goto out;
1683
1684 /* The new tt_req will be issued only if I'm not waiting for a
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001685 * reply from the same orig_node yet
1686 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001687 tt_req_node = batadv_new_tt_req_node(bat_priv, dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001688 if (!tt_req_node)
1689 goto out;
1690
Sven Eckelmann5b246572012-11-04 17:11:45 +01001691 skb = dev_alloc_skb(sizeof(*tt_request) + ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001692 if (!skb)
1693 goto out;
1694
Sven Eckelmann5b246572012-11-04 17:11:45 +01001695 skb_reserve(skb, ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001696
Sven Eckelmann96412692012-06-05 22:31:30 +02001697 tt_req_len = sizeof(*tt_request);
1698 tt_request = (struct batadv_tt_query_packet *)skb_put(skb, tt_req_len);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001699
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001700 tt_request->header.packet_type = BATADV_TT_QUERY;
Sven Eckelmann7e071c72012-06-03 22:19:13 +02001701 tt_request->header.version = BATADV_COMPAT_VERSION;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001702 memcpy(tt_request->src, primary_if->net_dev->dev_addr, ETH_ALEN);
1703 memcpy(tt_request->dst, dst_orig_node->orig, ETH_ALEN);
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001704 tt_request->header.ttl = BATADV_TTL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001705 tt_request->ttvn = ttvn;
Antonio Quartulli6d2003f2012-04-14 13:15:27 +02001706 tt_request->tt_data = htons(tt_crc);
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001707 tt_request->flags = BATADV_TT_REQUEST;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001708
1709 if (full_table)
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001710 tt_request->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001711
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02001712 batadv_dbg(BATADV_DBG_TT, bat_priv, "Sending TT_REQUEST to %pM [%c]\n",
1713 dst_orig_node->orig, (full_table ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02001714
Sven Eckelmannd69909d2012-06-03 22:19:20 +02001715 batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02001716
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02001717 if (batadv_send_skb_to_orig(skb, dst_orig_node, NULL))
1718 ret = 0;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001719
1720out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02001721 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001722 batadv_hardif_free_ref(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001723 if (ret)
1724 kfree_skb(skb);
1725 if (ret && tt_req_node) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02001726 spin_lock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001727 list_del(&tt_req_node->list);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001728 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001729 kfree(tt_req_node);
1730 }
1731 return ret;
1732}
1733
Sven Eckelmann96412692012-06-05 22:31:30 +02001734static bool
Sven Eckelmann56303d32012-06-05 22:31:31 +02001735batadv_send_other_tt_response(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +02001736 struct batadv_tt_query_packet *tt_request)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001737{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001738 struct batadv_orig_node *req_dst_orig_node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001739 struct batadv_orig_node *res_dst_orig_node = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001740 struct batadv_hard_iface *primary_if = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001741 uint8_t orig_ttvn, req_ttvn, ttvn;
1742 int ret = false;
1743 unsigned char *tt_buff;
1744 bool full_table;
1745 uint16_t tt_len, tt_tot;
1746 struct sk_buff *skb = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +02001747 struct batadv_tt_query_packet *tt_response;
Sven Eckelmannc67893d2012-07-08 18:33:51 +02001748 uint8_t *packet_pos;
Sven Eckelmann96412692012-06-05 22:31:30 +02001749 size_t len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001750
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001751 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001752 "Received TT_REQUEST from %pM for ttvn: %u (%pM) [%c]\n",
1753 tt_request->src, tt_request->ttvn, tt_request->dst,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001754 (tt_request->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02001755
1756 /* Let's get the orig node of the REAL destination */
Sven Eckelmannda641192012-05-12 13:48:56 +02001757 req_dst_orig_node = batadv_orig_hash_find(bat_priv, tt_request->dst);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001758 if (!req_dst_orig_node)
1759 goto out;
1760
Sven Eckelmannda641192012-05-12 13:48:56 +02001761 res_dst_orig_node = batadv_orig_hash_find(bat_priv, tt_request->src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001762 if (!res_dst_orig_node)
1763 goto out;
1764
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001765 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001766 if (!primary_if)
1767 goto out;
1768
1769 orig_ttvn = (uint8_t)atomic_read(&req_dst_orig_node->last_ttvn);
1770 req_ttvn = tt_request->ttvn;
1771
Antonio Quartulli015758d2011-07-09 17:52:13 +02001772 /* I don't have the requested data */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001773 if (orig_ttvn != req_ttvn ||
Al Virof25bd582012-04-22 07:44:27 +01001774 tt_request->tt_data != htons(req_dst_orig_node->tt_crc))
Antonio Quartullia73105b2011-04-27 14:27:44 +02001775 goto out;
1776
Antonio Quartulli015758d2011-07-09 17:52:13 +02001777 /* If the full table has been explicitly requested */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001778 if (tt_request->flags & BATADV_TT_FULL_TABLE ||
Antonio Quartullia73105b2011-04-27 14:27:44 +02001779 !req_dst_orig_node->tt_buff)
1780 full_table = true;
1781 else
1782 full_table = false;
1783
1784 /* In this version, fragmentation is not implemented, then
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001785 * I'll send only one packet with as much TT entries as I can
1786 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001787 if (!full_table) {
1788 spin_lock_bh(&req_dst_orig_node->tt_buff_lock);
1789 tt_len = req_dst_orig_node->tt_buff_len;
Sven Eckelmann96412692012-06-05 22:31:30 +02001790 tt_tot = tt_len / sizeof(struct batadv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001791
Sven Eckelmann96412692012-06-05 22:31:30 +02001792 len = sizeof(*tt_response) + tt_len;
Sven Eckelmann5b246572012-11-04 17:11:45 +01001793 skb = dev_alloc_skb(len + ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001794 if (!skb)
1795 goto unlock;
1796
Sven Eckelmann5b246572012-11-04 17:11:45 +01001797 skb_reserve(skb, ETH_HLEN + NET_IP_ALIGN);
Sven Eckelmannc67893d2012-07-08 18:33:51 +02001798 packet_pos = skb_put(skb, len);
1799 tt_response = (struct batadv_tt_query_packet *)packet_pos;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001800 tt_response->ttvn = req_ttvn;
1801 tt_response->tt_data = htons(tt_tot);
1802
Sven Eckelmann96412692012-06-05 22:31:30 +02001803 tt_buff = skb->data + sizeof(*tt_response);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001804 /* Copy the last orig_node's OGM buffer */
1805 memcpy(tt_buff, req_dst_orig_node->tt_buff,
1806 req_dst_orig_node->tt_buff_len);
1807
1808 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
1809 } else {
Sven Eckelmann96412692012-06-05 22:31:30 +02001810 tt_len = (uint16_t)atomic_read(&req_dst_orig_node->tt_size);
1811 tt_len *= sizeof(struct batadv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001812 ttvn = (uint8_t)atomic_read(&req_dst_orig_node->last_ttvn);
1813
Sven Eckelmanna5130882012-05-16 20:23:16 +02001814 skb = batadv_tt_response_fill_table(tt_len, ttvn,
Sven Eckelmann807736f2012-07-15 22:26:51 +02001815 bat_priv->tt.global_hash,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001816 primary_if,
1817 batadv_tt_global_valid,
1818 req_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001819 if (!skb)
1820 goto out;
1821
Sven Eckelmann96412692012-06-05 22:31:30 +02001822 tt_response = (struct batadv_tt_query_packet *)skb->data;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001823 }
1824
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001825 tt_response->header.packet_type = BATADV_TT_QUERY;
Sven Eckelmann7e071c72012-06-03 22:19:13 +02001826 tt_response->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001827 tt_response->header.ttl = BATADV_TTL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001828 memcpy(tt_response->src, req_dst_orig_node->orig, ETH_ALEN);
1829 memcpy(tt_response->dst, tt_request->src, ETH_ALEN);
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001830 tt_response->flags = BATADV_TT_RESPONSE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001831
1832 if (full_table)
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001833 tt_response->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001834
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001835 batadv_dbg(BATADV_DBG_TT, bat_priv,
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02001836 "Sending TT_RESPONSE %pM for %pM (ttvn: %u)\n",
1837 res_dst_orig_node->orig, req_dst_orig_node->orig, req_ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001838
Sven Eckelmannd69909d2012-06-03 22:19:20 +02001839 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02001840
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02001841 if (batadv_send_skb_to_orig(skb, res_dst_orig_node, NULL))
1842 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001843 goto out;
1844
1845unlock:
1846 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
1847
1848out:
1849 if (res_dst_orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001850 batadv_orig_node_free_ref(res_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001851 if (req_dst_orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001852 batadv_orig_node_free_ref(req_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001853 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001854 batadv_hardif_free_ref(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001855 if (!ret)
1856 kfree_skb(skb);
1857 return ret;
1858
1859}
Sven Eckelmann96412692012-06-05 22:31:30 +02001860
1861static bool
Sven Eckelmann56303d32012-06-05 22:31:31 +02001862batadv_send_my_tt_response(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +02001863 struct batadv_tt_query_packet *tt_request)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001864{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001865 struct batadv_orig_node *orig_node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001866 struct batadv_hard_iface *primary_if = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001867 uint8_t my_ttvn, req_ttvn, ttvn;
1868 int ret = false;
1869 unsigned char *tt_buff;
1870 bool full_table;
1871 uint16_t tt_len, tt_tot;
1872 struct sk_buff *skb = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +02001873 struct batadv_tt_query_packet *tt_response;
Sven Eckelmannc67893d2012-07-08 18:33:51 +02001874 uint8_t *packet_pos;
Sven Eckelmann96412692012-06-05 22:31:30 +02001875 size_t len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001876
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001877 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001878 "Received TT_REQUEST from %pM for ttvn: %u (me) [%c]\n",
1879 tt_request->src, tt_request->ttvn,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001880 (tt_request->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02001881
1882
Sven Eckelmann807736f2012-07-15 22:26:51 +02001883 my_ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001884 req_ttvn = tt_request->ttvn;
1885
Sven Eckelmannda641192012-05-12 13:48:56 +02001886 orig_node = batadv_orig_hash_find(bat_priv, tt_request->src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001887 if (!orig_node)
1888 goto out;
1889
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001890 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001891 if (!primary_if)
1892 goto out;
1893
1894 /* If the full table has been explicitly requested or the gap
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001895 * is too big send the whole local translation table
1896 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001897 if (tt_request->flags & BATADV_TT_FULL_TABLE || my_ttvn != req_ttvn ||
Sven Eckelmann807736f2012-07-15 22:26:51 +02001898 !bat_priv->tt.last_changeset)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001899 full_table = true;
1900 else
1901 full_table = false;
1902
1903 /* In this version, fragmentation is not implemented, then
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001904 * I'll send only one packet with as much TT entries as I can
1905 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001906 if (!full_table) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02001907 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
1908 tt_len = bat_priv->tt.last_changeset_len;
Sven Eckelmann96412692012-06-05 22:31:30 +02001909 tt_tot = tt_len / sizeof(struct batadv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001910
Sven Eckelmann96412692012-06-05 22:31:30 +02001911 len = sizeof(*tt_response) + tt_len;
Sven Eckelmann5b246572012-11-04 17:11:45 +01001912 skb = dev_alloc_skb(len + ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001913 if (!skb)
1914 goto unlock;
1915
Sven Eckelmann5b246572012-11-04 17:11:45 +01001916 skb_reserve(skb, ETH_HLEN + NET_IP_ALIGN);
Sven Eckelmannc67893d2012-07-08 18:33:51 +02001917 packet_pos = skb_put(skb, len);
1918 tt_response = (struct batadv_tt_query_packet *)packet_pos;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001919 tt_response->ttvn = req_ttvn;
1920 tt_response->tt_data = htons(tt_tot);
1921
Sven Eckelmann96412692012-06-05 22:31:30 +02001922 tt_buff = skb->data + sizeof(*tt_response);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001923 memcpy(tt_buff, bat_priv->tt.last_changeset,
1924 bat_priv->tt.last_changeset_len);
1925 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001926 } else {
Sven Eckelmann807736f2012-07-15 22:26:51 +02001927 tt_len = (uint16_t)atomic_read(&bat_priv->tt.local_entry_num);
Sven Eckelmann96412692012-06-05 22:31:30 +02001928 tt_len *= sizeof(struct batadv_tt_change);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001929 ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001930
Sven Eckelmanna5130882012-05-16 20:23:16 +02001931 skb = batadv_tt_response_fill_table(tt_len, ttvn,
Sven Eckelmann807736f2012-07-15 22:26:51 +02001932 bat_priv->tt.local_hash,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001933 primary_if,
1934 batadv_tt_local_valid_entry,
1935 NULL);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001936 if (!skb)
1937 goto out;
1938
Sven Eckelmann96412692012-06-05 22:31:30 +02001939 tt_response = (struct batadv_tt_query_packet *)skb->data;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001940 }
1941
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001942 tt_response->header.packet_type = BATADV_TT_QUERY;
Sven Eckelmann7e071c72012-06-03 22:19:13 +02001943 tt_response->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001944 tt_response->header.ttl = BATADV_TTL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001945 memcpy(tt_response->src, primary_if->net_dev->dev_addr, ETH_ALEN);
1946 memcpy(tt_response->dst, tt_request->src, ETH_ALEN);
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001947 tt_response->flags = BATADV_TT_RESPONSE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001948
1949 if (full_table)
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001950 tt_response->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001951
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001952 batadv_dbg(BATADV_DBG_TT, bat_priv,
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02001953 "Sending TT_RESPONSE to %pM [%c]\n",
1954 orig_node->orig,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001955 (tt_response->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02001956
Sven Eckelmannd69909d2012-06-03 22:19:20 +02001957 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02001958
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02001959 if (batadv_send_skb_to_orig(skb, orig_node, NULL))
1960 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001961 goto out;
1962
1963unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02001964 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001965out:
1966 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001967 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001968 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001969 batadv_hardif_free_ref(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001970 if (!ret)
1971 kfree_skb(skb);
1972 /* This packet was for me, so it doesn't need to be re-routed */
1973 return true;
1974}
1975
Sven Eckelmann56303d32012-06-05 22:31:31 +02001976bool batadv_send_tt_response(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +02001977 struct batadv_tt_query_packet *tt_request)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001978{
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001979 if (batadv_is_my_mac(tt_request->dst)) {
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001980 /* don't answer backbone gws! */
Sven Eckelmann08adf152012-05-12 13:38:47 +02001981 if (batadv_bla_is_backbone_gw_orig(bat_priv, tt_request->src))
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001982 return true;
1983
Sven Eckelmanna5130882012-05-16 20:23:16 +02001984 return batadv_send_my_tt_response(bat_priv, tt_request);
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001985 } else {
Sven Eckelmanna5130882012-05-16 20:23:16 +02001986 return batadv_send_other_tt_response(bat_priv, tt_request);
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001987 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001988}
1989
Sven Eckelmann56303d32012-06-05 22:31:31 +02001990static void _batadv_tt_update_changes(struct batadv_priv *bat_priv,
1991 struct batadv_orig_node *orig_node,
Sven Eckelmann96412692012-06-05 22:31:30 +02001992 struct batadv_tt_change *tt_change,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001993 uint16_t tt_num_changes, uint8_t ttvn)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001994{
1995 int i;
Sven Eckelmanna5130882012-05-16 20:23:16 +02001996 int roams;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001997
1998 for (i = 0; i < tt_num_changes; i++) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001999 if ((tt_change + i)->flags & BATADV_TT_CLIENT_DEL) {
2000 roams = (tt_change + i)->flags & BATADV_TT_CLIENT_ROAM;
Sven Eckelmanna5130882012-05-16 20:23:16 +02002001 batadv_tt_global_del(bat_priv, orig_node,
2002 (tt_change + i)->addr,
Antonio Quartullid4f44692012-05-25 00:00:54 +02002003 "tt removed by changes",
2004 roams);
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002005 } else {
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002006 if (!batadv_tt_global_add(bat_priv, orig_node,
Antonio Quartullid4f44692012-05-25 00:00:54 +02002007 (tt_change + i)->addr,
2008 (tt_change + i)->flags, ttvn))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002009 /* In case of problem while storing a
2010 * global_entry, we stop the updating
2011 * procedure without committing the
2012 * ttvn change. This will avoid to send
2013 * corrupted data on tt_request
2014 */
2015 return;
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002016 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002017 }
Antonio Quartulli17071572011-11-07 16:36:40 +01002018 orig_node->tt_initialised = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002019}
2020
Sven Eckelmann56303d32012-06-05 22:31:31 +02002021static void batadv_tt_fill_gtable(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +02002022 struct batadv_tt_query_packet *tt_response)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002023{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002024 struct batadv_orig_node *orig_node;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002025
Sven Eckelmannda641192012-05-12 13:48:56 +02002026 orig_node = batadv_orig_hash_find(bat_priv, tt_response->src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002027 if (!orig_node)
2028 goto out;
2029
2030 /* Purge the old table first.. */
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002031 batadv_tt_global_del_orig(bat_priv, orig_node, "Received full table");
Antonio Quartullia73105b2011-04-27 14:27:44 +02002032
Sven Eckelmanna5130882012-05-16 20:23:16 +02002033 _batadv_tt_update_changes(bat_priv, orig_node,
Sven Eckelmann96412692012-06-05 22:31:30 +02002034 (struct batadv_tt_change *)(tt_response + 1),
Sven Eckelmanna5130882012-05-16 20:23:16 +02002035 ntohs(tt_response->tt_data),
2036 tt_response->ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002037
2038 spin_lock_bh(&orig_node->tt_buff_lock);
2039 kfree(orig_node->tt_buff);
2040 orig_node->tt_buff_len = 0;
2041 orig_node->tt_buff = NULL;
2042 spin_unlock_bh(&orig_node->tt_buff_lock);
2043
2044 atomic_set(&orig_node->last_ttvn, tt_response->ttvn);
2045
2046out:
2047 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002048 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002049}
2050
Sven Eckelmann56303d32012-06-05 22:31:31 +02002051static void batadv_tt_update_changes(struct batadv_priv *bat_priv,
2052 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002053 uint16_t tt_num_changes, uint8_t ttvn,
Sven Eckelmann96412692012-06-05 22:31:30 +02002054 struct batadv_tt_change *tt_change)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002055{
Sven Eckelmanna5130882012-05-16 20:23:16 +02002056 _batadv_tt_update_changes(bat_priv, orig_node, tt_change,
2057 tt_num_changes, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002058
Sven Eckelmanna5130882012-05-16 20:23:16 +02002059 batadv_tt_save_orig_buffer(bat_priv, orig_node,
2060 (unsigned char *)tt_change, tt_num_changes);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002061 atomic_set(&orig_node->last_ttvn, ttvn);
2062}
2063
Sven Eckelmann56303d32012-06-05 22:31:31 +02002064bool batadv_is_my_client(struct batadv_priv *bat_priv, const uint8_t *addr)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002065{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002066 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002067 bool ret = false;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002068
Sven Eckelmanna5130882012-05-16 20:23:16 +02002069 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002070 if (!tt_local_entry)
2071 goto out;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002072 /* Check if the client has been logically deleted (but is kept for
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002073 * consistency purpose)
2074 */
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02002075 if ((tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING) ||
2076 (tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM))
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002077 goto out;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002078 ret = true;
2079out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02002080 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02002081 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002082 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002083}
2084
Sven Eckelmann56303d32012-06-05 22:31:31 +02002085void batadv_handle_tt_response(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +02002086 struct batadv_tt_query_packet *tt_response)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002087{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002088 struct batadv_tt_req_node *node, *safe;
2089 struct batadv_orig_node *orig_node = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +02002090 struct batadv_tt_change *tt_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002091
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002092 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002093 "Received TT_RESPONSE from %pM for ttvn %d t_size: %d [%c]\n",
2094 tt_response->src, tt_response->ttvn,
2095 ntohs(tt_response->tt_data),
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002096 (tt_response->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002097
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01002098 /* we should have never asked a backbone gw */
Sven Eckelmann08adf152012-05-12 13:38:47 +02002099 if (batadv_bla_is_backbone_gw_orig(bat_priv, tt_response->src))
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01002100 goto out;
2101
Sven Eckelmannda641192012-05-12 13:48:56 +02002102 orig_node = batadv_orig_hash_find(bat_priv, tt_response->src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002103 if (!orig_node)
2104 goto out;
2105
Sven Eckelmann96412692012-06-05 22:31:30 +02002106 if (tt_response->flags & BATADV_TT_FULL_TABLE) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02002107 batadv_tt_fill_gtable(bat_priv, tt_response);
Sven Eckelmann96412692012-06-05 22:31:30 +02002108 } else {
2109 tt_change = (struct batadv_tt_change *)(tt_response + 1);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002110 batadv_tt_update_changes(bat_priv, orig_node,
2111 ntohs(tt_response->tt_data),
Sven Eckelmann96412692012-06-05 22:31:30 +02002112 tt_response->ttvn, tt_change);
2113 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002114
2115 /* Delete the tt_req_node from pending tt_requests list */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002116 spin_lock_bh(&bat_priv->tt.req_list_lock);
2117 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002118 if (!batadv_compare_eth(node->addr, tt_response->src))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002119 continue;
2120 list_del(&node->list);
2121 kfree(node);
2122 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02002123 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002124
2125 /* Recalculate the CRC for this orig_node and store it */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002126 orig_node->tt_crc = batadv_tt_global_crc(bat_priv, orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002127out:
2128 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002129 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002130}
2131
Sven Eckelmann56303d32012-06-05 22:31:31 +02002132int batadv_tt_init(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002133{
Sven Eckelmann5346c352012-05-05 13:27:28 +02002134 int ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002135
Sven Eckelmanna5130882012-05-16 20:23:16 +02002136 ret = batadv_tt_local_init(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +02002137 if (ret < 0)
2138 return ret;
2139
Sven Eckelmanna5130882012-05-16 20:23:16 +02002140 ret = batadv_tt_global_init(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +02002141 if (ret < 0)
2142 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002143
Sven Eckelmanna5130882012-05-16 20:23:16 +02002144 batadv_tt_start_timer(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002145
2146 return 1;
2147}
2148
Sven Eckelmann56303d32012-06-05 22:31:31 +02002149static void batadv_tt_roam_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002150{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002151 struct batadv_tt_roam_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002152
Sven Eckelmann807736f2012-07-15 22:26:51 +02002153 spin_lock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002154
Sven Eckelmann807736f2012-07-15 22:26:51 +02002155 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
Antonio Quartullicc47f662011-04-27 14:27:57 +02002156 list_del(&node->list);
2157 kfree(node);
2158 }
2159
Sven Eckelmann807736f2012-07-15 22:26:51 +02002160 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002161}
2162
Sven Eckelmann56303d32012-06-05 22:31:31 +02002163static void batadv_tt_roam_purge(struct batadv_priv *bat_priv)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002164{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002165 struct batadv_tt_roam_node *node, *safe;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002166
Sven Eckelmann807736f2012-07-15 22:26:51 +02002167 spin_lock_bh(&bat_priv->tt.roam_list_lock);
2168 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002169 if (!batadv_has_timed_out(node->first_time,
2170 BATADV_ROAMING_MAX_TIME))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002171 continue;
2172
2173 list_del(&node->list);
2174 kfree(node);
2175 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02002176 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002177}
2178
2179/* This function checks whether the client already reached the
2180 * maximum number of possible roaming phases. In this case the ROAMING_ADV
2181 * will not be sent.
2182 *
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002183 * returns true if the ROAMING_ADV can be sent, false otherwise
2184 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002185static bool batadv_tt_check_roam_count(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002186 uint8_t *client)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002187{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002188 struct batadv_tt_roam_node *tt_roam_node;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002189 bool ret = false;
2190
Sven Eckelmann807736f2012-07-15 22:26:51 +02002191 spin_lock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002192 /* The new tt_req will be issued only if I'm not waiting for a
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002193 * reply from the same orig_node yet
2194 */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002195 list_for_each_entry(tt_roam_node, &bat_priv->tt.roam_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002196 if (!batadv_compare_eth(tt_roam_node->addr, client))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002197 continue;
2198
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002199 if (batadv_has_timed_out(tt_roam_node->first_time,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002200 BATADV_ROAMING_MAX_TIME))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002201 continue;
2202
Sven Eckelmann3e348192012-05-16 20:23:22 +02002203 if (!batadv_atomic_dec_not_zero(&tt_roam_node->counter))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002204 /* Sorry, you roamed too many times! */
2205 goto unlock;
2206 ret = true;
2207 break;
2208 }
2209
2210 if (!ret) {
2211 tt_roam_node = kmalloc(sizeof(*tt_roam_node), GFP_ATOMIC);
2212 if (!tt_roam_node)
2213 goto unlock;
2214
2215 tt_roam_node->first_time = jiffies;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002216 atomic_set(&tt_roam_node->counter,
2217 BATADV_ROAMING_MAX_COUNT - 1);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002218 memcpy(tt_roam_node->addr, client, ETH_ALEN);
2219
Sven Eckelmann807736f2012-07-15 22:26:51 +02002220 list_add(&tt_roam_node->list, &bat_priv->tt.roam_list);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002221 ret = true;
2222 }
2223
2224unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02002225 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002226 return ret;
2227}
2228
Sven Eckelmann56303d32012-06-05 22:31:31 +02002229static void batadv_send_roam_adv(struct batadv_priv *bat_priv, uint8_t *client,
2230 struct batadv_orig_node *orig_node)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002231{
Antonio Quartullicc47f662011-04-27 14:27:57 +02002232 struct sk_buff *skb = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +02002233 struct batadv_roam_adv_packet *roam_adv_packet;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002234 int ret = 1;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002235 struct batadv_hard_iface *primary_if;
Sven Eckelmann96412692012-06-05 22:31:30 +02002236 size_t len = sizeof(*roam_adv_packet);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002237
2238 /* before going on we have to check whether the client has
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002239 * already roamed to us too many times
2240 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002241 if (!batadv_tt_check_roam_count(bat_priv, client))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002242 goto out;
2243
Sven Eckelmann5b246572012-11-04 17:11:45 +01002244 skb = dev_alloc_skb(sizeof(*roam_adv_packet) + ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002245 if (!skb)
2246 goto out;
2247
Sven Eckelmann5b246572012-11-04 17:11:45 +01002248 skb_reserve(skb, ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002249
Sven Eckelmann96412692012-06-05 22:31:30 +02002250 roam_adv_packet = (struct batadv_roam_adv_packet *)skb_put(skb, len);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002251
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002252 roam_adv_packet->header.packet_type = BATADV_ROAM_ADV;
Sven Eckelmann7e071c72012-06-03 22:19:13 +02002253 roam_adv_packet->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002254 roam_adv_packet->header.ttl = BATADV_TTL;
Sven Eckelmann162d5492012-06-28 11:56:52 +02002255 roam_adv_packet->reserved = 0;
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002256 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002257 if (!primary_if)
2258 goto out;
2259 memcpy(roam_adv_packet->src, primary_if->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002260 batadv_hardif_free_ref(primary_if);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002261 memcpy(roam_adv_packet->dst, orig_node->orig, ETH_ALEN);
2262 memcpy(roam_adv_packet->client, client, ETH_ALEN);
2263
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002264 batadv_dbg(BATADV_DBG_TT, bat_priv,
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02002265 "Sending ROAMING_ADV to %pM (client %pM)\n",
2266 orig_node->orig, client);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002267
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002268 batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02002269
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02002270 if (batadv_send_skb_to_orig(skb, orig_node, NULL))
2271 ret = 0;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002272
2273out:
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02002274 if (ret && skb)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002275 kfree_skb(skb);
2276 return;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002277}
2278
Sven Eckelmanna5130882012-05-16 20:23:16 +02002279static void batadv_tt_purge(struct work_struct *work)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002280{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002281 struct delayed_work *delayed_work;
Sven Eckelmann807736f2012-07-15 22:26:51 +02002282 struct batadv_priv_tt *priv_tt;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002283 struct batadv_priv *bat_priv;
2284
2285 delayed_work = container_of(work, struct delayed_work, work);
Sven Eckelmann807736f2012-07-15 22:26:51 +02002286 priv_tt = container_of(delayed_work, struct batadv_priv_tt, work);
2287 bat_priv = container_of(priv_tt, struct batadv_priv, tt);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002288
Sven Eckelmanna5130882012-05-16 20:23:16 +02002289 batadv_tt_local_purge(bat_priv);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002290 batadv_tt_global_purge(bat_priv);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002291 batadv_tt_req_purge(bat_priv);
2292 batadv_tt_roam_purge(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002293
Sven Eckelmanna5130882012-05-16 20:23:16 +02002294 batadv_tt_start_timer(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002295}
Antonio Quartullicc47f662011-04-27 14:27:57 +02002296
Sven Eckelmann56303d32012-06-05 22:31:31 +02002297void batadv_tt_free(struct batadv_priv *bat_priv)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002298{
Sven Eckelmann807736f2012-07-15 22:26:51 +02002299 cancel_delayed_work_sync(&bat_priv->tt.work);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002300
Sven Eckelmanna5130882012-05-16 20:23:16 +02002301 batadv_tt_local_table_free(bat_priv);
2302 batadv_tt_global_table_free(bat_priv);
2303 batadv_tt_req_list_free(bat_priv);
2304 batadv_tt_changes_list_free(bat_priv);
2305 batadv_tt_roam_list_free(bat_priv);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002306
Sven Eckelmann807736f2012-07-15 22:26:51 +02002307 kfree(bat_priv->tt.last_changeset);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002308}
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002309
Antonio Quartulli697f2532011-11-07 16:47:01 +01002310/* This function will enable or disable the specified flags for all the entries
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002311 * in the given hash table and returns the number of modified entries
2312 */
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02002313static uint16_t batadv_tt_set_flags(struct batadv_hashtable *hash,
2314 uint16_t flags, bool enable)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002315{
Antonio Quartullic90681b2011-10-05 17:05:25 +02002316 uint32_t i;
Antonio Quartulli697f2532011-11-07 16:47:01 +01002317 uint16_t changed_num = 0;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002318 struct hlist_head *head;
2319 struct hlist_node *node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002320 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002321
2322 if (!hash)
Antonio Quartulli697f2532011-11-07 16:47:01 +01002323 goto out;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002324
2325 for (i = 0; i < hash->size; i++) {
2326 head = &hash->table[i];
2327
2328 rcu_read_lock();
Antonio Quartulli48100ba2011-10-30 12:17:33 +01002329 hlist_for_each_entry_rcu(tt_common_entry, node,
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002330 head, hash_entry) {
Antonio Quartulli697f2532011-11-07 16:47:01 +01002331 if (enable) {
2332 if ((tt_common_entry->flags & flags) == flags)
2333 continue;
2334 tt_common_entry->flags |= flags;
2335 } else {
2336 if (!(tt_common_entry->flags & flags))
2337 continue;
2338 tt_common_entry->flags &= ~flags;
2339 }
2340 changed_num++;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002341 }
2342 rcu_read_unlock();
2343 }
Antonio Quartulli697f2532011-11-07 16:47:01 +01002344out:
2345 return changed_num;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002346}
2347
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002348/* Purge out all the tt local entries marked with BATADV_TT_CLIENT_PENDING */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002349static void batadv_tt_local_purge_pending_clients(struct batadv_priv *bat_priv)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002350{
Sven Eckelmann807736f2012-07-15 22:26:51 +02002351 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002352 struct batadv_tt_common_entry *tt_common;
2353 struct batadv_tt_local_entry *tt_local;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002354 struct hlist_node *node, *node_tmp;
2355 struct hlist_head *head;
2356 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02002357 uint32_t i;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002358
2359 if (!hash)
2360 return;
2361
2362 for (i = 0; i < hash->size; i++) {
2363 head = &hash->table[i];
2364 list_lock = &hash->list_locks[i];
2365
2366 spin_lock_bh(list_lock);
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002367 hlist_for_each_entry_safe(tt_common, node, node_tmp, head,
2368 hash_entry) {
2369 if (!(tt_common->flags & BATADV_TT_CLIENT_PENDING))
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002370 continue;
2371
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002372 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002373 "Deleting local tt entry (%pM): pending\n",
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002374 tt_common->addr);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002375
Sven Eckelmann807736f2012-07-15 22:26:51 +02002376 atomic_dec(&bat_priv->tt.local_entry_num);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002377 hlist_del_rcu(node);
Sven Eckelmann56303d32012-06-05 22:31:31 +02002378 tt_local = container_of(tt_common,
2379 struct batadv_tt_local_entry,
2380 common);
2381 batadv_tt_local_entry_free_ref(tt_local);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002382 }
2383 spin_unlock_bh(list_lock);
2384 }
2385
2386}
2387
Sven Eckelmann56303d32012-06-05 22:31:31 +02002388static int batadv_tt_commit_changes(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002389 unsigned char **packet_buff,
2390 int *packet_buff_len, int packet_min_len)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002391{
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002392 uint16_t changed_num = 0;
2393
Sven Eckelmann807736f2012-07-15 22:26:51 +02002394 if (atomic_read(&bat_priv->tt.local_changes) < 1)
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002395 return -ENOENT;
2396
Sven Eckelmann807736f2012-07-15 22:26:51 +02002397 changed_num = batadv_tt_set_flags(bat_priv->tt.local_hash,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002398 BATADV_TT_CLIENT_NEW, false);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002399
2400 /* all reset entries have to be counted as local entries */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002401 atomic_add(changed_num, &bat_priv->tt.local_entry_num);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002402 batadv_tt_local_purge_pending_clients(bat_priv);
Sven Eckelmann807736f2012-07-15 22:26:51 +02002403 bat_priv->tt.local_crc = batadv_tt_local_crc(bat_priv);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002404
2405 /* Increment the TTVN only once per OGM interval */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002406 atomic_inc(&bat_priv->tt.vn);
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002407 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002408 "Local changes committed, updating to ttvn %u\n",
Sven Eckelmann807736f2012-07-15 22:26:51 +02002409 (uint8_t)atomic_read(&bat_priv->tt.vn));
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002410
2411 /* reset the sending counter */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002412 atomic_set(&bat_priv->tt.ogm_append_cnt, BATADV_TT_OGM_APPEND_MAX);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002413
Sven Eckelmanna5130882012-05-16 20:23:16 +02002414 return batadv_tt_changes_fill_buff(bat_priv, packet_buff,
2415 packet_buff_len, packet_min_len);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002416}
2417
2418/* when calling this function (hard_iface == primary_if) has to be true */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002419int batadv_tt_append_diff(struct batadv_priv *bat_priv,
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002420 unsigned char **packet_buff, int *packet_buff_len,
2421 int packet_min_len)
2422{
2423 int tt_num_changes;
2424
2425 /* if at least one change happened */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002426 tt_num_changes = batadv_tt_commit_changes(bat_priv, packet_buff,
2427 packet_buff_len,
2428 packet_min_len);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002429
2430 /* if the changes have been sent often enough */
2431 if ((tt_num_changes < 0) &&
Sven Eckelmann807736f2012-07-15 22:26:51 +02002432 (!batadv_atomic_dec_not_zero(&bat_priv->tt.ogm_append_cnt))) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02002433 batadv_tt_realloc_packet_buff(packet_buff, packet_buff_len,
2434 packet_min_len, packet_min_len);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002435 tt_num_changes = 0;
2436 }
2437
2438 return tt_num_changes;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002439}
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002440
Sven Eckelmann56303d32012-06-05 22:31:31 +02002441bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, uint8_t *src,
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002442 uint8_t *dst)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002443{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002444 struct batadv_tt_local_entry *tt_local_entry = NULL;
2445 struct batadv_tt_global_entry *tt_global_entry = NULL;
Marek Lindner5870adc2012-06-20 17:16:05 +02002446 bool ret = false;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002447
2448 if (!atomic_read(&bat_priv->ap_isolation))
Marek Lindner5870adc2012-06-20 17:16:05 +02002449 goto out;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002450
Sven Eckelmanna5130882012-05-16 20:23:16 +02002451 tt_local_entry = batadv_tt_local_hash_find(bat_priv, dst);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002452 if (!tt_local_entry)
2453 goto out;
2454
Sven Eckelmanna5130882012-05-16 20:23:16 +02002455 tt_global_entry = batadv_tt_global_hash_find(bat_priv, src);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002456 if (!tt_global_entry)
2457 goto out;
2458
Antonio Quartulli1f129fe2012-06-25 20:49:50 +00002459 if (!_batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002460 goto out;
2461
Marek Lindner5870adc2012-06-20 17:16:05 +02002462 ret = true;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002463
2464out:
2465 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02002466 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002467 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02002468 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002469 return ret;
2470}
Marek Lindnera943cac2011-07-30 13:10:18 +02002471
Sven Eckelmann56303d32012-06-05 22:31:31 +02002472void batadv_tt_update_orig(struct batadv_priv *bat_priv,
2473 struct batadv_orig_node *orig_node,
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002474 const unsigned char *tt_buff, uint8_t tt_num_changes,
2475 uint8_t ttvn, uint16_t tt_crc)
Marek Lindnera943cac2011-07-30 13:10:18 +02002476{
2477 uint8_t orig_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
2478 bool full_table = true;
Sven Eckelmann96412692012-06-05 22:31:30 +02002479 struct batadv_tt_change *tt_change;
Marek Lindnera943cac2011-07-30 13:10:18 +02002480
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01002481 /* don't care about a backbone gateways updates. */
Sven Eckelmann08adf152012-05-12 13:38:47 +02002482 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig))
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01002483 return;
2484
Antonio Quartulli17071572011-11-07 16:36:40 +01002485 /* orig table not initialised AND first diff is in the OGM OR the ttvn
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002486 * increased by one -> we can apply the attached changes
2487 */
Antonio Quartulli17071572011-11-07 16:36:40 +01002488 if ((!orig_node->tt_initialised && ttvn == 1) ||
2489 ttvn - orig_ttvn == 1) {
Marek Lindnera943cac2011-07-30 13:10:18 +02002490 /* the OGM could not contain the changes due to their size or
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002491 * because they have already been sent BATADV_TT_OGM_APPEND_MAX
2492 * times.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002493 * In this case send a tt request
2494 */
Marek Lindnera943cac2011-07-30 13:10:18 +02002495 if (!tt_num_changes) {
2496 full_table = false;
2497 goto request_table;
2498 }
2499
Sven Eckelmann96412692012-06-05 22:31:30 +02002500 tt_change = (struct batadv_tt_change *)tt_buff;
Sven Eckelmanna5130882012-05-16 20:23:16 +02002501 batadv_tt_update_changes(bat_priv, orig_node, tt_num_changes,
Sven Eckelmann96412692012-06-05 22:31:30 +02002502 ttvn, tt_change);
Marek Lindnera943cac2011-07-30 13:10:18 +02002503
2504 /* Even if we received the precomputed crc with the OGM, we
2505 * prefer to recompute it to spot any possible inconsistency
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002506 * in the global table
2507 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002508 orig_node->tt_crc = batadv_tt_global_crc(bat_priv, orig_node);
Marek Lindnera943cac2011-07-30 13:10:18 +02002509
2510 /* The ttvn alone is not enough to guarantee consistency
2511 * because a single value could represent different states
2512 * (due to the wrap around). Thus a node has to check whether
2513 * the resulting table (after applying the changes) is still
2514 * consistent or not. E.g. a node could disconnect while its
2515 * ttvn is X and reconnect on ttvn = X + TTVN_MAX: in this case
2516 * checking the CRC value is mandatory to detect the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002517 * inconsistency
2518 */
Marek Lindnera943cac2011-07-30 13:10:18 +02002519 if (orig_node->tt_crc != tt_crc)
2520 goto request_table;
Marek Lindnera943cac2011-07-30 13:10:18 +02002521 } else {
2522 /* if we missed more than one change or our tables are not
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002523 * in sync anymore -> request fresh tt data
2524 */
Antonio Quartulli17071572011-11-07 16:36:40 +01002525 if (!orig_node->tt_initialised || ttvn != orig_ttvn ||
2526 orig_node->tt_crc != tt_crc) {
Marek Lindnera943cac2011-07-30 13:10:18 +02002527request_table:
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002528 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli39a32992012-11-19 09:01:43 +01002529 "TT inconsistency for %pM. Need to retrieve the correct information (ttvn: %u last_ttvn: %u crc: %#.4x last_crc: %#.4x num_changes: %u)\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002530 orig_node->orig, ttvn, orig_ttvn, tt_crc,
2531 orig_node->tt_crc, tt_num_changes);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002532 batadv_send_tt_request(bat_priv, orig_node, ttvn,
2533 tt_crc, full_table);
Marek Lindnera943cac2011-07-30 13:10:18 +02002534 return;
2535 }
2536 }
2537}
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01002538
2539/* returns true whether we know that the client has moved from its old
2540 * originator to another one. This entry is kept is still kept for consistency
2541 * purposes
2542 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002543bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv,
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002544 uint8_t *addr)
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01002545{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002546 struct batadv_tt_global_entry *tt_global_entry;
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01002547 bool ret = false;
2548
Sven Eckelmanna5130882012-05-16 20:23:16 +02002549 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr);
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01002550 if (!tt_global_entry)
2551 goto out;
2552
Antonio Quartulli9f9ff082012-08-27 09:35:54 +02002553 ret = !!(tt_global_entry->common.flags & BATADV_TT_CLIENT_ROAM);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002554 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01002555out:
2556 return ret;
2557}
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002558
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02002559/**
2560 * batadv_tt_local_client_is_roaming - tells whether the client is roaming
2561 * @bat_priv: the bat priv with all the soft interface information
2562 * @addr: the MAC address of the local client to query
2563 *
2564 * Returns true if the local client is known to be roaming (it is not served by
2565 * this node anymore) or not. If yes, the client is still present in the table
2566 * to keep the latter consistent with the node TTVN
2567 */
2568bool batadv_tt_local_client_is_roaming(struct batadv_priv *bat_priv,
2569 uint8_t *addr)
2570{
2571 struct batadv_tt_local_entry *tt_local_entry;
2572 bool ret = false;
2573
2574 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr);
2575 if (!tt_local_entry)
2576 goto out;
2577
2578 ret = tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM;
2579 batadv_tt_local_entry_free_ref(tt_local_entry);
2580out:
2581 return ret;
2582
2583}
2584
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002585bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv,
2586 struct batadv_orig_node *orig_node,
2587 const unsigned char *addr)
2588{
2589 bool ret = false;
2590
Antonio Quartulli1f36aeb2012-11-08 21:55:29 +01002591 /* if the originator is a backbone node (meaning it belongs to the same
2592 * LAN of this node) the temporary client must not be added because to
2593 * reach such destination the node must use the LAN instead of the mesh
2594 */
2595 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig))
2596 goto out;
2597
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002598 if (!batadv_tt_global_add(bat_priv, orig_node, addr,
2599 BATADV_TT_CLIENT_TEMP,
2600 atomic_read(&orig_node->last_ttvn)))
2601 goto out;
2602
2603 batadv_dbg(BATADV_DBG_TT, bat_priv,
2604 "Added temporary global client (addr: %pM orig: %pM)\n",
2605 addr, orig_node->orig);
2606 ret = true;
2607out:
2608 return ret;
2609}