blob: 5f442328f2e69f61991b30c1039c099508a52b0c [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
Sven Eckelmann56303d32012-06-05 22:31:31 +020032static void batadv_send_roam_adv(struct batadv_priv *bat_priv, uint8_t *client,
33 struct batadv_orig_node *orig_node);
Sven Eckelmanna5130882012-05-16 20:23:16 +020034static void batadv_tt_purge(struct work_struct *work);
35static void
Sven Eckelmann56303d32012-06-05 22:31:31 +020036batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry);
Antonio Quartulli30cfd022012-07-05 23:38:29 +020037static void batadv_tt_global_del(struct batadv_priv *bat_priv,
38 struct batadv_orig_node *orig_node,
39 const unsigned char *addr,
40 const char *message, bool roaming);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000041
Marek Lindner7aadf882011-02-18 12:28:09 +000042/* returns 1 if they are the same mac addr */
Sven Eckelmanna5130882012-05-16 20:23:16 +020043static int batadv_compare_tt(const struct hlist_node *node, const void *data2)
Marek Lindner7aadf882011-02-18 12:28:09 +000044{
Sven Eckelmann56303d32012-06-05 22:31:31 +020045 const void *data1 = container_of(node, struct batadv_tt_common_entry,
Sven Eckelmann747e4222011-05-14 23:14:50 +020046 hash_entry);
Marek Lindner7aadf882011-02-18 12:28:09 +000047
48 return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
49}
50
Sven Eckelmann56303d32012-06-05 22:31:31 +020051static void batadv_tt_start_timer(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000052{
Sven Eckelmann807736f2012-07-15 22:26:51 +020053 INIT_DELAYED_WORK(&bat_priv->tt.work, batadv_tt_purge);
54 queue_delayed_work(batadv_event_workqueue, &bat_priv->tt.work,
Antonio Quartullia73105b2011-04-27 14:27:44 +020055 msecs_to_jiffies(5000));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056}
57
Sven Eckelmann56303d32012-06-05 22:31:31 +020058static struct batadv_tt_common_entry *
Sven Eckelmann5bf74e92012-06-05 22:31:28 +020059batadv_tt_hash_find(struct batadv_hashtable *hash, const void *data)
Marek Lindner7aadf882011-02-18 12:28:09 +000060{
Marek Lindner7aadf882011-02-18 12:28:09 +000061 struct hlist_head *head;
62 struct hlist_node *node;
Sven Eckelmann56303d32012-06-05 22:31:31 +020063 struct batadv_tt_common_entry *tt_common_entry;
64 struct batadv_tt_common_entry *tt_common_entry_tmp = NULL;
Antonio Quartullic90681b2011-10-05 17:05:25 +020065 uint32_t index;
Marek Lindner7aadf882011-02-18 12:28:09 +000066
67 if (!hash)
68 return NULL;
69
Sven Eckelmannda641192012-05-12 13:48:56 +020070 index = batadv_choose_orig(data, hash->size);
Marek Lindner7aadf882011-02-18 12:28:09 +000071 head = &hash->table[index];
72
73 rcu_read_lock();
Antonio Quartulli48100ba2011-10-30 12:17:33 +010074 hlist_for_each_entry_rcu(tt_common_entry, node, head, hash_entry) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +020075 if (!batadv_compare_eth(tt_common_entry, data))
Marek Lindner7aadf882011-02-18 12:28:09 +000076 continue;
77
Antonio Quartulli48100ba2011-10-30 12:17:33 +010078 if (!atomic_inc_not_zero(&tt_common_entry->refcount))
Antonio Quartulli7683fdc2011-04-27 14:28:07 +020079 continue;
80
Antonio Quartulli48100ba2011-10-30 12:17:33 +010081 tt_common_entry_tmp = tt_common_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +000082 break;
83 }
84 rcu_read_unlock();
85
Antonio Quartulli48100ba2011-10-30 12:17:33 +010086 return tt_common_entry_tmp;
87}
88
Sven Eckelmann56303d32012-06-05 22:31:31 +020089static struct batadv_tt_local_entry *
90batadv_tt_local_hash_find(struct batadv_priv *bat_priv, const void *data)
Antonio Quartulli48100ba2011-10-30 12:17:33 +010091{
Sven Eckelmann56303d32012-06-05 22:31:31 +020092 struct batadv_tt_common_entry *tt_common_entry;
93 struct batadv_tt_local_entry *tt_local_entry = NULL;
Antonio Quartulli48100ba2011-10-30 12:17:33 +010094
Sven Eckelmann807736f2012-07-15 22:26:51 +020095 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.local_hash, data);
Antonio Quartulli48100ba2011-10-30 12:17:33 +010096 if (tt_common_entry)
97 tt_local_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +020098 struct batadv_tt_local_entry,
99 common);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100100 return tt_local_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000101}
102
Sven Eckelmann56303d32012-06-05 22:31:31 +0200103static struct batadv_tt_global_entry *
104batadv_tt_global_hash_find(struct batadv_priv *bat_priv, const void *data)
Marek Lindner7aadf882011-02-18 12:28:09 +0000105{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200106 struct batadv_tt_common_entry *tt_common_entry;
107 struct batadv_tt_global_entry *tt_global_entry = NULL;
Marek Lindner7aadf882011-02-18 12:28:09 +0000108
Sven Eckelmann807736f2012-07-15 22:26:51 +0200109 tt_common_entry = batadv_tt_hash_find(bat_priv->tt.global_hash, data);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100110 if (tt_common_entry)
111 tt_global_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200112 struct batadv_tt_global_entry,
113 common);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100114 return tt_global_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000115
Marek Lindner7aadf882011-02-18 12:28:09 +0000116}
117
Sven Eckelmanna5130882012-05-16 20:23:16 +0200118static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200119batadv_tt_local_entry_free_ref(struct batadv_tt_local_entry *tt_local_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200120{
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100121 if (atomic_dec_and_test(&tt_local_entry->common.refcount))
122 kfree_rcu(tt_local_entry, common.rcu);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200123}
124
Sven Eckelmanna5130882012-05-16 20:23:16 +0200125static void batadv_tt_global_entry_free_rcu(struct rcu_head *rcu)
Simon Wunderlich531027f2011-10-19 11:02:25 +0200126{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200127 struct batadv_tt_common_entry *tt_common_entry;
128 struct batadv_tt_global_entry *tt_global_entry;
Simon Wunderlich531027f2011-10-19 11:02:25 +0200129
Sven Eckelmann56303d32012-06-05 22:31:31 +0200130 tt_common_entry = container_of(rcu, struct batadv_tt_common_entry, rcu);
131 tt_global_entry = container_of(tt_common_entry,
132 struct batadv_tt_global_entry, common);
Simon Wunderlich531027f2011-10-19 11:02:25 +0200133
Simon Wunderlich531027f2011-10-19 11:02:25 +0200134 kfree(tt_global_entry);
135}
136
Sven Eckelmanna5130882012-05-16 20:23:16 +0200137static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200138batadv_tt_global_entry_free_ref(struct batadv_tt_global_entry *tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200139{
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200140 if (atomic_dec_and_test(&tt_global_entry->common.refcount)) {
Sven Eckelmanna5130882012-05-16 20:23:16 +0200141 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100142 call_rcu(&tt_global_entry->common.rcu,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200143 batadv_tt_global_entry_free_rcu);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200144 }
145}
146
Sven Eckelmanna5130882012-05-16 20:23:16 +0200147static void batadv_tt_orig_list_entry_free_rcu(struct rcu_head *rcu)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200148{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200149 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200150
Sven Eckelmann56303d32012-06-05 22:31:31 +0200151 orig_entry = container_of(rcu, struct batadv_tt_orig_list_entry, rcu);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200152 batadv_orig_node_free_ref(orig_entry->orig_node);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200153 kfree(orig_entry);
154}
155
Sven Eckelmanna5130882012-05-16 20:23:16 +0200156static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200157batadv_tt_orig_list_entry_free_ref(struct batadv_tt_orig_list_entry *orig_entry)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200158{
Antonio Quartullid657e622012-07-01 14:09:12 +0200159 if (!atomic_dec_and_test(&orig_entry->refcount))
160 return;
Antonio Quartulli29cb99d2012-06-25 20:49:51 +0000161 /* to avoid race conditions, immediately decrease the tt counter */
162 atomic_dec(&orig_entry->orig_node->tt_size);
Sven Eckelmanna5130882012-05-16 20:23:16 +0200163 call_rcu(&orig_entry->rcu, batadv_tt_orig_list_entry_free_rcu);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200164}
165
Sven Eckelmann56303d32012-06-05 22:31:31 +0200166static void batadv_tt_local_event(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200167 const uint8_t *addr, uint8_t flags)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200168{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200169 struct batadv_tt_change_node *tt_change_node, *entry, *safe;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200170 bool event_removed = false;
171 bool del_op_requested, del_op_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200172
173 tt_change_node = kmalloc(sizeof(*tt_change_node), GFP_ATOMIC);
174
175 if (!tt_change_node)
176 return;
177
Antonio Quartulliff66c972011-06-30 01:14:00 +0200178 tt_change_node->change.flags = flags;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200179 memcpy(tt_change_node->change.addr, addr, ETH_ALEN);
180
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200181 del_op_requested = flags & BATADV_TT_CLIENT_DEL;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200182
183 /* check for ADD+DEL or DEL+ADD events */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200184 spin_lock_bh(&bat_priv->tt.changes_list_lock);
185 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200186 list) {
187 if (!batadv_compare_eth(entry->change.addr, addr))
188 continue;
189
190 /* DEL+ADD in the same orig interval have no effect and can be
191 * removed to avoid silly behaviour on the receiver side. The
192 * other way around (ADD+DEL) can happen in case of roaming of
193 * a client still in the NEW state. Roaming of NEW clients is
194 * now possible due to automatically recognition of "temporary"
195 * clients
196 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200197 del_op_entry = entry->change.flags & BATADV_TT_CLIENT_DEL;
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200198 if (!del_op_requested && del_op_entry)
199 goto del;
200 if (del_op_requested && !del_op_entry)
201 goto del;
202 continue;
203del:
204 list_del(&entry->list);
205 kfree(entry);
Jesper Juhl155e4e12012-08-07 08:32:34 +0000206 kfree(tt_change_node);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200207 event_removed = true;
208 goto unlock;
209 }
210
Antonio Quartullia73105b2011-04-27 14:27:44 +0200211 /* track the change in the OGMinterval list */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200212 list_add_tail(&tt_change_node->list, &bat_priv->tt.changes_list);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200213
214unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +0200215 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200216
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200217 if (event_removed)
Sven Eckelmann807736f2012-07-15 22:26:51 +0200218 atomic_dec(&bat_priv->tt.local_changes);
Antonio Quartulli3b643de2012-05-25 00:00:42 +0200219 else
Sven Eckelmann807736f2012-07-15 22:26:51 +0200220 atomic_inc(&bat_priv->tt.local_changes);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200221}
222
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200223int batadv_tt_len(int changes_num)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200224{
Sven Eckelmann96412692012-06-05 22:31:30 +0200225 return changes_num * sizeof(struct batadv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200226}
227
Sven Eckelmann56303d32012-06-05 22:31:31 +0200228static int batadv_tt_local_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000229{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200230 if (bat_priv->tt.local_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200231 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000232
Sven Eckelmann807736f2012-07-15 22:26:51 +0200233 bat_priv->tt.local_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000234
Sven Eckelmann807736f2012-07-15 22:26:51 +0200235 if (!bat_priv->tt.local_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200236 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000237
Sven Eckelmann5346c352012-05-05 13:27:28 +0200238 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000239}
240
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200241static void batadv_tt_global_free(struct batadv_priv *bat_priv,
242 struct batadv_tt_global_entry *tt_global,
243 const char *message)
244{
245 batadv_dbg(BATADV_DBG_TT, bat_priv,
246 "Deleting global tt entry %pM: %s\n",
247 tt_global->common.addr, message);
248
249 batadv_hash_remove(bat_priv->tt.global_hash, batadv_compare_tt,
250 batadv_choose_orig, tt_global->common.addr);
251 batadv_tt_global_entry_free_ref(tt_global);
252
253}
254
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200255void batadv_tt_local_add(struct net_device *soft_iface, const uint8_t *addr,
256 int ifindex)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000257{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200258 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann170173b2012-10-07 12:02:22 +0200259 struct batadv_tt_local_entry *tt_local;
260 struct batadv_tt_global_entry *tt_global;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200261 struct hlist_head *head;
262 struct hlist_node *node;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200263 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100264 int hash_added;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200265 bool roamed_back = false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000266
Antonio Quartulli47c94652012-09-23 22:38:35 +0200267 tt_local = batadv_tt_local_hash_find(bat_priv, addr);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200268 tt_global = batadv_tt_global_hash_find(bat_priv, addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000269
Antonio Quartulli47c94652012-09-23 22:38:35 +0200270 if (tt_local) {
271 tt_local->last_seen = jiffies;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200272 if (tt_local->common.flags & BATADV_TT_CLIENT_PENDING) {
273 batadv_dbg(BATADV_DBG_TT, bat_priv,
274 "Re-adding pending client %pM\n", addr);
275 /* whatever the reason why the PENDING flag was set,
276 * this is a client which was enqueued to be removed in
277 * this orig_interval. Since it popped up again, the
278 * flag can be reset like it was never enqueued
279 */
280 tt_local->common.flags &= ~BATADV_TT_CLIENT_PENDING;
281 goto add_event;
282 }
283
284 if (tt_local->common.flags & BATADV_TT_CLIENT_ROAM) {
285 batadv_dbg(BATADV_DBG_TT, bat_priv,
286 "Roaming client %pM came back to its original location\n",
287 addr);
288 /* the ROAM flag is set because this client roamed away
289 * and the node got a roaming_advertisement message. Now
290 * that the client popped up again at its original
291 * location such flag can be unset
292 */
293 tt_local->common.flags &= ~BATADV_TT_CLIENT_ROAM;
294 roamed_back = true;
295 }
296 goto check_roaming;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000297 }
298
Antonio Quartulli47c94652012-09-23 22:38:35 +0200299 tt_local = kmalloc(sizeof(*tt_local), GFP_ATOMIC);
300 if (!tt_local)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200301 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200302
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200303 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200304 "Creating new local tt entry: %pM (ttvn: %d)\n", addr,
Sven Eckelmann807736f2012-07-15 22:26:51 +0200305 (uint8_t)atomic_read(&bat_priv->tt.vn));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000306
Antonio Quartulli47c94652012-09-23 22:38:35 +0200307 memcpy(tt_local->common.addr, addr, ETH_ALEN);
Antonio Quartulli8425ec62012-11-19 09:01:44 +0100308 /* The local entry has to be marked as NEW to avoid to send it in
309 * a full table response going out before the next ttvn increment
310 * (consistency check)
311 */
312 tt_local->common.flags = BATADV_TT_CLIENT_NEW;
Sven Eckelmann95638772012-05-12 02:09:31 +0200313 if (batadv_is_wifi_iface(ifindex))
Antonio Quartulli47c94652012-09-23 22:38:35 +0200314 tt_local->common.flags |= BATADV_TT_CLIENT_WIFI;
315 atomic_set(&tt_local->common.refcount, 2);
316 tt_local->last_seen = jiffies;
317 tt_local->common.added_at = tt_local->last_seen;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000318
319 /* the batman interface mac address should never be purged */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200320 if (batadv_compare_eth(addr, soft_iface->dev_addr))
Antonio Quartulli47c94652012-09-23 22:38:35 +0200321 tt_local->common.flags |= BATADV_TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000322
Sven Eckelmann807736f2012-07-15 22:26:51 +0200323 hash_added = batadv_hash_add(bat_priv->tt.local_hash, batadv_compare_tt,
Antonio Quartulli47c94652012-09-23 22:38:35 +0200324 batadv_choose_orig, &tt_local->common,
325 &tt_local->common.hash_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100326
327 if (unlikely(hash_added != 0)) {
328 /* remove the reference for the hash */
Antonio Quartulli47c94652012-09-23 22:38:35 +0200329 batadv_tt_local_entry_free_ref(tt_local);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100330 goto out;
331 }
332
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200333add_event:
Antonio Quartulli47c94652012-09-23 22:38:35 +0200334 batadv_tt_local_event(bat_priv, addr, tt_local->common.flags);
Antonio Quartulliff66c972011-06-30 01:14:00 +0200335
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200336check_roaming:
337 /* Check whether it is a roaming, but don't do anything if the roaming
338 * process has already been handled
339 */
340 if (tt_global && !(tt_global->common.flags & BATADV_TT_CLIENT_ROAM)) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200341 /* These node are probably going to update their tt table */
Antonio Quartulli47c94652012-09-23 22:38:35 +0200342 head = &tt_global->orig_list;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200343 rcu_read_lock();
344 hlist_for_each_entry_rcu(orig_entry, node, head, list) {
Antonio Quartulli47c94652012-09-23 22:38:35 +0200345 batadv_send_roam_adv(bat_priv, tt_global->common.addr,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200346 orig_entry->orig_node);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200347 }
348 rcu_read_unlock();
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200349 if (roamed_back) {
350 batadv_tt_global_free(bat_priv, tt_global,
351 "Roaming canceled");
352 tt_global = NULL;
353 } else {
354 /* The global entry has to be marked as ROAMING and
355 * has to be kept for consistency purpose
356 */
357 tt_global->common.flags |= BATADV_TT_CLIENT_ROAM;
358 tt_global->roam_at = jiffies;
359 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200360 }
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200361
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200362out:
Antonio Quartulli47c94652012-09-23 22:38:35 +0200363 if (tt_local)
364 batadv_tt_local_entry_free_ref(tt_local);
365 if (tt_global)
366 batadv_tt_global_entry_free_ref(tt_global);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000367}
368
Sven Eckelmanna5130882012-05-16 20:23:16 +0200369static void batadv_tt_realloc_packet_buff(unsigned char **packet_buff,
370 int *packet_buff_len,
371 int min_packet_len,
372 int new_packet_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000373{
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800374 unsigned char *new_buff;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000375
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800376 new_buff = kmalloc(new_packet_len, GFP_ATOMIC);
377
378 /* keep old buffer if kmalloc should fail */
379 if (new_buff) {
380 memcpy(new_buff, *packet_buff, min_packet_len);
381 kfree(*packet_buff);
382 *packet_buff = new_buff;
383 *packet_buff_len = new_packet_len;
384 }
385}
386
Sven Eckelmann56303d32012-06-05 22:31:31 +0200387static void batadv_tt_prepare_packet_buff(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200388 unsigned char **packet_buff,
389 int *packet_buff_len,
390 int min_packet_len)
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800391{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200392 struct batadv_hard_iface *primary_if;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800393 int req_len;
394
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200395 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800396
397 req_len = min_packet_len;
Sven Eckelmann807736f2012-07-15 22:26:51 +0200398 req_len += batadv_tt_len(atomic_read(&bat_priv->tt.local_changes));
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800399
400 /* if we have too many changes for one packet don't send any
401 * and wait for the tt table request which will be fragmented
402 */
403 if ((!primary_if) || (req_len > primary_if->soft_iface->mtu))
404 req_len = min_packet_len;
405
Sven Eckelmanna5130882012-05-16 20:23:16 +0200406 batadv_tt_realloc_packet_buff(packet_buff, packet_buff_len,
407 min_packet_len, req_len);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800408
409 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200410 batadv_hardif_free_ref(primary_if);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800411}
412
Sven Eckelmann56303d32012-06-05 22:31:31 +0200413static int batadv_tt_changes_fill_buff(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200414 unsigned char **packet_buff,
415 int *packet_buff_len,
416 int min_packet_len)
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800417{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200418 struct batadv_tt_change_node *entry, *safe;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800419 int count = 0, tot_changes = 0, new_len;
420 unsigned char *tt_buff;
421
Sven Eckelmanna5130882012-05-16 20:23:16 +0200422 batadv_tt_prepare_packet_buff(bat_priv, packet_buff,
423 packet_buff_len, min_packet_len);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800424
425 new_len = *packet_buff_len - min_packet_len;
426 tt_buff = *packet_buff + min_packet_len;
427
428 if (new_len > 0)
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200429 tot_changes = new_len / batadv_tt_len(1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000430
Sven Eckelmann807736f2012-07-15 22:26:51 +0200431 spin_lock_bh(&bat_priv->tt.changes_list_lock);
432 atomic_set(&bat_priv->tt.local_changes, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000433
Sven Eckelmann807736f2012-07-15 22:26:51 +0200434 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100435 list) {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200436 if (count < tot_changes) {
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200437 memcpy(tt_buff + batadv_tt_len(count),
Sven Eckelmann96412692012-06-05 22:31:30 +0200438 &entry->change, sizeof(struct batadv_tt_change));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000439 count++;
440 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200441 list_del(&entry->list);
442 kfree(entry);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000443 }
Sven Eckelmann807736f2012-07-15 22:26:51 +0200444 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445
Antonio Quartullia73105b2011-04-27 14:27:44 +0200446 /* Keep the buffer for possible tt_request */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200447 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
448 kfree(bat_priv->tt.last_changeset);
449 bat_priv->tt.last_changeset_len = 0;
450 bat_priv->tt.last_changeset = NULL;
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800451 /* check whether this new OGM has no changes due to size problems */
452 if (new_len > 0) {
453 /* if kmalloc() fails we will reply with the full table
Antonio Quartullia73105b2011-04-27 14:27:44 +0200454 * instead of providing the diff
455 */
Sven Eckelmann807736f2012-07-15 22:26:51 +0200456 bat_priv->tt.last_changeset = kmalloc(new_len, GFP_ATOMIC);
457 if (bat_priv->tt.last_changeset) {
458 memcpy(bat_priv->tt.last_changeset, tt_buff, new_len);
459 bat_priv->tt.last_changeset_len = new_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200460 }
461 }
Sven Eckelmann807736f2012-07-15 22:26:51 +0200462 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000463
Marek Lindner08ad76e2012-04-23 16:32:55 +0800464 return count;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000465}
466
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200467int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000468{
469 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200470 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200471 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200472 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100473 struct batadv_tt_local_entry *tt_local;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200474 struct batadv_hard_iface *primary_if;
Marek Lindner7aadf882011-02-18 12:28:09 +0000475 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000476 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200477 uint32_t i;
Antonio Quartulli85766a82012-11-08 22:16:16 +0100478 int last_seen_secs;
479 int last_seen_msecs;
480 unsigned long last_seen_jiffies;
481 bool no_purge;
482 uint16_t np_flag = BATADV_TT_CLIENT_NOPURGE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000483
Marek Lindner30da63a2012-08-03 17:15:46 +0200484 primary_if = batadv_seq_print_text_primary_if_get(seq);
485 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200486 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000487
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100488 seq_printf(seq,
Antonio Quartullif9d8a532012-11-19 09:01:42 +0100489 "Locally retrieved addresses (from %s) announced via TT (TTVN: %u CRC: %#.4x):\n",
490 net_dev->name, (uint8_t)atomic_read(&bat_priv->tt.vn),
491 bat_priv->tt.local_crc);
Antonio Quartulli85766a82012-11-08 22:16:16 +0100492 seq_printf(seq, " %-13s %-7s %-10s\n", "Client", "Flags",
493 "Last seen");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000494
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000495 for (i = 0; i < hash->size; i++) {
496 head = &hash->table[i];
497
Marek Lindner7aadf882011-02-18 12:28:09 +0000498 rcu_read_lock();
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100499 hlist_for_each_entry_rcu(tt_common_entry, node,
Marek Lindner7aadf882011-02-18 12:28:09 +0000500 head, hash_entry) {
Antonio Quartulli85766a82012-11-08 22:16:16 +0100501 tt_local = container_of(tt_common_entry,
502 struct batadv_tt_local_entry,
503 common);
504 last_seen_jiffies = jiffies - tt_local->last_seen;
505 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
506 last_seen_secs = last_seen_msecs / 1000;
507 last_seen_msecs = last_seen_msecs % 1000;
508
509 no_purge = tt_common_entry->flags & np_flag;
510
511 seq_printf(seq, " * %pM [%c%c%c%c%c] %3u.%03u\n",
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100512 tt_common_entry->addr,
513 (tt_common_entry->flags &
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200514 BATADV_TT_CLIENT_ROAM ? 'R' : '.'),
Antonio Quartulli85766a82012-11-08 22:16:16 +0100515 no_purge ? 'P' : '.',
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100516 (tt_common_entry->flags &
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200517 BATADV_TT_CLIENT_NEW ? 'N' : '.'),
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100518 (tt_common_entry->flags &
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200519 BATADV_TT_CLIENT_PENDING ? 'X' : '.'),
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100520 (tt_common_entry->flags &
Antonio Quartulli85766a82012-11-08 22:16:16 +0100521 BATADV_TT_CLIENT_WIFI ? 'W' : '.'),
522 no_purge ? last_seen_secs : 0,
523 no_purge ? last_seen_msecs : 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000524 }
Marek Lindner7aadf882011-02-18 12:28:09 +0000525 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000526 }
Marek Lindner32ae9b22011-04-20 15:40:58 +0200527out:
528 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200529 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +0200530 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000531}
532
Sven Eckelmann56303d32012-06-05 22:31:31 +0200533static void
534batadv_tt_local_set_pending(struct batadv_priv *bat_priv,
535 struct batadv_tt_local_entry *tt_local_entry,
536 uint16_t flags, const char *message)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000537{
Sven Eckelmanna5130882012-05-16 20:23:16 +0200538 batadv_tt_local_event(bat_priv, tt_local_entry->common.addr,
539 tt_local_entry->common.flags | flags);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000540
Antonio Quartulli015758d2011-07-09 17:52:13 +0200541 /* The local client has to be marked as "pending to be removed" but has
542 * to be kept in the table in order to send it in a full table
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200543 * response issued before the net ttvn increment (consistency check)
544 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200545 tt_local_entry->common.flags |= BATADV_TT_CLIENT_PENDING;
Antonio Quartullic566dbb2012-01-06 21:31:34 +0100546
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200547 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200548 "Local tt entry (%pM) pending to be removed: %s\n",
549 tt_local_entry->common.addr, message);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000550}
551
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200552/**
553 * batadv_tt_local_remove - logically remove an entry from the local table
554 * @bat_priv: the bat priv with all the soft interface information
555 * @addr: the MAC address of the client to remove
556 * @message: message to append to the log on deletion
557 * @roaming: true if the deletion is due to a roaming event
558 *
559 * Returns the flags assigned to the local entry before being deleted
560 */
561uint16_t batadv_tt_local_remove(struct batadv_priv *bat_priv,
562 const uint8_t *addr, const char *message,
563 bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000564{
Sven Eckelmann170173b2012-10-07 12:02:22 +0200565 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200566 uint16_t flags, curr_flags = BATADV_NO_FLAGS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000567
Sven Eckelmanna5130882012-05-16 20:23:16 +0200568 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200569 if (!tt_local_entry)
570 goto out;
571
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200572 curr_flags = tt_local_entry->common.flags;
573
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200574 flags = BATADV_TT_CLIENT_DEL;
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200575 /* if this global entry addition is due to a roaming, the node has to
576 * mark the local entry as "roamed" in order to correctly reroute
577 * packets later
578 */
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200579 if (roaming) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200580 flags |= BATADV_TT_CLIENT_ROAM;
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200581 /* mark the local client as ROAMed */
582 tt_local_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
583 }
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200584
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200585 if (!(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW)) {
586 batadv_tt_local_set_pending(bat_priv, tt_local_entry, flags,
587 message);
588 goto out;
589 }
590 /* if this client has been added right now, it is possible to
591 * immediately purge it
592 */
593 batadv_tt_local_event(bat_priv, tt_local_entry->common.addr,
594 curr_flags | BATADV_TT_CLIENT_DEL);
595 hlist_del_rcu(&tt_local_entry->common.hash_entry);
596 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200597
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200598out:
599 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +0200600 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200601
602 return curr_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000603}
604
Sven Eckelmann56303d32012-06-05 22:31:31 +0200605static void batadv_tt_local_purge_list(struct batadv_priv *bat_priv,
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200606 struct hlist_head *head)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000607{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200608 struct batadv_tt_local_entry *tt_local_entry;
609 struct batadv_tt_common_entry *tt_common_entry;
Marek Lindner7aadf882011-02-18 12:28:09 +0000610 struct hlist_node *node, *node_tmp;
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200611
612 hlist_for_each_entry_safe(tt_common_entry, node, node_tmp, head,
613 hash_entry) {
614 tt_local_entry = container_of(tt_common_entry,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200615 struct batadv_tt_local_entry,
616 common);
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200617 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_NOPURGE)
618 continue;
619
620 /* entry already marked for deletion */
621 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING)
622 continue;
623
624 if (!batadv_has_timed_out(tt_local_entry->last_seen,
625 BATADV_TT_LOCAL_TIMEOUT))
626 continue;
627
628 batadv_tt_local_set_pending(bat_priv, tt_local_entry,
629 BATADV_TT_CLIENT_DEL, "timed out");
630 }
631}
632
Sven Eckelmann56303d32012-06-05 22:31:31 +0200633static void batadv_tt_local_purge(struct batadv_priv *bat_priv)
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200634{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200635 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000636 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200637 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +0200638 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000639
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000640 for (i = 0; i < hash->size; i++) {
641 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200642 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000643
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200644 spin_lock_bh(list_lock);
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200645 batadv_tt_local_purge_list(bat_priv, head);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200646 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000647 }
648
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000649}
650
Sven Eckelmann56303d32012-06-05 22:31:31 +0200651static void batadv_tt_local_table_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000652{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +0200653 struct batadv_hashtable *hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200654 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200655 struct batadv_tt_common_entry *tt_common_entry;
656 struct batadv_tt_local_entry *tt_local;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200657 struct hlist_node *node, *node_tmp;
658 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +0200659 uint32_t i;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200660
Sven Eckelmann807736f2012-07-15 22:26:51 +0200661 if (!bat_priv->tt.local_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000662 return;
663
Sven Eckelmann807736f2012-07-15 22:26:51 +0200664 hash = bat_priv->tt.local_hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200665
666 for (i = 0; i < hash->size; i++) {
667 head = &hash->table[i];
668 list_lock = &hash->list_locks[i];
669
670 spin_lock_bh(list_lock);
Antonio Quartulli48100ba2011-10-30 12:17:33 +0100671 hlist_for_each_entry_safe(tt_common_entry, node, node_tmp,
Antonio Quartullia73105b2011-04-27 14:27:44 +0200672 head, hash_entry) {
673 hlist_del_rcu(node);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200674 tt_local = container_of(tt_common_entry,
675 struct batadv_tt_local_entry,
676 common);
677 batadv_tt_local_entry_free_ref(tt_local);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200678 }
679 spin_unlock_bh(list_lock);
680 }
681
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +0200682 batadv_hash_destroy(hash);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200683
Sven Eckelmann807736f2012-07-15 22:26:51 +0200684 bat_priv->tt.local_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000685}
686
Sven Eckelmann56303d32012-06-05 22:31:31 +0200687static int batadv_tt_global_init(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000688{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200689 if (bat_priv->tt.global_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200690 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000691
Sven Eckelmann807736f2012-07-15 22:26:51 +0200692 bat_priv->tt.global_hash = batadv_hash_new(1024);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000693
Sven Eckelmann807736f2012-07-15 22:26:51 +0200694 if (!bat_priv->tt.global_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200695 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000696
Sven Eckelmann5346c352012-05-05 13:27:28 +0200697 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000698}
699
Sven Eckelmann56303d32012-06-05 22:31:31 +0200700static void batadv_tt_changes_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200701{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200702 struct batadv_tt_change_node *entry, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200703
Sven Eckelmann807736f2012-07-15 22:26:51 +0200704 spin_lock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200705
Sven Eckelmann807736f2012-07-15 22:26:51 +0200706 list_for_each_entry_safe(entry, safe, &bat_priv->tt.changes_list,
Antonio Quartullia73105b2011-04-27 14:27:44 +0200707 list) {
708 list_del(&entry->list);
709 kfree(entry);
710 }
711
Sven Eckelmann807736f2012-07-15 22:26:51 +0200712 atomic_set(&bat_priv->tt.local_changes, 0);
713 spin_unlock_bh(&bat_priv->tt.changes_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200714}
715
Antonio Quartullid657e622012-07-01 14:09:12 +0200716/* retrieves the orig_tt_list_entry belonging to orig_node from the
717 * batadv_tt_global_entry list
718 *
719 * returns it with an increased refcounter, NULL if not found
720 */
721static struct batadv_tt_orig_list_entry *
722batadv_tt_global_orig_entry_find(const struct batadv_tt_global_entry *entry,
723 const struct batadv_orig_node *orig_node)
724{
725 struct batadv_tt_orig_list_entry *tmp_orig_entry, *orig_entry = NULL;
726 const struct hlist_head *head;
727 struct hlist_node *node;
728
729 rcu_read_lock();
730 head = &entry->orig_list;
731 hlist_for_each_entry_rcu(tmp_orig_entry, node, head, list) {
732 if (tmp_orig_entry->orig_node != orig_node)
733 continue;
734 if (!atomic_inc_not_zero(&tmp_orig_entry->refcount))
735 continue;
736
737 orig_entry = tmp_orig_entry;
738 break;
739 }
740 rcu_read_unlock();
741
742 return orig_entry;
743}
744
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200745/* find out if an orig_node is already in the list of a tt_global_entry.
Antonio Quartullid657e622012-07-01 14:09:12 +0200746 * returns true if found, false otherwise
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200747 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200748static bool
749batadv_tt_global_entry_has_orig(const struct batadv_tt_global_entry *entry,
750 const struct batadv_orig_node *orig_node)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200751{
Antonio Quartullid657e622012-07-01 14:09:12 +0200752 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200753 bool found = false;
754
Antonio Quartullid657e622012-07-01 14:09:12 +0200755 orig_entry = batadv_tt_global_orig_entry_find(entry, orig_node);
756 if (orig_entry) {
757 found = true;
758 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200759 }
Antonio Quartullid657e622012-07-01 14:09:12 +0200760
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200761 return found;
762}
763
Sven Eckelmanna5130882012-05-16 20:23:16 +0200764static void
Antonio Quartullid657e622012-07-01 14:09:12 +0200765batadv_tt_global_orig_entry_add(struct batadv_tt_global_entry *tt_global,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200766 struct batadv_orig_node *orig_node, int ttvn)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200767{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200768 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200769
Antonio Quartullid657e622012-07-01 14:09:12 +0200770 orig_entry = batadv_tt_global_orig_entry_find(tt_global, orig_node);
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200771 if (orig_entry) {
772 /* refresh the ttvn: the current value could be a bogus one that
773 * was added during a "temporary client detection"
774 */
775 orig_entry->ttvn = ttvn;
Antonio Quartullid657e622012-07-01 14:09:12 +0200776 goto out;
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200777 }
Antonio Quartullid657e622012-07-01 14:09:12 +0200778
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200779 orig_entry = kzalloc(sizeof(*orig_entry), GFP_ATOMIC);
780 if (!orig_entry)
Antonio Quartullid657e622012-07-01 14:09:12 +0200781 goto out;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200782
783 INIT_HLIST_NODE(&orig_entry->list);
784 atomic_inc(&orig_node->refcount);
785 atomic_inc(&orig_node->tt_size);
786 orig_entry->orig_node = orig_node;
787 orig_entry->ttvn = ttvn;
Antonio Quartullid657e622012-07-01 14:09:12 +0200788 atomic_set(&orig_entry->refcount, 2);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200789
Antonio Quartullid657e622012-07-01 14:09:12 +0200790 spin_lock_bh(&tt_global->list_lock);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200791 hlist_add_head_rcu(&orig_entry->list,
Antonio Quartullid657e622012-07-01 14:09:12 +0200792 &tt_global->orig_list);
793 spin_unlock_bh(&tt_global->list_lock);
794out:
795 if (orig_entry)
796 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200797}
798
Antonio Quartullia73105b2011-04-27 14:27:44 +0200799/* caller must hold orig_node refcount */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200800int batadv_tt_global_add(struct batadv_priv *bat_priv,
801 struct batadv_orig_node *orig_node,
Antonio Quartullid4f44692012-05-25 00:00:54 +0200802 const unsigned char *tt_addr, uint8_t flags,
803 uint8_t ttvn)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000804{
Sven Eckelmann170173b2012-10-07 12:02:22 +0200805 struct batadv_tt_global_entry *tt_global_entry;
806 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200807 int ret = 0;
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100808 int hash_added;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200809 struct batadv_tt_common_entry *common;
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200810 uint16_t local_flags;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000811
Sven Eckelmanna5130882012-05-16 20:23:16 +0200812 tt_global_entry = batadv_tt_global_hash_find(bat_priv, tt_addr);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200813 tt_local_entry = batadv_tt_local_hash_find(bat_priv, tt_addr);
814
815 /* if the node already has a local client for this entry, it has to wait
816 * for a roaming advertisement instead of manually messing up the global
817 * table
818 */
819 if ((flags & BATADV_TT_CLIENT_TEMP) && tt_local_entry &&
820 !(tt_local_entry->common.flags & BATADV_TT_CLIENT_NEW))
821 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000822
Antonio Quartullia73105b2011-04-27 14:27:44 +0200823 if (!tt_global_entry) {
Antonio Quartullid4f44692012-05-25 00:00:54 +0200824 tt_global_entry = kzalloc(sizeof(*tt_global_entry), GFP_ATOMIC);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200825 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200826 goto out;
827
Sven Eckelmannc0a55922012-05-12 13:48:55 +0200828 common = &tt_global_entry->common;
829 memcpy(common->addr, tt_addr, ETH_ALEN);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200830
Antonio Quartullid4f44692012-05-25 00:00:54 +0200831 common->flags = flags;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200832 tt_global_entry->roam_at = 0;
Antonio Quartullifdf79322012-08-24 17:54:07 +0200833 /* node must store current time in case of roaming. This is
834 * needed to purge this entry out on timeout (if nobody claims
835 * it)
836 */
837 if (flags & BATADV_TT_CLIENT_ROAM)
838 tt_global_entry->roam_at = jiffies;
Sven Eckelmannc0a55922012-05-12 13:48:55 +0200839 atomic_set(&common->refcount, 2);
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200840 common->added_at = jiffies;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200841
842 INIT_HLIST_HEAD(&tt_global_entry->orig_list);
843 spin_lock_init(&tt_global_entry->list_lock);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200844
Sven Eckelmann807736f2012-07-15 22:26:51 +0200845 hash_added = batadv_hash_add(bat_priv->tt.global_hash,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200846 batadv_compare_tt,
847 batadv_choose_orig, common,
848 &common->hash_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100849
850 if (unlikely(hash_added != 0)) {
851 /* remove the reference for the hash */
Sven Eckelmanna5130882012-05-16 20:23:16 +0200852 batadv_tt_global_entry_free_ref(tt_global_entry);
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100853 goto out_remove;
854 }
Antonio Quartullia73105b2011-04-27 14:27:44 +0200855 } else {
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200856 common = &tt_global_entry->common;
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200857 /* If there is already a global entry, we can use this one for
858 * our processing.
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200859 * But if we are trying to add a temporary client then here are
860 * two options at this point:
861 * 1) the global client is not a temporary client: the global
862 * client has to be left as it is, temporary information
863 * should never override any already known client state
864 * 2) the global client is a temporary client: purge the
865 * originator list and add the new one orig_entry
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200866 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200867 if (flags & BATADV_TT_CLIENT_TEMP) {
868 if (!(common->flags & BATADV_TT_CLIENT_TEMP))
869 goto out;
870 if (batadv_tt_global_entry_has_orig(tt_global_entry,
871 orig_node))
872 goto out_remove;
873 batadv_tt_global_del_orig_list(tt_global_entry);
874 goto add_orig_entry;
875 }
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200876
877 /* if the client was temporary added before receiving the first
878 * OGM announcing it, we have to clear the TEMP flag
879 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200880 common->flags &= ~BATADV_TT_CLIENT_TEMP;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200881
Antonio Quartullie9c001362012-11-07 15:05:33 +0100882 /* the change can carry possible "attribute" flags like the
883 * TT_CLIENT_WIFI, therefore they have to be copied in the
884 * client entry
885 */
886 tt_global_entry->common.flags |= flags;
887
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200888 /* If there is the BATADV_TT_CLIENT_ROAM flag set, there is only
889 * one originator left in the list and we previously received a
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200890 * delete + roaming change for this originator.
891 *
892 * We should first delete the old originator before adding the
893 * new one.
894 */
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200895 if (common->flags & BATADV_TT_CLIENT_ROAM) {
Sven Eckelmanna5130882012-05-16 20:23:16 +0200896 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200897 common->flags &= ~BATADV_TT_CLIENT_ROAM;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200898 tt_global_entry->roam_at = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000899 }
900 }
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200901add_orig_entry:
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200902 /* add the new orig_entry (if needed) or update it */
Antonio Quartullid657e622012-07-01 14:09:12 +0200903 batadv_tt_global_orig_entry_add(tt_global_entry, orig_node, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200904
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200905 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200906 "Creating new global tt entry: %pM (via %pM)\n",
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200907 common->addr, orig_node->orig);
Antonio Quartullic10dba02012-08-11 11:11:00 +0200908 ret = 1;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200909
Simon Wunderlich80b3f582011-11-02 20:26:45 +0100910out_remove:
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200911
Antonio Quartullia73105b2011-04-27 14:27:44 +0200912 /* remove address from local hash if present */
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200913 local_flags = batadv_tt_local_remove(bat_priv, tt_addr,
914 "global tt received",
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200915 !!(flags & BATADV_TT_CLIENT_ROAM));
Antonio Quartulli7f91d062012-08-27 11:44:43 +0200916 tt_global_entry->common.flags |= local_flags & BATADV_TT_CLIENT_WIFI;
917
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200918 if (!(flags & BATADV_TT_CLIENT_ROAM))
919 /* this is a normal global add. Therefore the client is not in a
920 * roaming state anymore.
921 */
922 tt_global_entry->common.flags &= ~BATADV_TT_CLIENT_ROAM;
923
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200924out:
925 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +0200926 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +0200927 if (tt_local_entry)
928 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +0200929 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000930}
931
Sven Eckelmann981d8902012-10-07 13:34:15 +0200932/* batadv_transtable_best_orig - Get best originator list entry from tt entry
933 * @tt_global_entry: global translation table entry to be analyzed
934 *
935 * This functon assumes the caller holds rcu_read_lock().
936 * Returns best originator list entry or NULL on errors.
937 */
938static struct batadv_tt_orig_list_entry *
939batadv_transtable_best_orig(struct batadv_tt_global_entry *tt_global_entry)
940{
941 struct batadv_neigh_node *router = NULL;
942 struct hlist_head *head;
943 struct hlist_node *node;
944 struct batadv_tt_orig_list_entry *orig_entry, *best_entry = NULL;
945 int best_tq = 0;
946
947 head = &tt_global_entry->orig_list;
948 hlist_for_each_entry_rcu(orig_entry, node, head, list) {
949 router = batadv_orig_node_get_router(orig_entry->orig_node);
950 if (!router)
951 continue;
952
953 if (router->tq_avg > best_tq) {
954 best_entry = orig_entry;
955 best_tq = router->tq_avg;
956 }
957
958 batadv_neigh_node_free_ref(router);
959 }
960
961 return best_entry;
962}
963
964/* batadv_tt_global_print_entry - print all orig nodes who announce the address
965 * for this global entry
966 * @tt_global_entry: global translation table entry to be printed
967 * @seq: debugfs table seq_file struct
968 *
969 * This functon assumes the caller holds rcu_read_lock().
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200970 */
Sven Eckelmanna5130882012-05-16 20:23:16 +0200971static void
Sven Eckelmann56303d32012-06-05 22:31:31 +0200972batadv_tt_global_print_entry(struct batadv_tt_global_entry *tt_global_entry,
Sven Eckelmanna5130882012-05-16 20:23:16 +0200973 struct seq_file *seq)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200974{
975 struct hlist_head *head;
976 struct hlist_node *node;
Sven Eckelmann981d8902012-10-07 13:34:15 +0200977 struct batadv_tt_orig_list_entry *orig_entry, *best_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200978 struct batadv_tt_common_entry *tt_common_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200979 uint16_t flags;
980 uint8_t last_ttvn;
981
982 tt_common_entry = &tt_global_entry->common;
Sven Eckelmann981d8902012-10-07 13:34:15 +0200983 flags = tt_common_entry->flags;
984
985 best_entry = batadv_transtable_best_orig(tt_global_entry);
986 if (best_entry) {
987 last_ttvn = atomic_read(&best_entry->orig_node->last_ttvn);
Antonio Quartullif9d8a532012-11-19 09:01:42 +0100988 seq_printf(seq,
989 " %c %pM (%3u) via %pM (%3u) (%#.4x) [%c%c%c]\n",
Sven Eckelmann981d8902012-10-07 13:34:15 +0200990 '*', tt_global_entry->common.addr,
991 best_entry->ttvn, best_entry->orig_node->orig,
Antonio Quartullif9d8a532012-11-19 09:01:42 +0100992 last_ttvn, best_entry->orig_node->tt_crc,
Sven Eckelmann981d8902012-10-07 13:34:15 +0200993 (flags & BATADV_TT_CLIENT_ROAM ? 'R' : '.'),
994 (flags & BATADV_TT_CLIENT_WIFI ? 'W' : '.'),
995 (flags & BATADV_TT_CLIENT_TEMP ? 'T' : '.'));
996 }
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +0200997
998 head = &tt_global_entry->orig_list;
999
1000 hlist_for_each_entry_rcu(orig_entry, node, head, list) {
Sven Eckelmann981d8902012-10-07 13:34:15 +02001001 if (best_entry == orig_entry)
1002 continue;
1003
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001004 last_ttvn = atomic_read(&orig_entry->orig_node->last_ttvn);
Sven Eckelmann981d8902012-10-07 13:34:15 +02001005 seq_printf(seq, " %c %pM (%3u) via %pM (%3u) [%c%c%c]\n",
1006 '+', tt_global_entry->common.addr,
1007 orig_entry->ttvn, orig_entry->orig_node->orig,
1008 last_ttvn,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001009 (flags & BATADV_TT_CLIENT_ROAM ? 'R' : '.'),
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001010 (flags & BATADV_TT_CLIENT_WIFI ? 'W' : '.'),
1011 (flags & BATADV_TT_CLIENT_TEMP ? 'T' : '.'));
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001012 }
1013}
1014
Sven Eckelmann08c36d32012-05-12 02:09:39 +02001015int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001016{
1017 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001018 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001019 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001020 struct batadv_tt_common_entry *tt_common_entry;
1021 struct batadv_tt_global_entry *tt_global;
1022 struct batadv_hard_iface *primary_if;
Marek Lindner7aadf882011-02-18 12:28:09 +00001023 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001024 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001025 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001026
Marek Lindner30da63a2012-08-03 17:15:46 +02001027 primary_if = batadv_seq_print_text_primary_if_get(seq);
1028 if (!primary_if)
Marek Lindner32ae9b22011-04-20 15:40:58 +02001029 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001030
Antonio Quartulli2dafb492011-05-05 08:42:45 +02001031 seq_printf(seq,
1032 "Globally announced TT entries received via the mesh %s\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001033 net_dev->name);
Antonio Quartullif9d8a532012-11-19 09:01:42 +01001034 seq_printf(seq, " %-13s %s %-15s %s (%-6s) %s\n",
1035 "Client", "(TTVN)", "Originator", "(Curr TTVN)", "CRC",
1036 "Flags");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001037
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001038 for (i = 0; i < hash->size; i++) {
1039 head = &hash->table[i];
1040
Marek Lindner7aadf882011-02-18 12:28:09 +00001041 rcu_read_lock();
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001042 hlist_for_each_entry_rcu(tt_common_entry, node,
Marek Lindner7aadf882011-02-18 12:28:09 +00001043 head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001044 tt_global = container_of(tt_common_entry,
1045 struct batadv_tt_global_entry,
1046 common);
1047 batadv_tt_global_print_entry(tt_global, seq);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001048 }
Marek Lindner7aadf882011-02-18 12:28:09 +00001049 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001050 }
Marek Lindner32ae9b22011-04-20 15:40:58 +02001051out:
1052 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001053 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +02001054 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001055}
1056
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001057/* deletes the orig list of a tt_global_entry */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001058static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001059batadv_tt_global_del_orig_list(struct batadv_tt_global_entry *tt_global_entry)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001060{
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001061 struct hlist_head *head;
1062 struct hlist_node *node, *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001063 struct batadv_tt_orig_list_entry *orig_entry;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001064
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001065 spin_lock_bh(&tt_global_entry->list_lock);
1066 head = &tt_global_entry->orig_list;
1067 hlist_for_each_entry_safe(orig_entry, node, safe, head, list) {
1068 hlist_del_rcu(node);
Sven Eckelmanna5130882012-05-16 20:23:16 +02001069 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001070 }
1071 spin_unlock_bh(&tt_global_entry->list_lock);
1072
1073}
1074
Sven Eckelmanna5130882012-05-16 20:23:16 +02001075static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001076batadv_tt_global_del_orig_entry(struct batadv_priv *bat_priv,
1077 struct batadv_tt_global_entry *tt_global_entry,
1078 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001079 const char *message)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001080{
1081 struct hlist_head *head;
1082 struct hlist_node *node, *safe;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001083 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001084
1085 spin_lock_bh(&tt_global_entry->list_lock);
1086 head = &tt_global_entry->orig_list;
1087 hlist_for_each_entry_safe(orig_entry, node, safe, head, list) {
1088 if (orig_entry->orig_node == orig_node) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001089 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001090 "Deleting %pM from global tt entry %pM: %s\n",
1091 orig_node->orig,
1092 tt_global_entry->common.addr, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001093 hlist_del_rcu(node);
Sven Eckelmanna5130882012-05-16 20:23:16 +02001094 batadv_tt_orig_list_entry_free_ref(orig_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001095 }
1096 }
1097 spin_unlock_bh(&tt_global_entry->list_lock);
1098}
1099
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001100/* If the client is to be deleted, we check if it is the last origantor entry
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001101 * within tt_global entry. If yes, we set the BATADV_TT_CLIENT_ROAM flag and the
1102 * timer, otherwise we simply remove the originator scheduled for deletion.
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001103 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001104static void
Sven Eckelmann56303d32012-06-05 22:31:31 +02001105batadv_tt_global_del_roaming(struct batadv_priv *bat_priv,
1106 struct batadv_tt_global_entry *tt_global_entry,
1107 struct batadv_orig_node *orig_node,
1108 const char *message)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001109{
1110 bool last_entry = true;
1111 struct hlist_head *head;
1112 struct hlist_node *node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001113 struct batadv_tt_orig_list_entry *orig_entry;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001114
1115 /* no local entry exists, case 1:
1116 * Check if this is the last one or if other entries exist.
1117 */
1118
1119 rcu_read_lock();
1120 head = &tt_global_entry->orig_list;
1121 hlist_for_each_entry_rcu(orig_entry, node, head, list) {
1122 if (orig_entry->orig_node != orig_node) {
1123 last_entry = false;
1124 break;
1125 }
1126 }
1127 rcu_read_unlock();
1128
1129 if (last_entry) {
1130 /* its the last one, mark for roaming. */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001131 tt_global_entry->common.flags |= BATADV_TT_CLIENT_ROAM;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001132 tt_global_entry->roam_at = jiffies;
1133 } else
1134 /* there is another entry, we can simply delete this
1135 * one and can still use the other one.
1136 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001137 batadv_tt_global_del_orig_entry(bat_priv, tt_global_entry,
1138 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001139}
1140
1141
1142
Sven Eckelmann56303d32012-06-05 22:31:31 +02001143static void batadv_tt_global_del(struct batadv_priv *bat_priv,
1144 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001145 const unsigned char *addr,
1146 const char *message, bool roaming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001147{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001148 struct batadv_tt_global_entry *tt_global_entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001149 struct batadv_tt_local_entry *local_entry = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001150
Sven Eckelmanna5130882012-05-16 20:23:16 +02001151 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001152 if (!tt_global_entry)
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001153 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001154
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001155 if (!roaming) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02001156 batadv_tt_global_del_orig_entry(bat_priv, tt_global_entry,
1157 orig_node, message);
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001158
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001159 if (hlist_empty(&tt_global_entry->orig_list))
Antonio Quartullibe73b482012-09-23 22:38:36 +02001160 batadv_tt_global_free(bat_priv, tt_global_entry,
1161 message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001162
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001163 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001164 }
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001165
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001166 /* if we are deleting a global entry due to a roam
1167 * event, there are two possibilities:
1168 * 1) the client roamed from node A to node B => if there
1169 * is only one originator left for this client, we mark
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001170 * it with BATADV_TT_CLIENT_ROAM, we start a timer and we
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001171 * wait for node B to claim it. In case of timeout
1172 * the entry is purged.
1173 *
1174 * If there are other originators left, we directly delete
1175 * the originator.
1176 * 2) the client roamed to us => we can directly delete
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001177 * the global entry, since it is useless now.
1178 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001179 local_entry = batadv_tt_local_hash_find(bat_priv,
1180 tt_global_entry->common.addr);
1181 if (local_entry) {
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001182 /* local entry exists, case 2: client roamed to us. */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001183 batadv_tt_global_del_orig_list(tt_global_entry);
Antonio Quartullibe73b482012-09-23 22:38:36 +02001184 batadv_tt_global_free(bat_priv, tt_global_entry, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001185 } else
1186 /* no local entry exists, case 1: check for roaming */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001187 batadv_tt_global_del_roaming(bat_priv, tt_global_entry,
1188 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001189
Sven Eckelmann92f90f52011-12-22 20:31:12 +08001190
Antonio Quartullicc47f662011-04-27 14:27:57 +02001191out:
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001192 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001193 batadv_tt_global_entry_free_ref(tt_global_entry);
1194 if (local_entry)
1195 batadv_tt_local_entry_free_ref(local_entry);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001196}
1197
Sven Eckelmann56303d32012-06-05 22:31:31 +02001198void batadv_tt_global_del_orig(struct batadv_priv *bat_priv,
1199 struct batadv_orig_node *orig_node,
1200 const char *message)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001201{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001202 struct batadv_tt_global_entry *tt_global;
1203 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001204 uint32_t i;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001205 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001206 struct hlist_node *node, *safe;
1207 struct hlist_head *head;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001208 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001209
Simon Wunderlich6e801492011-10-19 10:28:26 +02001210 if (!hash)
1211 return;
1212
Antonio Quartullia73105b2011-04-27 14:27:44 +02001213 for (i = 0; i < hash->size; i++) {
1214 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001215 list_lock = &hash->list_locks[i];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001216
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001217 spin_lock_bh(list_lock);
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001218 hlist_for_each_entry_safe(tt_common_entry, node, safe,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +01001219 head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001220 tt_global = container_of(tt_common_entry,
1221 struct batadv_tt_global_entry,
1222 common);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001223
Sven Eckelmann56303d32012-06-05 22:31:31 +02001224 batadv_tt_global_del_orig_entry(bat_priv, tt_global,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001225 orig_node, message);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001226
Sven Eckelmann56303d32012-06-05 22:31:31 +02001227 if (hlist_empty(&tt_global->orig_list)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001228 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001229 "Deleting global tt entry %pM: %s\n",
Sven Eckelmann56303d32012-06-05 22:31:31 +02001230 tt_global->common.addr, message);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001231 hlist_del_rcu(node);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001232 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001233 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001234 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001235 spin_unlock_bh(list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001236 }
Antonio Quartulli17071572011-11-07 16:36:40 +01001237 orig_node->tt_initialised = false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001238}
1239
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001240static bool batadv_tt_global_to_purge(struct batadv_tt_global_entry *tt_global,
1241 char **msg)
Antonio Quartullicc47f662011-04-27 14:27:57 +02001242{
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001243 bool purge = false;
1244 unsigned long roam_timeout = BATADV_TT_CLIENT_ROAM_TIMEOUT;
1245 unsigned long temp_timeout = BATADV_TT_CLIENT_TEMP_TIMEOUT;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001246
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001247 if ((tt_global->common.flags & BATADV_TT_CLIENT_ROAM) &&
1248 batadv_has_timed_out(tt_global->roam_at, roam_timeout)) {
1249 purge = true;
1250 *msg = "Roaming timeout\n";
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001251 }
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001252
1253 if ((tt_global->common.flags & BATADV_TT_CLIENT_TEMP) &&
1254 batadv_has_timed_out(tt_global->common.added_at, temp_timeout)) {
1255 purge = true;
1256 *msg = "Temporary client timeout\n";
1257 }
1258
1259 return purge;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001260}
1261
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001262static void batadv_tt_global_purge(struct batadv_priv *bat_priv)
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001263{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001264 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001265 struct hlist_head *head;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001266 struct hlist_node *node, *node_tmp;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001267 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02001268 uint32_t i;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001269 char *msg = NULL;
1270 struct batadv_tt_common_entry *tt_common;
1271 struct batadv_tt_global_entry *tt_global;
Antonio Quartullicc47f662011-04-27 14:27:57 +02001272
Antonio Quartullicc47f662011-04-27 14:27:57 +02001273 for (i = 0; i < hash->size; i++) {
1274 head = &hash->table[i];
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001275 list_lock = &hash->list_locks[i];
Antonio Quartullicc47f662011-04-27 14:27:57 +02001276
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001277 spin_lock_bh(list_lock);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001278 hlist_for_each_entry_safe(tt_common, node, node_tmp, head,
1279 hash_entry) {
1280 tt_global = container_of(tt_common,
1281 struct batadv_tt_global_entry,
1282 common);
1283
1284 if (!batadv_tt_global_to_purge(tt_global, &msg))
1285 continue;
1286
1287 batadv_dbg(BATADV_DBG_TT, bat_priv,
1288 "Deleting global tt entry (%pM): %s\n",
1289 tt_global->common.addr, msg);
1290
1291 hlist_del_rcu(node);
1292
1293 batadv_tt_global_entry_free_ref(tt_global);
1294 }
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001295 spin_unlock_bh(list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02001296 }
Antonio Quartullicc47f662011-04-27 14:27:57 +02001297}
1298
Sven Eckelmann56303d32012-06-05 22:31:31 +02001299static void batadv_tt_global_table_free(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001300{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001301 struct batadv_hashtable *hash;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001302 spinlock_t *list_lock; /* protects write access to the hash lists */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001303 struct batadv_tt_common_entry *tt_common_entry;
1304 struct batadv_tt_global_entry *tt_global;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001305 struct hlist_node *node, *node_tmp;
1306 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001307 uint32_t i;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001308
Sven Eckelmann807736f2012-07-15 22:26:51 +02001309 if (!bat_priv->tt.global_hash)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001310 return;
1311
Sven Eckelmann807736f2012-07-15 22:26:51 +02001312 hash = bat_priv->tt.global_hash;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001313
1314 for (i = 0; i < hash->size; i++) {
1315 head = &hash->table[i];
1316 list_lock = &hash->list_locks[i];
1317
1318 spin_lock_bh(list_lock);
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001319 hlist_for_each_entry_safe(tt_common_entry, node, node_tmp,
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001320 head, hash_entry) {
1321 hlist_del_rcu(node);
Sven Eckelmann56303d32012-06-05 22:31:31 +02001322 tt_global = container_of(tt_common_entry,
1323 struct batadv_tt_global_entry,
1324 common);
1325 batadv_tt_global_entry_free_ref(tt_global);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001326 }
1327 spin_unlock_bh(list_lock);
1328 }
1329
Sven Eckelmann1a8eaf02012-05-12 02:09:32 +02001330 batadv_hash_destroy(hash);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02001331
Sven Eckelmann807736f2012-07-15 22:26:51 +02001332 bat_priv->tt.global_hash = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001333}
1334
Sven Eckelmann56303d32012-06-05 22:31:31 +02001335static bool
1336_batadv_is_ap_isolated(struct batadv_tt_local_entry *tt_local_entry,
1337 struct batadv_tt_global_entry *tt_global_entry)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02001338{
1339 bool ret = false;
1340
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001341 if (tt_local_entry->common.flags & BATADV_TT_CLIENT_WIFI &&
1342 tt_global_entry->common.flags & BATADV_TT_CLIENT_WIFI)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02001343 ret = true;
1344
1345 return ret;
1346}
1347
Sven Eckelmann56303d32012-06-05 22:31:31 +02001348struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv,
1349 const uint8_t *src,
1350 const uint8_t *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001351{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001352 struct batadv_tt_local_entry *tt_local_entry = NULL;
1353 struct batadv_tt_global_entry *tt_global_entry = NULL;
1354 struct batadv_orig_node *orig_node = NULL;
Sven Eckelmann981d8902012-10-07 13:34:15 +02001355 struct batadv_tt_orig_list_entry *best_entry;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001356
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001357 if (src && atomic_read(&bat_priv->ap_isolation)) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02001358 tt_local_entry = batadv_tt_local_hash_find(bat_priv, src);
Antonio Quartulli068ee6e2012-09-23 22:38:37 +02001359 if (!tt_local_entry ||
1360 (tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING))
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001361 goto out;
1362 }
Marek Lindner7aadf882011-02-18 12:28:09 +00001363
Sven Eckelmanna5130882012-05-16 20:23:16 +02001364 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr);
Antonio Quartulli2dafb492011-05-05 08:42:45 +02001365 if (!tt_global_entry)
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001366 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001367
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001368 /* check whether the clients should not communicate due to AP
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001369 * isolation
1370 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001371 if (tt_local_entry &&
1372 _batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001373 goto out;
1374
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001375 rcu_read_lock();
Sven Eckelmann981d8902012-10-07 13:34:15 +02001376 best_entry = batadv_transtable_best_orig(tt_global_entry);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001377 /* found anything? */
Sven Eckelmann981d8902012-10-07 13:34:15 +02001378 if (best_entry)
1379 orig_node = best_entry->orig_node;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001380 if (orig_node && !atomic_inc_not_zero(&orig_node->refcount))
1381 orig_node = NULL;
1382 rcu_read_unlock();
Sven Eckelmann981d8902012-10-07 13:34:15 +02001383
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001384out:
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001385 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001386 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001387 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02001388 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli3d393e42011-07-07 15:35:37 +02001389
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001390 return orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001391}
Antonio Quartullia73105b2011-04-27 14:27:44 +02001392
1393/* Calculates the checksum of the local table of a given orig_node */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001394static uint16_t batadv_tt_global_crc(struct batadv_priv *bat_priv,
1395 struct batadv_orig_node *orig_node)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001396{
1397 uint16_t total = 0, total_one;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001398 struct batadv_hashtable *hash = bat_priv->tt.global_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001399 struct batadv_tt_common_entry *tt_common;
1400 struct batadv_tt_global_entry *tt_global;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001401 struct hlist_node *node;
1402 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001403 uint32_t i;
1404 int j;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001405
1406 for (i = 0; i < hash->size; i++) {
1407 head = &hash->table[i];
1408
1409 rcu_read_lock();
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001410 hlist_for_each_entry_rcu(tt_common, node, head, hash_entry) {
Sven Eckelmann56303d32012-06-05 22:31:31 +02001411 tt_global = container_of(tt_common,
1412 struct batadv_tt_global_entry,
1413 common);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001414 /* Roaming clients are in the global table for
1415 * consistency only. They don't have to be
1416 * taken into account while computing the
1417 * global crc
1418 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001419 if (tt_common->flags & BATADV_TT_CLIENT_ROAM)
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001420 continue;
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001421 /* Temporary clients have not been announced yet, so
1422 * they have to be skipped while computing the global
1423 * crc
1424 */
1425 if (tt_common->flags & BATADV_TT_CLIENT_TEMP)
1426 continue;
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001427
1428 /* find out if this global entry is announced by this
1429 * originator
1430 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001431 if (!batadv_tt_global_entry_has_orig(tt_global,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001432 orig_node))
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001433 continue;
1434
1435 total_one = 0;
1436 for (j = 0; j < ETH_ALEN; j++)
1437 total_one = crc16_byte(total_one,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001438 tt_common->addr[j]);
Simon Wunderlichdb08e6e2011-10-22 20:12:51 +02001439 total ^= total_one;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001440 }
1441 rcu_read_unlock();
1442 }
1443
1444 return total;
1445}
1446
1447/* Calculates the checksum of the local table */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001448static uint16_t batadv_tt_local_crc(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001449{
1450 uint16_t total = 0, total_one;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001451 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001452 struct batadv_tt_common_entry *tt_common;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001453 struct hlist_node *node;
1454 struct hlist_head *head;
Antonio Quartullic90681b2011-10-05 17:05:25 +02001455 uint32_t i;
1456 int j;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001457
1458 for (i = 0; i < hash->size; i++) {
1459 head = &hash->table[i];
1460
1461 rcu_read_lock();
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001462 hlist_for_each_entry_rcu(tt_common, node, head, hash_entry) {
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001463 /* not yet committed clients have not to be taken into
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001464 * account while computing the CRC
1465 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001466 if (tt_common->flags & BATADV_TT_CLIENT_NEW)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001467 continue;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001468 total_one = 0;
1469 for (j = 0; j < ETH_ALEN; j++)
1470 total_one = crc16_byte(total_one,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001471 tt_common->addr[j]);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001472 total ^= total_one;
1473 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001474 rcu_read_unlock();
1475 }
1476
1477 return total;
1478}
1479
Sven Eckelmann56303d32012-06-05 22:31:31 +02001480static void batadv_tt_req_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001481{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001482 struct batadv_tt_req_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001483
Sven Eckelmann807736f2012-07-15 22:26:51 +02001484 spin_lock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001485
Sven Eckelmann807736f2012-07-15 22:26:51 +02001486 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Antonio Quartullia73105b2011-04-27 14:27:44 +02001487 list_del(&node->list);
1488 kfree(node);
1489 }
1490
Sven Eckelmann807736f2012-07-15 22:26:51 +02001491 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001492}
1493
Sven Eckelmann56303d32012-06-05 22:31:31 +02001494static void batadv_tt_save_orig_buffer(struct batadv_priv *bat_priv,
1495 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001496 const unsigned char *tt_buff,
1497 uint8_t tt_num_changes)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001498{
Sven Eckelmann08c36d32012-05-12 02:09:39 +02001499 uint16_t tt_buff_len = batadv_tt_len(tt_num_changes);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001500
1501 /* Replace the old buffer only if I received something in the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001502 * last OGM (the OGM could carry no changes)
1503 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001504 spin_lock_bh(&orig_node->tt_buff_lock);
1505 if (tt_buff_len > 0) {
1506 kfree(orig_node->tt_buff);
1507 orig_node->tt_buff_len = 0;
1508 orig_node->tt_buff = kmalloc(tt_buff_len, GFP_ATOMIC);
1509 if (orig_node->tt_buff) {
1510 memcpy(orig_node->tt_buff, tt_buff, tt_buff_len);
1511 orig_node->tt_buff_len = tt_buff_len;
1512 }
1513 }
1514 spin_unlock_bh(&orig_node->tt_buff_lock);
1515}
1516
Sven Eckelmann56303d32012-06-05 22:31:31 +02001517static void batadv_tt_req_purge(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001518{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001519 struct batadv_tt_req_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001520
Sven Eckelmann807736f2012-07-15 22:26:51 +02001521 spin_lock_bh(&bat_priv->tt.req_list_lock);
1522 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001523 if (batadv_has_timed_out(node->issued_at,
1524 BATADV_TT_REQUEST_TIMEOUT)) {
Antonio Quartullia73105b2011-04-27 14:27:44 +02001525 list_del(&node->list);
1526 kfree(node);
1527 }
1528 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02001529 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001530}
1531
1532/* returns the pointer to the new tt_req_node struct if no request
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001533 * has already been issued for this orig_node, NULL otherwise
1534 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001535static struct batadv_tt_req_node *
1536batadv_new_tt_req_node(struct batadv_priv *bat_priv,
1537 struct batadv_orig_node *orig_node)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001538{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001539 struct batadv_tt_req_node *tt_req_node_tmp, *tt_req_node = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001540
Sven Eckelmann807736f2012-07-15 22:26:51 +02001541 spin_lock_bh(&bat_priv->tt.req_list_lock);
1542 list_for_each_entry(tt_req_node_tmp, &bat_priv->tt.req_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001543 if (batadv_compare_eth(tt_req_node_tmp, orig_node) &&
1544 !batadv_has_timed_out(tt_req_node_tmp->issued_at,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001545 BATADV_TT_REQUEST_TIMEOUT))
Antonio Quartullia73105b2011-04-27 14:27:44 +02001546 goto unlock;
1547 }
1548
1549 tt_req_node = kmalloc(sizeof(*tt_req_node), GFP_ATOMIC);
1550 if (!tt_req_node)
1551 goto unlock;
1552
1553 memcpy(tt_req_node->addr, orig_node->orig, ETH_ALEN);
1554 tt_req_node->issued_at = jiffies;
1555
Sven Eckelmann807736f2012-07-15 22:26:51 +02001556 list_add(&tt_req_node->list, &bat_priv->tt.req_list);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001557unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02001558 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001559 return tt_req_node;
1560}
1561
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001562/* data_ptr is useless here, but has to be kept to respect the prototype */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001563static int batadv_tt_local_valid_entry(const void *entry_ptr,
1564 const void *data_ptr)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001565{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001566 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001567
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001568 if (tt_common_entry->flags & BATADV_TT_CLIENT_NEW)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02001569 return 0;
1570 return 1;
1571}
1572
Sven Eckelmanna5130882012-05-16 20:23:16 +02001573static int batadv_tt_global_valid(const void *entry_ptr,
1574 const void *data_ptr)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001575{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001576 const struct batadv_tt_common_entry *tt_common_entry = entry_ptr;
1577 const struct batadv_tt_global_entry *tt_global_entry;
1578 const struct batadv_orig_node *orig_node = data_ptr;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001579
Antonio Quartulli30cfd022012-07-05 23:38:29 +02001580 if (tt_common_entry->flags & BATADV_TT_CLIENT_ROAM ||
1581 tt_common_entry->flags & BATADV_TT_CLIENT_TEMP)
Antonio Quartullicc47f662011-04-27 14:27:57 +02001582 return 0;
1583
Sven Eckelmann56303d32012-06-05 22:31:31 +02001584 tt_global_entry = container_of(tt_common_entry,
1585 struct batadv_tt_global_entry,
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001586 common);
1587
Sven Eckelmanna5130882012-05-16 20:23:16 +02001588 return batadv_tt_global_entry_has_orig(tt_global_entry, orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001589}
1590
Sven Eckelmanna5130882012-05-16 20:23:16 +02001591static struct sk_buff *
1592batadv_tt_response_fill_table(uint16_t tt_len, uint8_t ttvn,
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001593 struct batadv_hashtable *hash,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001594 struct batadv_hard_iface *primary_if,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001595 int (*valid_cb)(const void *, const void *),
1596 void *cb_data)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001597{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001598 struct batadv_tt_common_entry *tt_common_entry;
Sven Eckelmann96412692012-06-05 22:31:30 +02001599 struct batadv_tt_query_packet *tt_response;
1600 struct batadv_tt_change *tt_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001601 struct hlist_node *node;
1602 struct hlist_head *head;
1603 struct sk_buff *skb = NULL;
1604 uint16_t tt_tot, tt_count;
Sven Eckelmann96412692012-06-05 22:31:30 +02001605 ssize_t tt_query_size = sizeof(struct batadv_tt_query_packet);
Antonio Quartullic90681b2011-10-05 17:05:25 +02001606 uint32_t i;
Sven Eckelmann96412692012-06-05 22:31:30 +02001607 size_t len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001608
1609 if (tt_query_size + tt_len > primary_if->soft_iface->mtu) {
1610 tt_len = primary_if->soft_iface->mtu - tt_query_size;
Sven Eckelmann96412692012-06-05 22:31:30 +02001611 tt_len -= tt_len % sizeof(struct batadv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001612 }
Sven Eckelmann96412692012-06-05 22:31:30 +02001613 tt_tot = tt_len / sizeof(struct batadv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001614
Sven Eckelmann96412692012-06-05 22:31:30 +02001615 len = tt_query_size + tt_len;
Sven Eckelmann5b246572012-11-04 17:11:45 +01001616 skb = dev_alloc_skb(len + ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001617 if (!skb)
1618 goto out;
1619
Sven Eckelmann5b246572012-11-04 17:11:45 +01001620 skb_reserve(skb, ETH_HLEN + NET_IP_ALIGN);
Sven Eckelmann96412692012-06-05 22:31:30 +02001621 tt_response = (struct batadv_tt_query_packet *)skb_put(skb, len);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001622 tt_response->ttvn = ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001623
Sven Eckelmann96412692012-06-05 22:31:30 +02001624 tt_change = (struct batadv_tt_change *)(skb->data + tt_query_size);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001625 tt_count = 0;
1626
1627 rcu_read_lock();
1628 for (i = 0; i < hash->size; i++) {
1629 head = &hash->table[i];
1630
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001631 hlist_for_each_entry_rcu(tt_common_entry, node,
Antonio Quartullia73105b2011-04-27 14:27:44 +02001632 head, hash_entry) {
1633 if (tt_count == tt_tot)
1634 break;
1635
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001636 if ((valid_cb) && (!valid_cb(tt_common_entry, cb_data)))
Antonio Quartullia73105b2011-04-27 14:27:44 +02001637 continue;
1638
Antonio Quartulli48100ba2011-10-30 12:17:33 +01001639 memcpy(tt_change->addr, tt_common_entry->addr,
1640 ETH_ALEN);
Antonio Quartulli27b37eb2012-11-08 14:21:11 +01001641 tt_change->flags = tt_common_entry->flags;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001642
1643 tt_count++;
1644 tt_change++;
1645 }
1646 }
1647 rcu_read_unlock();
1648
Antonio Quartulli9d852392011-10-17 14:25:13 +02001649 /* store in the message the number of entries we have successfully
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001650 * copied
1651 */
Antonio Quartulli9d852392011-10-17 14:25:13 +02001652 tt_response->tt_data = htons(tt_count);
1653
Antonio Quartullia73105b2011-04-27 14:27:44 +02001654out:
1655 return skb;
1656}
1657
Sven Eckelmann56303d32012-06-05 22:31:31 +02001658static int batadv_send_tt_request(struct batadv_priv *bat_priv,
1659 struct batadv_orig_node *dst_orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001660 uint8_t ttvn, uint16_t tt_crc,
1661 bool full_table)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001662{
1663 struct sk_buff *skb = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +02001664 struct batadv_tt_query_packet *tt_request;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001665 struct batadv_hard_iface *primary_if;
1666 struct batadv_tt_req_node *tt_req_node = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001667 int ret = 1;
Sven Eckelmann96412692012-06-05 22:31:30 +02001668 size_t tt_req_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001669
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001670 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001671 if (!primary_if)
1672 goto out;
1673
1674 /* The new tt_req will be issued only if I'm not waiting for a
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001675 * reply from the same orig_node yet
1676 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02001677 tt_req_node = batadv_new_tt_req_node(bat_priv, dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001678 if (!tt_req_node)
1679 goto out;
1680
Sven Eckelmann5b246572012-11-04 17:11:45 +01001681 skb = dev_alloc_skb(sizeof(*tt_request) + ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001682 if (!skb)
1683 goto out;
1684
Sven Eckelmann5b246572012-11-04 17:11:45 +01001685 skb_reserve(skb, ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001686
Sven Eckelmann96412692012-06-05 22:31:30 +02001687 tt_req_len = sizeof(*tt_request);
1688 tt_request = (struct batadv_tt_query_packet *)skb_put(skb, tt_req_len);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001689
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001690 tt_request->header.packet_type = BATADV_TT_QUERY;
Sven Eckelmann7e071c72012-06-03 22:19:13 +02001691 tt_request->header.version = BATADV_COMPAT_VERSION;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001692 memcpy(tt_request->src, primary_if->net_dev->dev_addr, ETH_ALEN);
1693 memcpy(tt_request->dst, dst_orig_node->orig, ETH_ALEN);
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001694 tt_request->header.ttl = BATADV_TTL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001695 tt_request->ttvn = ttvn;
Antonio Quartulli6d2003f2012-04-14 13:15:27 +02001696 tt_request->tt_data = htons(tt_crc);
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001697 tt_request->flags = BATADV_TT_REQUEST;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001698
1699 if (full_table)
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001700 tt_request->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001701
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02001702 batadv_dbg(BATADV_DBG_TT, bat_priv, "Sending TT_REQUEST to %pM [%c]\n",
1703 dst_orig_node->orig, (full_table ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02001704
Sven Eckelmannd69909d2012-06-03 22:19:20 +02001705 batadv_inc_counter(bat_priv, BATADV_CNT_TT_REQUEST_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02001706
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02001707 if (batadv_send_skb_to_orig(skb, dst_orig_node, NULL))
1708 ret = 0;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001709
1710out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02001711 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001712 batadv_hardif_free_ref(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001713 if (ret)
1714 kfree_skb(skb);
1715 if (ret && tt_req_node) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02001716 spin_lock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001717 list_del(&tt_req_node->list);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001718 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001719 kfree(tt_req_node);
1720 }
1721 return ret;
1722}
1723
Sven Eckelmann96412692012-06-05 22:31:30 +02001724static bool
Sven Eckelmann56303d32012-06-05 22:31:31 +02001725batadv_send_other_tt_response(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +02001726 struct batadv_tt_query_packet *tt_request)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001727{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001728 struct batadv_orig_node *req_dst_orig_node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001729 struct batadv_orig_node *res_dst_orig_node = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001730 struct batadv_hard_iface *primary_if = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001731 uint8_t orig_ttvn, req_ttvn, ttvn;
1732 int ret = false;
1733 unsigned char *tt_buff;
1734 bool full_table;
1735 uint16_t tt_len, tt_tot;
1736 struct sk_buff *skb = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +02001737 struct batadv_tt_query_packet *tt_response;
Sven Eckelmannc67893d2012-07-08 18:33:51 +02001738 uint8_t *packet_pos;
Sven Eckelmann96412692012-06-05 22:31:30 +02001739 size_t len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001740
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001741 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001742 "Received TT_REQUEST from %pM for ttvn: %u (%pM) [%c]\n",
1743 tt_request->src, tt_request->ttvn, tt_request->dst,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001744 (tt_request->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02001745
1746 /* Let's get the orig node of the REAL destination */
Sven Eckelmannda641192012-05-12 13:48:56 +02001747 req_dst_orig_node = batadv_orig_hash_find(bat_priv, tt_request->dst);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001748 if (!req_dst_orig_node)
1749 goto out;
1750
Sven Eckelmannda641192012-05-12 13:48:56 +02001751 res_dst_orig_node = batadv_orig_hash_find(bat_priv, tt_request->src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001752 if (!res_dst_orig_node)
1753 goto out;
1754
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001755 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001756 if (!primary_if)
1757 goto out;
1758
1759 orig_ttvn = (uint8_t)atomic_read(&req_dst_orig_node->last_ttvn);
1760 req_ttvn = tt_request->ttvn;
1761
Antonio Quartulli015758d2011-07-09 17:52:13 +02001762 /* I don't have the requested data */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001763 if (orig_ttvn != req_ttvn ||
Al Virof25bd582012-04-22 07:44:27 +01001764 tt_request->tt_data != htons(req_dst_orig_node->tt_crc))
Antonio Quartullia73105b2011-04-27 14:27:44 +02001765 goto out;
1766
Antonio Quartulli015758d2011-07-09 17:52:13 +02001767 /* If the full table has been explicitly requested */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001768 if (tt_request->flags & BATADV_TT_FULL_TABLE ||
Antonio Quartullia73105b2011-04-27 14:27:44 +02001769 !req_dst_orig_node->tt_buff)
1770 full_table = true;
1771 else
1772 full_table = false;
1773
1774 /* In this version, fragmentation is not implemented, then
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001775 * I'll send only one packet with as much TT entries as I can
1776 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001777 if (!full_table) {
1778 spin_lock_bh(&req_dst_orig_node->tt_buff_lock);
1779 tt_len = req_dst_orig_node->tt_buff_len;
Sven Eckelmann96412692012-06-05 22:31:30 +02001780 tt_tot = tt_len / sizeof(struct batadv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001781
Sven Eckelmann96412692012-06-05 22:31:30 +02001782 len = sizeof(*tt_response) + tt_len;
Sven Eckelmann5b246572012-11-04 17:11:45 +01001783 skb = dev_alloc_skb(len + ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001784 if (!skb)
1785 goto unlock;
1786
Sven Eckelmann5b246572012-11-04 17:11:45 +01001787 skb_reserve(skb, ETH_HLEN + NET_IP_ALIGN);
Sven Eckelmannc67893d2012-07-08 18:33:51 +02001788 packet_pos = skb_put(skb, len);
1789 tt_response = (struct batadv_tt_query_packet *)packet_pos;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001790 tt_response->ttvn = req_ttvn;
1791 tt_response->tt_data = htons(tt_tot);
1792
Sven Eckelmann96412692012-06-05 22:31:30 +02001793 tt_buff = skb->data + sizeof(*tt_response);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001794 /* Copy the last orig_node's OGM buffer */
1795 memcpy(tt_buff, req_dst_orig_node->tt_buff,
1796 req_dst_orig_node->tt_buff_len);
1797
1798 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
1799 } else {
Sven Eckelmann96412692012-06-05 22:31:30 +02001800 tt_len = (uint16_t)atomic_read(&req_dst_orig_node->tt_size);
1801 tt_len *= sizeof(struct batadv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001802 ttvn = (uint8_t)atomic_read(&req_dst_orig_node->last_ttvn);
1803
Sven Eckelmanna5130882012-05-16 20:23:16 +02001804 skb = batadv_tt_response_fill_table(tt_len, ttvn,
Sven Eckelmann807736f2012-07-15 22:26:51 +02001805 bat_priv->tt.global_hash,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001806 primary_if,
1807 batadv_tt_global_valid,
1808 req_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001809 if (!skb)
1810 goto out;
1811
Sven Eckelmann96412692012-06-05 22:31:30 +02001812 tt_response = (struct batadv_tt_query_packet *)skb->data;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001813 }
1814
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001815 tt_response->header.packet_type = BATADV_TT_QUERY;
Sven Eckelmann7e071c72012-06-03 22:19:13 +02001816 tt_response->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001817 tt_response->header.ttl = BATADV_TTL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001818 memcpy(tt_response->src, req_dst_orig_node->orig, ETH_ALEN);
1819 memcpy(tt_response->dst, tt_request->src, ETH_ALEN);
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001820 tt_response->flags = BATADV_TT_RESPONSE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001821
1822 if (full_table)
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001823 tt_response->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001824
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001825 batadv_dbg(BATADV_DBG_TT, bat_priv,
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02001826 "Sending TT_RESPONSE %pM for %pM (ttvn: %u)\n",
1827 res_dst_orig_node->orig, req_dst_orig_node->orig, req_ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001828
Sven Eckelmannd69909d2012-06-03 22:19:20 +02001829 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02001830
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02001831 if (batadv_send_skb_to_orig(skb, res_dst_orig_node, NULL))
1832 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001833 goto out;
1834
1835unlock:
1836 spin_unlock_bh(&req_dst_orig_node->tt_buff_lock);
1837
1838out:
1839 if (res_dst_orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001840 batadv_orig_node_free_ref(res_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001841 if (req_dst_orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001842 batadv_orig_node_free_ref(req_dst_orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001843 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001844 batadv_hardif_free_ref(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001845 if (!ret)
1846 kfree_skb(skb);
1847 return ret;
1848
1849}
Sven Eckelmann96412692012-06-05 22:31:30 +02001850
1851static bool
Sven Eckelmann56303d32012-06-05 22:31:31 +02001852batadv_send_my_tt_response(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +02001853 struct batadv_tt_query_packet *tt_request)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001854{
Sven Eckelmann170173b2012-10-07 12:02:22 +02001855 struct batadv_orig_node *orig_node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001856 struct batadv_hard_iface *primary_if = NULL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001857 uint8_t my_ttvn, req_ttvn, ttvn;
1858 int ret = false;
1859 unsigned char *tt_buff;
1860 bool full_table;
1861 uint16_t tt_len, tt_tot;
1862 struct sk_buff *skb = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +02001863 struct batadv_tt_query_packet *tt_response;
Sven Eckelmannc67893d2012-07-08 18:33:51 +02001864 uint8_t *packet_pos;
Sven Eckelmann96412692012-06-05 22:31:30 +02001865 size_t len;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001866
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001867 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001868 "Received TT_REQUEST from %pM for ttvn: %u (me) [%c]\n",
1869 tt_request->src, tt_request->ttvn,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001870 (tt_request->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02001871
1872
Sven Eckelmann807736f2012-07-15 22:26:51 +02001873 my_ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001874 req_ttvn = tt_request->ttvn;
1875
Sven Eckelmannda641192012-05-12 13:48:56 +02001876 orig_node = batadv_orig_hash_find(bat_priv, tt_request->src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001877 if (!orig_node)
1878 goto out;
1879
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001880 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001881 if (!primary_if)
1882 goto out;
1883
1884 /* If the full table has been explicitly requested or the gap
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001885 * is too big send the whole local translation table
1886 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001887 if (tt_request->flags & BATADV_TT_FULL_TABLE || my_ttvn != req_ttvn ||
Sven Eckelmann807736f2012-07-15 22:26:51 +02001888 !bat_priv->tt.last_changeset)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001889 full_table = true;
1890 else
1891 full_table = false;
1892
1893 /* In this version, fragmentation is not implemented, then
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001894 * I'll send only one packet with as much TT entries as I can
1895 */
Antonio Quartullia73105b2011-04-27 14:27:44 +02001896 if (!full_table) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02001897 spin_lock_bh(&bat_priv->tt.last_changeset_lock);
1898 tt_len = bat_priv->tt.last_changeset_len;
Sven Eckelmann96412692012-06-05 22:31:30 +02001899 tt_tot = tt_len / sizeof(struct batadv_tt_change);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001900
Sven Eckelmann96412692012-06-05 22:31:30 +02001901 len = sizeof(*tt_response) + tt_len;
Sven Eckelmann5b246572012-11-04 17:11:45 +01001902 skb = dev_alloc_skb(len + ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001903 if (!skb)
1904 goto unlock;
1905
Sven Eckelmann5b246572012-11-04 17:11:45 +01001906 skb_reserve(skb, ETH_HLEN + NET_IP_ALIGN);
Sven Eckelmannc67893d2012-07-08 18:33:51 +02001907 packet_pos = skb_put(skb, len);
1908 tt_response = (struct batadv_tt_query_packet *)packet_pos;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001909 tt_response->ttvn = req_ttvn;
1910 tt_response->tt_data = htons(tt_tot);
1911
Sven Eckelmann96412692012-06-05 22:31:30 +02001912 tt_buff = skb->data + sizeof(*tt_response);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001913 memcpy(tt_buff, bat_priv->tt.last_changeset,
1914 bat_priv->tt.last_changeset_len);
1915 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001916 } else {
Sven Eckelmann807736f2012-07-15 22:26:51 +02001917 tt_len = (uint16_t)atomic_read(&bat_priv->tt.local_entry_num);
Sven Eckelmann96412692012-06-05 22:31:30 +02001918 tt_len *= sizeof(struct batadv_tt_change);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001919 ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001920
Sven Eckelmanna5130882012-05-16 20:23:16 +02001921 skb = batadv_tt_response_fill_table(tt_len, ttvn,
Sven Eckelmann807736f2012-07-15 22:26:51 +02001922 bat_priv->tt.local_hash,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001923 primary_if,
1924 batadv_tt_local_valid_entry,
1925 NULL);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001926 if (!skb)
1927 goto out;
1928
Sven Eckelmann96412692012-06-05 22:31:30 +02001929 tt_response = (struct batadv_tt_query_packet *)skb->data;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001930 }
1931
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001932 tt_response->header.packet_type = BATADV_TT_QUERY;
Sven Eckelmann7e071c72012-06-03 22:19:13 +02001933 tt_response->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001934 tt_response->header.ttl = BATADV_TTL;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001935 memcpy(tt_response->src, primary_if->net_dev->dev_addr, ETH_ALEN);
1936 memcpy(tt_response->dst, tt_request->src, ETH_ALEN);
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001937 tt_response->flags = BATADV_TT_RESPONSE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001938
1939 if (full_table)
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001940 tt_response->flags |= BATADV_TT_FULL_TABLE;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001941
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001942 batadv_dbg(BATADV_DBG_TT, bat_priv,
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02001943 "Sending TT_RESPONSE to %pM [%c]\n",
1944 orig_node->orig,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001945 (tt_response->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02001946
Sven Eckelmannd69909d2012-06-03 22:19:20 +02001947 batadv_inc_counter(bat_priv, BATADV_CNT_TT_RESPONSE_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02001948
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02001949 if (batadv_send_skb_to_orig(skb, orig_node, NULL))
1950 ret = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001951 goto out;
1952
1953unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02001954 spin_unlock_bh(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001955out:
1956 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001957 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001958 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001959 batadv_hardif_free_ref(primary_if);
Antonio Quartullia73105b2011-04-27 14:27:44 +02001960 if (!ret)
1961 kfree_skb(skb);
1962 /* This packet was for me, so it doesn't need to be re-routed */
1963 return true;
1964}
1965
Sven Eckelmann56303d32012-06-05 22:31:31 +02001966bool batadv_send_tt_response(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +02001967 struct batadv_tt_query_packet *tt_request)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001968{
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001969 if (batadv_is_my_mac(tt_request->dst)) {
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001970 /* don't answer backbone gws! */
Sven Eckelmann08adf152012-05-12 13:38:47 +02001971 if (batadv_bla_is_backbone_gw_orig(bat_priv, tt_request->src))
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001972 return true;
1973
Sven Eckelmanna5130882012-05-16 20:23:16 +02001974 return batadv_send_my_tt_response(bat_priv, tt_request);
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001975 } else {
Sven Eckelmanna5130882012-05-16 20:23:16 +02001976 return batadv_send_other_tt_response(bat_priv, tt_request);
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001977 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02001978}
1979
Sven Eckelmann56303d32012-06-05 22:31:31 +02001980static void _batadv_tt_update_changes(struct batadv_priv *bat_priv,
1981 struct batadv_orig_node *orig_node,
Sven Eckelmann96412692012-06-05 22:31:30 +02001982 struct batadv_tt_change *tt_change,
Sven Eckelmanna5130882012-05-16 20:23:16 +02001983 uint16_t tt_num_changes, uint8_t ttvn)
Antonio Quartullia73105b2011-04-27 14:27:44 +02001984{
1985 int i;
Sven Eckelmanna5130882012-05-16 20:23:16 +02001986 int roams;
Antonio Quartullia73105b2011-04-27 14:27:44 +02001987
1988 for (i = 0; i < tt_num_changes; i++) {
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001989 if ((tt_change + i)->flags & BATADV_TT_CLIENT_DEL) {
1990 roams = (tt_change + i)->flags & BATADV_TT_CLIENT_ROAM;
Sven Eckelmanna5130882012-05-16 20:23:16 +02001991 batadv_tt_global_del(bat_priv, orig_node,
1992 (tt_change + i)->addr,
Antonio Quartullid4f44692012-05-25 00:00:54 +02001993 "tt removed by changes",
1994 roams);
Sven Eckelmann08c36d32012-05-12 02:09:39 +02001995 } else {
Sven Eckelmann08c36d32012-05-12 02:09:39 +02001996 if (!batadv_tt_global_add(bat_priv, orig_node,
Antonio Quartullid4f44692012-05-25 00:00:54 +02001997 (tt_change + i)->addr,
1998 (tt_change + i)->flags, ttvn))
Antonio Quartullia73105b2011-04-27 14:27:44 +02001999 /* In case of problem while storing a
2000 * global_entry, we stop the updating
2001 * procedure without committing the
2002 * ttvn change. This will avoid to send
2003 * corrupted data on tt_request
2004 */
2005 return;
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002006 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002007 }
Antonio Quartulli17071572011-11-07 16:36:40 +01002008 orig_node->tt_initialised = true;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002009}
2010
Sven Eckelmann56303d32012-06-05 22:31:31 +02002011static void batadv_tt_fill_gtable(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +02002012 struct batadv_tt_query_packet *tt_response)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002013{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002014 struct batadv_orig_node *orig_node;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002015
Sven Eckelmannda641192012-05-12 13:48:56 +02002016 orig_node = batadv_orig_hash_find(bat_priv, tt_response->src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002017 if (!orig_node)
2018 goto out;
2019
2020 /* Purge the old table first.. */
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002021 batadv_tt_global_del_orig(bat_priv, orig_node, "Received full table");
Antonio Quartullia73105b2011-04-27 14:27:44 +02002022
Sven Eckelmanna5130882012-05-16 20:23:16 +02002023 _batadv_tt_update_changes(bat_priv, orig_node,
Sven Eckelmann96412692012-06-05 22:31:30 +02002024 (struct batadv_tt_change *)(tt_response + 1),
Sven Eckelmanna5130882012-05-16 20:23:16 +02002025 ntohs(tt_response->tt_data),
2026 tt_response->ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002027
2028 spin_lock_bh(&orig_node->tt_buff_lock);
2029 kfree(orig_node->tt_buff);
2030 orig_node->tt_buff_len = 0;
2031 orig_node->tt_buff = NULL;
2032 spin_unlock_bh(&orig_node->tt_buff_lock);
2033
2034 atomic_set(&orig_node->last_ttvn, tt_response->ttvn);
2035
2036out:
2037 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002038 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002039}
2040
Sven Eckelmann56303d32012-06-05 22:31:31 +02002041static void batadv_tt_update_changes(struct batadv_priv *bat_priv,
2042 struct batadv_orig_node *orig_node,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002043 uint16_t tt_num_changes, uint8_t ttvn,
Sven Eckelmann96412692012-06-05 22:31:30 +02002044 struct batadv_tt_change *tt_change)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002045{
Sven Eckelmanna5130882012-05-16 20:23:16 +02002046 _batadv_tt_update_changes(bat_priv, orig_node, tt_change,
2047 tt_num_changes, ttvn);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002048
Sven Eckelmanna5130882012-05-16 20:23:16 +02002049 batadv_tt_save_orig_buffer(bat_priv, orig_node,
2050 (unsigned char *)tt_change, tt_num_changes);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002051 atomic_set(&orig_node->last_ttvn, ttvn);
2052}
2053
Sven Eckelmann56303d32012-06-05 22:31:31 +02002054bool batadv_is_my_client(struct batadv_priv *bat_priv, const uint8_t *addr)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002055{
Sven Eckelmann170173b2012-10-07 12:02:22 +02002056 struct batadv_tt_local_entry *tt_local_entry;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002057 bool ret = false;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002058
Sven Eckelmanna5130882012-05-16 20:23:16 +02002059 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002060 if (!tt_local_entry)
2061 goto out;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002062 /* Check if the client has been logically deleted (but is kept for
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002063 * consistency purpose)
2064 */
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02002065 if ((tt_local_entry->common.flags & BATADV_TT_CLIENT_PENDING) ||
2066 (tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM))
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002067 goto out;
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002068 ret = true;
2069out:
Antonio Quartullia73105b2011-04-27 14:27:44 +02002070 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02002071 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli7683fdc2011-04-27 14:28:07 +02002072 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002073}
2074
Sven Eckelmann56303d32012-06-05 22:31:31 +02002075void batadv_handle_tt_response(struct batadv_priv *bat_priv,
Sven Eckelmann96412692012-06-05 22:31:30 +02002076 struct batadv_tt_query_packet *tt_response)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002077{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002078 struct batadv_tt_req_node *node, *safe;
2079 struct batadv_orig_node *orig_node = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +02002080 struct batadv_tt_change *tt_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002081
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002082 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002083 "Received TT_RESPONSE from %pM for ttvn %d t_size: %d [%c]\n",
2084 tt_response->src, tt_response->ttvn,
2085 ntohs(tt_response->tt_data),
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002086 (tt_response->flags & BATADV_TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +02002087
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01002088 /* we should have never asked a backbone gw */
Sven Eckelmann08adf152012-05-12 13:38:47 +02002089 if (batadv_bla_is_backbone_gw_orig(bat_priv, tt_response->src))
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01002090 goto out;
2091
Sven Eckelmannda641192012-05-12 13:48:56 +02002092 orig_node = batadv_orig_hash_find(bat_priv, tt_response->src);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002093 if (!orig_node)
2094 goto out;
2095
Sven Eckelmann96412692012-06-05 22:31:30 +02002096 if (tt_response->flags & BATADV_TT_FULL_TABLE) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02002097 batadv_tt_fill_gtable(bat_priv, tt_response);
Sven Eckelmann96412692012-06-05 22:31:30 +02002098 } else {
2099 tt_change = (struct batadv_tt_change *)(tt_response + 1);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002100 batadv_tt_update_changes(bat_priv, orig_node,
2101 ntohs(tt_response->tt_data),
Sven Eckelmann96412692012-06-05 22:31:30 +02002102 tt_response->ttvn, tt_change);
2103 }
Antonio Quartullia73105b2011-04-27 14:27:44 +02002104
2105 /* Delete the tt_req_node from pending tt_requests list */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002106 spin_lock_bh(&bat_priv->tt.req_list_lock);
2107 list_for_each_entry_safe(node, safe, &bat_priv->tt.req_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002108 if (!batadv_compare_eth(node->addr, tt_response->src))
Antonio Quartullia73105b2011-04-27 14:27:44 +02002109 continue;
2110 list_del(&node->list);
2111 kfree(node);
2112 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02002113 spin_unlock_bh(&bat_priv->tt.req_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002114
2115 /* Recalculate the CRC for this orig_node and store it */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002116 orig_node->tt_crc = batadv_tt_global_crc(bat_priv, orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002117out:
2118 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02002119 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002120}
2121
Sven Eckelmann56303d32012-06-05 22:31:31 +02002122int batadv_tt_init(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002123{
Sven Eckelmann5346c352012-05-05 13:27:28 +02002124 int ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002125
Sven Eckelmanna5130882012-05-16 20:23:16 +02002126 ret = batadv_tt_local_init(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +02002127 if (ret < 0)
2128 return ret;
2129
Sven Eckelmanna5130882012-05-16 20:23:16 +02002130 ret = batadv_tt_global_init(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +02002131 if (ret < 0)
2132 return ret;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002133
Sven Eckelmanna5130882012-05-16 20:23:16 +02002134 batadv_tt_start_timer(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002135
2136 return 1;
2137}
2138
Sven Eckelmann56303d32012-06-05 22:31:31 +02002139static void batadv_tt_roam_list_free(struct batadv_priv *bat_priv)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002140{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002141 struct batadv_tt_roam_node *node, *safe;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002142
Sven Eckelmann807736f2012-07-15 22:26:51 +02002143 spin_lock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002144
Sven Eckelmann807736f2012-07-15 22:26:51 +02002145 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
Antonio Quartullicc47f662011-04-27 14:27:57 +02002146 list_del(&node->list);
2147 kfree(node);
2148 }
2149
Sven Eckelmann807736f2012-07-15 22:26:51 +02002150 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002151}
2152
Sven Eckelmann56303d32012-06-05 22:31:31 +02002153static void batadv_tt_roam_purge(struct batadv_priv *bat_priv)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002154{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002155 struct batadv_tt_roam_node *node, *safe;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002156
Sven Eckelmann807736f2012-07-15 22:26:51 +02002157 spin_lock_bh(&bat_priv->tt.roam_list_lock);
2158 list_for_each_entry_safe(node, safe, &bat_priv->tt.roam_list, list) {
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002159 if (!batadv_has_timed_out(node->first_time,
2160 BATADV_ROAMING_MAX_TIME))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002161 continue;
2162
2163 list_del(&node->list);
2164 kfree(node);
2165 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02002166 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002167}
2168
2169/* This function checks whether the client already reached the
2170 * maximum number of possible roaming phases. In this case the ROAMING_ADV
2171 * will not be sent.
2172 *
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002173 * returns true if the ROAMING_ADV can be sent, false otherwise
2174 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002175static bool batadv_tt_check_roam_count(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002176 uint8_t *client)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002177{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002178 struct batadv_tt_roam_node *tt_roam_node;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002179 bool ret = false;
2180
Sven Eckelmann807736f2012-07-15 22:26:51 +02002181 spin_lock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002182 /* The new tt_req will be issued only if I'm not waiting for a
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002183 * reply from the same orig_node yet
2184 */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002185 list_for_each_entry(tt_roam_node, &bat_priv->tt.roam_list, list) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002186 if (!batadv_compare_eth(tt_roam_node->addr, client))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002187 continue;
2188
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002189 if (batadv_has_timed_out(tt_roam_node->first_time,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002190 BATADV_ROAMING_MAX_TIME))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002191 continue;
2192
Sven Eckelmann3e348192012-05-16 20:23:22 +02002193 if (!batadv_atomic_dec_not_zero(&tt_roam_node->counter))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002194 /* Sorry, you roamed too many times! */
2195 goto unlock;
2196 ret = true;
2197 break;
2198 }
2199
2200 if (!ret) {
2201 tt_roam_node = kmalloc(sizeof(*tt_roam_node), GFP_ATOMIC);
2202 if (!tt_roam_node)
2203 goto unlock;
2204
2205 tt_roam_node->first_time = jiffies;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002206 atomic_set(&tt_roam_node->counter,
2207 BATADV_ROAMING_MAX_COUNT - 1);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002208 memcpy(tt_roam_node->addr, client, ETH_ALEN);
2209
Sven Eckelmann807736f2012-07-15 22:26:51 +02002210 list_add(&tt_roam_node->list, &bat_priv->tt.roam_list);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002211 ret = true;
2212 }
2213
2214unlock:
Sven Eckelmann807736f2012-07-15 22:26:51 +02002215 spin_unlock_bh(&bat_priv->tt.roam_list_lock);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002216 return ret;
2217}
2218
Sven Eckelmann56303d32012-06-05 22:31:31 +02002219static void batadv_send_roam_adv(struct batadv_priv *bat_priv, uint8_t *client,
2220 struct batadv_orig_node *orig_node)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002221{
Antonio Quartullicc47f662011-04-27 14:27:57 +02002222 struct sk_buff *skb = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +02002223 struct batadv_roam_adv_packet *roam_adv_packet;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002224 int ret = 1;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002225 struct batadv_hard_iface *primary_if;
Sven Eckelmann96412692012-06-05 22:31:30 +02002226 size_t len = sizeof(*roam_adv_packet);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002227
2228 /* before going on we have to check whether the client has
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002229 * already roamed to us too many times
2230 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002231 if (!batadv_tt_check_roam_count(bat_priv, client))
Antonio Quartullicc47f662011-04-27 14:27:57 +02002232 goto out;
2233
Sven Eckelmann5b246572012-11-04 17:11:45 +01002234 skb = dev_alloc_skb(sizeof(*roam_adv_packet) + ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002235 if (!skb)
2236 goto out;
2237
Sven Eckelmann5b246572012-11-04 17:11:45 +01002238 skb_reserve(skb, ETH_HLEN + NET_IP_ALIGN);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002239
Sven Eckelmann96412692012-06-05 22:31:30 +02002240 roam_adv_packet = (struct batadv_roam_adv_packet *)skb_put(skb, len);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002241
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002242 roam_adv_packet->header.packet_type = BATADV_ROAM_ADV;
Sven Eckelmann7e071c72012-06-03 22:19:13 +02002243 roam_adv_packet->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002244 roam_adv_packet->header.ttl = BATADV_TTL;
Sven Eckelmann162d5492012-06-28 11:56:52 +02002245 roam_adv_packet->reserved = 0;
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002246 primary_if = batadv_primary_if_get_selected(bat_priv);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002247 if (!primary_if)
2248 goto out;
2249 memcpy(roam_adv_packet->src, primary_if->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmanne5d89252012-05-12 13:48:54 +02002250 batadv_hardif_free_ref(primary_if);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002251 memcpy(roam_adv_packet->dst, orig_node->orig, ETH_ALEN);
2252 memcpy(roam_adv_packet->client, client, ETH_ALEN);
2253
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002254 batadv_dbg(BATADV_DBG_TT, bat_priv,
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02002255 "Sending ROAMING_ADV to %pM (client %pM)\n",
2256 orig_node->orig, client);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002257
Sven Eckelmannd69909d2012-06-03 22:19:20 +02002258 batadv_inc_counter(bat_priv, BATADV_CNT_TT_ROAM_ADV_TX);
Martin Hundebøllf8214862012-04-20 17:02:45 +02002259
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02002260 if (batadv_send_skb_to_orig(skb, orig_node, NULL))
2261 ret = 0;
Antonio Quartullicc47f662011-04-27 14:27:57 +02002262
2263out:
Martin Hundebøllbb351ba2012-10-16 16:13:48 +02002264 if (ret && skb)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002265 kfree_skb(skb);
2266 return;
Antonio Quartullia73105b2011-04-27 14:27:44 +02002267}
2268
Sven Eckelmanna5130882012-05-16 20:23:16 +02002269static void batadv_tt_purge(struct work_struct *work)
Antonio Quartullia73105b2011-04-27 14:27:44 +02002270{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002271 struct delayed_work *delayed_work;
Sven Eckelmann807736f2012-07-15 22:26:51 +02002272 struct batadv_priv_tt *priv_tt;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002273 struct batadv_priv *bat_priv;
2274
2275 delayed_work = container_of(work, struct delayed_work, work);
Sven Eckelmann807736f2012-07-15 22:26:51 +02002276 priv_tt = container_of(delayed_work, struct batadv_priv_tt, work);
2277 bat_priv = container_of(priv_tt, struct batadv_priv, tt);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002278
Sven Eckelmanna5130882012-05-16 20:23:16 +02002279 batadv_tt_local_purge(bat_priv);
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002280 batadv_tt_global_purge(bat_priv);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002281 batadv_tt_req_purge(bat_priv);
2282 batadv_tt_roam_purge(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002283
Sven Eckelmanna5130882012-05-16 20:23:16 +02002284 batadv_tt_start_timer(bat_priv);
Antonio Quartullia73105b2011-04-27 14:27:44 +02002285}
Antonio Quartullicc47f662011-04-27 14:27:57 +02002286
Sven Eckelmann56303d32012-06-05 22:31:31 +02002287void batadv_tt_free(struct batadv_priv *bat_priv)
Antonio Quartullicc47f662011-04-27 14:27:57 +02002288{
Sven Eckelmann807736f2012-07-15 22:26:51 +02002289 cancel_delayed_work_sync(&bat_priv->tt.work);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002290
Sven Eckelmanna5130882012-05-16 20:23:16 +02002291 batadv_tt_local_table_free(bat_priv);
2292 batadv_tt_global_table_free(bat_priv);
2293 batadv_tt_req_list_free(bat_priv);
2294 batadv_tt_changes_list_free(bat_priv);
2295 batadv_tt_roam_list_free(bat_priv);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002296
Sven Eckelmann807736f2012-07-15 22:26:51 +02002297 kfree(bat_priv->tt.last_changeset);
Antonio Quartullicc47f662011-04-27 14:27:57 +02002298}
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002299
Antonio Quartulli697f2532011-11-07 16:47:01 +01002300/* This function will enable or disable the specified flags for all the entries
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002301 * in the given hash table and returns the number of modified entries
2302 */
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02002303static uint16_t batadv_tt_set_flags(struct batadv_hashtable *hash,
2304 uint16_t flags, bool enable)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002305{
Antonio Quartullic90681b2011-10-05 17:05:25 +02002306 uint32_t i;
Antonio Quartulli697f2532011-11-07 16:47:01 +01002307 uint16_t changed_num = 0;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002308 struct hlist_head *head;
2309 struct hlist_node *node;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002310 struct batadv_tt_common_entry *tt_common_entry;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002311
2312 if (!hash)
Antonio Quartulli697f2532011-11-07 16:47:01 +01002313 goto out;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002314
2315 for (i = 0; i < hash->size; i++) {
2316 head = &hash->table[i];
2317
2318 rcu_read_lock();
Antonio Quartulli48100ba2011-10-30 12:17:33 +01002319 hlist_for_each_entry_rcu(tt_common_entry, node,
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002320 head, hash_entry) {
Antonio Quartulli697f2532011-11-07 16:47:01 +01002321 if (enable) {
2322 if ((tt_common_entry->flags & flags) == flags)
2323 continue;
2324 tt_common_entry->flags |= flags;
2325 } else {
2326 if (!(tt_common_entry->flags & flags))
2327 continue;
2328 tt_common_entry->flags &= ~flags;
2329 }
2330 changed_num++;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002331 }
2332 rcu_read_unlock();
2333 }
Antonio Quartulli697f2532011-11-07 16:47:01 +01002334out:
2335 return changed_num;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002336}
2337
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002338/* Purge out all the tt local entries marked with BATADV_TT_CLIENT_PENDING */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002339static void batadv_tt_local_purge_pending_clients(struct batadv_priv *bat_priv)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002340{
Sven Eckelmann807736f2012-07-15 22:26:51 +02002341 struct batadv_hashtable *hash = bat_priv->tt.local_hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02002342 struct batadv_tt_common_entry *tt_common;
2343 struct batadv_tt_local_entry *tt_local;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002344 struct hlist_node *node, *node_tmp;
2345 struct hlist_head *head;
2346 spinlock_t *list_lock; /* protects write access to the hash lists */
Antonio Quartullic90681b2011-10-05 17:05:25 +02002347 uint32_t i;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002348
2349 if (!hash)
2350 return;
2351
2352 for (i = 0; i < hash->size; i++) {
2353 head = &hash->table[i];
2354 list_lock = &hash->list_locks[i];
2355
2356 spin_lock_bh(list_lock);
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002357 hlist_for_each_entry_safe(tt_common, node, node_tmp, head,
2358 hash_entry) {
2359 if (!(tt_common->flags & BATADV_TT_CLIENT_PENDING))
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002360 continue;
2361
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002362 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002363 "Deleting local tt entry (%pM): pending\n",
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002364 tt_common->addr);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002365
Sven Eckelmann807736f2012-07-15 22:26:51 +02002366 atomic_dec(&bat_priv->tt.local_entry_num);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002367 hlist_del_rcu(node);
Sven Eckelmann56303d32012-06-05 22:31:31 +02002368 tt_local = container_of(tt_common,
2369 struct batadv_tt_local_entry,
2370 common);
2371 batadv_tt_local_entry_free_ref(tt_local);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002372 }
2373 spin_unlock_bh(list_lock);
2374 }
2375
2376}
2377
Sven Eckelmann56303d32012-06-05 22:31:31 +02002378static int batadv_tt_commit_changes(struct batadv_priv *bat_priv,
Sven Eckelmanna5130882012-05-16 20:23:16 +02002379 unsigned char **packet_buff,
2380 int *packet_buff_len, int packet_min_len)
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002381{
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002382 uint16_t changed_num = 0;
2383
Sven Eckelmann807736f2012-07-15 22:26:51 +02002384 if (atomic_read(&bat_priv->tt.local_changes) < 1)
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002385 return -ENOENT;
2386
Sven Eckelmann807736f2012-07-15 22:26:51 +02002387 changed_num = batadv_tt_set_flags(bat_priv->tt.local_hash,
Sven Eckelmannacd34af2012-06-03 22:19:21 +02002388 BATADV_TT_CLIENT_NEW, false);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002389
2390 /* all reset entries have to be counted as local entries */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002391 atomic_add(changed_num, &bat_priv->tt.local_entry_num);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002392 batadv_tt_local_purge_pending_clients(bat_priv);
Sven Eckelmann807736f2012-07-15 22:26:51 +02002393 bat_priv->tt.local_crc = batadv_tt_local_crc(bat_priv);
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002394
2395 /* Increment the TTVN only once per OGM interval */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002396 atomic_inc(&bat_priv->tt.vn);
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002397 batadv_dbg(BATADV_DBG_TT, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02002398 "Local changes committed, updating to ttvn %u\n",
Sven Eckelmann807736f2012-07-15 22:26:51 +02002399 (uint8_t)atomic_read(&bat_priv->tt.vn));
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002400
2401 /* reset the sending counter */
Sven Eckelmann807736f2012-07-15 22:26:51 +02002402 atomic_set(&bat_priv->tt.ogm_append_cnt, BATADV_TT_OGM_APPEND_MAX);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002403
Sven Eckelmanna5130882012-05-16 20:23:16 +02002404 return batadv_tt_changes_fill_buff(bat_priv, packet_buff,
2405 packet_buff_len, packet_min_len);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002406}
2407
2408/* when calling this function (hard_iface == primary_if) has to be true */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002409int batadv_tt_append_diff(struct batadv_priv *bat_priv,
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002410 unsigned char **packet_buff, int *packet_buff_len,
2411 int packet_min_len)
2412{
2413 int tt_num_changes;
2414
2415 /* if at least one change happened */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002416 tt_num_changes = batadv_tt_commit_changes(bat_priv, packet_buff,
2417 packet_buff_len,
2418 packet_min_len);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002419
2420 /* if the changes have been sent often enough */
2421 if ((tt_num_changes < 0) &&
Sven Eckelmann807736f2012-07-15 22:26:51 +02002422 (!batadv_atomic_dec_not_zero(&bat_priv->tt.ogm_append_cnt))) {
Sven Eckelmanna5130882012-05-16 20:23:16 +02002423 batadv_tt_realloc_packet_buff(packet_buff, packet_buff_len,
2424 packet_min_len, packet_min_len);
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +08002425 tt_num_changes = 0;
2426 }
2427
2428 return tt_num_changes;
Antonio Quartulli058d0e22011-07-07 01:40:58 +02002429}
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002430
Sven Eckelmann56303d32012-06-05 22:31:31 +02002431bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, uint8_t *src,
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002432 uint8_t *dst)
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002433{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002434 struct batadv_tt_local_entry *tt_local_entry = NULL;
2435 struct batadv_tt_global_entry *tt_global_entry = NULL;
Marek Lindner5870adc2012-06-20 17:16:05 +02002436 bool ret = false;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002437
2438 if (!atomic_read(&bat_priv->ap_isolation))
Marek Lindner5870adc2012-06-20 17:16:05 +02002439 goto out;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002440
Sven Eckelmanna5130882012-05-16 20:23:16 +02002441 tt_local_entry = batadv_tt_local_hash_find(bat_priv, dst);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002442 if (!tt_local_entry)
2443 goto out;
2444
Sven Eckelmanna5130882012-05-16 20:23:16 +02002445 tt_global_entry = batadv_tt_global_hash_find(bat_priv, src);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002446 if (!tt_global_entry)
2447 goto out;
2448
Antonio Quartulli1f129fe2012-06-25 20:49:50 +00002449 if (!_batadv_is_ap_isolated(tt_local_entry, tt_global_entry))
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002450 goto out;
2451
Marek Lindner5870adc2012-06-20 17:16:05 +02002452 ret = true;
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002453
2454out:
2455 if (tt_global_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02002456 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002457 if (tt_local_entry)
Sven Eckelmanna5130882012-05-16 20:23:16 +02002458 batadv_tt_local_entry_free_ref(tt_local_entry);
Antonio Quartulli59b699c2011-07-07 15:35:36 +02002459 return ret;
2460}
Marek Lindnera943cac2011-07-30 13:10:18 +02002461
Sven Eckelmann56303d32012-06-05 22:31:31 +02002462void batadv_tt_update_orig(struct batadv_priv *bat_priv,
2463 struct batadv_orig_node *orig_node,
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002464 const unsigned char *tt_buff, uint8_t tt_num_changes,
2465 uint8_t ttvn, uint16_t tt_crc)
Marek Lindnera943cac2011-07-30 13:10:18 +02002466{
2467 uint8_t orig_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
2468 bool full_table = true;
Sven Eckelmann96412692012-06-05 22:31:30 +02002469 struct batadv_tt_change *tt_change;
Marek Lindnera943cac2011-07-30 13:10:18 +02002470
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01002471 /* don't care about a backbone gateways updates. */
Sven Eckelmann08adf152012-05-12 13:38:47 +02002472 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig))
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01002473 return;
2474
Antonio Quartulli17071572011-11-07 16:36:40 +01002475 /* orig table not initialised AND first diff is in the OGM OR the ttvn
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002476 * increased by one -> we can apply the attached changes
2477 */
Antonio Quartulli17071572011-11-07 16:36:40 +01002478 if ((!orig_node->tt_initialised && ttvn == 1) ||
2479 ttvn - orig_ttvn == 1) {
Marek Lindnera943cac2011-07-30 13:10:18 +02002480 /* the OGM could not contain the changes due to their size or
Sven Eckelmann42d0b042012-06-03 22:19:17 +02002481 * because they have already been sent BATADV_TT_OGM_APPEND_MAX
2482 * times.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002483 * In this case send a tt request
2484 */
Marek Lindnera943cac2011-07-30 13:10:18 +02002485 if (!tt_num_changes) {
2486 full_table = false;
2487 goto request_table;
2488 }
2489
Sven Eckelmann96412692012-06-05 22:31:30 +02002490 tt_change = (struct batadv_tt_change *)tt_buff;
Sven Eckelmanna5130882012-05-16 20:23:16 +02002491 batadv_tt_update_changes(bat_priv, orig_node, tt_num_changes,
Sven Eckelmann96412692012-06-05 22:31:30 +02002492 ttvn, tt_change);
Marek Lindnera943cac2011-07-30 13:10:18 +02002493
2494 /* Even if we received the precomputed crc with the OGM, we
2495 * prefer to recompute it to spot any possible inconsistency
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002496 * in the global table
2497 */
Sven Eckelmanna5130882012-05-16 20:23:16 +02002498 orig_node->tt_crc = batadv_tt_global_crc(bat_priv, orig_node);
Marek Lindnera943cac2011-07-30 13:10:18 +02002499
2500 /* The ttvn alone is not enough to guarantee consistency
2501 * because a single value could represent different states
2502 * (due to the wrap around). Thus a node has to check whether
2503 * the resulting table (after applying the changes) is still
2504 * consistent or not. E.g. a node could disconnect while its
2505 * ttvn is X and reconnect on ttvn = X + TTVN_MAX: in this case
2506 * checking the CRC value is mandatory to detect the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002507 * inconsistency
2508 */
Marek Lindnera943cac2011-07-30 13:10:18 +02002509 if (orig_node->tt_crc != tt_crc)
2510 goto request_table;
Marek Lindnera943cac2011-07-30 13:10:18 +02002511 } else {
2512 /* if we missed more than one change or our tables are not
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02002513 * in sync anymore -> request fresh tt data
2514 */
Antonio Quartulli17071572011-11-07 16:36:40 +01002515 if (!orig_node->tt_initialised || ttvn != orig_ttvn ||
2516 orig_node->tt_crc != tt_crc) {
Marek Lindnera943cac2011-07-30 13:10:18 +02002517request_table:
Sven Eckelmann39c75a52012-06-03 22:19:22 +02002518 batadv_dbg(BATADV_DBG_TT, bat_priv,
Antonio Quartulli39a32992012-11-19 09:01:43 +01002519 "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 +02002520 orig_node->orig, ttvn, orig_ttvn, tt_crc,
2521 orig_node->tt_crc, tt_num_changes);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002522 batadv_send_tt_request(bat_priv, orig_node, ttvn,
2523 tt_crc, full_table);
Marek Lindnera943cac2011-07-30 13:10:18 +02002524 return;
2525 }
2526 }
2527}
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01002528
2529/* returns true whether we know that the client has moved from its old
2530 * originator to another one. This entry is kept is still kept for consistency
2531 * purposes
2532 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02002533bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv,
Sven Eckelmann08c36d32012-05-12 02:09:39 +02002534 uint8_t *addr)
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01002535{
Sven Eckelmann56303d32012-06-05 22:31:31 +02002536 struct batadv_tt_global_entry *tt_global_entry;
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01002537 bool ret = false;
2538
Sven Eckelmanna5130882012-05-16 20:23:16 +02002539 tt_global_entry = batadv_tt_global_hash_find(bat_priv, addr);
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01002540 if (!tt_global_entry)
2541 goto out;
2542
Antonio Quartulli9f9ff082012-08-27 09:35:54 +02002543 ret = !!(tt_global_entry->common.flags & BATADV_TT_CLIENT_ROAM);
Sven Eckelmanna5130882012-05-16 20:23:16 +02002544 batadv_tt_global_entry_free_ref(tt_global_entry);
Antonio Quartulli3275e7c2012-03-16 18:03:28 +01002545out:
2546 return ret;
2547}
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002548
Antonio Quartulli7c1fd912012-09-23 22:38:34 +02002549/**
2550 * batadv_tt_local_client_is_roaming - tells whether the client is roaming
2551 * @bat_priv: the bat priv with all the soft interface information
2552 * @addr: the MAC address of the local client to query
2553 *
2554 * Returns true if the local client is known to be roaming (it is not served by
2555 * this node anymore) or not. If yes, the client is still present in the table
2556 * to keep the latter consistent with the node TTVN
2557 */
2558bool batadv_tt_local_client_is_roaming(struct batadv_priv *bat_priv,
2559 uint8_t *addr)
2560{
2561 struct batadv_tt_local_entry *tt_local_entry;
2562 bool ret = false;
2563
2564 tt_local_entry = batadv_tt_local_hash_find(bat_priv, addr);
2565 if (!tt_local_entry)
2566 goto out;
2567
2568 ret = tt_local_entry->common.flags & BATADV_TT_CLIENT_ROAM;
2569 batadv_tt_local_entry_free_ref(tt_local_entry);
2570out:
2571 return ret;
2572
2573}
2574
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002575bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv,
2576 struct batadv_orig_node *orig_node,
2577 const unsigned char *addr)
2578{
2579 bool ret = false;
2580
Antonio Quartulli1f36aeb2012-11-08 21:55:29 +01002581 /* if the originator is a backbone node (meaning it belongs to the same
2582 * LAN of this node) the temporary client must not be added because to
2583 * reach such destination the node must use the LAN instead of the mesh
2584 */
2585 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig))
2586 goto out;
2587
Antonio Quartulli30cfd022012-07-05 23:38:29 +02002588 if (!batadv_tt_global_add(bat_priv, orig_node, addr,
2589 BATADV_TT_CLIENT_TEMP,
2590 atomic_read(&orig_node->last_ttvn)))
2591 goto out;
2592
2593 batadv_dbg(BATADV_DBG_TT, bat_priv,
2594 "Added temporary global client (addr: %pM orig: %pM)\n",
2595 addr, orig_node->orig);
2596 ret = true;
2597out:
2598 return ret;
2599}