blob: 1b1dd41f5fe6d57adb8393de70225a80fe93857a [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
Sven Eckelmann30d3c512012-05-12 02:09:36 +020037void batadv_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
Sven Eckelmann0f5f9322012-05-12 02:09:25 +020057 batadv_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
Sven Eckelmann7d211ef2012-05-12 02:09:34 +020072 curr_router = batadv_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);
Sven Eckelmann08c36d32012-05-12 02:09:39 +020078 batadv_tt_global_del_orig(bat_priv, orig_node,
79 "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)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +020096 batadv_neigh_node_free_ref(curr_router);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000097
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)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200108 batadv_neigh_node_free_ref(curr_router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000109}
110
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200111void batadv_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
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200119 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000120
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)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200126 batadv_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 */
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200130void batadv_bonding_candidate_del(struct orig_node *orig_node,
131 struct neigh_node *neigh_node)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000132{
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);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200139 batadv_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
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200146void batadv_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
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200160 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000161 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:
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200207 batadv_bonding_candidate_del(orig_node, neigh_node);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000208
209out:
210 spin_unlock_bh(&orig_node->neigh_list_lock);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000211
212 if (router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200213 batadv_neigh_node_free_ref(router);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000214}
215
216/* copy primary address for bonding */
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200217void
218batadv_bonding_save_primary(const struct orig_node *orig_node,
219 struct orig_node *orig_neigh_node,
220 const struct batman_ogm_packet *batman_ogm_packet)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000221{
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200222 if (!(batman_ogm_packet->flags & PRIMARIES_FIRST_HOP))
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000223 return;
224
225 memcpy(orig_neigh_node->primary_addr, orig_node->orig, ETH_ALEN);
226}
227
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000228/* checks whether the host restarted and is in the protection time.
229 * returns:
230 * 0 if the packet is to be accepted
231 * 1 if the packet is to be ignored.
232 */
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200233int batadv_window_protected(struct bat_priv *bat_priv, int32_t seq_num_diff,
234 unsigned long *last_reset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000235{
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100236 if ((seq_num_diff <= -TQ_LOCAL_WINDOW_SIZE) ||
237 (seq_num_diff >= EXPECTED_SEQNO_RANGE)) {
Marek Lindner8c7bf242012-03-17 15:28:33 +0800238 if (!has_timed_out(*last_reset, RESET_PROTECTION_MS))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000239 return 1;
Marek Lindner8c7bf242012-03-17 15:28:33 +0800240
241 *last_reset = jiffies;
242 bat_dbg(DBG_BATMAN, bat_priv,
243 "old packet received, start protection\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000244 }
Marek Lindner8c7bf242012-03-17 15:28:33 +0800245
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000246 return 0;
247}
248
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200249bool batadv_check_management_packet(struct sk_buff *skb,
250 struct hard_iface *hard_iface,
251 int header_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000252{
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000253 struct ethhdr *ethhdr;
254
255 /* drop packet if it has not necessary minimum size */
Marek Lindnerc3e29312012-03-04 16:56:25 +0800256 if (unlikely(!pskb_may_pull(skb, header_len)))
257 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000258
259 ethhdr = (struct ethhdr *)skb_mac_header(skb);
260
261 /* packet with broadcast indication but unicast recipient */
262 if (!is_broadcast_ether_addr(ethhdr->h_dest))
Marek Lindnerc3e29312012-03-04 16:56:25 +0800263 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000264
265 /* packet with broadcast sender address */
266 if (is_broadcast_ether_addr(ethhdr->h_source))
Marek Lindnerc3e29312012-03-04 16:56:25 +0800267 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000268
269 /* create a copy of the skb, if needed, to modify it. */
270 if (skb_cow(skb, 0) < 0)
Marek Lindnerc3e29312012-03-04 16:56:25 +0800271 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000272
273 /* keep skb linear */
274 if (skb_linearize(skb) < 0)
Marek Lindnerc3e29312012-03-04 16:56:25 +0800275 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000276
Marek Lindnerc3e29312012-03-04 16:56:25 +0800277 return true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000278}
279
280static int recv_my_icmp_packet(struct bat_priv *bat_priv,
281 struct sk_buff *skb, size_t icmp_len)
282{
Marek Lindner32ae9b22011-04-20 15:40:58 +0200283 struct hard_iface *primary_if = NULL;
Marek Lindner44524fc2011-02-10 14:33:53 +0000284 struct orig_node *orig_node = NULL;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000285 struct neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000286 struct icmp_packet_rr *icmp_packet;
Marek Lindner44524fc2011-02-10 14:33:53 +0000287 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000288
289 icmp_packet = (struct icmp_packet_rr *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000290
291 /* add data to device queue */
292 if (icmp_packet->msg_type != ECHO_REQUEST) {
Sven Eckelmann9039dc72012-05-12 02:09:33 +0200293 batadv_socket_receive_packet(icmp_packet, icmp_len);
Marek Lindner44524fc2011-02-10 14:33:53 +0000294 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000295 }
296
Marek Lindner32ae9b22011-04-20 15:40:58 +0200297 primary_if = primary_if_get_selected(bat_priv);
298 if (!primary_if)
Marek Lindner44524fc2011-02-10 14:33:53 +0000299 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000300
301 /* answer echo request (ping) */
302 /* get routing information */
Marek Lindner7aadf882011-02-18 12:28:09 +0000303 orig_node = orig_hash_find(bat_priv, icmp_packet->orig);
Marek Lindner44524fc2011-02-10 14:33:53 +0000304 if (!orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000305 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +0000306
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200307 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000308 if (!router)
309 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000310
Marek Lindner44524fc2011-02-10 14:33:53 +0000311 /* create a copy of the skb, if needed, to modify it. */
Antonio Quartulli0d125072012-02-18 11:27:34 +0100312 if (skb_cow(skb, ETH_HLEN) < 0)
Marek Lindner44524fc2011-02-10 14:33:53 +0000313 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000314
Marek Lindner44524fc2011-02-10 14:33:53 +0000315 icmp_packet = (struct icmp_packet_rr *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000316
Marek Lindner44524fc2011-02-10 14:33:53 +0000317 memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200318 memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
Marek Lindner44524fc2011-02-10 14:33:53 +0000319 icmp_packet->msg_type = ECHO_REPLY;
Sven Eckelmann76543d12011-11-20 15:47:38 +0100320 icmp_packet->header.ttl = TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000321
Sven Eckelmann9455e342012-05-12 02:09:37 +0200322 batadv_send_skb_packet(skb, router->if_incoming, router->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000323 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000324
Marek Lindner44524fc2011-02-10 14:33:53 +0000325out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200326 if (primary_if)
327 hardif_free_ref(primary_if);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000328 if (router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200329 batadv_neigh_node_free_ref(router);
Marek Lindner44524fc2011-02-10 14:33:53 +0000330 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200331 batadv_orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000332 return ret;
333}
334
335static int recv_icmp_ttl_exceeded(struct bat_priv *bat_priv,
Simon Wunderlich74ef1152010-12-29 16:15:19 +0000336 struct sk_buff *skb)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000337{
Marek Lindner32ae9b22011-04-20 15:40:58 +0200338 struct hard_iface *primary_if = NULL;
Marek Lindner44524fc2011-02-10 14:33:53 +0000339 struct orig_node *orig_node = NULL;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000340 struct neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000341 struct icmp_packet *icmp_packet;
Marek Lindner44524fc2011-02-10 14:33:53 +0000342 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000343
344 icmp_packet = (struct icmp_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000345
346 /* send TTL exceeded if packet is an echo request (traceroute) */
347 if (icmp_packet->msg_type != ECHO_REQUEST) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100348 pr_debug("Warning - can't forward icmp packet from %pM to %pM: ttl exceeded\n",
349 icmp_packet->orig, icmp_packet->dst);
Marek Lindner44524fc2011-02-10 14:33:53 +0000350 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000351 }
352
Marek Lindner32ae9b22011-04-20 15:40:58 +0200353 primary_if = primary_if_get_selected(bat_priv);
354 if (!primary_if)
Marek Lindner44524fc2011-02-10 14:33:53 +0000355 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000356
357 /* get routing information */
Marek Lindner7aadf882011-02-18 12:28:09 +0000358 orig_node = orig_hash_find(bat_priv, icmp_packet->orig);
Marek Lindner44524fc2011-02-10 14:33:53 +0000359 if (!orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000360 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +0000361
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200362 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000363 if (!router)
364 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000365
Marek Lindner44524fc2011-02-10 14:33:53 +0000366 /* create a copy of the skb, if needed, to modify it. */
Antonio Quartulli0d125072012-02-18 11:27:34 +0100367 if (skb_cow(skb, ETH_HLEN) < 0)
Marek Lindner44524fc2011-02-10 14:33:53 +0000368 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000369
Marek Lindner44524fc2011-02-10 14:33:53 +0000370 icmp_packet = (struct icmp_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000371
Marek Lindner44524fc2011-02-10 14:33:53 +0000372 memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200373 memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
Marek Lindner44524fc2011-02-10 14:33:53 +0000374 icmp_packet->msg_type = TTL_EXCEEDED;
Sven Eckelmann76543d12011-11-20 15:47:38 +0100375 icmp_packet->header.ttl = TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000376
Sven Eckelmann9455e342012-05-12 02:09:37 +0200377 batadv_send_skb_packet(skb, router->if_incoming, router->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000378 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000379
Marek Lindner44524fc2011-02-10 14:33:53 +0000380out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200381 if (primary_if)
382 hardif_free_ref(primary_if);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000383 if (router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200384 batadv_neigh_node_free_ref(router);
Marek Lindner44524fc2011-02-10 14:33:53 +0000385 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200386 batadv_orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000387 return ret;
388}
389
390
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200391int batadv_recv_icmp_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000392{
393 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
394 struct icmp_packet_rr *icmp_packet;
395 struct ethhdr *ethhdr;
Marek Lindner44524fc2011-02-10 14:33:53 +0000396 struct orig_node *orig_node = NULL;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000397 struct neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000398 int hdr_size = sizeof(struct icmp_packet);
Marek Lindner44524fc2011-02-10 14:33:53 +0000399 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000400
401 /**
402 * we truncate all incoming icmp packets if they don't match our size
403 */
404 if (skb->len >= sizeof(struct icmp_packet_rr))
405 hdr_size = sizeof(struct icmp_packet_rr);
406
407 /* drop packet if it has not necessary minimum size */
408 if (unlikely(!pskb_may_pull(skb, hdr_size)))
Marek Lindner44524fc2011-02-10 14:33:53 +0000409 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000410
411 ethhdr = (struct ethhdr *)skb_mac_header(skb);
412
413 /* packet with unicast indication but broadcast recipient */
414 if (is_broadcast_ether_addr(ethhdr->h_dest))
Marek Lindner44524fc2011-02-10 14:33:53 +0000415 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000416
417 /* packet with broadcast sender address */
418 if (is_broadcast_ether_addr(ethhdr->h_source))
Marek Lindner44524fc2011-02-10 14:33:53 +0000419 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000420
421 /* not for me */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200422 if (!batadv_is_my_mac(ethhdr->h_dest))
Marek Lindner44524fc2011-02-10 14:33:53 +0000423 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000424
425 icmp_packet = (struct icmp_packet_rr *)skb->data;
426
427 /* add record route information if not full */
428 if ((hdr_size == sizeof(struct icmp_packet_rr)) &&
429 (icmp_packet->rr_cur < BAT_RR_LEN)) {
430 memcpy(&(icmp_packet->rr[icmp_packet->rr_cur]),
Sven Eckelmann7c64fd92012-02-28 10:55:36 +0100431 ethhdr->h_dest, ETH_ALEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000432 icmp_packet->rr_cur++;
433 }
434
435 /* packet for me */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200436 if (batadv_is_my_mac(icmp_packet->dst))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000437 return recv_my_icmp_packet(bat_priv, skb, hdr_size);
438
439 /* TTL exceeded */
Sven Eckelmann76543d12011-11-20 15:47:38 +0100440 if (icmp_packet->header.ttl < 2)
Simon Wunderlich74ef1152010-12-29 16:15:19 +0000441 return recv_icmp_ttl_exceeded(bat_priv, skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000442
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000443 /* get routing information */
Marek Lindner7aadf882011-02-18 12:28:09 +0000444 orig_node = orig_hash_find(bat_priv, icmp_packet->dst);
Marek Lindner44524fc2011-02-10 14:33:53 +0000445 if (!orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000446 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +0000447
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200448 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000449 if (!router)
450 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000451
Marek Lindner44524fc2011-02-10 14:33:53 +0000452 /* create a copy of the skb, if needed, to modify it. */
Antonio Quartulli0d125072012-02-18 11:27:34 +0100453 if (skb_cow(skb, ETH_HLEN) < 0)
Marek Lindner44524fc2011-02-10 14:33:53 +0000454 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000455
Marek Lindner44524fc2011-02-10 14:33:53 +0000456 icmp_packet = (struct icmp_packet_rr *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000457
Marek Lindner44524fc2011-02-10 14:33:53 +0000458 /* decrement ttl */
Sven Eckelmann76543d12011-11-20 15:47:38 +0100459 icmp_packet->header.ttl--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000460
Marek Lindner44524fc2011-02-10 14:33:53 +0000461 /* route it */
Sven Eckelmann9455e342012-05-12 02:09:37 +0200462 batadv_send_skb_packet(skb, router->if_incoming, router->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000463 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000464
Marek Lindner44524fc2011-02-10 14:33:53 +0000465out:
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000466 if (router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200467 batadv_neigh_node_free_ref(router);
Marek Lindner44524fc2011-02-10 14:33:53 +0000468 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200469 batadv_orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000470 return ret;
471}
472
Linus Lüssing55158622011-03-14 22:43:27 +0000473/* In the bonding case, send the packets in a round
474 * robin fashion over the remaining interfaces.
475 *
476 * This method rotates the bonding list and increases the
477 * returned router's refcount. */
478static struct neigh_node *find_bond_router(struct orig_node *primary_orig,
Sven Eckelmann747e4222011-05-14 23:14:50 +0200479 const struct hard_iface *recv_if)
Linus Lüssing55158622011-03-14 22:43:27 +0000480{
481 struct neigh_node *tmp_neigh_node;
482 struct neigh_node *router = NULL, *first_candidate = NULL;
483
484 rcu_read_lock();
485 list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list,
486 bonding_list) {
487 if (!first_candidate)
488 first_candidate = tmp_neigh_node;
489
490 /* recv_if == NULL on the first node. */
491 if (tmp_neigh_node->if_incoming == recv_if)
492 continue;
493
494 if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
495 continue;
496
497 router = tmp_neigh_node;
498 break;
499 }
500
501 /* use the first candidate if nothing was found. */
502 if (!router && first_candidate &&
503 atomic_inc_not_zero(&first_candidate->refcount))
504 router = first_candidate;
505
506 if (!router)
507 goto out;
508
509 /* selected should point to the next element
510 * after the current router */
511 spin_lock_bh(&primary_orig->neigh_list_lock);
512 /* this is a list_move(), which unfortunately
513 * does not exist as rcu version */
514 list_del_rcu(&primary_orig->bond_list);
515 list_add_rcu(&primary_orig->bond_list,
516 &router->bonding_list);
517 spin_unlock_bh(&primary_orig->neigh_list_lock);
518
519out:
520 rcu_read_unlock();
521 return router;
522}
523
524/* Interface Alternating: Use the best of the
525 * remaining candidates which are not using
526 * this interface.
527 *
528 * Increases the returned router's refcount */
529static struct neigh_node *find_ifalter_router(struct orig_node *primary_orig,
Sven Eckelmann747e4222011-05-14 23:14:50 +0200530 const struct hard_iface *recv_if)
Linus Lüssing55158622011-03-14 22:43:27 +0000531{
532 struct neigh_node *tmp_neigh_node;
533 struct neigh_node *router = NULL, *first_candidate = NULL;
534
535 rcu_read_lock();
536 list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list,
537 bonding_list) {
538 if (!first_candidate)
539 first_candidate = tmp_neigh_node;
540
541 /* recv_if == NULL on the first node. */
542 if (tmp_neigh_node->if_incoming == recv_if)
543 continue;
544
545 if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
546 continue;
547
548 /* if we don't have a router yet
549 * or this one is better, choose it. */
550 if ((!router) ||
551 (tmp_neigh_node->tq_avg > router->tq_avg)) {
552 /* decrement refcount of
553 * previously selected router */
554 if (router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200555 batadv_neigh_node_free_ref(router);
Linus Lüssing55158622011-03-14 22:43:27 +0000556
557 router = tmp_neigh_node;
558 atomic_inc_not_zero(&router->refcount);
559 }
560
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200561 batadv_neigh_node_free_ref(tmp_neigh_node);
Linus Lüssing55158622011-03-14 22:43:27 +0000562 }
563
564 /* use the first candidate if nothing was found. */
565 if (!router && first_candidate &&
566 atomic_inc_not_zero(&first_candidate->refcount))
567 router = first_candidate;
568
569 rcu_read_unlock();
570 return router;
571}
572
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200573int batadv_recv_tt_query(struct sk_buff *skb, struct hard_iface *recv_if)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200574{
575 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
576 struct tt_query_packet *tt_query;
Al Virof25bd582012-04-22 07:44:27 +0100577 uint16_t tt_size;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200578 struct ethhdr *ethhdr;
579
580 /* drop packet if it has not necessary minimum size */
581 if (unlikely(!pskb_may_pull(skb, sizeof(struct tt_query_packet))))
582 goto out;
583
584 /* I could need to modify it */
585 if (skb_cow(skb, sizeof(struct tt_query_packet)) < 0)
586 goto out;
587
588 ethhdr = (struct ethhdr *)skb_mac_header(skb);
589
590 /* packet with unicast indication but broadcast recipient */
591 if (is_broadcast_ether_addr(ethhdr->h_dest))
592 goto out;
593
594 /* packet with broadcast sender address */
595 if (is_broadcast_ether_addr(ethhdr->h_source))
596 goto out;
597
598 tt_query = (struct tt_query_packet *)skb->data;
599
Antonio Quartullia73105b2011-04-27 14:27:44 +0200600 switch (tt_query->flags & TT_QUERY_TYPE_MASK) {
601 case TT_REQUEST:
Martin Hundebøllf8214862012-04-20 17:02:45 +0200602 batadv_inc_counter(bat_priv, BAT_CNT_TT_REQUEST_RX);
603
Antonio Quartullia73105b2011-04-27 14:27:44 +0200604 /* If we cannot provide an answer the tt_request is
605 * forwarded */
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200606 if (!batadv_send_tt_response(bat_priv, tt_query)) {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200607 bat_dbg(DBG_TT, bat_priv,
608 "Routing TT_REQUEST to %pM [%c]\n",
609 tt_query->dst,
610 (tt_query->flags & TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +0200611 return route_unicast_packet(skb, recv_if);
612 }
613 break;
614 case TT_RESPONSE:
Martin Hundebøllf8214862012-04-20 17:02:45 +0200615 batadv_inc_counter(bat_priv, BAT_CNT_TT_RESPONSE_RX);
616
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200617 if (batadv_is_my_mac(tt_query->dst)) {
Antonio Quartullidc58fe32011-10-16 20:32:02 +0200618 /* packet needs to be linearized to access the TT
619 * changes */
620 if (skb_linearize(skb) < 0)
621 goto out;
Antonio Quartullid2b6cc82012-06-14 22:21:28 +0200622 /* skb_linearize() possibly changed skb->data */
623 tt_query = (struct tt_query_packet *)skb->data;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200624
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200625 tt_size = batadv_tt_len(ntohs(tt_query->tt_data));
Antonio Quartulli8b7342d2011-10-16 20:32:03 +0200626
627 /* Ensure we have all the claimed data */
628 if (unlikely(skb_headlen(skb) <
Al Virof25bd582012-04-22 07:44:27 +0100629 sizeof(struct tt_query_packet) + tt_size))
Antonio Quartulli8b7342d2011-10-16 20:32:03 +0200630 goto out;
631
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200632 batadv_handle_tt_response(bat_priv, tt_query);
Antonio Quartullidc58fe32011-10-16 20:32:02 +0200633 } else {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200634 bat_dbg(DBG_TT, bat_priv,
635 "Routing TT_RESPONSE to %pM [%c]\n",
636 tt_query->dst,
637 (tt_query->flags & TT_FULL_TABLE ? 'F' : '.'));
Antonio Quartullia73105b2011-04-27 14:27:44 +0200638 return route_unicast_packet(skb, recv_if);
639 }
640 break;
641 }
642
643out:
644 /* returning NET_RX_DROP will make the caller function kfree the skb */
645 return NET_RX_DROP;
646}
647
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200648int batadv_recv_roam_adv(struct sk_buff *skb, struct hard_iface *recv_if)
Antonio Quartullicc47f662011-04-27 14:27:57 +0200649{
650 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
651 struct roam_adv_packet *roam_adv_packet;
652 struct orig_node *orig_node;
653 struct ethhdr *ethhdr;
654
655 /* drop packet if it has not necessary minimum size */
656 if (unlikely(!pskb_may_pull(skb, sizeof(struct roam_adv_packet))))
657 goto out;
658
659 ethhdr = (struct ethhdr *)skb_mac_header(skb);
660
661 /* packet with unicast indication but broadcast recipient */
662 if (is_broadcast_ether_addr(ethhdr->h_dest))
663 goto out;
664
665 /* packet with broadcast sender address */
666 if (is_broadcast_ether_addr(ethhdr->h_source))
667 goto out;
668
Martin Hundebøllf8214862012-04-20 17:02:45 +0200669 batadv_inc_counter(bat_priv, BAT_CNT_TT_ROAM_ADV_RX);
670
Antonio Quartullicc47f662011-04-27 14:27:57 +0200671 roam_adv_packet = (struct roam_adv_packet *)skb->data;
672
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200673 if (!batadv_is_my_mac(roam_adv_packet->dst))
Antonio Quartullicc47f662011-04-27 14:27:57 +0200674 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 */
Sven Eckelmann08adf152012-05-12 13:38:47 +0200680 if (batadv_bla_is_backbone_gw_orig(bat_priv, roam_adv_packet->src))
Simon Wunderlich20ff9d52012-01-22 20:00:23 +0100681 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
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200691 batadv_tt_global_add(bat_priv, orig_node, roam_adv_packet->client,
692 atomic_read(&orig_node->last_ttvn) + 1, true,
693 false);
Antonio Quartullicc47f662011-04-27 14:27:57 +0200694
695 /* Roaming phase starts: I have new information but the ttvn has not
696 * been incremented yet. This flag will make me check all the incoming
697 * packets for the correct destination. */
698 bat_priv->tt_poss_change = true;
699
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200700 batadv_orig_node_free_ref(orig_node);
Antonio Quartullicc47f662011-04-27 14:27:57 +0200701out:
702 /* returning NET_RX_DROP will make the caller function kfree the skb */
703 return NET_RX_DROP;
704}
705
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000706/* find a suitable router for this originator, and use
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000707 * bonding if possible. increases the found neighbors
708 * refcount.*/
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200709struct neigh_node *batadv_find_router(struct bat_priv *bat_priv,
710 struct orig_node *orig_node,
711 const struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000712{
713 struct orig_node *primary_orig_node;
714 struct orig_node *router_orig;
Linus Lüssing55158622011-03-14 22:43:27 +0000715 struct neigh_node *router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000716 static uint8_t zero_mac[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
717 int bonding_enabled;
718
719 if (!orig_node)
720 return NULL;
721
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200722 router = batadv_orig_node_get_router(orig_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000723 if (!router)
Marek Lindner01df2b62011-05-05 14:14:46 +0200724 goto err;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000725
726 /* without bonding, the first node should
727 * always choose the default router. */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000728 bonding_enabled = atomic_read(&bat_priv->bonding);
729
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000730 rcu_read_lock();
731 /* select default router to output */
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000732 router_orig = router->orig_node;
Marek Lindner01df2b62011-05-05 14:14:46 +0200733 if (!router_orig)
734 goto err_unlock;
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000735
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000736 if ((!recv_if) && (!bonding_enabled))
737 goto return_router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000738
739 /* if we have something in the primary_addr, we can search
740 * for a potential bonding candidate. */
Marek Lindner39901e72011-02-18 12:28:08 +0000741 if (compare_eth(router_orig->primary_addr, zero_mac))
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000742 goto return_router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000743
744 /* find the orig_node which has the primary interface. might
745 * even be the same as our router_orig in many cases */
746
Marek Lindner39901e72011-02-18 12:28:08 +0000747 if (compare_eth(router_orig->primary_addr, router_orig->orig)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000748 primary_orig_node = router_orig;
749 } else {
Marek Lindner7aadf882011-02-18 12:28:09 +0000750 primary_orig_node = orig_hash_find(bat_priv,
751 router_orig->primary_addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000752 if (!primary_orig_node)
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000753 goto return_router;
Marek Lindner7aadf882011-02-18 12:28:09 +0000754
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200755 batadv_orig_node_free_ref(primary_orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000756 }
757
758 /* with less than 2 candidates, we can't do any
759 * bonding and prefer the original router. */
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000760 if (atomic_read(&primary_orig_node->bond_candidates) < 2)
761 goto return_router;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000762
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000763 /* all nodes between should choose a candidate which
764 * is is not on the interface where the packet came
765 * in. */
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000766
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200767 batadv_neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000768
Linus Lüssing55158622011-03-14 22:43:27 +0000769 if (bonding_enabled)
770 router = find_bond_router(primary_orig_node, recv_if);
771 else
772 router = find_ifalter_router(primary_orig_node, recv_if);
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000773
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000774return_router:
Antonio Quartullie2cbc112011-05-08 20:52:57 +0200775 if (router && router->if_incoming->if_status != IF_ACTIVE)
776 goto err_unlock;
777
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000778 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000779 return router;
Marek Lindner01df2b62011-05-05 14:14:46 +0200780err_unlock:
781 rcu_read_unlock();
782err:
783 if (router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200784 batadv_neigh_node_free_ref(router);
Marek Lindner01df2b62011-05-05 14:14:46 +0200785 return NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000786}
787
788static int check_unicast_packet(struct sk_buff *skb, int hdr_size)
789{
790 struct ethhdr *ethhdr;
791
792 /* drop packet if it has not necessary minimum size */
793 if (unlikely(!pskb_may_pull(skb, hdr_size)))
794 return -1;
795
796 ethhdr = (struct ethhdr *)skb_mac_header(skb);
797
798 /* packet with unicast indication but broadcast recipient */
799 if (is_broadcast_ether_addr(ethhdr->h_dest))
800 return -1;
801
802 /* packet with broadcast sender address */
803 if (is_broadcast_ether_addr(ethhdr->h_source))
804 return -1;
805
806 /* not for me */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200807 if (!batadv_is_my_mac(ethhdr->h_dest))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000808 return -1;
809
810 return 0;
811}
812
Simon Wunderlicha7f6ee92012-01-22 20:00:18 +0100813static int route_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000814{
815 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
Marek Lindner44524fc2011-02-10 14:33:53 +0000816 struct orig_node *orig_node = NULL;
817 struct neigh_node *neigh_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000818 struct unicast_packet *unicast_packet;
819 struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb);
Marek Lindner44524fc2011-02-10 14:33:53 +0000820 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000821 struct sk_buff *new_skb;
822
823 unicast_packet = (struct unicast_packet *)skb->data;
824
825 /* TTL exceeded */
Sven Eckelmann76543d12011-11-20 15:47:38 +0100826 if (unicast_packet->header.ttl < 2) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100827 pr_debug("Warning - can't forward unicast packet from %pM to %pM: ttl exceeded\n",
828 ethhdr->h_source, unicast_packet->dest);
Marek Lindner44524fc2011-02-10 14:33:53 +0000829 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000830 }
831
832 /* get routing information */
Marek Lindner7aadf882011-02-18 12:28:09 +0000833 orig_node = orig_hash_find(bat_priv, unicast_packet->dest);
834
Marek Lindner44524fc2011-02-10 14:33:53 +0000835 if (!orig_node)
Antonio Quartullib5a6f692011-04-16 11:30:57 +0200836 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000837
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000838 /* find_router() increases neigh_nodes refcount if found. */
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200839 neigh_node = batadv_find_router(bat_priv, orig_node, recv_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000840
Marek Lindnerd0072602011-01-19 20:01:44 +0000841 if (!neigh_node)
Marek Lindner44524fc2011-02-10 14:33:53 +0000842 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000843
844 /* create a copy of the skb, if needed, to modify it. */
Antonio Quartulli0d125072012-02-18 11:27:34 +0100845 if (skb_cow(skb, ETH_HLEN) < 0)
Marek Lindner44524fc2011-02-10 14:33:53 +0000846 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000847
848 unicast_packet = (struct unicast_packet *)skb->data;
849
Sven Eckelmann76543d12011-11-20 15:47:38 +0100850 if (unicast_packet->header.packet_type == BAT_UNICAST &&
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000851 atomic_read(&bat_priv->fragmentation) &&
Marek Lindnerd0072602011-01-19 20:01:44 +0000852 skb->len > neigh_node->if_incoming->net_dev->mtu) {
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200853 ret = batadv_frag_send_skb(skb, bat_priv,
854 neigh_node->if_incoming,
855 neigh_node->addr);
Marek Lindnerd0072602011-01-19 20:01:44 +0000856 goto out;
857 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000858
Sven Eckelmann76543d12011-11-20 15:47:38 +0100859 if (unicast_packet->header.packet_type == BAT_UNICAST_FRAG &&
Marek Lindnerd0072602011-01-19 20:01:44 +0000860 frag_can_reassemble(skb, neigh_node->if_incoming->net_dev->mtu)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000861
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200862 ret = batadv_frag_reassemble_skb(skb, bat_priv, &new_skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000863
864 if (ret == NET_RX_DROP)
Marek Lindner44524fc2011-02-10 14:33:53 +0000865 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000866
867 /* packet was buffered for late merge */
Marek Lindner44524fc2011-02-10 14:33:53 +0000868 if (!new_skb) {
869 ret = NET_RX_SUCCESS;
870 goto out;
871 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000872
873 skb = new_skb;
874 unicast_packet = (struct unicast_packet *)skb->data;
875 }
876
877 /* decrement ttl */
Sven Eckelmann76543d12011-11-20 15:47:38 +0100878 unicast_packet->header.ttl--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000879
Martin Hundebøllf8214862012-04-20 17:02:45 +0200880 /* Update stats counter */
881 batadv_inc_counter(bat_priv, BAT_CNT_FORWARD);
882 batadv_add_counter(bat_priv, BAT_CNT_FORWARD_BYTES,
883 skb->len + ETH_HLEN);
884
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000885 /* route it */
Sven Eckelmann9455e342012-05-12 02:09:37 +0200886 batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000887 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000888
Marek Lindner44524fc2011-02-10 14:33:53 +0000889out:
890 if (neigh_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200891 batadv_neigh_node_free_ref(neigh_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000892 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200893 batadv_orig_node_free_ref(orig_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000894 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000895}
896
Antonio Quartullia73105b2011-04-27 14:27:44 +0200897static int check_unicast_ttvn(struct bat_priv *bat_priv,
898 struct sk_buff *skb) {
899 uint8_t curr_ttvn;
900 struct orig_node *orig_node;
901 struct ethhdr *ethhdr;
902 struct hard_iface *primary_if;
903 struct unicast_packet *unicast_packet;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200904 bool tt_poss_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200905
906 /* I could need to modify it */
907 if (skb_cow(skb, sizeof(struct unicast_packet)) < 0)
908 return 0;
909
910 unicast_packet = (struct unicast_packet *)skb->data;
911
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200912 if (batadv_is_my_mac(unicast_packet->dest)) {
Antonio Quartullicc47f662011-04-27 14:27:57 +0200913 tt_poss_change = bat_priv->tt_poss_change;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200914 curr_ttvn = (uint8_t)atomic_read(&bat_priv->ttvn);
Antonio Quartullicc47f662011-04-27 14:27:57 +0200915 } else {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200916 orig_node = orig_hash_find(bat_priv, unicast_packet->dest);
917
918 if (!orig_node)
919 return 0;
920
921 curr_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
Antonio Quartullicc47f662011-04-27 14:27:57 +0200922 tt_poss_change = orig_node->tt_poss_change;
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200923 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200924 }
925
926 /* Check whether I have to reroute the packet */
Antonio Quartullicc47f662011-04-27 14:27:57 +0200927 if (seq_before(unicast_packet->ttvn, curr_ttvn) || tt_poss_change) {
Antonio Quartulli8710e262012-03-16 11:52:31 +0100928 /* check if there is enough data before accessing it */
929 if (pskb_may_pull(skb, sizeof(struct unicast_packet) +
930 ETH_HLEN) < 0)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200931 return 0;
932
933 ethhdr = (struct ethhdr *)(skb->data +
934 sizeof(struct unicast_packet));
Antonio Quartulli3275e7c2012-03-16 18:03:28 +0100935
936 /* we don't have an updated route for this client, so we should
937 * not try to reroute the packet!!
938 */
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200939 if (batadv_tt_global_client_is_roaming(bat_priv,
940 ethhdr->h_dest))
Antonio Quartulli3275e7c2012-03-16 18:03:28 +0100941 return 1;
942
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200943 orig_node = batadv_transtable_search(bat_priv, NULL,
944 ethhdr->h_dest);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200945
946 if (!orig_node) {
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200947 if (!batadv_is_my_client(bat_priv, ethhdr->h_dest))
Antonio Quartullia73105b2011-04-27 14:27:44 +0200948 return 0;
949 primary_if = primary_if_get_selected(bat_priv);
950 if (!primary_if)
951 return 0;
952 memcpy(unicast_packet->dest,
953 primary_if->net_dev->dev_addr, ETH_ALEN);
954 hardif_free_ref(primary_if);
955 } else {
956 memcpy(unicast_packet->dest, orig_node->orig,
957 ETH_ALEN);
958 curr_ttvn = (uint8_t)
959 atomic_read(&orig_node->last_ttvn);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200960 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200961 }
962
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100963 bat_dbg(DBG_ROUTES, bat_priv,
964 "TTVN mismatch (old_ttvn %u new_ttvn %u)! Rerouting unicast packet (for %pM) to %pM\n",
965 unicast_packet->ttvn, curr_ttvn, ethhdr->h_dest,
966 unicast_packet->dest);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200967
968 unicast_packet->ttvn = curr_ttvn;
969 }
970 return 1;
971}
972
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200973int batadv_recv_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000974{
Antonio Quartullia73105b2011-04-27 14:27:44 +0200975 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000976 struct unicast_packet *unicast_packet;
Sven Eckelmann704509b2011-05-14 23:14:54 +0200977 int hdr_size = sizeof(*unicast_packet);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000978
979 if (check_unicast_packet(skb, hdr_size) < 0)
980 return NET_RX_DROP;
981
Antonio Quartullia73105b2011-04-27 14:27:44 +0200982 if (!check_unicast_ttvn(bat_priv, skb))
983 return NET_RX_DROP;
984
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000985 unicast_packet = (struct unicast_packet *)skb->data;
986
987 /* packet for me */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200988 if (batadv_is_my_mac(unicast_packet->dest)) {
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200989 batadv_interface_rx(recv_if->soft_iface, skb, recv_if,
990 hdr_size);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000991 return NET_RX_SUCCESS;
992 }
993
Linus Lüssing7cefb142011-03-02 17:39:31 +0000994 return route_unicast_packet(skb, recv_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000995}
996
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200997int batadv_recv_ucast_frag_packet(struct sk_buff *skb,
998 struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000999{
1000 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1001 struct unicast_frag_packet *unicast_packet;
Sven Eckelmann704509b2011-05-14 23:14:54 +02001002 int hdr_size = sizeof(*unicast_packet);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001003 struct sk_buff *new_skb = NULL;
1004 int ret;
1005
1006 if (check_unicast_packet(skb, hdr_size) < 0)
1007 return NET_RX_DROP;
1008
Antonio Quartullia73105b2011-04-27 14:27:44 +02001009 if (!check_unicast_ttvn(bat_priv, skb))
1010 return NET_RX_DROP;
1011
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001012 unicast_packet = (struct unicast_frag_packet *)skb->data;
1013
1014 /* packet for me */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001015 if (batadv_is_my_mac(unicast_packet->dest)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001016
Sven Eckelmann88ed1e772012-05-12 02:09:40 +02001017 ret = batadv_frag_reassemble_skb(skb, bat_priv, &new_skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001018
1019 if (ret == NET_RX_DROP)
1020 return NET_RX_DROP;
1021
1022 /* packet was buffered for late merge */
1023 if (!new_skb)
1024 return NET_RX_SUCCESS;
1025
Sven Eckelmann04b482a2012-05-12 02:09:38 +02001026 batadv_interface_rx(recv_if->soft_iface, new_skb, recv_if,
1027 sizeof(struct unicast_packet));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001028 return NET_RX_SUCCESS;
1029 }
1030
Linus Lüssing7cefb142011-03-02 17:39:31 +00001031 return route_unicast_packet(skb, recv_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001032}
1033
1034
Sven Eckelmann30d3c512012-05-12 02:09:36 +02001035int batadv_recv_bcast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001036{
1037 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001038 struct orig_node *orig_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001039 struct bcast_packet *bcast_packet;
1040 struct ethhdr *ethhdr;
Sven Eckelmann704509b2011-05-14 23:14:54 +02001041 int hdr_size = sizeof(*bcast_packet);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001042 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001043 int32_t seq_diff;
1044
1045 /* drop packet if it has not necessary minimum size */
1046 if (unlikely(!pskb_may_pull(skb, hdr_size)))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001047 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001048
1049 ethhdr = (struct ethhdr *)skb_mac_header(skb);
1050
1051 /* packet with broadcast indication but unicast recipient */
1052 if (!is_broadcast_ether_addr(ethhdr->h_dest))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001053 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001054
1055 /* packet with broadcast sender address */
1056 if (is_broadcast_ether_addr(ethhdr->h_source))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001057 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001058
1059 /* ignore broadcasts sent by myself */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001060 if (batadv_is_my_mac(ethhdr->h_source))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001061 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001062
1063 bcast_packet = (struct bcast_packet *)skb->data;
1064
1065 /* ignore broadcasts originated by myself */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001066 if (batadv_is_my_mac(bcast_packet->orig))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001067 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001068
Sven Eckelmann76543d12011-11-20 15:47:38 +01001069 if (bcast_packet->header.ttl < 2)
Marek Lindnerf3e00082011-01-25 21:52:11 +00001070 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001071
Marek Lindner7aadf882011-02-18 12:28:09 +00001072 orig_node = orig_hash_find(bat_priv, bcast_packet->orig);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001073
1074 if (!orig_node)
Antonio Quartullib5a6f692011-04-16 11:30:57 +02001075 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001076
Marek Lindnerf3e00082011-01-25 21:52:11 +00001077 spin_lock_bh(&orig_node->bcast_seqno_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001078
1079 /* check whether the packet is a duplicate */
Sven Eckelmann0079d2c2012-02-04 17:34:52 +01001080 if (bat_test_bit(orig_node->bcast_bits, orig_node->last_bcast_seqno,
1081 ntohl(bcast_packet->seqno)))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001082 goto spin_unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001083
1084 seq_diff = ntohl(bcast_packet->seqno) - orig_node->last_bcast_seqno;
1085
1086 /* check whether the packet is old and the host just restarted. */
Sven Eckelmann30d3c512012-05-12 02:09:36 +02001087 if (batadv_window_protected(bat_priv, seq_diff,
1088 &orig_node->bcast_seqno_reset))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001089 goto spin_unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001090
1091 /* mark broadcast in flood history, update window position
1092 * if required. */
Sven Eckelmann0f5f9322012-05-12 02:09:25 +02001093 if (batadv_bit_get_packet(bat_priv, orig_node->bcast_bits, seq_diff, 1))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001094 orig_node->last_bcast_seqno = ntohl(bcast_packet->seqno);
1095
Marek Lindnerf3e00082011-01-25 21:52:11 +00001096 spin_unlock_bh(&orig_node->bcast_seqno_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001097
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001098 /* check whether this has been sent by another originator before */
Sven Eckelmann08adf152012-05-12 13:38:47 +02001099 if (batadv_bla_check_bcast_duplist(bat_priv, bcast_packet, hdr_size))
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001100 goto out;
1101
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001102 /* rebroadcast packet */
Sven Eckelmann9455e342012-05-12 02:09:37 +02001103 batadv_add_bcast_packet_to_list(bat_priv, skb, 1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001104
Simon Wunderlich23721382012-01-22 20:00:19 +01001105 /* don't hand the broadcast up if it is from an originator
1106 * from the same backbone.
1107 */
Sven Eckelmann08adf152012-05-12 13:38:47 +02001108 if (batadv_bla_is_backbone_gw(skb, orig_node, hdr_size))
Simon Wunderlich23721382012-01-22 20:00:19 +01001109 goto out;
1110
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001111 /* broadcast for me */
Sven Eckelmann04b482a2012-05-12 02:09:38 +02001112 batadv_interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001113 ret = NET_RX_SUCCESS;
1114 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001115
Marek Lindnerf3e00082011-01-25 21:52:11 +00001116spin_unlock:
1117 spin_unlock_bh(&orig_node->bcast_seqno_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001118out:
1119 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001120 batadv_orig_node_free_ref(orig_node);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001121 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001122}
1123
Sven Eckelmann30d3c512012-05-12 02:09:36 +02001124int batadv_recv_vis_packet(struct sk_buff *skb, struct hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001125{
1126 struct vis_packet *vis_packet;
1127 struct ethhdr *ethhdr;
1128 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
Sven Eckelmann704509b2011-05-14 23:14:54 +02001129 int hdr_size = sizeof(*vis_packet);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001130
1131 /* keep skb linear */
1132 if (skb_linearize(skb) < 0)
1133 return NET_RX_DROP;
1134
1135 if (unlikely(!pskb_may_pull(skb, hdr_size)))
1136 return NET_RX_DROP;
1137
1138 vis_packet = (struct vis_packet *)skb->data;
1139 ethhdr = (struct ethhdr *)skb_mac_header(skb);
1140
1141 /* not for me */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001142 if (!batadv_is_my_mac(ethhdr->h_dest))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001143 return NET_RX_DROP;
1144
1145 /* ignore own packets */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001146 if (batadv_is_my_mac(vis_packet->vis_orig))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001147 return NET_RX_DROP;
1148
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001149 if (batadv_is_my_mac(vis_packet->sender_orig))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001150 return NET_RX_DROP;
1151
1152 switch (vis_packet->vis_type) {
1153 case VIS_TYPE_SERVER_SYNC:
Sven Eckelmannd0f714f2012-05-12 02:09:41 +02001154 batadv_receive_server_sync_packet(bat_priv, vis_packet,
1155 skb_headlen(skb));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001156 break;
1157
1158 case VIS_TYPE_CLIENT_UPDATE:
Sven Eckelmannd0f714f2012-05-12 02:09:41 +02001159 batadv_receive_client_update_packet(bat_priv, vis_packet,
1160 skb_headlen(skb));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001161 break;
1162
1163 default: /* ignore unknown packet */
1164 break;
1165 }
1166
1167 /* We take a copy of the data in the packet, so we should
1168 always free the skbuf. */
1169 return NET_RX_DROP;
1170}