blob: bb1c3ec7e3ff2ce2f54654b56c07d238622a1469 [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann64afe352011-01-27 10:38:15 +01002 * Copyright (C) 2007-2011 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
4 * Marek Lindner, Simon Wunderlich
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA
19 *
20 */
21
22#include "main.h"
23#include "routing.h"
24#include "send.h"
25#include "hash.h"
26#include "soft-interface.h"
27#include "hard-interface.h"
28#include "icmp_socket.h"
29#include "translation-table.h"
30#include "originator.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000031#include "ring_buffer.h"
32#include "vis.h"
33#include "aggregation.h"
34#include "gateway_common.h"
35#include "gateway_client.h"
36#include "unicast.h"
37
Marek Lindnere6c10f42011-02-18 12:33:20 +000038void slide_own_bcast_window(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000039{
Marek Lindnere6c10f42011-02-18 12:33:20 +000040 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000041 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +000042 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000043 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000044 struct orig_node *orig_node;
45 unsigned long *word;
46 int i;
47 size_t word_index;
48
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000049 for (i = 0; i < hash->size; i++) {
50 head = &hash->table[i];
51
Marek Lindnerfb778ea2011-01-19 20:01:40 +000052 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +000053 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +000054 spin_lock_bh(&orig_node->ogm_cnt_lock);
Marek Lindnere6c10f42011-02-18 12:33:20 +000055 word_index = hard_iface->if_num * NUM_WORDS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056 word = &(orig_node->bcast_own[word_index]);
57
58 bit_get_packet(bat_priv, word, 1, 0);
Marek Lindnere6c10f42011-02-18 12:33:20 +000059 orig_node->bcast_own_sum[hard_iface->if_num] =
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060 bit_packet_count(word);
Marek Lindner2ae2daf2011-01-19 20:01:42 +000061 spin_unlock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000062 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +000063 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000064 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000065}
66
Antonio Quartulli2dafb492011-05-05 08:42:45 +020067static void update_TT(struct bat_priv *bat_priv, struct orig_node *orig_node,
68 unsigned char *tt_buff, int tt_buff_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000069{
Antonio Quartulli2dafb492011-05-05 08:42:45 +020070 if ((tt_buff_len != orig_node->tt_buff_len) ||
71 ((tt_buff_len > 0) &&
72 (orig_node->tt_buff_len > 0) &&
73 (memcmp(orig_node->tt_buff, tt_buff, tt_buff_len) != 0))) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000074
Antonio Quartulli2dafb492011-05-05 08:42:45 +020075 if (orig_node->tt_buff_len > 0)
76 tt_global_del_orig(bat_priv, orig_node,
77 "originator changed tt");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000078
Antonio Quartulli2dafb492011-05-05 08:42:45 +020079 if ((tt_buff_len > 0) && (tt_buff))
80 tt_global_add_orig(bat_priv, orig_node,
81 tt_buff, tt_buff_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000082 }
83}
84
85static void update_route(struct bat_priv *bat_priv,
86 struct orig_node *orig_node,
87 struct neigh_node *neigh_node,
Antonio Quartulli2dafb492011-05-05 08:42:45 +020088 unsigned char *tt_buff, int tt_buff_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000089{
Linus Lüssinge1a53822011-03-14 22:43:37 +000090 struct neigh_node *curr_router;
91
92 curr_router = orig_node_get_router(orig_node);
Marek Lindnera8e7f4b2010-12-12 21:57:10 +000093
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000094 /* route deleted */
Linus Lüssinge1a53822011-03-14 22:43:37 +000095 if ((curr_router) && (!neigh_node)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000096
97 bat_dbg(DBG_ROUTES, bat_priv, "Deleting route towards: %pM\n",
98 orig_node->orig);
Antonio Quartulli2dafb492011-05-05 08:42:45 +020099 tt_global_del_orig(bat_priv, orig_node,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000100 "originator timed out");
101
Linus Lüssinge1a53822011-03-14 22:43:37 +0000102 /* route added */
103 } else if ((!curr_router) && (neigh_node)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000104
105 bat_dbg(DBG_ROUTES, bat_priv,
106 "Adding route towards: %pM (via %pM)\n",
107 orig_node->orig, neigh_node->addr);
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200108 tt_global_add_orig(bat_priv, orig_node,
109 tt_buff, tt_buff_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000110
Linus Lüssinge1a53822011-03-14 22:43:37 +0000111 /* route changed */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000112 } else {
113 bat_dbg(DBG_ROUTES, bat_priv,
114 "Changing route towards: %pM "
115 "(now via %pM - was via %pM)\n",
116 orig_node->orig, neigh_node->addr,
Linus Lüssinge1a53822011-03-14 22:43:37 +0000117 curr_router->addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000118 }
119
Linus Lüssinge1a53822011-03-14 22:43:37 +0000120 if (curr_router)
121 neigh_node_free_ref(curr_router);
122
123 /* increase refcount of new best neighbor */
Marek Lindner44524fc2011-02-10 14:33:53 +0000124 if (neigh_node && !atomic_inc_not_zero(&neigh_node->refcount))
125 neigh_node = NULL;
Linus Lüssinge1a53822011-03-14 22:43:37 +0000126
127 spin_lock_bh(&orig_node->neigh_list_lock);
128 rcu_assign_pointer(orig_node->router, neigh_node);
129 spin_unlock_bh(&orig_node->neigh_list_lock);
130
131 /* decrease refcount of previous best neighbor */
132 if (curr_router)
133 neigh_node_free_ref(curr_router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000134}
135
136
137void update_routes(struct bat_priv *bat_priv, struct orig_node *orig_node,
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200138 struct neigh_node *neigh_node, unsigned char *tt_buff,
139 int tt_buff_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000140{
Linus Lüssinge1a53822011-03-14 22:43:37 +0000141 struct neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000142
143 if (!orig_node)
Linus Lüssinge1a53822011-03-14 22:43:37 +0000144 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000145
Linus Lüssinge1a53822011-03-14 22:43:37 +0000146 router = orig_node_get_router(orig_node);
147
148 if (router != neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000149 update_route(bat_priv, orig_node, neigh_node,
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200150 tt_buff, tt_buff_len);
151 /* may be just TT changed */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000152 else
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200153 update_TT(bat_priv, orig_node, tt_buff, tt_buff_len);
Linus Lüssinge1a53822011-03-14 22:43:37 +0000154
155out:
156 if (router)
157 neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000158}
159
160static int is_bidirectional_neigh(struct orig_node *orig_node,
161 struct orig_node *orig_neigh_node,
162 struct batman_packet *batman_packet,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000163 struct hard_iface *if_incoming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000164{
165 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Marek Lindner1605d0d2011-02-18 12:28:11 +0000166 struct neigh_node *neigh_node = NULL, *tmp_neigh_node;
Marek Lindner9591a792010-12-12 21:57:11 +0000167 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000168 unsigned char total_count;
Marek Lindner0ede9f42011-01-25 21:52:10 +0000169 uint8_t orig_eq_count, neigh_rq_count, tq_own;
170 int tq_asym_penalty, ret = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000171
Daniele Furlan27aea212011-05-07 22:45:19 +0200172 /* find corresponding one hop neighbor */
173 rcu_read_lock();
174 hlist_for_each_entry_rcu(tmp_neigh_node, node,
175 &orig_neigh_node->neigh_list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000176
Daniele Furlan27aea212011-05-07 22:45:19 +0200177 if (!compare_eth(tmp_neigh_node->addr, orig_neigh_node->orig))
178 continue;
Marek Lindner1605d0d2011-02-18 12:28:11 +0000179
Daniele Furlan27aea212011-05-07 22:45:19 +0200180 if (tmp_neigh_node->if_incoming != if_incoming)
181 continue;
Marek Lindner1605d0d2011-02-18 12:28:11 +0000182
Daniele Furlan27aea212011-05-07 22:45:19 +0200183 if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
184 continue;
Marek Lindner1605d0d2011-02-18 12:28:11 +0000185
Daniele Furlan27aea212011-05-07 22:45:19 +0200186 neigh_node = tmp_neigh_node;
187 break;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000188 }
Daniele Furlan27aea212011-05-07 22:45:19 +0200189 rcu_read_unlock();
190
191 if (!neigh_node)
192 neigh_node = create_neighbor(orig_neigh_node,
193 orig_neigh_node,
194 orig_neigh_node->orig,
195 if_incoming);
196
197 if (!neigh_node)
198 goto out;
199
200 /* if orig_node is direct neighbour update neigh_node last_valid */
201 if (orig_node == orig_neigh_node)
202 neigh_node->last_valid = jiffies;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000203
204 orig_node->last_valid = jiffies;
205
Daniele Furlan27aea212011-05-07 22:45:19 +0200206 /* find packet count of corresponding one hop neighbor */
Marek Lindner0ede9f42011-01-25 21:52:10 +0000207 spin_lock_bh(&orig_node->ogm_cnt_lock);
208 orig_eq_count = orig_neigh_node->bcast_own_sum[if_incoming->if_num];
209 neigh_rq_count = neigh_node->real_packet_count;
210 spin_unlock_bh(&orig_node->ogm_cnt_lock);
211
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000212 /* pay attention to not get a value bigger than 100 % */
Marek Lindner0ede9f42011-01-25 21:52:10 +0000213 total_count = (orig_eq_count > neigh_rq_count ?
214 neigh_rq_count : orig_eq_count);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000215
216 /* if we have too few packets (too less data) we set tq_own to zero */
217 /* if we receive too few packets it is not considered bidirectional */
218 if ((total_count < TQ_LOCAL_BIDRECT_SEND_MINIMUM) ||
Marek Lindner0ede9f42011-01-25 21:52:10 +0000219 (neigh_rq_count < TQ_LOCAL_BIDRECT_RECV_MINIMUM))
220 tq_own = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000221 else
222 /* neigh_node->real_packet_count is never zero as we
223 * only purge old information when getting new
224 * information */
Marek Lindner0ede9f42011-01-25 21:52:10 +0000225 tq_own = (TQ_MAX_VALUE * total_count) / neigh_rq_count;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000226
227 /*
228 * 1 - ((1-x) ** 3), normalized to TQ_MAX_VALUE this does
229 * affect the nearly-symmetric links only a little, but
230 * punishes asymmetric links more. This will give a value
231 * between 0 and TQ_MAX_VALUE
232 */
Marek Lindner0ede9f42011-01-25 21:52:10 +0000233 tq_asym_penalty = TQ_MAX_VALUE - (TQ_MAX_VALUE *
234 (TQ_LOCAL_WINDOW_SIZE - neigh_rq_count) *
235 (TQ_LOCAL_WINDOW_SIZE - neigh_rq_count) *
236 (TQ_LOCAL_WINDOW_SIZE - neigh_rq_count)) /
237 (TQ_LOCAL_WINDOW_SIZE *
238 TQ_LOCAL_WINDOW_SIZE *
239 TQ_LOCAL_WINDOW_SIZE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000240
Marek Lindner0ede9f42011-01-25 21:52:10 +0000241 batman_packet->tq = ((batman_packet->tq * tq_own * tq_asym_penalty) /
242 (TQ_MAX_VALUE * TQ_MAX_VALUE));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000243
244 bat_dbg(DBG_BATMAN, bat_priv,
245 "bidirectional: "
246 "orig = %-15pM neigh = %-15pM => own_bcast = %2i, "
247 "real recv = %2i, local tq: %3i, asym_penalty: %3i, "
248 "total tq: %3i\n",
249 orig_node->orig, orig_neigh_node->orig, total_count,
Marek Lindner0ede9f42011-01-25 21:52:10 +0000250 neigh_rq_count, tq_own, tq_asym_penalty, batman_packet->tq);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000251
252 /* if link has the minimum required transmission quality
253 * consider it bidirectional */
254 if (batman_packet->tq >= TQ_TOTAL_BIDRECT_LIMIT)
Marek Lindnera775eb82011-01-19 20:01:39 +0000255 ret = 1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000256
Marek Lindnera775eb82011-01-19 20:01:39 +0000257out:
258 if (neigh_node)
Marek Lindner44524fc2011-02-10 14:33:53 +0000259 neigh_node_free_ref(neigh_node);
Marek Lindnera775eb82011-01-19 20:01:39 +0000260 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000261}
262
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000263/* caller must hold the neigh_list_lock */
264void bonding_candidate_del(struct orig_node *orig_node,
265 struct neigh_node *neigh_node)
266{
267 /* this neighbor is not part of our candidate list */
268 if (list_empty(&neigh_node->bonding_list))
269 goto out;
270
271 list_del_rcu(&neigh_node->bonding_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000272 INIT_LIST_HEAD(&neigh_node->bonding_list);
Marek Lindner44524fc2011-02-10 14:33:53 +0000273 neigh_node_free_ref(neigh_node);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000274 atomic_dec(&orig_node->bond_candidates);
275
276out:
277 return;
278}
279
280static void bonding_candidate_add(struct orig_node *orig_node,
281 struct neigh_node *neigh_node)
282{
283 struct hlist_node *node;
Linus Lüssinge1a53822011-03-14 22:43:37 +0000284 struct neigh_node *tmp_neigh_node, *router = NULL;
285 uint8_t interference_candidate = 0;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000286
287 spin_lock_bh(&orig_node->neigh_list_lock);
288
289 /* only consider if it has the same primary address ... */
Marek Lindner39901e72011-02-18 12:28:08 +0000290 if (!compare_eth(orig_node->orig,
291 neigh_node->orig_node->primary_addr))
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000292 goto candidate_del;
293
Linus Lüssinge1a53822011-03-14 22:43:37 +0000294 router = orig_node_get_router(orig_node);
295 if (!router)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000296 goto candidate_del;
297
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000298 /* ... and is good enough to be considered */
Linus Lüssinge1a53822011-03-14 22:43:37 +0000299 if (neigh_node->tq_avg < router->tq_avg - BONDING_TQ_THRESHOLD)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000300 goto candidate_del;
301
302 /**
303 * check if we have another candidate with the same mac address or
304 * interface. If we do, we won't select this candidate because of
305 * possible interference.
306 */
307 hlist_for_each_entry_rcu(tmp_neigh_node, node,
308 &orig_node->neigh_list, list) {
309
310 if (tmp_neigh_node == neigh_node)
311 continue;
312
313 /* we only care if the other candidate is even
314 * considered as candidate. */
315 if (list_empty(&tmp_neigh_node->bonding_list))
316 continue;
317
318 if ((neigh_node->if_incoming == tmp_neigh_node->if_incoming) ||
Marek Lindner39901e72011-02-18 12:28:08 +0000319 (compare_eth(neigh_node->addr, tmp_neigh_node->addr))) {
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000320 interference_candidate = 1;
321 break;
322 }
323 }
324
325 /* don't care further if it is an interference candidate */
326 if (interference_candidate)
327 goto candidate_del;
328
329 /* this neighbor already is part of our candidate list */
330 if (!list_empty(&neigh_node->bonding_list))
331 goto out;
332
Marek Lindner44524fc2011-02-10 14:33:53 +0000333 if (!atomic_inc_not_zero(&neigh_node->refcount))
334 goto out;
335
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000336 list_add_rcu(&neigh_node->bonding_list, &orig_node->bond_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000337 atomic_inc(&orig_node->bond_candidates);
338 goto out;
339
340candidate_del:
341 bonding_candidate_del(orig_node, neigh_node);
342
343out:
344 spin_unlock_bh(&orig_node->neigh_list_lock);
Linus Lüssinge1a53822011-03-14 22:43:37 +0000345
346 if (router)
347 neigh_node_free_ref(router);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000348}
349
350/* copy primary address for bonding */
351static void bonding_save_primary(struct orig_node *orig_node,
352 struct orig_node *orig_neigh_node,
353 struct batman_packet *batman_packet)
354{
355 if (!(batman_packet->flags & PRIMARIES_FIRST_HOP))
356 return;
357
358 memcpy(orig_neigh_node->primary_addr, orig_node->orig, ETH_ALEN);
359}
360
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000361static void update_orig(struct bat_priv *bat_priv,
362 struct orig_node *orig_node,
363 struct ethhdr *ethhdr,
364 struct batman_packet *batman_packet,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000365 struct hard_iface *if_incoming,
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200366 unsigned char *tt_buff, int tt_buff_len,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000367 char is_duplicate)
368{
369 struct neigh_node *neigh_node = NULL, *tmp_neigh_node = NULL;
Linus Lüssinge1a53822011-03-14 22:43:37 +0000370 struct neigh_node *router = NULL;
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000371 struct orig_node *orig_node_tmp;
Marek Lindner9591a792010-12-12 21:57:11 +0000372 struct hlist_node *node;
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200373 int tmp_tt_buff_len;
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000374 uint8_t bcast_own_sum_orig, bcast_own_sum_neigh;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000375
376 bat_dbg(DBG_BATMAN, bat_priv, "update_originator(): "
377 "Searching and updating originator entry of received packet\n");
378
Marek Lindnerf987ed62010-12-12 21:57:12 +0000379 rcu_read_lock();
380 hlist_for_each_entry_rcu(tmp_neigh_node, node,
381 &orig_node->neigh_list, list) {
Marek Lindner39901e72011-02-18 12:28:08 +0000382 if (compare_eth(tmp_neigh_node->addr, ethhdr->h_source) &&
Marek Lindner44524fc2011-02-10 14:33:53 +0000383 (tmp_neigh_node->if_incoming == if_incoming) &&
384 atomic_inc_not_zero(&tmp_neigh_node->refcount)) {
385 if (neigh_node)
386 neigh_node_free_ref(neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000387 neigh_node = tmp_neigh_node;
388 continue;
389 }
390
391 if (is_duplicate)
392 continue;
393
Linus Lüssing68003902011-03-14 22:43:40 +0000394 spin_lock_bh(&tmp_neigh_node->tq_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000395 ring_buffer_set(tmp_neigh_node->tq_recv,
396 &tmp_neigh_node->tq_index, 0);
397 tmp_neigh_node->tq_avg =
398 ring_buffer_avg(tmp_neigh_node->tq_recv);
Linus Lüssing68003902011-03-14 22:43:40 +0000399 spin_unlock_bh(&tmp_neigh_node->tq_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000400 }
401
402 if (!neigh_node) {
403 struct orig_node *orig_tmp;
404
405 orig_tmp = get_orig_node(bat_priv, ethhdr->h_source);
406 if (!orig_tmp)
Marek Lindnera775eb82011-01-19 20:01:39 +0000407 goto unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000408
409 neigh_node = create_neighbor(orig_node, orig_tmp,
410 ethhdr->h_source, if_incoming);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000411
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000412 orig_node_free_ref(orig_tmp);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000413 if (!neigh_node)
Marek Lindnera775eb82011-01-19 20:01:39 +0000414 goto unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000415 } else
416 bat_dbg(DBG_BATMAN, bat_priv,
417 "Updating existing last-hop neighbor of originator\n");
418
Marek Lindnera775eb82011-01-19 20:01:39 +0000419 rcu_read_unlock();
420
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000421 orig_node->flags = batman_packet->flags;
422 neigh_node->last_valid = jiffies;
423
Linus Lüssing68003902011-03-14 22:43:40 +0000424 spin_lock_bh(&neigh_node->tq_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000425 ring_buffer_set(neigh_node->tq_recv,
426 &neigh_node->tq_index,
427 batman_packet->tq);
428 neigh_node->tq_avg = ring_buffer_avg(neigh_node->tq_recv);
Linus Lüssing68003902011-03-14 22:43:40 +0000429 spin_unlock_bh(&neigh_node->tq_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000430
431 if (!is_duplicate) {
432 orig_node->last_ttl = batman_packet->ttl;
433 neigh_node->last_ttl = batman_packet->ttl;
434 }
435
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000436 bonding_candidate_add(orig_node, neigh_node);
437
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200438 tmp_tt_buff_len = (tt_buff_len > batman_packet->num_tt * ETH_ALEN ?
439 batman_packet->num_tt * ETH_ALEN : tt_buff_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000440
441 /* if this neighbor already is our next hop there is nothing
442 * to change */
Linus Lüssinge1a53822011-03-14 22:43:37 +0000443 router = orig_node_get_router(orig_node);
444 if (router == neigh_node)
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200445 goto update_tt;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000446
447 /* if this neighbor does not offer a better TQ we won't consider it */
Linus Lüssinge1a53822011-03-14 22:43:37 +0000448 if (router && (router->tq_avg > neigh_node->tq_avg))
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200449 goto update_tt;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000450
451 /* if the TQ is the same and the link not more symetric we
452 * won't consider it either */
Linus Lüssinge1a53822011-03-14 22:43:37 +0000453 if (router && (neigh_node->tq_avg == router->tq_avg)) {
454 orig_node_tmp = router->orig_node;
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000455 spin_lock_bh(&orig_node_tmp->ogm_cnt_lock);
456 bcast_own_sum_orig =
457 orig_node_tmp->bcast_own_sum[if_incoming->if_num];
458 spin_unlock_bh(&orig_node_tmp->ogm_cnt_lock);
459
460 orig_node_tmp = neigh_node->orig_node;
461 spin_lock_bh(&orig_node_tmp->ogm_cnt_lock);
462 bcast_own_sum_neigh =
463 orig_node_tmp->bcast_own_sum[if_incoming->if_num];
464 spin_unlock_bh(&orig_node_tmp->ogm_cnt_lock);
465
466 if (bcast_own_sum_orig >= bcast_own_sum_neigh)
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200467 goto update_tt;
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000468 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000469
470 update_routes(bat_priv, orig_node, neigh_node,
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200471 tt_buff, tmp_tt_buff_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000472 goto update_gw;
473
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200474update_tt:
Linus Lüssinge1a53822011-03-14 22:43:37 +0000475 update_routes(bat_priv, orig_node, router,
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200476 tt_buff, tmp_tt_buff_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000477
478update_gw:
479 if (orig_node->gw_flags != batman_packet->gw_flags)
480 gw_node_update(bat_priv, orig_node, batman_packet->gw_flags);
481
482 orig_node->gw_flags = batman_packet->gw_flags;
483
484 /* restart gateway selection if fast or late switching was enabled */
485 if ((orig_node->gw_flags) &&
486 (atomic_read(&bat_priv->gw_mode) == GW_MODE_CLIENT) &&
487 (atomic_read(&bat_priv->gw_sel_class) > 2))
488 gw_check_election(bat_priv, orig_node);
Marek Lindnera775eb82011-01-19 20:01:39 +0000489
490 goto out;
491
492unlock:
493 rcu_read_unlock();
494out:
495 if (neigh_node)
Marek Lindner44524fc2011-02-10 14:33:53 +0000496 neigh_node_free_ref(neigh_node);
Linus Lüssinge1a53822011-03-14 22:43:37 +0000497 if (router)
498 neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000499}
500
501/* checks whether the host restarted and is in the protection time.
502 * returns:
503 * 0 if the packet is to be accepted
504 * 1 if the packet is to be ignored.
505 */
506static int window_protected(struct bat_priv *bat_priv,
507 int32_t seq_num_diff,
508 unsigned long *last_reset)
509{
510 if ((seq_num_diff <= -TQ_LOCAL_WINDOW_SIZE)
511 || (seq_num_diff >= EXPECTED_SEQNO_RANGE)) {
512 if (time_after(jiffies, *last_reset +
513 msecs_to_jiffies(RESET_PROTECTION_MS))) {
514
515 *last_reset = jiffies;
516 bat_dbg(DBG_BATMAN, bat_priv,
517 "old packet received, start protection\n");
518
519 return 0;
520 } else
521 return 1;
522 }
523 return 0;
524}
525
526/* processes a batman packet for all interfaces, adjusts the sequence number and
527 * finds out whether it is a duplicate.
528 * returns:
529 * 1 the packet is a duplicate
530 * 0 the packet has not yet been received
531 * -1 the packet is old and has been received while the seqno window
532 * was protected. Caller should drop it.
533 */
534static char count_real_packets(struct ethhdr *ethhdr,
535 struct batman_packet *batman_packet,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000536 struct hard_iface *if_incoming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000537{
538 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
539 struct orig_node *orig_node;
540 struct neigh_node *tmp_neigh_node;
Marek Lindner9591a792010-12-12 21:57:11 +0000541 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000542 char is_duplicate = 0;
543 int32_t seq_diff;
544 int need_update = 0;
Marek Lindner0ede9f42011-01-25 21:52:10 +0000545 int set_mark, ret = -1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000546
547 orig_node = get_orig_node(bat_priv, batman_packet->orig);
548 if (!orig_node)
549 return 0;
550
Marek Lindner0ede9f42011-01-25 21:52:10 +0000551 spin_lock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000552 seq_diff = batman_packet->seqno - orig_node->last_real_seqno;
553
554 /* signalize caller that the packet is to be dropped. */
555 if (window_protected(bat_priv, seq_diff,
556 &orig_node->batman_seqno_reset))
Marek Lindner0ede9f42011-01-25 21:52:10 +0000557 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000558
Marek Lindnerf987ed62010-12-12 21:57:12 +0000559 rcu_read_lock();
560 hlist_for_each_entry_rcu(tmp_neigh_node, node,
561 &orig_node->neigh_list, list) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000562
563 is_duplicate |= get_bit_status(tmp_neigh_node->real_bits,
564 orig_node->last_real_seqno,
565 batman_packet->seqno);
566
Marek Lindner39901e72011-02-18 12:28:08 +0000567 if (compare_eth(tmp_neigh_node->addr, ethhdr->h_source) &&
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000568 (tmp_neigh_node->if_incoming == if_incoming))
569 set_mark = 1;
570 else
571 set_mark = 0;
572
573 /* if the window moved, set the update flag. */
574 need_update |= bit_get_packet(bat_priv,
575 tmp_neigh_node->real_bits,
576 seq_diff, set_mark);
577
578 tmp_neigh_node->real_packet_count =
579 bit_packet_count(tmp_neigh_node->real_bits);
580 }
Marek Lindnerf987ed62010-12-12 21:57:12 +0000581 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000582
583 if (need_update) {
584 bat_dbg(DBG_BATMAN, bat_priv,
585 "updating last_seqno: old %d, new %d\n",
586 orig_node->last_real_seqno, batman_packet->seqno);
587 orig_node->last_real_seqno = batman_packet->seqno;
588 }
589
Marek Lindner0ede9f42011-01-25 21:52:10 +0000590 ret = is_duplicate;
Marek Lindner16b1aba2011-01-19 20:01:42 +0000591
Marek Lindner0ede9f42011-01-25 21:52:10 +0000592out:
593 spin_unlock_bh(&orig_node->ogm_cnt_lock);
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000594 orig_node_free_ref(orig_node);
Marek Lindner0ede9f42011-01-25 21:52:10 +0000595 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000596}
597
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000598void receive_bat_packet(struct ethhdr *ethhdr,
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000599 struct batman_packet *batman_packet,
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200600 unsigned char *tt_buff, int tt_buff_len,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000601 struct hard_iface *if_incoming)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000602{
603 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000604 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000605 struct orig_node *orig_neigh_node, *orig_node;
Linus Lüssinge1a53822011-03-14 22:43:37 +0000606 struct neigh_node *router = NULL, *router_router = NULL;
607 struct neigh_node *orig_neigh_router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000608 char has_directlink_flag;
609 char is_my_addr = 0, is_my_orig = 0, is_my_oldorig = 0;
610 char is_broadcast = 0, is_bidirectional, is_single_hop_neigh;
611 char is_duplicate;
612 uint32_t if_incoming_seqno;
613
614 /* Silently drop when the batman packet is actually not a
615 * correct packet.
616 *
617 * This might happen if a packet is padded (e.g. Ethernet has a
618 * minimum frame length of 64 byte) and the aggregation interprets
619 * it as an additional length.
620 *
621 * TODO: A more sane solution would be to have a bit in the
622 * batman_packet to detect whether the packet is the last
623 * packet in an aggregation. Here we expect that the padding
624 * is always zero (or not 0x01)
625 */
626 if (batman_packet->packet_type != BAT_PACKET)
627 return;
628
629 /* could be changed by schedule_own_packet() */
630 if_incoming_seqno = atomic_read(&if_incoming->seqno);
631
632 has_directlink_flag = (batman_packet->flags & DIRECTLINK ? 1 : 0);
633
Marek Lindner39901e72011-02-18 12:28:08 +0000634 is_single_hop_neigh = (compare_eth(ethhdr->h_source,
635 batman_packet->orig) ? 1 : 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000636
637 bat_dbg(DBG_BATMAN, bat_priv,
638 "Received BATMAN packet via NB: %pM, IF: %s [%pM] "
639 "(from OG: %pM, via prev OG: %pM, seqno %d, tq %d, "
640 "TTL %d, V %d, IDF %d)\n",
641 ethhdr->h_source, if_incoming->net_dev->name,
642 if_incoming->net_dev->dev_addr, batman_packet->orig,
643 batman_packet->prev_sender, batman_packet->seqno,
644 batman_packet->tq, batman_packet->ttl, batman_packet->version,
645 has_directlink_flag);
646
647 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000648 list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
649 if (hard_iface->if_status != IF_ACTIVE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000650 continue;
651
Marek Lindnere6c10f42011-02-18 12:33:20 +0000652 if (hard_iface->soft_iface != if_incoming->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000653 continue;
654
Marek Lindner39901e72011-02-18 12:28:08 +0000655 if (compare_eth(ethhdr->h_source,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000656 hard_iface->net_dev->dev_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000657 is_my_addr = 1;
658
Marek Lindner39901e72011-02-18 12:28:08 +0000659 if (compare_eth(batman_packet->orig,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000660 hard_iface->net_dev->dev_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000661 is_my_orig = 1;
662
Marek Lindner39901e72011-02-18 12:28:08 +0000663 if (compare_eth(batman_packet->prev_sender,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000664 hard_iface->net_dev->dev_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000665 is_my_oldorig = 1;
666
Marek Lindner39901e72011-02-18 12:28:08 +0000667 if (compare_eth(ethhdr->h_source, broadcast_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000668 is_broadcast = 1;
669 }
670 rcu_read_unlock();
671
672 if (batman_packet->version != COMPAT_VERSION) {
673 bat_dbg(DBG_BATMAN, bat_priv,
674 "Drop packet: incompatible batman version (%i)\n",
675 batman_packet->version);
676 return;
677 }
678
679 if (is_my_addr) {
680 bat_dbg(DBG_BATMAN, bat_priv,
681 "Drop packet: received my own broadcast (sender: %pM"
682 ")\n",
683 ethhdr->h_source);
684 return;
685 }
686
687 if (is_broadcast) {
688 bat_dbg(DBG_BATMAN, bat_priv, "Drop packet: "
689 "ignoring all packets with broadcast source addr (sender: %pM"
690 ")\n", ethhdr->h_source);
691 return;
692 }
693
694 if (is_my_orig) {
695 unsigned long *word;
696 int offset;
697
698 orig_neigh_node = get_orig_node(bat_priv, ethhdr->h_source);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000699 if (!orig_neigh_node)
700 return;
701
702 /* neighbor has to indicate direct link and it has to
703 * come via the corresponding interface */
704 /* if received seqno equals last send seqno save new
705 * seqno for bidirectional check */
706 if (has_directlink_flag &&
Marek Lindner39901e72011-02-18 12:28:08 +0000707 compare_eth(if_incoming->net_dev->dev_addr,
708 batman_packet->orig) &&
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000709 (batman_packet->seqno - if_incoming_seqno + 2 == 0)) {
710 offset = if_incoming->if_num * NUM_WORDS;
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000711
712 spin_lock_bh(&orig_neigh_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000713 word = &(orig_neigh_node->bcast_own[offset]);
714 bit_mark(word, 0);
715 orig_neigh_node->bcast_own_sum[if_incoming->if_num] =
716 bit_packet_count(word);
Marek Lindner2ae2daf2011-01-19 20:01:42 +0000717 spin_unlock_bh(&orig_neigh_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000718 }
719
720 bat_dbg(DBG_BATMAN, bat_priv, "Drop packet: "
721 "originator packet from myself (via neighbor)\n");
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000722 orig_node_free_ref(orig_neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000723 return;
724 }
725
726 if (is_my_oldorig) {
727 bat_dbg(DBG_BATMAN, bat_priv,
728 "Drop packet: ignoring all rebroadcast echos (sender: "
729 "%pM)\n", ethhdr->h_source);
730 return;
731 }
732
733 orig_node = get_orig_node(bat_priv, batman_packet->orig);
734 if (!orig_node)
735 return;
736
737 is_duplicate = count_real_packets(ethhdr, batman_packet, if_incoming);
738
739 if (is_duplicate == -1) {
740 bat_dbg(DBG_BATMAN, bat_priv,
741 "Drop packet: packet within seqno protection time "
742 "(sender: %pM)\n", ethhdr->h_source);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000743 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000744 }
745
746 if (batman_packet->tq == 0) {
747 bat_dbg(DBG_BATMAN, bat_priv,
748 "Drop packet: originator packet with tq equal 0\n");
Marek Lindner16b1aba2011-01-19 20:01:42 +0000749 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000750 }
751
Linus Lüssinge1a53822011-03-14 22:43:37 +0000752 router = orig_node_get_router(orig_node);
753 if (router)
754 router_router = orig_node_get_router(router->orig_node);
755
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000756 /* avoid temporary routing loops */
Linus Lüssinge1a53822011-03-14 22:43:37 +0000757 if (router && router_router &&
758 (compare_eth(router->addr, batman_packet->prev_sender)) &&
Marek Lindner39901e72011-02-18 12:28:08 +0000759 !(compare_eth(batman_packet->orig, batman_packet->prev_sender)) &&
Linus Lüssinge1a53822011-03-14 22:43:37 +0000760 (compare_eth(router->addr, router_router->addr))) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000761 bat_dbg(DBG_BATMAN, bat_priv,
762 "Drop packet: ignoring all rebroadcast packets that "
763 "may make me loop (sender: %pM)\n", ethhdr->h_source);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000764 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000765 }
766
767 /* if sender is a direct neighbor the sender mac equals
768 * originator mac */
769 orig_neigh_node = (is_single_hop_neigh ?
770 orig_node :
771 get_orig_node(bat_priv, ethhdr->h_source));
772 if (!orig_neigh_node)
Marek Lindnerd0072602011-01-19 20:01:44 +0000773 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000774
Linus Lüssinge1a53822011-03-14 22:43:37 +0000775 orig_neigh_router = orig_node_get_router(orig_neigh_node);
776
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000777 /* drop packet if sender is not a direct neighbor and if we
778 * don't route towards it */
Linus Lüssinge1a53822011-03-14 22:43:37 +0000779 if (!is_single_hop_neigh && (!orig_neigh_router)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000780 bat_dbg(DBG_BATMAN, bat_priv,
781 "Drop packet: OGM via unknown neighbor!\n");
Marek Lindner16b1aba2011-01-19 20:01:42 +0000782 goto out_neigh;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000783 }
784
785 is_bidirectional = is_bidirectional_neigh(orig_node, orig_neigh_node,
786 batman_packet, if_incoming);
787
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000788 bonding_save_primary(orig_node, orig_neigh_node, batman_packet);
789
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000790 /* update ranking if it is not a duplicate or has the same
791 * seqno and similar ttl as the non-duplicate */
792 if (is_bidirectional &&
793 (!is_duplicate ||
794 ((orig_node->last_real_seqno == batman_packet->seqno) &&
795 (orig_node->last_ttl - 3 <= batman_packet->ttl))))
796 update_orig(bat_priv, orig_node, ethhdr, batman_packet,
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200797 if_incoming, tt_buff, tt_buff_len, is_duplicate);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000798
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000799 /* is single hop (direct) neighbor */
800 if (is_single_hop_neigh) {
801
802 /* mark direct link on incoming interface */
803 schedule_forward_packet(orig_node, ethhdr, batman_packet,
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200804 1, tt_buff_len, if_incoming);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000805
806 bat_dbg(DBG_BATMAN, bat_priv, "Forwarding packet: "
807 "rebroadcast neighbor packet with direct link flag\n");
Marek Lindner16b1aba2011-01-19 20:01:42 +0000808 goto out_neigh;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000809 }
810
811 /* multihop originator */
812 if (!is_bidirectional) {
813 bat_dbg(DBG_BATMAN, bat_priv,
814 "Drop packet: not received via bidirectional link\n");
Marek Lindner16b1aba2011-01-19 20:01:42 +0000815 goto out_neigh;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000816 }
817
818 if (is_duplicate) {
819 bat_dbg(DBG_BATMAN, bat_priv,
820 "Drop packet: duplicate packet received\n");
Marek Lindner16b1aba2011-01-19 20:01:42 +0000821 goto out_neigh;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000822 }
823
824 bat_dbg(DBG_BATMAN, bat_priv,
825 "Forwarding packet: rebroadcast originator packet\n");
826 schedule_forward_packet(orig_node, ethhdr, batman_packet,
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200827 0, tt_buff_len, if_incoming);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000828
829out_neigh:
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000830 if ((orig_neigh_node) && (!is_single_hop_neigh))
831 orig_node_free_ref(orig_neigh_node);
Marek Lindner16b1aba2011-01-19 20:01:42 +0000832out:
Linus Lüssinge1a53822011-03-14 22:43:37 +0000833 if (router)
834 neigh_node_free_ref(router);
835 if (router_router)
836 neigh_node_free_ref(router_router);
837 if (orig_neigh_router)
838 neigh_node_free_ref(orig_neigh_router);
839
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000840 orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000841}
842
Marek Lindnere6c10f42011-02-18 12:33:20 +0000843int recv_bat_packet(struct sk_buff *skb, struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000844{
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000845 struct ethhdr *ethhdr;
846
847 /* drop packet if it has not necessary minimum size */
848 if (unlikely(!pskb_may_pull(skb, sizeof(struct batman_packet))))
849 return NET_RX_DROP;
850
851 ethhdr = (struct ethhdr *)skb_mac_header(skb);
852
853 /* packet with broadcast indication but unicast recipient */
854 if (!is_broadcast_ether_addr(ethhdr->h_dest))
855 return NET_RX_DROP;
856
857 /* packet with broadcast sender address */
858 if (is_broadcast_ether_addr(ethhdr->h_source))
859 return NET_RX_DROP;
860
861 /* create a copy of the skb, if needed, to modify it. */
862 if (skb_cow(skb, 0) < 0)
863 return NET_RX_DROP;
864
865 /* keep skb linear */
866 if (skb_linearize(skb) < 0)
867 return NET_RX_DROP;
868
869 ethhdr = (struct ethhdr *)skb_mac_header(skb);
870
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000871 receive_aggr_bat_packet(ethhdr,
872 skb->data,
873 skb_headlen(skb),
Marek Lindnere6c10f42011-02-18 12:33:20 +0000874 hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000875
876 kfree_skb(skb);
877 return NET_RX_SUCCESS;
878}
879
880static int recv_my_icmp_packet(struct bat_priv *bat_priv,
881 struct sk_buff *skb, size_t icmp_len)
882{
Marek Lindner32ae9b22011-04-20 15:40:58 +0200883 struct hard_iface *primary_if = NULL;
Marek Lindner44524fc2011-02-10 14:33:53 +0000884 struct orig_node *orig_node = NULL;
Linus Lüssinge1a53822011-03-14 22:43:37 +0000885 struct neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000886 struct icmp_packet_rr *icmp_packet;
Marek Lindner44524fc2011-02-10 14:33:53 +0000887 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000888
889 icmp_packet = (struct icmp_packet_rr *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000890
891 /* add data to device queue */
892 if (icmp_packet->msg_type != ECHO_REQUEST) {
893 bat_socket_receive_packet(icmp_packet, icmp_len);
Marek Lindner44524fc2011-02-10 14:33:53 +0000894 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000895 }
896
Marek Lindner32ae9b22011-04-20 15:40:58 +0200897 primary_if = primary_if_get_selected(bat_priv);
898 if (!primary_if)
Marek Lindner44524fc2011-02-10 14:33:53 +0000899 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000900
901 /* answer echo request (ping) */
902 /* get routing information */
Marek Lindner7aadf882011-02-18 12:28:09 +0000903 orig_node = orig_hash_find(bat_priv, icmp_packet->orig);
Marek Lindner44524fc2011-02-10 14:33:53 +0000904 if (!orig_node)
Linus Lüssinge1a53822011-03-14 22:43:37 +0000905 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +0000906
Linus Lüssinge1a53822011-03-14 22:43:37 +0000907 router = orig_node_get_router(orig_node);
908 if (!router)
909 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000910
Marek Lindner44524fc2011-02-10 14:33:53 +0000911 /* create a copy of the skb, if needed, to modify it. */
912 if (skb_cow(skb, sizeof(struct ethhdr)) < 0)
913 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000914
Marek Lindner44524fc2011-02-10 14:33:53 +0000915 icmp_packet = (struct icmp_packet_rr *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000916
Marek Lindner44524fc2011-02-10 14:33:53 +0000917 memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200918 memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
Marek Lindner44524fc2011-02-10 14:33:53 +0000919 icmp_packet->msg_type = ECHO_REPLY;
920 icmp_packet->ttl = TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000921
Linus Lüssinge1a53822011-03-14 22:43:37 +0000922 send_skb_packet(skb, router->if_incoming, router->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000923 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000924
Marek Lindner44524fc2011-02-10 14:33:53 +0000925out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200926 if (primary_if)
927 hardif_free_ref(primary_if);
Linus Lüssinge1a53822011-03-14 22:43:37 +0000928 if (router)
929 neigh_node_free_ref(router);
Marek Lindner44524fc2011-02-10 14:33:53 +0000930 if (orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000931 orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000932 return ret;
933}
934
935static int recv_icmp_ttl_exceeded(struct bat_priv *bat_priv,
Simon Wunderlich74ef1152010-12-29 16:15:19 +0000936 struct sk_buff *skb)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000937{
Marek Lindner32ae9b22011-04-20 15:40:58 +0200938 struct hard_iface *primary_if = NULL;
Marek Lindner44524fc2011-02-10 14:33:53 +0000939 struct orig_node *orig_node = NULL;
Linus Lüssinge1a53822011-03-14 22:43:37 +0000940 struct neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000941 struct icmp_packet *icmp_packet;
Marek Lindner44524fc2011-02-10 14:33:53 +0000942 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000943
944 icmp_packet = (struct icmp_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000945
946 /* send TTL exceeded if packet is an echo request (traceroute) */
947 if (icmp_packet->msg_type != ECHO_REQUEST) {
948 pr_debug("Warning - can't forward icmp packet from %pM to "
949 "%pM: ttl exceeded\n", icmp_packet->orig,
950 icmp_packet->dst);
Marek Lindner44524fc2011-02-10 14:33:53 +0000951 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000952 }
953
Marek Lindner32ae9b22011-04-20 15:40:58 +0200954 primary_if = primary_if_get_selected(bat_priv);
955 if (!primary_if)
Marek Lindner44524fc2011-02-10 14:33:53 +0000956 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000957
958 /* get routing information */
Marek Lindner7aadf882011-02-18 12:28:09 +0000959 orig_node = orig_hash_find(bat_priv, icmp_packet->orig);
Marek Lindner44524fc2011-02-10 14:33:53 +0000960 if (!orig_node)
Linus Lüssinge1a53822011-03-14 22:43:37 +0000961 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +0000962
Linus Lüssinge1a53822011-03-14 22:43:37 +0000963 router = orig_node_get_router(orig_node);
964 if (!router)
965 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000966
Marek Lindner44524fc2011-02-10 14:33:53 +0000967 /* create a copy of the skb, if needed, to modify it. */
968 if (skb_cow(skb, sizeof(struct ethhdr)) < 0)
969 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000970
Marek Lindner44524fc2011-02-10 14:33:53 +0000971 icmp_packet = (struct icmp_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000972
Marek Lindner44524fc2011-02-10 14:33:53 +0000973 memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200974 memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
Marek Lindner44524fc2011-02-10 14:33:53 +0000975 icmp_packet->msg_type = TTL_EXCEEDED;
976 icmp_packet->ttl = TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000977
Linus Lüssinge1a53822011-03-14 22:43:37 +0000978 send_skb_packet(skb, router->if_incoming, router->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000979 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000980
Marek Lindner44524fc2011-02-10 14:33:53 +0000981out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200982 if (primary_if)
983 hardif_free_ref(primary_if);
Linus Lüssinge1a53822011-03-14 22:43:37 +0000984 if (router)
985 neigh_node_free_ref(router);
Marek Lindner44524fc2011-02-10 14:33:53 +0000986 if (orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000987 orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000988 return ret;
989}
990
991
Marek Lindnere6c10f42011-02-18 12:33:20 +0000992int recv_icmp_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000993{
994 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
995 struct icmp_packet_rr *icmp_packet;
996 struct ethhdr *ethhdr;
Marek Lindner44524fc2011-02-10 14:33:53 +0000997 struct orig_node *orig_node = NULL;
Linus Lüssinge1a53822011-03-14 22:43:37 +0000998 struct neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000999 int hdr_size = sizeof(struct icmp_packet);
Marek Lindner44524fc2011-02-10 14:33:53 +00001000 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001001
1002 /**
1003 * we truncate all incoming icmp packets if they don't match our size
1004 */
1005 if (skb->len >= sizeof(struct icmp_packet_rr))
1006 hdr_size = sizeof(struct icmp_packet_rr);
1007
1008 /* drop packet if it has not necessary minimum size */
1009 if (unlikely(!pskb_may_pull(skb, hdr_size)))
Marek Lindner44524fc2011-02-10 14:33:53 +00001010 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001011
1012 ethhdr = (struct ethhdr *)skb_mac_header(skb);
1013
1014 /* packet with unicast indication but broadcast recipient */
1015 if (is_broadcast_ether_addr(ethhdr->h_dest))
Marek Lindner44524fc2011-02-10 14:33:53 +00001016 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001017
1018 /* packet with broadcast sender address */
1019 if (is_broadcast_ether_addr(ethhdr->h_source))
Marek Lindner44524fc2011-02-10 14:33:53 +00001020 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001021
1022 /* not for me */
1023 if (!is_my_mac(ethhdr->h_dest))
Marek Lindner44524fc2011-02-10 14:33:53 +00001024 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001025
1026 icmp_packet = (struct icmp_packet_rr *)skb->data;
1027
1028 /* add record route information if not full */
1029 if ((hdr_size == sizeof(struct icmp_packet_rr)) &&
1030 (icmp_packet->rr_cur < BAT_RR_LEN)) {
1031 memcpy(&(icmp_packet->rr[icmp_packet->rr_cur]),
1032 ethhdr->h_dest, ETH_ALEN);
1033 icmp_packet->rr_cur++;
1034 }
1035
1036 /* packet for me */
1037 if (is_my_mac(icmp_packet->dst))
1038 return recv_my_icmp_packet(bat_priv, skb, hdr_size);
1039
1040 /* TTL exceeded */
1041 if (icmp_packet->ttl < 2)
Simon Wunderlich74ef1152010-12-29 16:15:19 +00001042 return recv_icmp_ttl_exceeded(bat_priv, skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001043
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001044 /* get routing information */
Marek Lindner7aadf882011-02-18 12:28:09 +00001045 orig_node = orig_hash_find(bat_priv, icmp_packet->dst);
Marek Lindner44524fc2011-02-10 14:33:53 +00001046 if (!orig_node)
Linus Lüssinge1a53822011-03-14 22:43:37 +00001047 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +00001048
Linus Lüssinge1a53822011-03-14 22:43:37 +00001049 router = orig_node_get_router(orig_node);
1050 if (!router)
1051 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001052
Marek Lindner44524fc2011-02-10 14:33:53 +00001053 /* create a copy of the skb, if needed, to modify it. */
1054 if (skb_cow(skb, sizeof(struct ethhdr)) < 0)
1055 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001056
Marek Lindner44524fc2011-02-10 14:33:53 +00001057 icmp_packet = (struct icmp_packet_rr *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001058
Marek Lindner44524fc2011-02-10 14:33:53 +00001059 /* decrement ttl */
1060 icmp_packet->ttl--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001061
Marek Lindner44524fc2011-02-10 14:33:53 +00001062 /* route it */
Linus Lüssinge1a53822011-03-14 22:43:37 +00001063 send_skb_packet(skb, router->if_incoming, router->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +00001064 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001065
Marek Lindner44524fc2011-02-10 14:33:53 +00001066out:
Linus Lüssinge1a53822011-03-14 22:43:37 +00001067 if (router)
1068 neigh_node_free_ref(router);
Marek Lindner44524fc2011-02-10 14:33:53 +00001069 if (orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001070 orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001071 return ret;
1072}
1073
Linus Lüssing55158622011-03-14 22:43:27 +00001074/* In the bonding case, send the packets in a round
1075 * robin fashion over the remaining interfaces.
1076 *
1077 * This method rotates the bonding list and increases the
1078 * returned router's refcount. */
1079static struct neigh_node *find_bond_router(struct orig_node *primary_orig,
1080 struct hard_iface *recv_if)
1081{
1082 struct neigh_node *tmp_neigh_node;
1083 struct neigh_node *router = NULL, *first_candidate = NULL;
1084
1085 rcu_read_lock();
1086 list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list,
1087 bonding_list) {
1088 if (!first_candidate)
1089 first_candidate = tmp_neigh_node;
1090
1091 /* recv_if == NULL on the first node. */
1092 if (tmp_neigh_node->if_incoming == recv_if)
1093 continue;
1094
1095 if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
1096 continue;
1097
1098 router = tmp_neigh_node;
1099 break;
1100 }
1101
1102 /* use the first candidate if nothing was found. */
1103 if (!router && first_candidate &&
1104 atomic_inc_not_zero(&first_candidate->refcount))
1105 router = first_candidate;
1106
1107 if (!router)
1108 goto out;
1109
1110 /* selected should point to the next element
1111 * after the current router */
1112 spin_lock_bh(&primary_orig->neigh_list_lock);
1113 /* this is a list_move(), which unfortunately
1114 * does not exist as rcu version */
1115 list_del_rcu(&primary_orig->bond_list);
1116 list_add_rcu(&primary_orig->bond_list,
1117 &router->bonding_list);
1118 spin_unlock_bh(&primary_orig->neigh_list_lock);
1119
1120out:
1121 rcu_read_unlock();
1122 return router;
1123}
1124
1125/* Interface Alternating: Use the best of the
1126 * remaining candidates which are not using
1127 * this interface.
1128 *
1129 * Increases the returned router's refcount */
1130static struct neigh_node *find_ifalter_router(struct orig_node *primary_orig,
1131 struct hard_iface *recv_if)
1132{
1133 struct neigh_node *tmp_neigh_node;
1134 struct neigh_node *router = NULL, *first_candidate = NULL;
1135
1136 rcu_read_lock();
1137 list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list,
1138 bonding_list) {
1139 if (!first_candidate)
1140 first_candidate = tmp_neigh_node;
1141
1142 /* recv_if == NULL on the first node. */
1143 if (tmp_neigh_node->if_incoming == recv_if)
1144 continue;
1145
1146 if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
1147 continue;
1148
1149 /* if we don't have a router yet
1150 * or this one is better, choose it. */
1151 if ((!router) ||
1152 (tmp_neigh_node->tq_avg > router->tq_avg)) {
1153 /* decrement refcount of
1154 * previously selected router */
1155 if (router)
1156 neigh_node_free_ref(router);
1157
1158 router = tmp_neigh_node;
1159 atomic_inc_not_zero(&router->refcount);
1160 }
1161
1162 neigh_node_free_ref(tmp_neigh_node);
1163 }
1164
1165 /* use the first candidate if nothing was found. */
1166 if (!router && first_candidate &&
1167 atomic_inc_not_zero(&first_candidate->refcount))
1168 router = first_candidate;
1169
1170 rcu_read_unlock();
1171 return router;
1172}
1173
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001174/* find a suitable router for this originator, and use
Simon Wunderlicha4c135c2011-01-19 20:01:43 +00001175 * bonding if possible. increases the found neighbors
1176 * refcount.*/
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001177struct neigh_node *find_router(struct bat_priv *bat_priv,
1178 struct orig_node *orig_node,
Marek Lindnere6c10f42011-02-18 12:33:20 +00001179 struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001180{
1181 struct orig_node *primary_orig_node;
1182 struct orig_node *router_orig;
Linus Lüssing55158622011-03-14 22:43:27 +00001183 struct neigh_node *router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001184 static uint8_t zero_mac[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
1185 int bonding_enabled;
1186
1187 if (!orig_node)
1188 return NULL;
1189
Linus Lüssinge1a53822011-03-14 22:43:37 +00001190 router = orig_node_get_router(orig_node);
1191 if (!router)
Marek Lindner01df2b62011-05-05 14:14:46 +02001192 goto err;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001193
1194 /* without bonding, the first node should
1195 * always choose the default router. */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001196 bonding_enabled = atomic_read(&bat_priv->bonding);
1197
Simon Wunderlicha4c135c2011-01-19 20:01:43 +00001198 rcu_read_lock();
1199 /* select default router to output */
Linus Lüssinge1a53822011-03-14 22:43:37 +00001200 router_orig = router->orig_node;
Marek Lindner01df2b62011-05-05 14:14:46 +02001201 if (!router_orig)
1202 goto err_unlock;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +00001203
Simon Wunderlicha4c135c2011-01-19 20:01:43 +00001204 if ((!recv_if) && (!bonding_enabled))
1205 goto return_router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001206
1207 /* if we have something in the primary_addr, we can search
1208 * for a potential bonding candidate. */
Marek Lindner39901e72011-02-18 12:28:08 +00001209 if (compare_eth(router_orig->primary_addr, zero_mac))
Simon Wunderlicha4c135c2011-01-19 20:01:43 +00001210 goto return_router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001211
1212 /* find the orig_node which has the primary interface. might
1213 * even be the same as our router_orig in many cases */
1214
Marek Lindner39901e72011-02-18 12:28:08 +00001215 if (compare_eth(router_orig->primary_addr, router_orig->orig)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001216 primary_orig_node = router_orig;
1217 } else {
Marek Lindner7aadf882011-02-18 12:28:09 +00001218 primary_orig_node = orig_hash_find(bat_priv,
1219 router_orig->primary_addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001220 if (!primary_orig_node)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +00001221 goto return_router;
Marek Lindner7aadf882011-02-18 12:28:09 +00001222
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001223 orig_node_free_ref(primary_orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001224 }
1225
1226 /* with less than 2 candidates, we can't do any
1227 * bonding and prefer the original router. */
Simon Wunderlicha4c135c2011-01-19 20:01:43 +00001228 if (atomic_read(&primary_orig_node->bond_candidates) < 2)
1229 goto return_router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001230
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001231 /* all nodes between should choose a candidate which
1232 * is is not on the interface where the packet came
1233 * in. */
Simon Wunderlicha4c135c2011-01-19 20:01:43 +00001234
Marek Lindner44524fc2011-02-10 14:33:53 +00001235 neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001236
Linus Lüssing55158622011-03-14 22:43:27 +00001237 if (bonding_enabled)
1238 router = find_bond_router(primary_orig_node, recv_if);
1239 else
1240 router = find_ifalter_router(primary_orig_node, recv_if);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +00001241
Simon Wunderlicha4c135c2011-01-19 20:01:43 +00001242return_router:
Simon Wunderlicha4c135c2011-01-19 20:01:43 +00001243 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001244 return router;
Marek Lindner01df2b62011-05-05 14:14:46 +02001245err_unlock:
1246 rcu_read_unlock();
1247err:
1248 if (router)
1249 neigh_node_free_ref(router);
1250 return NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001251}
1252
1253static int check_unicast_packet(struct sk_buff *skb, int hdr_size)
1254{
1255 struct ethhdr *ethhdr;
1256
1257 /* drop packet if it has not necessary minimum size */
1258 if (unlikely(!pskb_may_pull(skb, hdr_size)))
1259 return -1;
1260
1261 ethhdr = (struct ethhdr *)skb_mac_header(skb);
1262
1263 /* packet with unicast indication but broadcast recipient */
1264 if (is_broadcast_ether_addr(ethhdr->h_dest))
1265 return -1;
1266
1267 /* packet with broadcast sender address */
1268 if (is_broadcast_ether_addr(ethhdr->h_source))
1269 return -1;
1270
1271 /* not for me */
1272 if (!is_my_mac(ethhdr->h_dest))
1273 return -1;
1274
1275 return 0;
1276}
1277
Linus Lüssing7cefb142011-03-02 17:39:31 +00001278int route_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001279{
1280 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
Marek Lindner44524fc2011-02-10 14:33:53 +00001281 struct orig_node *orig_node = NULL;
1282 struct neigh_node *neigh_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001283 struct unicast_packet *unicast_packet;
1284 struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb);
Marek Lindner44524fc2011-02-10 14:33:53 +00001285 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001286 struct sk_buff *new_skb;
1287
1288 unicast_packet = (struct unicast_packet *)skb->data;
1289
1290 /* TTL exceeded */
1291 if (unicast_packet->ttl < 2) {
1292 pr_debug("Warning - can't forward unicast packet from %pM to "
1293 "%pM: ttl exceeded\n", ethhdr->h_source,
1294 unicast_packet->dest);
Marek Lindner44524fc2011-02-10 14:33:53 +00001295 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001296 }
1297
1298 /* get routing information */
Marek Lindner7aadf882011-02-18 12:28:09 +00001299 orig_node = orig_hash_find(bat_priv, unicast_packet->dest);
1300
Marek Lindner44524fc2011-02-10 14:33:53 +00001301 if (!orig_node)
Antonio Quartullib5a6f692011-04-16 11:30:57 +02001302 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001303
Simon Wunderlicha4c135c2011-01-19 20:01:43 +00001304 /* find_router() increases neigh_nodes refcount if found. */
Marek Lindner44524fc2011-02-10 14:33:53 +00001305 neigh_node = find_router(bat_priv, orig_node, recv_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001306
Marek Lindnerd0072602011-01-19 20:01:44 +00001307 if (!neigh_node)
Marek Lindner44524fc2011-02-10 14:33:53 +00001308 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001309
1310 /* create a copy of the skb, if needed, to modify it. */
1311 if (skb_cow(skb, sizeof(struct ethhdr)) < 0)
Marek Lindner44524fc2011-02-10 14:33:53 +00001312 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001313
1314 unicast_packet = (struct unicast_packet *)skb->data;
1315
1316 if (unicast_packet->packet_type == BAT_UNICAST &&
1317 atomic_read(&bat_priv->fragmentation) &&
Marek Lindnerd0072602011-01-19 20:01:44 +00001318 skb->len > neigh_node->if_incoming->net_dev->mtu) {
1319 ret = frag_send_skb(skb, bat_priv,
1320 neigh_node->if_incoming, neigh_node->addr);
1321 goto out;
1322 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001323
1324 if (unicast_packet->packet_type == BAT_UNICAST_FRAG &&
Marek Lindnerd0072602011-01-19 20:01:44 +00001325 frag_can_reassemble(skb, neigh_node->if_incoming->net_dev->mtu)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001326
1327 ret = frag_reassemble_skb(skb, bat_priv, &new_skb);
1328
1329 if (ret == NET_RX_DROP)
Marek Lindner44524fc2011-02-10 14:33:53 +00001330 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001331
1332 /* packet was buffered for late merge */
Marek Lindner44524fc2011-02-10 14:33:53 +00001333 if (!new_skb) {
1334 ret = NET_RX_SUCCESS;
1335 goto out;
1336 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001337
1338 skb = new_skb;
1339 unicast_packet = (struct unicast_packet *)skb->data;
1340 }
1341
1342 /* decrement ttl */
1343 unicast_packet->ttl--;
1344
1345 /* route it */
Marek Lindnerd0072602011-01-19 20:01:44 +00001346 send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +00001347 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001348
Marek Lindner44524fc2011-02-10 14:33:53 +00001349out:
1350 if (neigh_node)
1351 neigh_node_free_ref(neigh_node);
1352 if (orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001353 orig_node_free_ref(orig_node);
Marek Lindner44524fc2011-02-10 14:33:53 +00001354 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001355}
1356
Marek Lindnere6c10f42011-02-18 12:33:20 +00001357int recv_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001358{
1359 struct unicast_packet *unicast_packet;
1360 int hdr_size = sizeof(struct unicast_packet);
1361
1362 if (check_unicast_packet(skb, hdr_size) < 0)
1363 return NET_RX_DROP;
1364
1365 unicast_packet = (struct unicast_packet *)skb->data;
1366
1367 /* packet for me */
1368 if (is_my_mac(unicast_packet->dest)) {
1369 interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size);
1370 return NET_RX_SUCCESS;
1371 }
1372
Linus Lüssing7cefb142011-03-02 17:39:31 +00001373 return route_unicast_packet(skb, recv_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001374}
1375
Marek Lindnere6c10f42011-02-18 12:33:20 +00001376int recv_ucast_frag_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001377{
1378 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1379 struct unicast_frag_packet *unicast_packet;
1380 int hdr_size = sizeof(struct unicast_frag_packet);
1381 struct sk_buff *new_skb = NULL;
1382 int ret;
1383
1384 if (check_unicast_packet(skb, hdr_size) < 0)
1385 return NET_RX_DROP;
1386
1387 unicast_packet = (struct unicast_frag_packet *)skb->data;
1388
1389 /* packet for me */
1390 if (is_my_mac(unicast_packet->dest)) {
1391
1392 ret = frag_reassemble_skb(skb, bat_priv, &new_skb);
1393
1394 if (ret == NET_RX_DROP)
1395 return NET_RX_DROP;
1396
1397 /* packet was buffered for late merge */
1398 if (!new_skb)
1399 return NET_RX_SUCCESS;
1400
1401 interface_rx(recv_if->soft_iface, new_skb, recv_if,
1402 sizeof(struct unicast_packet));
1403 return NET_RX_SUCCESS;
1404 }
1405
Linus Lüssing7cefb142011-03-02 17:39:31 +00001406 return route_unicast_packet(skb, recv_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001407}
1408
1409
Marek Lindnere6c10f42011-02-18 12:33:20 +00001410int recv_bcast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001411{
1412 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001413 struct orig_node *orig_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001414 struct bcast_packet *bcast_packet;
1415 struct ethhdr *ethhdr;
1416 int hdr_size = sizeof(struct bcast_packet);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001417 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001418 int32_t seq_diff;
1419
1420 /* drop packet if it has not necessary minimum size */
1421 if (unlikely(!pskb_may_pull(skb, hdr_size)))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001422 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001423
1424 ethhdr = (struct ethhdr *)skb_mac_header(skb);
1425
1426 /* packet with broadcast indication but unicast recipient */
1427 if (!is_broadcast_ether_addr(ethhdr->h_dest))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001428 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001429
1430 /* packet with broadcast sender address */
1431 if (is_broadcast_ether_addr(ethhdr->h_source))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001432 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001433
1434 /* ignore broadcasts sent by myself */
1435 if (is_my_mac(ethhdr->h_source))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001436 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001437
1438 bcast_packet = (struct bcast_packet *)skb->data;
1439
1440 /* ignore broadcasts originated by myself */
1441 if (is_my_mac(bcast_packet->orig))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001442 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001443
1444 if (bcast_packet->ttl < 2)
Marek Lindnerf3e00082011-01-25 21:52:11 +00001445 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001446
Marek Lindner7aadf882011-02-18 12:28:09 +00001447 orig_node = orig_hash_find(bat_priv, bcast_packet->orig);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001448
1449 if (!orig_node)
Antonio Quartullib5a6f692011-04-16 11:30:57 +02001450 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001451
Marek Lindnerf3e00082011-01-25 21:52:11 +00001452 spin_lock_bh(&orig_node->bcast_seqno_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001453
1454 /* check whether the packet is a duplicate */
Marek Lindnerf3e00082011-01-25 21:52:11 +00001455 if (get_bit_status(orig_node->bcast_bits, orig_node->last_bcast_seqno,
1456 ntohl(bcast_packet->seqno)))
1457 goto spin_unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001458
1459 seq_diff = ntohl(bcast_packet->seqno) - orig_node->last_bcast_seqno;
1460
1461 /* check whether the packet is old and the host just restarted. */
1462 if (window_protected(bat_priv, seq_diff,
Marek Lindnerf3e00082011-01-25 21:52:11 +00001463 &orig_node->bcast_seqno_reset))
1464 goto spin_unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001465
1466 /* mark broadcast in flood history, update window position
1467 * if required. */
1468 if (bit_get_packet(bat_priv, orig_node->bcast_bits, seq_diff, 1))
1469 orig_node->last_bcast_seqno = ntohl(bcast_packet->seqno);
1470
Marek Lindnerf3e00082011-01-25 21:52:11 +00001471 spin_unlock_bh(&orig_node->bcast_seqno_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001472
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001473 /* rebroadcast packet */
1474 add_bcast_packet_to_list(bat_priv, skb);
1475
1476 /* broadcast for me */
1477 interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001478 ret = NET_RX_SUCCESS;
1479 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001480
Marek Lindnerf3e00082011-01-25 21:52:11 +00001481spin_unlock:
1482 spin_unlock_bh(&orig_node->bcast_seqno_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001483out:
1484 if (orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001485 orig_node_free_ref(orig_node);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001486 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001487}
1488
Marek Lindnere6c10f42011-02-18 12:33:20 +00001489int recv_vis_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001490{
1491 struct vis_packet *vis_packet;
1492 struct ethhdr *ethhdr;
1493 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1494 int hdr_size = sizeof(struct vis_packet);
1495
1496 /* keep skb linear */
1497 if (skb_linearize(skb) < 0)
1498 return NET_RX_DROP;
1499
1500 if (unlikely(!pskb_may_pull(skb, hdr_size)))
1501 return NET_RX_DROP;
1502
1503 vis_packet = (struct vis_packet *)skb->data;
1504 ethhdr = (struct ethhdr *)skb_mac_header(skb);
1505
1506 /* not for me */
1507 if (!is_my_mac(ethhdr->h_dest))
1508 return NET_RX_DROP;
1509
1510 /* ignore own packets */
1511 if (is_my_mac(vis_packet->vis_orig))
1512 return NET_RX_DROP;
1513
1514 if (is_my_mac(vis_packet->sender_orig))
1515 return NET_RX_DROP;
1516
1517 switch (vis_packet->vis_type) {
1518 case VIS_TYPE_SERVER_SYNC:
1519 receive_server_sync_packet(bat_priv, vis_packet,
1520 skb_headlen(skb));
1521 break;
1522
1523 case VIS_TYPE_CLIENT_UPDATE:
1524 receive_client_update_packet(bat_priv, vis_packet,
1525 skb_headlen(skb));
1526 break;
1527
1528 default: /* ignore unknown packet */
1529 break;
1530 }
1531
1532 /* We take a copy of the data in the packet, so we should
1533 always free the skbuf. */
1534 return NET_RX_DROP;
1535}