blob: ff560863bc746f3c9be2156b81d82551ed79551b [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann567db7b2012-01-01 00:41:38 +01002 * Copyright (C) 2007-2012 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"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000025#include "soft-interface.h"
26#include "hard-interface.h"
27#include "icmp_socket.h"
28#include "translation-table.h"
29#include "originator.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000030#include "vis.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000031#include "unicast.h"
Simon Wunderlich23721382012-01-22 20:00:19 +010032#include "bridge_loop_avoidance.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000033
Simon Wunderlicha7f6ee92012-01-22 20:00:18 +010034static int route_unicast_packet(struct sk_buff *skb,
35 struct hard_iface *recv_if);
36
Marek Lindnere6c10f42011-02-18 12:33:20 +000037void slide_own_bcast_window(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000038{
Marek Lindnere6c10f42011-02-18 12:33:20 +000039 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000040 struct hashtable_t *hash = bat_priv->orig_hash;
Marek Lindner7aadf882011-02-18 12:28:09 +000041 struct hlist_node *node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000042 struct hlist_head *head;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000043 struct orig_node *orig_node;
44 unsigned long *word;
Antonio Quartullic90681b2011-10-05 17:05:25 +020045 uint32_t i;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000046 size_t word_index;
47
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000048 for (i = 0; i < hash->size; i++) {
49 head = &hash->table[i];
50
Marek Lindnerfb778ea2011-01-19 20:01:40 +000051 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +000052 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
Marek Lindner2ae2daf2011-01-19 20:01:42 +000053 spin_lock_bh(&orig_node->ogm_cnt_lock);
Marek Lindnere6c10f42011-02-18 12:33:20 +000054 word_index = hard_iface->if_num * NUM_WORDS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000055 word = &(orig_node->bcast_own[word_index]);
56
57 bit_get_packet(bat_priv, word, 1, 0);
Marek Lindnere6c10f42011-02-18 12:33:20 +000058 orig_node->bcast_own_sum[hard_iface->if_num] =
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010059 bitmap_weight(word, TQ_LOCAL_WINDOW_SIZE);
Marek Lindner2ae2daf2011-01-19 20:01:42 +000060 spin_unlock_bh(&orig_node->ogm_cnt_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000061 }
Marek Lindnerfb778ea2011-01-19 20:01:40 +000062 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000063 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000064}
65
Marek Lindnerfc957272011-07-30 12:04:12 +020066static void _update_route(struct bat_priv *bat_priv,
67 struct orig_node *orig_node,
68 struct neigh_node *neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000069{
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000070 struct neigh_node *curr_router;
71
72 curr_router = orig_node_get_router(orig_node);
Marek Lindnera8e7f4b2010-12-12 21:57:10 +000073
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000074 /* route deleted */
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000075 if ((curr_router) && (!neigh_node)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000076 bat_dbg(DBG_ROUTES, bat_priv, "Deleting route towards: %pM\n",
77 orig_node->orig);
Antonio Quartulli2dafb492011-05-05 08:42:45 +020078 tt_global_del_orig(bat_priv, orig_node,
Sven Eckelmann7c64fd92012-02-28 10:55:36 +010079 "Deleted route towards originator");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000080
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000081 /* route added */
82 } else if ((!curr_router) && (neigh_node)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000083
84 bat_dbg(DBG_ROUTES, bat_priv,
85 "Adding route towards: %pM (via %pM)\n",
86 orig_node->orig, neigh_node->addr);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000087 /* route changed */
Sven Eckelmannbb899b82011-05-10 11:22:37 +020088 } else if (neigh_node && curr_router) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000089 bat_dbg(DBG_ROUTES, bat_priv,
Sven Eckelmann86ceb362012-03-07 09:07:45 +010090 "Changing route towards: %pM (now via %pM - was via %pM)\n",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091 orig_node->orig, neigh_node->addr,
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000092 curr_router->addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000093 }
94
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000095 if (curr_router)
96 neigh_node_free_ref(curr_router);
97
98 /* increase refcount of new best neighbor */
Marek Lindner44524fc2011-02-10 14:33:53 +000099 if (neigh_node && !atomic_inc_not_zero(&neigh_node->refcount))
100 neigh_node = NULL;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000101
102 spin_lock_bh(&orig_node->neigh_list_lock);
103 rcu_assign_pointer(orig_node->router, neigh_node);
104 spin_unlock_bh(&orig_node->neigh_list_lock);
105
106 /* decrease refcount of previous best neighbor */
107 if (curr_router)
108 neigh_node_free_ref(curr_router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000109}
110
Marek Lindnerfc957272011-07-30 12:04:12 +0200111void update_route(struct bat_priv *bat_priv, struct orig_node *orig_node,
112 struct neigh_node *neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000113{
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000114 struct neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000115
116 if (!orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000117 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000118
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000119 router = orig_node_get_router(orig_node);
120
121 if (router != neigh_node)
Marek Lindnerfc957272011-07-30 12:04:12 +0200122 _update_route(bat_priv, orig_node, neigh_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000123
124out:
125 if (router)
126 neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000127}
128
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000129/* caller must hold the neigh_list_lock */
130void bonding_candidate_del(struct orig_node *orig_node,
131 struct neigh_node *neigh_node)
132{
133 /* this neighbor is not part of our candidate list */
134 if (list_empty(&neigh_node->bonding_list))
135 goto out;
136
137 list_del_rcu(&neigh_node->bonding_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000138 INIT_LIST_HEAD(&neigh_node->bonding_list);
Marek Lindner44524fc2011-02-10 14:33:53 +0000139 neigh_node_free_ref(neigh_node);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000140 atomic_dec(&orig_node->bond_candidates);
141
142out:
143 return;
144}
145
Marek Lindnerfc957272011-07-30 12:04:12 +0200146void bonding_candidate_add(struct orig_node *orig_node,
147 struct neigh_node *neigh_node)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000148{
149 struct hlist_node *node;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000150 struct neigh_node *tmp_neigh_node, *router = NULL;
151 uint8_t interference_candidate = 0;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000152
153 spin_lock_bh(&orig_node->neigh_list_lock);
154
155 /* only consider if it has the same primary address ... */
Marek Lindner39901e72011-02-18 12:28:08 +0000156 if (!compare_eth(orig_node->orig,
157 neigh_node->orig_node->primary_addr))
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000158 goto candidate_del;
159
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000160 router = orig_node_get_router(orig_node);
161 if (!router)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000162 goto candidate_del;
163
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000164 /* ... and is good enough to be considered */
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000165 if (neigh_node->tq_avg < router->tq_avg - BONDING_TQ_THRESHOLD)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000166 goto candidate_del;
167
168 /**
169 * check if we have another candidate with the same mac address or
170 * interface. If we do, we won't select this candidate because of
171 * possible interference.
172 */
173 hlist_for_each_entry_rcu(tmp_neigh_node, node,
174 &orig_node->neigh_list, list) {
175
176 if (tmp_neigh_node == neigh_node)
177 continue;
178
179 /* we only care if the other candidate is even
180 * considered as candidate. */
181 if (list_empty(&tmp_neigh_node->bonding_list))
182 continue;
183
184 if ((neigh_node->if_incoming == tmp_neigh_node->if_incoming) ||
Marek Lindner39901e72011-02-18 12:28:08 +0000185 (compare_eth(neigh_node->addr, tmp_neigh_node->addr))) {
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000186 interference_candidate = 1;
187 break;
188 }
189 }
190
191 /* don't care further if it is an interference candidate */
192 if (interference_candidate)
193 goto candidate_del;
194
195 /* this neighbor already is part of our candidate list */
196 if (!list_empty(&neigh_node->bonding_list))
197 goto out;
198
Marek Lindner44524fc2011-02-10 14:33:53 +0000199 if (!atomic_inc_not_zero(&neigh_node->refcount))
200 goto out;
201
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000202 list_add_rcu(&neigh_node->bonding_list, &orig_node->bond_list);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000203 atomic_inc(&orig_node->bond_candidates);
204 goto out;
205
206candidate_del:
207 bonding_candidate_del(orig_node, neigh_node);
208
209out:
210 spin_unlock_bh(&orig_node->neigh_list_lock);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000211
212 if (router)
213 neigh_node_free_ref(router);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000214}
215
216/* copy primary address for bonding */
Marek Lindnerfc957272011-07-30 12:04:12 +0200217void bonding_save_primary(const struct orig_node *orig_node,
218 struct orig_node *orig_neigh_node,
219 const struct batman_ogm_packet *batman_ogm_packet)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000220{
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200221 if (!(batman_ogm_packet->flags & PRIMARIES_FIRST_HOP))
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000222 return;
223
224 memcpy(orig_neigh_node->primary_addr, orig_node->orig, ETH_ALEN);
225}
226
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000227/* checks whether the host restarted and is in the protection time.
228 * returns:
229 * 0 if the packet is to be accepted
230 * 1 if the packet is to be ignored.
231 */
Marek Lindnerfc957272011-07-30 12:04:12 +0200232int window_protected(struct bat_priv *bat_priv, int32_t seq_num_diff,
233 unsigned long *last_reset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000234{
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100235 if ((seq_num_diff <= -TQ_LOCAL_WINDOW_SIZE) ||
236 (seq_num_diff >= EXPECTED_SEQNO_RANGE)) {
Marek Lindner032b7962011-12-20 19:30:40 +0800237 if (has_timed_out(*last_reset, RESET_PROTECTION_MS)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000238
239 *last_reset = jiffies;
240 bat_dbg(DBG_BATMAN, bat_priv,
241 "old packet received, start protection\n");
242
243 return 0;
Sven Eckelmann96741ad2012-03-07 09:07:47 +0100244 } else {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000245 return 1;
Sven Eckelmann96741ad2012-03-07 09:07:47 +0100246 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000247 }
248 return 0;
249}
250
Marek Lindnerfc957272011-07-30 12:04:12 +0200251int recv_bat_ogm_packet(struct sk_buff *skb, struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000252{
Marek Lindner01c42242011-11-28 21:31:55 +0800253 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000254 struct ethhdr *ethhdr;
255
256 /* drop packet if it has not necessary minimum size */
Marek Lindner76e3d7f2012-02-07 17:20:50 +0800257 if (unlikely(!pskb_may_pull(skb, BATMAN_OGM_HLEN)))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000258 return NET_RX_DROP;
259
260 ethhdr = (struct ethhdr *)skb_mac_header(skb);
261
262 /* packet with broadcast indication but unicast recipient */
263 if (!is_broadcast_ether_addr(ethhdr->h_dest))
264 return NET_RX_DROP;
265
266 /* packet with broadcast sender address */
267 if (is_broadcast_ether_addr(ethhdr->h_source))
268 return NET_RX_DROP;
269
270 /* create a copy of the skb, if needed, to modify it. */
271 if (skb_cow(skb, 0) < 0)
272 return NET_RX_DROP;
273
274 /* keep skb linear */
275 if (skb_linearize(skb) < 0)
276 return NET_RX_DROP;
277
Marek Lindner01c42242011-11-28 21:31:55 +0800278 bat_priv->bat_algo_ops->bat_ogm_receive(hard_iface, skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000279
280 kfree_skb(skb);
281 return NET_RX_SUCCESS;
282}
283
284static int recv_my_icmp_packet(struct bat_priv *bat_priv,
285 struct sk_buff *skb, size_t icmp_len)
286{
Marek Lindner32ae9b22011-04-20 15:40:58 +0200287 struct hard_iface *primary_if = NULL;
Marek Lindner44524fc2011-02-10 14:33:53 +0000288 struct orig_node *orig_node = NULL;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000289 struct neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000290 struct icmp_packet_rr *icmp_packet;
Marek Lindner44524fc2011-02-10 14:33:53 +0000291 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000292
293 icmp_packet = (struct icmp_packet_rr *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000294
295 /* add data to device queue */
296 if (icmp_packet->msg_type != ECHO_REQUEST) {
297 bat_socket_receive_packet(icmp_packet, icmp_len);
Marek Lindner44524fc2011-02-10 14:33:53 +0000298 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000299 }
300
Marek Lindner32ae9b22011-04-20 15:40:58 +0200301 primary_if = primary_if_get_selected(bat_priv);
302 if (!primary_if)
Marek Lindner44524fc2011-02-10 14:33:53 +0000303 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304
305 /* answer echo request (ping) */
306 /* get routing information */
Marek Lindner7aadf882011-02-18 12:28:09 +0000307 orig_node = orig_hash_find(bat_priv, icmp_packet->orig);
Marek Lindner44524fc2011-02-10 14:33:53 +0000308 if (!orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000309 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +0000310
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000311 router = orig_node_get_router(orig_node);
312 if (!router)
313 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000314
Marek Lindner44524fc2011-02-10 14:33:53 +0000315 /* create a copy of the skb, if needed, to modify it. */
Antonio Quartulli0d125072012-02-18 11:27:34 +0100316 if (skb_cow(skb, ETH_HLEN) < 0)
Marek Lindner44524fc2011-02-10 14:33:53 +0000317 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000318
Marek Lindner44524fc2011-02-10 14:33:53 +0000319 icmp_packet = (struct icmp_packet_rr *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000320
Marek Lindner44524fc2011-02-10 14:33:53 +0000321 memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200322 memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
Marek Lindner44524fc2011-02-10 14:33:53 +0000323 icmp_packet->msg_type = ECHO_REPLY;
Sven Eckelmann76543d12011-11-20 15:47:38 +0100324 icmp_packet->header.ttl = TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000325
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000326 send_skb_packet(skb, router->if_incoming, router->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000327 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000328
Marek Lindner44524fc2011-02-10 14:33:53 +0000329out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200330 if (primary_if)
331 hardif_free_ref(primary_if);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000332 if (router)
333 neigh_node_free_ref(router);
Marek Lindner44524fc2011-02-10 14:33:53 +0000334 if (orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000335 orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000336 return ret;
337}
338
339static int recv_icmp_ttl_exceeded(struct bat_priv *bat_priv,
Simon Wunderlich74ef1152010-12-29 16:15:19 +0000340 struct sk_buff *skb)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000341{
Marek Lindner32ae9b22011-04-20 15:40:58 +0200342 struct hard_iface *primary_if = NULL;
Marek Lindner44524fc2011-02-10 14:33:53 +0000343 struct orig_node *orig_node = NULL;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000344 struct neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000345 struct icmp_packet *icmp_packet;
Marek Lindner44524fc2011-02-10 14:33:53 +0000346 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000347
348 icmp_packet = (struct icmp_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000349
350 /* send TTL exceeded if packet is an echo request (traceroute) */
351 if (icmp_packet->msg_type != ECHO_REQUEST) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100352 pr_debug("Warning - can't forward icmp packet from %pM to %pM: ttl exceeded\n",
353 icmp_packet->orig, icmp_packet->dst);
Marek Lindner44524fc2011-02-10 14:33:53 +0000354 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000355 }
356
Marek Lindner32ae9b22011-04-20 15:40:58 +0200357 primary_if = primary_if_get_selected(bat_priv);
358 if (!primary_if)
Marek Lindner44524fc2011-02-10 14:33:53 +0000359 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000360
361 /* get routing information */
Marek Lindner7aadf882011-02-18 12:28:09 +0000362 orig_node = orig_hash_find(bat_priv, icmp_packet->orig);
Marek Lindner44524fc2011-02-10 14:33:53 +0000363 if (!orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000364 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +0000365
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000366 router = orig_node_get_router(orig_node);
367 if (!router)
368 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000369
Marek Lindner44524fc2011-02-10 14:33:53 +0000370 /* create a copy of the skb, if needed, to modify it. */
Antonio Quartulli0d125072012-02-18 11:27:34 +0100371 if (skb_cow(skb, ETH_HLEN) < 0)
Marek Lindner44524fc2011-02-10 14:33:53 +0000372 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000373
Marek Lindner44524fc2011-02-10 14:33:53 +0000374 icmp_packet = (struct icmp_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000375
Marek Lindner44524fc2011-02-10 14:33:53 +0000376 memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200377 memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
Marek Lindner44524fc2011-02-10 14:33:53 +0000378 icmp_packet->msg_type = TTL_EXCEEDED;
Sven Eckelmann76543d12011-11-20 15:47:38 +0100379 icmp_packet->header.ttl = TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000380
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000381 send_skb_packet(skb, router->if_incoming, router->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000382 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000383
Marek Lindner44524fc2011-02-10 14:33:53 +0000384out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200385 if (primary_if)
386 hardif_free_ref(primary_if);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000387 if (router)
388 neigh_node_free_ref(router);
Marek Lindner44524fc2011-02-10 14:33:53 +0000389 if (orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000390 orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000391 return ret;
392}
393
394
Marek Lindnere6c10f42011-02-18 12:33:20 +0000395int recv_icmp_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000396{
397 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
398 struct icmp_packet_rr *icmp_packet;
399 struct ethhdr *ethhdr;
Marek Lindner44524fc2011-02-10 14:33:53 +0000400 struct orig_node *orig_node = NULL;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000401 struct neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000402 int hdr_size = sizeof(struct icmp_packet);
Marek Lindner44524fc2011-02-10 14:33:53 +0000403 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000404
405 /**
406 * we truncate all incoming icmp packets if they don't match our size
407 */
408 if (skb->len >= sizeof(struct icmp_packet_rr))
409 hdr_size = sizeof(struct icmp_packet_rr);
410
411 /* drop packet if it has not necessary minimum size */
412 if (unlikely(!pskb_may_pull(skb, hdr_size)))
Marek Lindner44524fc2011-02-10 14:33:53 +0000413 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000414
415 ethhdr = (struct ethhdr *)skb_mac_header(skb);
416
417 /* packet with unicast indication but broadcast recipient */
418 if (is_broadcast_ether_addr(ethhdr->h_dest))
Marek Lindner44524fc2011-02-10 14:33:53 +0000419 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000420
421 /* packet with broadcast sender address */
422 if (is_broadcast_ether_addr(ethhdr->h_source))
Marek Lindner44524fc2011-02-10 14:33:53 +0000423 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000424
425 /* not for me */
426 if (!is_my_mac(ethhdr->h_dest))
Marek Lindner44524fc2011-02-10 14:33:53 +0000427 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000428
429 icmp_packet = (struct icmp_packet_rr *)skb->data;
430
431 /* add record route information if not full */
432 if ((hdr_size == sizeof(struct icmp_packet_rr)) &&
433 (icmp_packet->rr_cur < BAT_RR_LEN)) {
434 memcpy(&(icmp_packet->rr[icmp_packet->rr_cur]),
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100435 ethhdr->h_dest, ETH_ALEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000436 icmp_packet->rr_cur++;
437 }
438
439 /* packet for me */
440 if (is_my_mac(icmp_packet->dst))
441 return recv_my_icmp_packet(bat_priv, skb, hdr_size);
442
443 /* TTL exceeded */
Sven Eckelmann76543d12011-11-20 15:47:38 +0100444 if (icmp_packet->header.ttl < 2)
Simon Wunderlich74ef1152010-12-29 16:15:19 +0000445 return recv_icmp_ttl_exceeded(bat_priv, skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000446
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000447 /* get routing information */
Marek Lindner7aadf882011-02-18 12:28:09 +0000448 orig_node = orig_hash_find(bat_priv, icmp_packet->dst);
Marek Lindner44524fc2011-02-10 14:33:53 +0000449 if (!orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000450 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +0000451
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000452 router = orig_node_get_router(orig_node);
453 if (!router)
454 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000455
Marek Lindner44524fc2011-02-10 14:33:53 +0000456 /* create a copy of the skb, if needed, to modify it. */
Antonio Quartulli0d125072012-02-18 11:27:34 +0100457 if (skb_cow(skb, ETH_HLEN) < 0)
Marek Lindner44524fc2011-02-10 14:33:53 +0000458 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000459
Marek Lindner44524fc2011-02-10 14:33:53 +0000460 icmp_packet = (struct icmp_packet_rr *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000461
Marek Lindner44524fc2011-02-10 14:33:53 +0000462 /* decrement ttl */
Sven Eckelmann76543d12011-11-20 15:47:38 +0100463 icmp_packet->header.ttl--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000464
Marek Lindner44524fc2011-02-10 14:33:53 +0000465 /* route it */
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000466 send_skb_packet(skb, router->if_incoming, router->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000467 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000468
Marek Lindner44524fc2011-02-10 14:33:53 +0000469out:
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000470 if (router)
471 neigh_node_free_ref(router);
Marek Lindner44524fc2011-02-10 14:33:53 +0000472 if (orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000473 orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000474 return ret;
475}
476
Linus Lüssing55158622011-03-14 22:43:27 +0000477/* In the bonding case, send the packets in a round
478 * robin fashion over the remaining interfaces.
479 *
480 * This method rotates the bonding list and increases the
481 * returned router's refcount. */
482static struct neigh_node *find_bond_router(struct orig_node *primary_orig,
Sven Eckelmann747e4222011-05-14 23:14:50 +0200483 const struct hard_iface *recv_if)
Linus Lüssing55158622011-03-14 22:43:27 +0000484{
485 struct neigh_node *tmp_neigh_node;
486 struct neigh_node *router = NULL, *first_candidate = NULL;
487
488 rcu_read_lock();
489 list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list,
490 bonding_list) {
491 if (!first_candidate)
492 first_candidate = tmp_neigh_node;
493
494 /* recv_if == NULL on the first node. */
495 if (tmp_neigh_node->if_incoming == recv_if)
496 continue;
497
498 if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
499 continue;
500
501 router = tmp_neigh_node;
502 break;
503 }
504
505 /* use the first candidate if nothing was found. */
506 if (!router && first_candidate &&
507 atomic_inc_not_zero(&first_candidate->refcount))
508 router = first_candidate;
509
510 if (!router)
511 goto out;
512
513 /* selected should point to the next element
514 * after the current router */
515 spin_lock_bh(&primary_orig->neigh_list_lock);
516 /* this is a list_move(), which unfortunately
517 * does not exist as rcu version */
518 list_del_rcu(&primary_orig->bond_list);
519 list_add_rcu(&primary_orig->bond_list,
520 &router->bonding_list);
521 spin_unlock_bh(&primary_orig->neigh_list_lock);
522
523out:
524 rcu_read_unlock();
525 return router;
526}
527
528/* Interface Alternating: Use the best of the
529 * remaining candidates which are not using
530 * this interface.
531 *
532 * Increases the returned router's refcount */
533static struct neigh_node *find_ifalter_router(struct orig_node *primary_orig,
Sven Eckelmann747e4222011-05-14 23:14:50 +0200534 const struct hard_iface *recv_if)
Linus Lüssing55158622011-03-14 22:43:27 +0000535{
536 struct neigh_node *tmp_neigh_node;
537 struct neigh_node *router = NULL, *first_candidate = NULL;
538
539 rcu_read_lock();
540 list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list,
541 bonding_list) {
542 if (!first_candidate)
543 first_candidate = tmp_neigh_node;
544
545 /* recv_if == NULL on the first node. */
546 if (tmp_neigh_node->if_incoming == recv_if)
547 continue;
548
549 if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
550 continue;
551
552 /* if we don't have a router yet
553 * or this one is better, choose it. */
554 if ((!router) ||
555 (tmp_neigh_node->tq_avg > router->tq_avg)) {
556 /* decrement refcount of
557 * previously selected router */
558 if (router)
559 neigh_node_free_ref(router);
560
561 router = tmp_neigh_node;
562 atomic_inc_not_zero(&router->refcount);
563 }
564
565 neigh_node_free_ref(tmp_neigh_node);
566 }
567
568 /* use the first candidate if nothing was found. */
569 if (!router && first_candidate &&
570 atomic_inc_not_zero(&first_candidate->refcount))
571 router = first_candidate;
572
573 rcu_read_unlock();
574 return router;
575}
576
Antonio Quartullia73105b2011-04-27 14:27:44 +0200577int recv_tt_query(struct sk_buff *skb, struct hard_iface *recv_if)
578{
579 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
580 struct tt_query_packet *tt_query;
Antonio Quartulli8b7342d2011-10-16 20:32:03 +0200581 uint16_t tt_len;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200582 struct ethhdr *ethhdr;
583
584 /* drop packet if it has not necessary minimum size */
585 if (unlikely(!pskb_may_pull(skb, sizeof(struct tt_query_packet))))
586 goto out;
587
588 /* I could need to modify it */
589 if (skb_cow(skb, sizeof(struct tt_query_packet)) < 0)
590 goto out;
591
592 ethhdr = (struct ethhdr *)skb_mac_header(skb);
593
594 /* packet with unicast indication but broadcast recipient */
595 if (is_broadcast_ether_addr(ethhdr->h_dest))
596 goto out;
597
598 /* packet with broadcast sender address */
599 if (is_broadcast_ether_addr(ethhdr->h_source))
600 goto out;
601
602 tt_query = (struct tt_query_packet *)skb->data;
603
604 tt_query->tt_data = ntohs(tt_query->tt_data);
605
606 switch (tt_query->flags & TT_QUERY_TYPE_MASK) {
607 case TT_REQUEST:
608 /* If we cannot provide an answer the tt_request is
609 * forwarded */
610 if (!send_tt_response(bat_priv, tt_query)) {
611 bat_dbg(DBG_TT, bat_priv,
612 "Routing TT_REQUEST to %pM [%c]\n",
613 tt_query->dst,
614 (tt_query->flags & TT_FULL_TABLE ? 'F' : '.'));
615 tt_query->tt_data = htons(tt_query->tt_data);
616 return route_unicast_packet(skb, recv_if);
617 }
618 break;
619 case TT_RESPONSE:
Antonio Quartullidc58fe32011-10-16 20:32:02 +0200620 if (is_my_mac(tt_query->dst)) {
621 /* packet needs to be linearized to access the TT
622 * changes */
623 if (skb_linearize(skb) < 0)
624 goto out;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200625
Antonio Quartulli8b7342d2011-10-16 20:32:03 +0200626 tt_len = tt_query->tt_data * sizeof(struct tt_change);
627
628 /* Ensure we have all the claimed data */
629 if (unlikely(skb_headlen(skb) <
Antonio Quartulli69497c12011-12-02 17:38:52 +0100630 sizeof(struct tt_query_packet) + tt_len))
Antonio Quartulli8b7342d2011-10-16 20:32:03 +0200631 goto out;
632
Antonio Quartullia73105b2011-04-27 14:27:44 +0200633 handle_tt_response(bat_priv, tt_query);
Antonio Quartullidc58fe32011-10-16 20:32:02 +0200634 } else {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200635 bat_dbg(DBG_TT, bat_priv,
636 "Routing TT_RESPONSE to %pM [%c]\n",
637 tt_query->dst,
638 (tt_query->flags & TT_FULL_TABLE ? 'F' : '.'));
639 tt_query->tt_data = htons(tt_query->tt_data);
640 return route_unicast_packet(skb, recv_if);
641 }
642 break;
643 }
644
645out:
646 /* returning NET_RX_DROP will make the caller function kfree the skb */
647 return NET_RX_DROP;
648}
649
Antonio Quartullicc47f662011-04-27 14:27:57 +0200650int recv_roam_adv(struct sk_buff *skb, struct hard_iface *recv_if)
651{
652 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
653 struct roam_adv_packet *roam_adv_packet;
654 struct orig_node *orig_node;
655 struct ethhdr *ethhdr;
656
657 /* drop packet if it has not necessary minimum size */
658 if (unlikely(!pskb_may_pull(skb, sizeof(struct roam_adv_packet))))
659 goto out;
660
661 ethhdr = (struct ethhdr *)skb_mac_header(skb);
662
663 /* packet with unicast indication but broadcast recipient */
664 if (is_broadcast_ether_addr(ethhdr->h_dest))
665 goto out;
666
667 /* packet with broadcast sender address */
668 if (is_broadcast_ether_addr(ethhdr->h_source))
669 goto out;
670
671 roam_adv_packet = (struct roam_adv_packet *)skb->data;
672
673 if (!is_my_mac(roam_adv_packet->dst))
674 return route_unicast_packet(skb, recv_if);
675
Simon Wunderlich20ff9d52012-01-22 20:00:23 +0100676 /* check if it is a backbone gateway. we don't accept
677 * roaming advertisement from it, as it has the same
678 * entries as we have.
679 */
680 if (bla_is_backbone_gw_orig(bat_priv, roam_adv_packet->src))
681 goto out;
682
Antonio Quartullicc47f662011-04-27 14:27:57 +0200683 orig_node = orig_hash_find(bat_priv, roam_adv_packet->src);
684 if (!orig_node)
685 goto out;
686
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100687 bat_dbg(DBG_TT, bat_priv,
688 "Received ROAMING_ADV from %pM (client %pM)\n",
689 roam_adv_packet->src, roam_adv_packet->client);
Antonio Quartullicc47f662011-04-27 14:27:57 +0200690
691 tt_global_add(bat_priv, orig_node, roam_adv_packet->client,
Antonio Quartullibc279082011-07-07 15:35:35 +0200692 atomic_read(&orig_node->last_ttvn) + 1, true, false);
Antonio Quartullicc47f662011-04-27 14:27:57 +0200693
694 /* Roaming phase starts: I have new information but the ttvn has not
695 * been incremented yet. This flag will make me check all the incoming
696 * packets for the correct destination. */
697 bat_priv->tt_poss_change = true;
698
699 orig_node_free_ref(orig_node);
700out:
701 /* returning NET_RX_DROP will make the caller function kfree the skb */
702 return NET_RX_DROP;
703}
704
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000705/* find a suitable router for this originator, and use
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000706 * bonding if possible. increases the found neighbors
707 * refcount.*/
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000708struct neigh_node *find_router(struct bat_priv *bat_priv,
709 struct orig_node *orig_node,
Sven Eckelmann747e4222011-05-14 23:14:50 +0200710 const struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000711{
712 struct orig_node *primary_orig_node;
713 struct orig_node *router_orig;
Linus Lüssing55158622011-03-14 22:43:27 +0000714 struct neigh_node *router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000715 static uint8_t zero_mac[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
716 int bonding_enabled;
717
718 if (!orig_node)
719 return NULL;
720
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000721 router = orig_node_get_router(orig_node);
722 if (!router)
Marek Lindner01df2b62011-05-05 14:14:46 +0200723 goto err;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000724
725 /* without bonding, the first node should
726 * always choose the default router. */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000727 bonding_enabled = atomic_read(&bat_priv->bonding);
728
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000729 rcu_read_lock();
730 /* select default router to output */
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000731 router_orig = router->orig_node;
Marek Lindner01df2b62011-05-05 14:14:46 +0200732 if (!router_orig)
733 goto err_unlock;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000734
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000735 if ((!recv_if) && (!bonding_enabled))
736 goto return_router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000737
738 /* if we have something in the primary_addr, we can search
739 * for a potential bonding candidate. */
Marek Lindner39901e72011-02-18 12:28:08 +0000740 if (compare_eth(router_orig->primary_addr, zero_mac))
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000741 goto return_router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000742
743 /* find the orig_node which has the primary interface. might
744 * even be the same as our router_orig in many cases */
745
Marek Lindner39901e72011-02-18 12:28:08 +0000746 if (compare_eth(router_orig->primary_addr, router_orig->orig)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000747 primary_orig_node = router_orig;
748 } else {
Marek Lindner7aadf882011-02-18 12:28:09 +0000749 primary_orig_node = orig_hash_find(bat_priv,
750 router_orig->primary_addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000751 if (!primary_orig_node)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000752 goto return_router;
Marek Lindner7aadf882011-02-18 12:28:09 +0000753
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000754 orig_node_free_ref(primary_orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000755 }
756
757 /* with less than 2 candidates, we can't do any
758 * bonding and prefer the original router. */
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000759 if (atomic_read(&primary_orig_node->bond_candidates) < 2)
760 goto return_router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000761
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000762 /* all nodes between should choose a candidate which
763 * is is not on the interface where the packet came
764 * in. */
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000765
Marek Lindner44524fc2011-02-10 14:33:53 +0000766 neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000767
Linus Lüssing55158622011-03-14 22:43:27 +0000768 if (bonding_enabled)
769 router = find_bond_router(primary_orig_node, recv_if);
770 else
771 router = find_ifalter_router(primary_orig_node, recv_if);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000772
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000773return_router:
Antonio Quartullie2cbc112011-05-08 20:52:57 +0200774 if (router && router->if_incoming->if_status != IF_ACTIVE)
775 goto err_unlock;
776
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000777 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000778 return router;
Marek Lindner01df2b62011-05-05 14:14:46 +0200779err_unlock:
780 rcu_read_unlock();
781err:
782 if (router)
783 neigh_node_free_ref(router);
784 return NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000785}
786
787static int check_unicast_packet(struct sk_buff *skb, int hdr_size)
788{
789 struct ethhdr *ethhdr;
790
791 /* drop packet if it has not necessary minimum size */
792 if (unlikely(!pskb_may_pull(skb, hdr_size)))
793 return -1;
794
795 ethhdr = (struct ethhdr *)skb_mac_header(skb);
796
797 /* packet with unicast indication but broadcast recipient */
798 if (is_broadcast_ether_addr(ethhdr->h_dest))
799 return -1;
800
801 /* packet with broadcast sender address */
802 if (is_broadcast_ether_addr(ethhdr->h_source))
803 return -1;
804
805 /* not for me */
806 if (!is_my_mac(ethhdr->h_dest))
807 return -1;
808
809 return 0;
810}
811
Simon Wunderlicha7f6ee92012-01-22 20:00:18 +0100812static int route_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000813{
814 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
Marek Lindner44524fc2011-02-10 14:33:53 +0000815 struct orig_node *orig_node = NULL;
816 struct neigh_node *neigh_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000817 struct unicast_packet *unicast_packet;
818 struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb);
Marek Lindner44524fc2011-02-10 14:33:53 +0000819 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000820 struct sk_buff *new_skb;
821
822 unicast_packet = (struct unicast_packet *)skb->data;
823
824 /* TTL exceeded */
Sven Eckelmann76543d12011-11-20 15:47:38 +0100825 if (unicast_packet->header.ttl < 2) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100826 pr_debug("Warning - can't forward unicast packet from %pM to %pM: ttl exceeded\n",
827 ethhdr->h_source, unicast_packet->dest);
Marek Lindner44524fc2011-02-10 14:33:53 +0000828 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000829 }
830
831 /* get routing information */
Marek Lindner7aadf882011-02-18 12:28:09 +0000832 orig_node = orig_hash_find(bat_priv, unicast_packet->dest);
833
Marek Lindner44524fc2011-02-10 14:33:53 +0000834 if (!orig_node)
Antonio Quartullib5a6f692011-04-16 11:30:57 +0200835 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000836
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000837 /* find_router() increases neigh_nodes refcount if found. */
Marek Lindner44524fc2011-02-10 14:33:53 +0000838 neigh_node = find_router(bat_priv, orig_node, recv_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000839
Marek Lindnerd0072602011-01-19 20:01:44 +0000840 if (!neigh_node)
Marek Lindner44524fc2011-02-10 14:33:53 +0000841 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000842
843 /* create a copy of the skb, if needed, to modify it. */
Antonio Quartulli0d125072012-02-18 11:27:34 +0100844 if (skb_cow(skb, ETH_HLEN) < 0)
Marek Lindner44524fc2011-02-10 14:33:53 +0000845 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000846
847 unicast_packet = (struct unicast_packet *)skb->data;
848
Sven Eckelmann76543d12011-11-20 15:47:38 +0100849 if (unicast_packet->header.packet_type == BAT_UNICAST &&
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000850 atomic_read(&bat_priv->fragmentation) &&
Marek Lindnerd0072602011-01-19 20:01:44 +0000851 skb->len > neigh_node->if_incoming->net_dev->mtu) {
852 ret = frag_send_skb(skb, bat_priv,
853 neigh_node->if_incoming, neigh_node->addr);
854 goto out;
855 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000856
Sven Eckelmann76543d12011-11-20 15:47:38 +0100857 if (unicast_packet->header.packet_type == BAT_UNICAST_FRAG &&
Marek Lindnerd0072602011-01-19 20:01:44 +0000858 frag_can_reassemble(skb, neigh_node->if_incoming->net_dev->mtu)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000859
860 ret = frag_reassemble_skb(skb, bat_priv, &new_skb);
861
862 if (ret == NET_RX_DROP)
Marek Lindner44524fc2011-02-10 14:33:53 +0000863 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000864
865 /* packet was buffered for late merge */
Marek Lindner44524fc2011-02-10 14:33:53 +0000866 if (!new_skb) {
867 ret = NET_RX_SUCCESS;
868 goto out;
869 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000870
871 skb = new_skb;
872 unicast_packet = (struct unicast_packet *)skb->data;
873 }
874
875 /* decrement ttl */
Sven Eckelmann76543d12011-11-20 15:47:38 +0100876 unicast_packet->header.ttl--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000877
878 /* route it */
Marek Lindnerd0072602011-01-19 20:01:44 +0000879 send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000880 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000881
Marek Lindner44524fc2011-02-10 14:33:53 +0000882out:
883 if (neigh_node)
884 neigh_node_free_ref(neigh_node);
885 if (orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000886 orig_node_free_ref(orig_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000887 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000888}
889
Antonio Quartullia73105b2011-04-27 14:27:44 +0200890static int check_unicast_ttvn(struct bat_priv *bat_priv,
891 struct sk_buff *skb) {
892 uint8_t curr_ttvn;
893 struct orig_node *orig_node;
894 struct ethhdr *ethhdr;
895 struct hard_iface *primary_if;
896 struct unicast_packet *unicast_packet;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200897 bool tt_poss_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200898
899 /* I could need to modify it */
900 if (skb_cow(skb, sizeof(struct unicast_packet)) < 0)
901 return 0;
902
903 unicast_packet = (struct unicast_packet *)skb->data;
904
Antonio Quartullicc47f662011-04-27 14:27:57 +0200905 if (is_my_mac(unicast_packet->dest)) {
906 tt_poss_change = bat_priv->tt_poss_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200907 curr_ttvn = (uint8_t)atomic_read(&bat_priv->ttvn);
Antonio Quartullicc47f662011-04-27 14:27:57 +0200908 } else {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200909 orig_node = orig_hash_find(bat_priv, unicast_packet->dest);
910
911 if (!orig_node)
912 return 0;
913
914 curr_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
Antonio Quartullicc47f662011-04-27 14:27:57 +0200915 tt_poss_change = orig_node->tt_poss_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200916 orig_node_free_ref(orig_node);
917 }
918
919 /* Check whether I have to reroute the packet */
Antonio Quartullicc47f662011-04-27 14:27:57 +0200920 if (seq_before(unicast_packet->ttvn, curr_ttvn) || tt_poss_change) {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200921 /* Linearize the skb before accessing it */
922 if (skb_linearize(skb) < 0)
923 return 0;
924
925 ethhdr = (struct ethhdr *)(skb->data +
926 sizeof(struct unicast_packet));
Antonio Quartulli3d393e42011-07-07 15:35:37 +0200927 orig_node = transtable_search(bat_priv, NULL, ethhdr->h_dest);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200928
929 if (!orig_node) {
930 if (!is_my_client(bat_priv, ethhdr->h_dest))
931 return 0;
932 primary_if = primary_if_get_selected(bat_priv);
933 if (!primary_if)
934 return 0;
935 memcpy(unicast_packet->dest,
936 primary_if->net_dev->dev_addr, ETH_ALEN);
937 hardif_free_ref(primary_if);
938 } else {
939 memcpy(unicast_packet->dest, orig_node->orig,
940 ETH_ALEN);
941 curr_ttvn = (uint8_t)
942 atomic_read(&orig_node->last_ttvn);
943 orig_node_free_ref(orig_node);
944 }
945
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100946 bat_dbg(DBG_ROUTES, bat_priv,
947 "TTVN mismatch (old_ttvn %u new_ttvn %u)! Rerouting unicast packet (for %pM) to %pM\n",
948 unicast_packet->ttvn, curr_ttvn, ethhdr->h_dest,
949 unicast_packet->dest);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200950
951 unicast_packet->ttvn = curr_ttvn;
952 }
953 return 1;
954}
955
Marek Lindnere6c10f42011-02-18 12:33:20 +0000956int recv_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000957{
Antonio Quartullia73105b2011-04-27 14:27:44 +0200958 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000959 struct unicast_packet *unicast_packet;
Sven Eckelmann704509b2011-05-14 23:14:54 +0200960 int hdr_size = sizeof(*unicast_packet);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000961
962 if (check_unicast_packet(skb, hdr_size) < 0)
963 return NET_RX_DROP;
964
Antonio Quartullia73105b2011-04-27 14:27:44 +0200965 if (!check_unicast_ttvn(bat_priv, skb))
966 return NET_RX_DROP;
967
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000968 unicast_packet = (struct unicast_packet *)skb->data;
969
970 /* packet for me */
971 if (is_my_mac(unicast_packet->dest)) {
972 interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size);
973 return NET_RX_SUCCESS;
974 }
975
Linus Lüssing7cefb142011-03-02 17:39:31 +0000976 return route_unicast_packet(skb, recv_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000977}
978
Marek Lindnere6c10f42011-02-18 12:33:20 +0000979int recv_ucast_frag_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000980{
981 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
982 struct unicast_frag_packet *unicast_packet;
Sven Eckelmann704509b2011-05-14 23:14:54 +0200983 int hdr_size = sizeof(*unicast_packet);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000984 struct sk_buff *new_skb = NULL;
985 int ret;
986
987 if (check_unicast_packet(skb, hdr_size) < 0)
988 return NET_RX_DROP;
989
Antonio Quartullia73105b2011-04-27 14:27:44 +0200990 if (!check_unicast_ttvn(bat_priv, skb))
991 return NET_RX_DROP;
992
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000993 unicast_packet = (struct unicast_frag_packet *)skb->data;
994
995 /* packet for me */
996 if (is_my_mac(unicast_packet->dest)) {
997
998 ret = frag_reassemble_skb(skb, bat_priv, &new_skb);
999
1000 if (ret == NET_RX_DROP)
1001 return NET_RX_DROP;
1002
1003 /* packet was buffered for late merge */
1004 if (!new_skb)
1005 return NET_RX_SUCCESS;
1006
1007 interface_rx(recv_if->soft_iface, new_skb, recv_if,
1008 sizeof(struct unicast_packet));
1009 return NET_RX_SUCCESS;
1010 }
1011
Linus Lüssing7cefb142011-03-02 17:39:31 +00001012 return route_unicast_packet(skb, recv_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001013}
1014
1015
Marek Lindnere6c10f42011-02-18 12:33:20 +00001016int recv_bcast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001017{
1018 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001019 struct orig_node *orig_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001020 struct bcast_packet *bcast_packet;
1021 struct ethhdr *ethhdr;
Sven Eckelmann704509b2011-05-14 23:14:54 +02001022 int hdr_size = sizeof(*bcast_packet);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001023 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001024 int32_t seq_diff;
1025
1026 /* drop packet if it has not necessary minimum size */
1027 if (unlikely(!pskb_may_pull(skb, hdr_size)))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001028 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001029
1030 ethhdr = (struct ethhdr *)skb_mac_header(skb);
1031
1032 /* packet with broadcast indication but unicast recipient */
1033 if (!is_broadcast_ether_addr(ethhdr->h_dest))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001034 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001035
1036 /* packet with broadcast sender address */
1037 if (is_broadcast_ether_addr(ethhdr->h_source))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001038 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001039
1040 /* ignore broadcasts sent by myself */
1041 if (is_my_mac(ethhdr->h_source))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001042 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001043
1044 bcast_packet = (struct bcast_packet *)skb->data;
1045
1046 /* ignore broadcasts originated by myself */
1047 if (is_my_mac(bcast_packet->orig))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001048 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001049
Sven Eckelmann76543d12011-11-20 15:47:38 +01001050 if (bcast_packet->header.ttl < 2)
Marek Lindnerf3e00082011-01-25 21:52:11 +00001051 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001052
Marek Lindner7aadf882011-02-18 12:28:09 +00001053 orig_node = orig_hash_find(bat_priv, bcast_packet->orig);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001054
1055 if (!orig_node)
Antonio Quartullib5a6f692011-04-16 11:30:57 +02001056 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001057
Marek Lindnerf3e00082011-01-25 21:52:11 +00001058 spin_lock_bh(&orig_node->bcast_seqno_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001059
1060 /* check whether the packet is a duplicate */
Sven Eckelmann0079d2c2012-02-04 17:34:52 +01001061 if (bat_test_bit(orig_node->bcast_bits, orig_node->last_bcast_seqno,
1062 ntohl(bcast_packet->seqno)))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001063 goto spin_unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001064
1065 seq_diff = ntohl(bcast_packet->seqno) - orig_node->last_bcast_seqno;
1066
1067 /* check whether the packet is old and the host just restarted. */
1068 if (window_protected(bat_priv, seq_diff,
Marek Lindnerf3e00082011-01-25 21:52:11 +00001069 &orig_node->bcast_seqno_reset))
1070 goto spin_unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001071
1072 /* mark broadcast in flood history, update window position
1073 * if required. */
1074 if (bit_get_packet(bat_priv, orig_node->bcast_bits, seq_diff, 1))
1075 orig_node->last_bcast_seqno = ntohl(bcast_packet->seqno);
1076
Marek Lindnerf3e00082011-01-25 21:52:11 +00001077 spin_unlock_bh(&orig_node->bcast_seqno_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001078
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001079 /* check whether this has been sent by another originator before */
1080 if (bla_check_bcast_duplist(bat_priv, bcast_packet, hdr_size))
1081 goto out;
1082
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001083 /* rebroadcast packet */
Antonio Quartulli86985292011-06-25 19:09:12 +02001084 add_bcast_packet_to_list(bat_priv, skb, 1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001085
Simon Wunderlich23721382012-01-22 20:00:19 +01001086 /* don't hand the broadcast up if it is from an originator
1087 * from the same backbone.
1088 */
1089 if (bla_is_backbone_gw(skb, orig_node, hdr_size))
1090 goto out;
1091
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001092 /* broadcast for me */
1093 interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001094 ret = NET_RX_SUCCESS;
1095 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001096
Marek Lindnerf3e00082011-01-25 21:52:11 +00001097spin_unlock:
1098 spin_unlock_bh(&orig_node->bcast_seqno_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001099out:
1100 if (orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +00001101 orig_node_free_ref(orig_node);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001102 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001103}
1104
Marek Lindnere6c10f42011-02-18 12:33:20 +00001105int recv_vis_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001106{
1107 struct vis_packet *vis_packet;
1108 struct ethhdr *ethhdr;
1109 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
Sven Eckelmann704509b2011-05-14 23:14:54 +02001110 int hdr_size = sizeof(*vis_packet);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001111
1112 /* keep skb linear */
1113 if (skb_linearize(skb) < 0)
1114 return NET_RX_DROP;
1115
1116 if (unlikely(!pskb_may_pull(skb, hdr_size)))
1117 return NET_RX_DROP;
1118
1119 vis_packet = (struct vis_packet *)skb->data;
1120 ethhdr = (struct ethhdr *)skb_mac_header(skb);
1121
1122 /* not for me */
1123 if (!is_my_mac(ethhdr->h_dest))
1124 return NET_RX_DROP;
1125
1126 /* ignore own packets */
1127 if (is_my_mac(vis_packet->vis_orig))
1128 return NET_RX_DROP;
1129
1130 if (is_my_mac(vis_packet->sender_orig))
1131 return NET_RX_DROP;
1132
1133 switch (vis_packet->vis_type) {
1134 case VIS_TYPE_SERVER_SYNC:
1135 receive_server_sync_packet(bat_priv, vis_packet,
1136 skb_headlen(skb));
1137 break;
1138
1139 case VIS_TYPE_CLIENT_UPDATE:
1140 receive_client_update_packet(bat_priv, vis_packet,
1141 skb_headlen(skb));
1142 break;
1143
1144 default: /* ignore unknown packet */
1145 break;
1146 }
1147
1148 /* We take a copy of the data in the packet, so we should
1149 always free the skbuf. */
1150 return NET_RX_DROP;
1151}