batman-adv: Convert batadv_neigh_ifinfo to kref
[deliverable/linux.git] / net / batman-adv / routing.c
CommitLineData
0046b040 1/* Copyright (C) 2007-2016 B.A.T.M.A.N. contributors:
c6c8fea2
SE
2 *
3 * Marek Lindner, Simon Wunderlich
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
ebf38fb7 15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
c6c8fea2
SE
16 */
17
c6c8fea2 18#include "routing.h"
1e2c2a4f
SE
19#include "main.h"
20
21#include <linux/atomic.h>
22#include <linux/byteorder/generic.h>
23#include <linux/compiler.h>
24#include <linux/errno.h>
25#include <linux/etherdevice.h>
26#include <linux/if_ether.h>
27#include <linux/jiffies.h>
28#include <linux/netdevice.h>
29#include <linux/printk.h>
30#include <linux/rculist.h>
31#include <linux/rcupdate.h>
32#include <linux/skbuff.h>
33#include <linux/spinlock.h>
34#include <linux/stddef.h>
35
36#include "bitarray.h"
23721387 37#include "bridge_loop_avoidance.h"
c384ea3e 38#include "distributed-arp-table.h"
610bfc6b 39#include "fragmentation.h"
1e2c2a4f
SE
40#include "hard-interface.h"
41#include "icmp_socket.h"
42#include "network-coding.h"
43#include "originator.h"
44#include "packet.h"
45#include "send.h"
46#include "soft-interface.h"
47#include "translation-table.h"
c018ad3d 48
63b01037 49static int batadv_route_unicast_packet(struct sk_buff *skb,
56303d34 50 struct batadv_hard_iface *recv_if);
a7f6ee94 51
7351a482
SW
52/**
53 * _batadv_update_route - set the router for this originator
54 * @bat_priv: the bat priv with all the soft interface information
55 * @orig_node: orig node which is to be configured
56 * @recv_if: the receive interface for which this route is set
57 * @neigh_node: neighbor which should be the next router
58 *
59 * This function does not perform any error checks
60 */
56303d34
SE
61static void _batadv_update_route(struct batadv_priv *bat_priv,
62 struct batadv_orig_node *orig_node,
7351a482 63 struct batadv_hard_iface *recv_if,
56303d34 64 struct batadv_neigh_node *neigh_node)
c6c8fea2 65{
7351a482 66 struct batadv_orig_ifinfo *orig_ifinfo;
56303d34 67 struct batadv_neigh_node *curr_router;
e1a5382f 68
7351a482
SW
69 orig_ifinfo = batadv_orig_ifinfo_get(orig_node, recv_if);
70 if (!orig_ifinfo)
71 return;
72
73 rcu_read_lock();
74 curr_router = rcu_dereference(orig_ifinfo->router);
75 if (curr_router && !atomic_inc_not_zero(&curr_router->refcount))
76 curr_router = NULL;
77 rcu_read_unlock();
a8e7f4bc 78
c6c8fea2 79 /* route deleted */
e1a5382f 80 if ((curr_router) && (!neigh_node)) {
39c75a51
SE
81 batadv_dbg(BATADV_DBG_ROUTES, bat_priv,
82 "Deleting route towards: %pM\n", orig_node->orig);
95fb130d 83 batadv_tt_global_del_orig(bat_priv, orig_node, -1,
08c36d3e 84 "Deleted route towards originator");
c6c8fea2 85
e1a5382f
LL
86 /* route added */
87 } else if ((!curr_router) && (neigh_node)) {
39c75a51 88 batadv_dbg(BATADV_DBG_ROUTES, bat_priv,
1eda58bf
SE
89 "Adding route towards: %pM (via %pM)\n",
90 orig_node->orig, neigh_node->addr);
e1a5382f 91 /* route changed */
bb899b89 92 } else if (neigh_node && curr_router) {
39c75a51 93 batadv_dbg(BATADV_DBG_ROUTES, bat_priv,
1eda58bf
SE
94 "Changing route towards: %pM (now via %pM - was via %pM)\n",
95 orig_node->orig, neigh_node->addr,
96 curr_router->addr);
c6c8fea2
SE
97 }
98
e1a5382f 99 if (curr_router)
7d211efc 100 batadv_neigh_node_free_ref(curr_router);
e1a5382f
LL
101
102 /* increase refcount of new best neighbor */
44524fcd
ML
103 if (neigh_node && !atomic_inc_not_zero(&neigh_node->refcount))
104 neigh_node = NULL;
e1a5382f
LL
105
106 spin_lock_bh(&orig_node->neigh_list_lock);
7351a482 107 rcu_assign_pointer(orig_ifinfo->router, neigh_node);
e1a5382f 108 spin_unlock_bh(&orig_node->neigh_list_lock);
7351a482 109 batadv_orig_ifinfo_free_ref(orig_ifinfo);
e1a5382f
LL
110
111 /* decrease refcount of previous best neighbor */
112 if (curr_router)
7d211efc 113 batadv_neigh_node_free_ref(curr_router);
c6c8fea2
SE
114}
115
7351a482
SW
116/**
117 * batadv_update_route - set the router for this originator
118 * @bat_priv: the bat priv with all the soft interface information
119 * @orig_node: orig node which is to be configured
120 * @recv_if: the receive interface for which this route is set
121 * @neigh_node: neighbor which should be the next router
122 */
56303d34
SE
123void batadv_update_route(struct batadv_priv *bat_priv,
124 struct batadv_orig_node *orig_node,
7351a482 125 struct batadv_hard_iface *recv_if,
56303d34 126 struct batadv_neigh_node *neigh_node)
c6c8fea2 127{
56303d34 128 struct batadv_neigh_node *router = NULL;
c6c8fea2
SE
129
130 if (!orig_node)
e1a5382f
LL
131 goto out;
132
7351a482 133 router = batadv_orig_router_get(orig_node, recv_if);
c6c8fea2 134
e1a5382f 135 if (router != neigh_node)
7351a482 136 _batadv_update_route(bat_priv, orig_node, recv_if, neigh_node);
e1a5382f
LL
137
138out:
139 if (router)
7d211efc 140 batadv_neigh_node_free_ref(router);
c6c8fea2
SE
141}
142
62fe710f 143/**
7afcbbef 144 * batadv_window_protected - checks whether the host restarted and is in the
62fe710f 145 * protection time.
7afcbbef
SE
146 * @bat_priv: the bat priv with all the soft interface information
147 * @seq_num_diff: difference between the current/received sequence number and
148 * the last sequence number
81f02683 149 * @seq_old_max_diff: maximum age of sequence number not considered as restart
7afcbbef
SE
150 * @last_reset: jiffies timestamp of the last reset, will be updated when reset
151 * is detected
81f02683
SW
152 * @protection_started: is set to true if the protection window was started,
153 * doesn't change otherwise.
62fe710f
SE
154 *
155 * Return:
156 * 0 if the packet is to be accepted.
c6c8fea2
SE
157 * 1 if the packet is to be ignored.
158 */
6b5e971a 159int batadv_window_protected(struct batadv_priv *bat_priv, s32 seq_num_diff,
81f02683
SW
160 s32 seq_old_max_diff, unsigned long *last_reset,
161 bool *protection_started)
c6c8fea2 162{
81f02683 163 if (seq_num_diff <= -seq_old_max_diff ||
42d0b044
SE
164 seq_num_diff >= BATADV_EXPECTED_SEQNO_RANGE) {
165 if (!batadv_has_timed_out(*last_reset,
166 BATADV_RESET_PROTECTION_MS))
c6c8fea2 167 return 1;
8c7bf248
ML
168
169 *last_reset = jiffies;
81f02683
SW
170 if (protection_started)
171 *protection_started = true;
39c75a51 172 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf 173 "old packet received, start protection\n");
c6c8fea2 174 }
8c7bf248 175
c6c8fea2
SE
176 return 0;
177}
178
30d3c511 179bool batadv_check_management_packet(struct sk_buff *skb,
56303d34 180 struct batadv_hard_iface *hard_iface,
30d3c511 181 int header_len)
c6c8fea2 182{
c6c8fea2
SE
183 struct ethhdr *ethhdr;
184
185 /* drop packet if it has not necessary minimum size */
c3e29312
ML
186 if (unlikely(!pskb_may_pull(skb, header_len)))
187 return false;
c6c8fea2 188
7ed4be95 189 ethhdr = eth_hdr(skb);
c6c8fea2
SE
190
191 /* packet with broadcast indication but unicast recipient */
192 if (!is_broadcast_ether_addr(ethhdr->h_dest))
c3e29312 193 return false;
c6c8fea2
SE
194
195 /* packet with broadcast sender address */
196 if (is_broadcast_ether_addr(ethhdr->h_source))
c3e29312 197 return false;
c6c8fea2
SE
198
199 /* create a copy of the skb, if needed, to modify it. */
200 if (skb_cow(skb, 0) < 0)
c3e29312 201 return false;
c6c8fea2
SE
202
203 /* keep skb linear */
204 if (skb_linearize(skb) < 0)
c3e29312 205 return false;
c6c8fea2 206
c3e29312 207 return true;
c6c8fea2
SE
208}
209
da6b8c20
SW
210/**
211 * batadv_recv_my_icmp_packet - receive an icmp packet locally
212 * @bat_priv: the bat priv with all the soft interface information
213 * @skb: icmp packet to process
214 *
62fe710f 215 * Return: NET_RX_SUCCESS if the packet has been consumed or NET_RX_DROP
da6b8c20
SW
216 * otherwise.
217 */
56303d34 218static int batadv_recv_my_icmp_packet(struct batadv_priv *bat_priv,
da6b8c20 219 struct sk_buff *skb)
c6c8fea2 220{
56303d34
SE
221 struct batadv_hard_iface *primary_if = NULL;
222 struct batadv_orig_node *orig_node = NULL;
da6b8c20
SW
223 struct batadv_icmp_header *icmph;
224 int res, ret = NET_RX_DROP;
c6c8fea2 225
da6b8c20 226 icmph = (struct batadv_icmp_header *)skb->data;
c6c8fea2 227
da6b8c20
SW
228 switch (icmph->msg_type) {
229 case BATADV_ECHO_REPLY:
230 case BATADV_DESTINATION_UNREACHABLE:
231 case BATADV_TTL_EXCEEDED:
232 /* receive the packet */
233 if (skb_linearize(skb) < 0)
234 break;
c6c8fea2 235
da6b8c20
SW
236 batadv_socket_receive_packet(icmph, skb->len);
237 break;
238 case BATADV_ECHO_REQUEST:
239 /* answer echo request (ping) */
240 primary_if = batadv_primary_if_get_selected(bat_priv);
241 if (!primary_if)
242 goto out;
243
244 /* get routing information */
245 orig_node = batadv_orig_hash_find(bat_priv, icmph->orig);
246 if (!orig_node)
247 goto out;
248
249 /* create a copy of the skb, if needed, to modify it. */
250 if (skb_cow(skb, ETH_HLEN) < 0)
251 goto out;
252
253 icmph = (struct batadv_icmp_header *)skb->data;
254
8fdd0153
AQ
255 ether_addr_copy(icmph->dst, icmph->orig);
256 ether_addr_copy(icmph->orig, primary_if->net_dev->dev_addr);
da6b8c20 257 icmph->msg_type = BATADV_ECHO_REPLY;
a40d9b07 258 icmph->ttl = BATADV_TTL;
da6b8c20
SW
259
260 res = batadv_send_skb_to_orig(skb, orig_node, NULL);
261 if (res != NET_XMIT_DROP)
262 ret = NET_RX_SUCCESS;
263
264 break;
265 default:
266 /* drop unknown type */
44524fcd 267 goto out;
da6b8c20 268 }
44524fcd 269out:
32ae9b22 270 if (primary_if)
e5d89254 271 batadv_hardif_free_ref(primary_if);
44524fcd 272 if (orig_node)
7d211efc 273 batadv_orig_node_free_ref(orig_node);
c6c8fea2
SE
274 return ret;
275}
276
56303d34 277static int batadv_recv_icmp_ttl_exceeded(struct batadv_priv *bat_priv,
63b01037 278 struct sk_buff *skb)
c6c8fea2 279{
56303d34
SE
280 struct batadv_hard_iface *primary_if = NULL;
281 struct batadv_orig_node *orig_node = NULL;
96412690 282 struct batadv_icmp_packet *icmp_packet;
44524fcd 283 int ret = NET_RX_DROP;
c6c8fea2 284
96412690 285 icmp_packet = (struct batadv_icmp_packet *)skb->data;
c6c8fea2
SE
286
287 /* send TTL exceeded if packet is an echo request (traceroute) */
27a417e6 288 if (icmp_packet->msg_type != BATADV_ECHO_REQUEST) {
86ceb360 289 pr_debug("Warning - can't forward icmp packet from %pM to %pM: ttl exceeded\n",
27a417e6 290 icmp_packet->orig, icmp_packet->dst);
44524fcd 291 goto out;
c6c8fea2
SE
292 }
293
e5d89254 294 primary_if = batadv_primary_if_get_selected(bat_priv);
32ae9b22 295 if (!primary_if)
44524fcd 296 goto out;
c6c8fea2
SE
297
298 /* get routing information */
27a417e6 299 orig_node = batadv_orig_hash_find(bat_priv, icmp_packet->orig);
44524fcd 300 if (!orig_node)
e1a5382f 301 goto out;
c6c8fea2 302
44524fcd 303 /* create a copy of the skb, if needed, to modify it. */
0d125074 304 if (skb_cow(skb, ETH_HLEN) < 0)
44524fcd 305 goto out;
c6c8fea2 306
96412690 307 icmp_packet = (struct batadv_icmp_packet *)skb->data;
c6c8fea2 308
8fdd0153
AQ
309 ether_addr_copy(icmp_packet->dst, icmp_packet->orig);
310 ether_addr_copy(icmp_packet->orig, primary_if->net_dev->dev_addr);
27a417e6
AQ
311 icmp_packet->msg_type = BATADV_TTL_EXCEEDED;
312 icmp_packet->ttl = BATADV_TTL;
44524fcd 313
e91ecfc6 314 if (batadv_send_skb_to_orig(skb, orig_node, NULL) != NET_XMIT_DROP)
bb351ba0 315 ret = NET_RX_SUCCESS;
c6c8fea2 316
44524fcd 317out:
32ae9b22 318 if (primary_if)
e5d89254 319 batadv_hardif_free_ref(primary_if);
44524fcd 320 if (orig_node)
7d211efc 321 batadv_orig_node_free_ref(orig_node);
c6c8fea2
SE
322 return ret;
323}
324
56303d34
SE
325int batadv_recv_icmp_packet(struct sk_buff *skb,
326 struct batadv_hard_iface *recv_if)
c6c8fea2 327{
56303d34 328 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
da6b8c20
SW
329 struct batadv_icmp_header *icmph;
330 struct batadv_icmp_packet_rr *icmp_packet_rr;
c6c8fea2 331 struct ethhdr *ethhdr;
56303d34 332 struct batadv_orig_node *orig_node = NULL;
da6b8c20 333 int hdr_size = sizeof(struct batadv_icmp_header);
44524fcd 334 int ret = NET_RX_DROP;
c6c8fea2 335
c6c8fea2
SE
336 /* drop packet if it has not necessary minimum size */
337 if (unlikely(!pskb_may_pull(skb, hdr_size)))
44524fcd 338 goto out;
c6c8fea2 339
7ed4be95 340 ethhdr = eth_hdr(skb);
c6c8fea2
SE
341
342 /* packet with unicast indication but broadcast recipient */
343 if (is_broadcast_ether_addr(ethhdr->h_dest))
44524fcd 344 goto out;
c6c8fea2
SE
345
346 /* packet with broadcast sender address */
347 if (is_broadcast_ether_addr(ethhdr->h_source))
44524fcd 348 goto out;
c6c8fea2
SE
349
350 /* not for me */
fe8a93b9 351 if (!batadv_is_my_mac(bat_priv, ethhdr->h_dest))
44524fcd 352 goto out;
c6c8fea2 353
da6b8c20 354 icmph = (struct batadv_icmp_header *)skb->data;
c6c8fea2
SE
355
356 /* add record route information if not full */
da6b8c20
SW
357 if ((icmph->msg_type == BATADV_ECHO_REPLY ||
358 icmph->msg_type == BATADV_ECHO_REQUEST) &&
359 (skb->len >= sizeof(struct batadv_icmp_packet_rr))) {
360 if (skb_linearize(skb) < 0)
361 goto out;
362
363 /* create a copy of the skb, if needed, to modify it. */
364 if (skb_cow(skb, ETH_HLEN) < 0)
365 goto out;
366
367 icmph = (struct batadv_icmp_header *)skb->data;
368 icmp_packet_rr = (struct batadv_icmp_packet_rr *)icmph;
369 if (icmp_packet_rr->rr_cur >= BATADV_RR_LEN)
370 goto out;
371
8fdd0153
AQ
372 ether_addr_copy(icmp_packet_rr->rr[icmp_packet_rr->rr_cur],
373 ethhdr->h_dest);
da6b8c20 374 icmp_packet_rr->rr_cur++;
c6c8fea2
SE
375 }
376
377 /* packet for me */
da6b8c20
SW
378 if (batadv_is_my_mac(bat_priv, icmph->dst))
379 return batadv_recv_my_icmp_packet(bat_priv, skb);
c6c8fea2
SE
380
381 /* TTL exceeded */
a40d9b07 382 if (icmph->ttl < 2)
63b01037 383 return batadv_recv_icmp_ttl_exceeded(bat_priv, skb);
c6c8fea2 384
c6c8fea2 385 /* get routing information */
da6b8c20 386 orig_node = batadv_orig_hash_find(bat_priv, icmph->dst);
44524fcd 387 if (!orig_node)
e1a5382f 388 goto out;
c6c8fea2 389
44524fcd 390 /* create a copy of the skb, if needed, to modify it. */
0d125074 391 if (skb_cow(skb, ETH_HLEN) < 0)
44524fcd 392 goto out;
c6c8fea2 393
da6b8c20 394 icmph = (struct batadv_icmp_header *)skb->data;
c6c8fea2 395
44524fcd 396 /* decrement ttl */
a40d9b07 397 icmph->ttl--;
44524fcd
ML
398
399 /* route it */
e91ecfc6 400 if (batadv_send_skb_to_orig(skb, orig_node, recv_if) != NET_XMIT_DROP)
bb351ba0 401 ret = NET_RX_SUCCESS;
c6c8fea2 402
44524fcd 403out:
44524fcd 404 if (orig_node)
7d211efc 405 batadv_orig_node_free_ref(orig_node);
c6c8fea2
SE
406 return ret;
407}
408
f86ce0ad
MH
409/**
410 * batadv_check_unicast_packet - Check for malformed unicast packets
6e0895c2 411 * @bat_priv: the bat priv with all the soft interface information
f86ce0ad
MH
412 * @skb: packet to check
413 * @hdr_size: size of header to pull
414 *
62fe710f
SE
415 * Check for short header and bad addresses in given packet.
416 *
417 * Return: negative value when check fails and 0 otherwise. The negative value
418 * depends on the reason: -ENODATA for bad header, -EBADR for broadcast
419 * destination or source, and -EREMOTE for non-local (other host) destination.
f86ce0ad 420 */
fe8a93b9
AQ
421static int batadv_check_unicast_packet(struct batadv_priv *bat_priv,
422 struct sk_buff *skb, int hdr_size)
ff51fd70
MH
423{
424 struct ethhdr *ethhdr;
425
426 /* drop packet if it has not necessary minimum size */
427 if (unlikely(!pskb_may_pull(skb, hdr_size)))
f86ce0ad 428 return -ENODATA;
ff51fd70 429
7ed4be95 430 ethhdr = eth_hdr(skb);
ff51fd70
MH
431
432 /* packet with unicast indication but broadcast recipient */
433 if (is_broadcast_ether_addr(ethhdr->h_dest))
f86ce0ad 434 return -EBADR;
ff51fd70
MH
435
436 /* packet with broadcast sender address */
437 if (is_broadcast_ether_addr(ethhdr->h_source))
f86ce0ad 438 return -EBADR;
ff51fd70
MH
439
440 /* not for me */
fe8a93b9 441 if (!batadv_is_my_mac(bat_priv, ethhdr->h_dest))
f86ce0ad 442 return -EREMOTE;
ff51fd70
MH
443
444 return 0;
445}
446
f6c8b711
SW
447/**
448 * batadv_find_router - find a suitable router for this originator
449 * @bat_priv: the bat priv with all the soft interface information
450 * @orig_node: the destination node
451 * @recv_if: pointer to interface this packet was received on
452 *
62fe710f 453 * Return: the router which should be used for this orig_node on
f6c8b711 454 * this interface, or NULL if not available.
9cfc7bd6 455 */
56303d34
SE
456struct batadv_neigh_node *
457batadv_find_router(struct batadv_priv *bat_priv,
458 struct batadv_orig_node *orig_node,
f3b3d901 459 struct batadv_hard_iface *recv_if)
c6c8fea2 460{
f3b3d901
SW
461 struct batadv_algo_ops *bao = bat_priv->bat_algo_ops;
462 struct batadv_neigh_node *first_candidate_router = NULL;
463 struct batadv_neigh_node *next_candidate_router = NULL;
464 struct batadv_neigh_node *router, *cand_router = NULL;
465 struct batadv_neigh_node *last_cand_router = NULL;
466 struct batadv_orig_ifinfo *cand, *first_candidate = NULL;
467 struct batadv_orig_ifinfo *next_candidate = NULL;
468 struct batadv_orig_ifinfo *last_candidate;
469 bool last_candidate_found = false;
c6c8fea2
SE
470
471 if (!orig_node)
472 return NULL;
473
7351a482 474 router = batadv_orig_router_get(orig_node, recv_if);
c6c8fea2 475
329887ad
SW
476 if (!router)
477 return router;
478
f3b3d901
SW
479 /* only consider bonding for recv_if == BATADV_IF_DEFAULT (first hop)
480 * and if activated.
481 */
329887ad 482 if (!(recv_if == BATADV_IF_DEFAULT && atomic_read(&bat_priv->bonding)))
f3b3d901
SW
483 return router;
484
485 /* bonding: loop through the list of possible routers found
486 * for the various outgoing interfaces and find a candidate after
487 * the last chosen bonding candidate (next_candidate). If no such
488 * router is found, use the first candidate found (the previously
489 * chosen bonding candidate might have been the last one in the list).
3f68785e 490 * If this can't be found either, return the previously chosen
f3b3d901
SW
491 * router - obviously there are no other candidates.
492 */
493 rcu_read_lock();
494 last_candidate = orig_node->last_bonding_candidate;
495 if (last_candidate)
496 last_cand_router = rcu_dereference(last_candidate->router);
497
498 hlist_for_each_entry_rcu(cand, &orig_node->ifinfo_list, list) {
499 /* acquire some structures and references ... */
500 if (!atomic_inc_not_zero(&cand->refcount))
501 continue;
502
503 cand_router = rcu_dereference(cand->router);
504 if (!cand_router)
505 goto next;
506
507 if (!atomic_inc_not_zero(&cand_router->refcount)) {
508 cand_router = NULL;
509 goto next;
510 }
511
512 /* alternative candidate should be good enough to be
513 * considered
514 */
18165f6f
SW
515 if (!bao->bat_neigh_is_similar_or_better(cand_router,
516 cand->if_outgoing,
517 router, recv_if))
f3b3d901
SW
518 goto next;
519
520 /* don't use the same router twice */
521 if (last_cand_router == cand_router)
522 goto next;
523
524 /* mark the first possible candidate */
525 if (!first_candidate) {
526 atomic_inc(&cand_router->refcount);
527 atomic_inc(&cand->refcount);
528 first_candidate = cand;
529 first_candidate_router = cand_router;
530 }
531
532 /* check if the loop has already passed the previously selected
533 * candidate ... this function should select the next candidate
534 * AFTER the previously used bonding candidate.
535 */
536 if (!last_candidate || last_candidate_found) {
537 next_candidate = cand;
538 next_candidate_router = cand_router;
539 break;
540 }
541
542 if (last_candidate == cand)
543 last_candidate_found = true;
544next:
545 /* free references */
546 if (cand_router) {
547 batadv_neigh_node_free_ref(cand_router);
548 cand_router = NULL;
549 }
550 batadv_orig_ifinfo_free_ref(cand);
551 }
552 rcu_read_unlock();
553
554 /* last_bonding_candidate is reset below, remove the old reference. */
555 if (orig_node->last_bonding_candidate)
556 batadv_orig_ifinfo_free_ref(orig_node->last_bonding_candidate);
557
558 /* After finding candidates, handle the three cases:
559 * 1) there is a next candidate, use that
560 * 2) there is no next candidate, use the first of the list
561 * 3) there is no candidate at all, return the default router
562 */
563 if (next_candidate) {
564 batadv_neigh_node_free_ref(router);
565
566 /* remove references to first candidate, we don't need it. */
567 if (first_candidate) {
568 batadv_neigh_node_free_ref(first_candidate_router);
569 batadv_orig_ifinfo_free_ref(first_candidate);
570 }
571 router = next_candidate_router;
572 orig_node->last_bonding_candidate = next_candidate;
573 } else if (first_candidate) {
574 batadv_neigh_node_free_ref(router);
575
576 /* refcounting has already been done in the loop above. */
577 router = first_candidate_router;
578 orig_node->last_bonding_candidate = first_candidate;
579 } else {
580 orig_node->last_bonding_candidate = NULL;
581 }
f6c8b711 582
c6c8fea2
SE
583 return router;
584}
585
63b01037 586static int batadv_route_unicast_packet(struct sk_buff *skb,
56303d34 587 struct batadv_hard_iface *recv_if)
c6c8fea2 588{
56303d34
SE
589 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
590 struct batadv_orig_node *orig_node = NULL;
96412690 591 struct batadv_unicast_packet *unicast_packet;
7ed4be95 592 struct ethhdr *ethhdr = eth_hdr(skb);
c54f38c9 593 int res, hdr_len, ret = NET_RX_DROP;
c6c8fea2 594
96412690 595 unicast_packet = (struct batadv_unicast_packet *)skb->data;
c6c8fea2
SE
596
597 /* TTL exceeded */
a40d9b07 598 if (unicast_packet->ttl < 2) {
86ceb360
SE
599 pr_debug("Warning - can't forward unicast packet from %pM to %pM: ttl exceeded\n",
600 ethhdr->h_source, unicast_packet->dest);
44524fcd 601 goto out;
c6c8fea2
SE
602 }
603
604 /* get routing information */
da641193 605 orig_node = batadv_orig_hash_find(bat_priv, unicast_packet->dest);
7aadf889 606
44524fcd 607 if (!orig_node)
b5a6f69c 608 goto out;
c6c8fea2 609
c6c8fea2 610 /* create a copy of the skb, if needed, to modify it. */
0d125074 611 if (skb_cow(skb, ETH_HLEN) < 0)
44524fcd 612 goto out;
c6c8fea2 613
c6c8fea2 614 /* decrement ttl */
f097e25d 615 unicast_packet = (struct batadv_unicast_packet *)skb->data;
a40d9b07 616 unicast_packet->ttl--;
c6c8fea2 617
a40d9b07 618 switch (unicast_packet->packet_type) {
c54f38c9
SW
619 case BATADV_UNICAST_4ADDR:
620 hdr_len = sizeof(struct batadv_unicast_4addr_packet);
621 break;
622 case BATADV_UNICAST:
623 hdr_len = sizeof(struct batadv_unicast_packet);
624 break;
625 default:
626 /* other packet types not supported - yet */
627 hdr_len = -1;
628 break;
629 }
630
631 if (hdr_len > 0)
632 batadv_skb_set_priority(skb, hdr_len);
633
e91ecfc6 634 res = batadv_send_skb_to_orig(skb, orig_node, recv_if);
95332477 635
e91ecfc6
MH
636 /* translate transmit result into receive result */
637 if (res == NET_XMIT_SUCCESS) {
638 /* skb was transmitted and consumed */
95332477
MH
639 batadv_inc_counter(bat_priv, BATADV_CNT_FORWARD);
640 batadv_add_counter(bat_priv, BATADV_CNT_FORWARD_BYTES,
641 skb->len + ETH_HLEN);
e91ecfc6
MH
642
643 ret = NET_RX_SUCCESS;
644 } else if (res == NET_XMIT_POLICED) {
645 /* skb was buffered and consumed */
646 ret = NET_RX_SUCCESS;
95332477 647 }
c6c8fea2 648
44524fcd 649out:
44524fcd 650 if (orig_node)
7d211efc 651 batadv_orig_node_free_ref(orig_node);
44524fcd 652 return ret;
c6c8fea2
SE
653}
654
7c1fd91d
AQ
655/**
656 * batadv_reroute_unicast_packet - update the unicast header for re-routing
657 * @bat_priv: the bat priv with all the soft interface information
658 * @unicast_packet: the unicast header to be updated
659 * @dst_addr: the payload destination
c018ad3d 660 * @vid: VLAN identifier
7c1fd91d
AQ
661 *
662 * Search the translation table for dst_addr and update the unicast header with
663 * the new corresponding information (originator address where the destination
664 * client currently is and its known TTVN)
665 *
62fe710f 666 * Return: true if the packet header has been updated, false otherwise
7c1fd91d
AQ
667 */
668static bool
669batadv_reroute_unicast_packet(struct batadv_priv *bat_priv,
670 struct batadv_unicast_packet *unicast_packet,
6b5e971a 671 u8 *dst_addr, unsigned short vid)
7c1fd91d
AQ
672{
673 struct batadv_orig_node *orig_node = NULL;
674 struct batadv_hard_iface *primary_if = NULL;
675 bool ret = false;
6b5e971a 676 u8 *orig_addr, orig_ttvn;
7c1fd91d 677
c018ad3d 678 if (batadv_is_my_client(bat_priv, dst_addr, vid)) {
7c1fd91d
AQ
679 primary_if = batadv_primary_if_get_selected(bat_priv);
680 if (!primary_if)
681 goto out;
682 orig_addr = primary_if->net_dev->dev_addr;
6b5e971a 683 orig_ttvn = (u8)atomic_read(&bat_priv->tt.vn);
7c1fd91d 684 } else {
c018ad3d
AQ
685 orig_node = batadv_transtable_search(bat_priv, NULL, dst_addr,
686 vid);
7c1fd91d
AQ
687 if (!orig_node)
688 goto out;
689
690 if (batadv_compare_eth(orig_node->orig, unicast_packet->dest))
691 goto out;
692
693 orig_addr = orig_node->orig;
6b5e971a 694 orig_ttvn = (u8)atomic_read(&orig_node->last_ttvn);
7c1fd91d
AQ
695 }
696
697 /* update the packet header */
8fdd0153 698 ether_addr_copy(unicast_packet->dest, orig_addr);
7c1fd91d
AQ
699 unicast_packet->ttvn = orig_ttvn;
700
701 ret = true;
702out:
703 if (primary_if)
704 batadv_hardif_free_ref(primary_if);
705 if (orig_node)
706 batadv_orig_node_free_ref(orig_node);
707
708 return ret;
709}
710
56303d34 711static int batadv_check_unicast_ttvn(struct batadv_priv *bat_priv,
dd981ab0 712 struct sk_buff *skb, int hdr_len) {
c018ad3d
AQ
713 struct batadv_unicast_packet *unicast_packet;
714 struct batadv_hard_iface *primary_if;
56303d34 715 struct batadv_orig_node *orig_node;
6b5e971a 716 u8 curr_ttvn, old_ttvn;
a73105b8 717 struct ethhdr *ethhdr;
c018ad3d 718 unsigned short vid;
3e34819e 719 int is_old_ttvn;
a73105b8 720
b8fcfa42 721 /* check if there is enough data before accessing it */
f1791425 722 if (!pskb_may_pull(skb, hdr_len + ETH_HLEN))
b8fcfa42
AQ
723 return 0;
724
725 /* create a copy of the skb (in case of for re-routing) to modify it. */
726 if (skb_cow(skb, sizeof(*unicast_packet)) < 0)
a73105b8
AQ
727 return 0;
728
96412690 729 unicast_packet = (struct batadv_unicast_packet *)skb->data;
c018ad3d 730 vid = batadv_get_vid(skb, hdr_len);
dd981ab0 731 ethhdr = (struct ethhdr *)(skb->data + hdr_len);
a73105b8 732
7c1fd91d
AQ
733 /* check if the destination client was served by this node and it is now
734 * roaming. In this case, it means that the node has got a ROAM_ADV
735 * message and that it knows the new destination in the mesh to re-route
736 * the packet to
737 */
c018ad3d 738 if (batadv_tt_local_client_is_roaming(bat_priv, ethhdr->h_dest, vid)) {
7c1fd91d 739 if (batadv_reroute_unicast_packet(bat_priv, unicast_packet,
c018ad3d 740 ethhdr->h_dest, vid))
23c4ec10
AG
741 batadv_dbg_ratelimited(BATADV_DBG_TT,
742 bat_priv,
743 "Rerouting unicast packet to %pM (dst=%pM): Local Roaming\n",
744 unicast_packet->dest,
745 ethhdr->h_dest);
7c1fd91d
AQ
746 /* at this point the mesh destination should have been
747 * substituted with the originator address found in the global
748 * table. If not, let the packet go untouched anyway because
749 * there is nothing the node can do
750 */
751 return 1;
752 }
753
754 /* retrieve the TTVN known by this node for the packet destination. This
755 * value is used later to check if the node which sent (or re-routed
756 * last time) the packet had an updated information or not
757 */
6b5e971a 758 curr_ttvn = (u8)atomic_read(&bat_priv->tt.vn);
fe8a93b9 759 if (!batadv_is_my_mac(bat_priv, unicast_packet->dest)) {
da641193
SE
760 orig_node = batadv_orig_hash_find(bat_priv,
761 unicast_packet->dest);
7c1fd91d
AQ
762 /* if it is not possible to find the orig_node representing the
763 * destination, the packet can immediately be dropped as it will
764 * not be possible to deliver it
765 */
a73105b8
AQ
766 if (!orig_node)
767 return 0;
768
6b5e971a 769 curr_ttvn = (u8)atomic_read(&orig_node->last_ttvn);
7d211efc 770 batadv_orig_node_free_ref(orig_node);
a73105b8
AQ
771 }
772
7c1fd91d
AQ
773 /* check if the TTVN contained in the packet is fresher than what the
774 * node knows
775 */
3e34819e 776 is_old_ttvn = batadv_seq_before(unicast_packet->ttvn, curr_ttvn);
7c1fd91d
AQ
777 if (!is_old_ttvn)
778 return 1;
a73105b8 779
7c1fd91d
AQ
780 old_ttvn = unicast_packet->ttvn;
781 /* the packet was forged based on outdated network information. Its
782 * destination can possibly be updated and forwarded towards the new
783 * target host
784 */
785 if (batadv_reroute_unicast_packet(bat_priv, unicast_packet,
c018ad3d 786 ethhdr->h_dest, vid)) {
23c4ec10
AG
787 batadv_dbg_ratelimited(BATADV_DBG_TT, bat_priv,
788 "Rerouting unicast packet to %pM (dst=%pM): TTVN mismatch old_ttvn=%u new_ttvn=%u\n",
789 unicast_packet->dest, ethhdr->h_dest,
790 old_ttvn, curr_ttvn);
7c1fd91d
AQ
791 return 1;
792 }
3275e7cc 793
7c1fd91d
AQ
794 /* the packet has not been re-routed: either the destination is
795 * currently served by this node or there is no destination at all and
796 * it is possible to drop the packet
797 */
c018ad3d 798 if (!batadv_is_my_client(bat_priv, ethhdr->h_dest, vid))
7c1fd91d 799 return 0;
3275e7cc 800
7c1fd91d
AQ
801 /* update the header in order to let the packet be delivered to this
802 * node's soft interface
803 */
804 primary_if = batadv_primary_if_get_selected(bat_priv);
805 if (!primary_if)
806 return 0;
a73105b8 807
8fdd0153 808 ether_addr_copy(unicast_packet->dest, primary_if->net_dev->dev_addr);
7c1fd91d
AQ
809
810 batadv_hardif_free_ref(primary_if);
811
812 unicast_packet->ttvn = curr_ttvn;
a73105b8 813
a73105b8
AQ
814 return 1;
815}
816
a1f1ac5c
SW
817/**
818 * batadv_recv_unhandled_unicast_packet - receive and process packets which
819 * are in the unicast number space but not yet known to the implementation
820 * @skb: unicast tvlv packet to process
821 * @recv_if: pointer to interface this packet was received on
822 *
62fe710f 823 * Return: NET_RX_SUCCESS if the packet has been consumed or NET_RX_DROP
a1f1ac5c
SW
824 * otherwise.
825 */
826int batadv_recv_unhandled_unicast_packet(struct sk_buff *skb,
827 struct batadv_hard_iface *recv_if)
828{
829 struct batadv_unicast_packet *unicast_packet;
830 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
831 int check, hdr_size = sizeof(*unicast_packet);
832
833 check = batadv_check_unicast_packet(bat_priv, skb, hdr_size);
834 if (check < 0)
835 return NET_RX_DROP;
836
837 /* we don't know about this type, drop it. */
838 unicast_packet = (struct batadv_unicast_packet *)skb->data;
839 if (batadv_is_my_mac(bat_priv, unicast_packet->dest))
840 return NET_RX_DROP;
841
842 return batadv_route_unicast_packet(skb, recv_if);
843}
844
56303d34
SE
845int batadv_recv_unicast_packet(struct sk_buff *skb,
846 struct batadv_hard_iface *recv_if)
c6c8fea2 847{
56303d34 848 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
96412690 849 struct batadv_unicast_packet *unicast_packet;
4046b24a 850 struct batadv_unicast_4addr_packet *unicast_4addr_packet;
6b5e971a 851 u8 *orig_addr;
9affec6b 852 struct batadv_orig_node *orig_node = NULL;
612d2b4f 853 int check, hdr_size = sizeof(*unicast_packet);
437bb0e6 854 enum batadv_subtype subtype;
c384ea3e 855 bool is4addr;
c6c8fea2 856
7cdcf6dd 857 unicast_packet = (struct batadv_unicast_packet *)skb->data;
4046b24a 858 unicast_4addr_packet = (struct batadv_unicast_4addr_packet *)skb->data;
7cdcf6dd 859
a40d9b07 860 is4addr = unicast_packet->packet_type == BATADV_UNICAST_4ADDR;
7cdcf6dd 861 /* the caller function should have already pulled 2 bytes */
c384ea3e 862 if (is4addr)
4046b24a 863 hdr_size = sizeof(*unicast_4addr_packet);
7cdcf6dd 864
612d2b4f 865 /* function returns -EREMOTE for promiscuous packets */
6e0895c2 866 check = batadv_check_unicast_packet(bat_priv, skb, hdr_size);
612d2b4f
MH
867
868 /* Even though the packet is not for us, we might save it to use for
869 * decoding a later received coded packet
870 */
871 if (check == -EREMOTE)
872 batadv_nc_skb_store_sniffed_unicast(bat_priv, skb);
873
874 if (check < 0)
c6c8fea2 875 return NET_RX_DROP;
dd981ab0 876 if (!batadv_check_unicast_ttvn(bat_priv, skb, hdr_size))
a73105b8
AQ
877 return NET_RX_DROP;
878
c6c8fea2 879 /* packet for me */
fe8a93b9 880 if (batadv_is_my_mac(bat_priv, unicast_packet->dest)) {
9affec6b 881 if (is4addr) {
437bb0e6
SW
882 subtype = unicast_4addr_packet->subtype;
883 batadv_dat_inc_counter(bat_priv, subtype);
884
885 /* Only payload data should be considered for speedy
886 * join. For example, DAT also uses unicast 4addr
887 * types, but those packets should not be considered
888 * for speedy join, since the clients do not actually
889 * reside at the sending originator.
890 */
891 if (subtype == BATADV_P_DATA) {
892 orig_addr = unicast_4addr_packet->src;
893 orig_node = batadv_orig_hash_find(bat_priv,
894 orig_addr);
895 }
9affec6b 896 }
4046b24a 897
c384ea3e
AQ
898 if (batadv_dat_snoop_incoming_arp_request(bat_priv, skb,
899 hdr_size))
900 goto rx_success;
901 if (batadv_dat_snoop_incoming_arp_reply(bat_priv, skb,
902 hdr_size))
903 goto rx_success;
904
37135173 905 batadv_interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size,
9affec6b 906 orig_node);
37135173 907
c384ea3e 908rx_success:
9affec6b
AQ
909 if (orig_node)
910 batadv_orig_node_free_ref(orig_node);
911
c6c8fea2
SE
912 return NET_RX_SUCCESS;
913 }
914
63b01037 915 return batadv_route_unicast_packet(skb, recv_if);
c6c8fea2
SE
916}
917
ef261577
ML
918/**
919 * batadv_recv_unicast_tvlv - receive and process unicast tvlv packets
920 * @skb: unicast tvlv packet to process
921 * @recv_if: pointer to interface this packet was received on
ef261577 922 *
62fe710f 923 * Return: NET_RX_SUCCESS if the packet has been consumed or NET_RX_DROP
ef261577
ML
924 * otherwise.
925 */
926int batadv_recv_unicast_tvlv(struct sk_buff *skb,
927 struct batadv_hard_iface *recv_if)
928{
929 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
930 struct batadv_unicast_tvlv_packet *unicast_tvlv_packet;
931 unsigned char *tvlv_buff;
6b5e971a 932 u16 tvlv_buff_len;
ef261577
ML
933 int hdr_size = sizeof(*unicast_tvlv_packet);
934 int ret = NET_RX_DROP;
935
936 if (batadv_check_unicast_packet(bat_priv, skb, hdr_size) < 0)
937 return NET_RX_DROP;
938
939 /* the header is likely to be modified while forwarding */
940 if (skb_cow(skb, hdr_size) < 0)
941 return NET_RX_DROP;
942
943 /* packet needs to be linearized to access the tvlv content */
944 if (skb_linearize(skb) < 0)
945 return NET_RX_DROP;
946
947 unicast_tvlv_packet = (struct batadv_unicast_tvlv_packet *)skb->data;
948
949 tvlv_buff = (unsigned char *)(skb->data + hdr_size);
950 tvlv_buff_len = ntohs(unicast_tvlv_packet->tvlv_len);
951
952 if (tvlv_buff_len > skb->len - hdr_size)
953 return NET_RX_DROP;
954
955 ret = batadv_tvlv_containers_process(bat_priv, false, NULL,
956 unicast_tvlv_packet->src,
957 unicast_tvlv_packet->dst,
958 tvlv_buff, tvlv_buff_len);
959
960 if (ret != NET_RX_SUCCESS)
961 ret = batadv_route_unicast_packet(skb, recv_if);
05c3c8a6
AQ
962 else
963 consume_skb(skb);
ef261577
ML
964
965 return ret;
966}
c6c8fea2 967
610bfc6b
MH
968/**
969 * batadv_recv_frag_packet - process received fragment
970 * @skb: the received fragment
971 * @recv_if: interface that the skb is received on
972 *
973 * This function does one of the three following things: 1) Forward fragment, if
974 * the assembled packet will exceed our MTU; 2) Buffer fragment, if we till
975 * lack further fragments; 3) Merge fragments, if we have all needed parts.
976 *
62fe710f 977 * Return: NET_RX_DROP if the skb is not consumed, NET_RX_SUCCESS otherwise.
610bfc6b
MH
978 */
979int batadv_recv_frag_packet(struct sk_buff *skb,
980 struct batadv_hard_iface *recv_if)
981{
982 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
983 struct batadv_orig_node *orig_node_src = NULL;
984 struct batadv_frag_packet *frag_packet;
985 int ret = NET_RX_DROP;
986
987 if (batadv_check_unicast_packet(bat_priv, skb,
988 sizeof(*frag_packet)) < 0)
989 goto out;
990
991 frag_packet = (struct batadv_frag_packet *)skb->data;
992 orig_node_src = batadv_orig_hash_find(bat_priv, frag_packet->orig);
993 if (!orig_node_src)
994 goto out;
995
996 /* Route the fragment if it is not for us and too big to be merged. */
997 if (!batadv_is_my_mac(bat_priv, frag_packet->dest) &&
998 batadv_frag_skb_fwd(skb, recv_if, orig_node_src)) {
999 ret = NET_RX_SUCCESS;
1000 goto out;
1001 }
1002
1003 batadv_inc_counter(bat_priv, BATADV_CNT_FRAG_RX);
1004 batadv_add_counter(bat_priv, BATADV_CNT_FRAG_RX_BYTES, skb->len);
1005
1006 /* Add fragment to buffer and merge if possible. */
1007 if (!batadv_frag_skb_buffer(&skb, orig_node_src))
1008 goto out;
1009
1010 /* Deliver merged packet to the appropriate handler, if it was
1011 * merged
1012 */
1013 if (skb)
1014 batadv_batman_skb_recv(skb, recv_if->net_dev,
1015 &recv_if->batman_adv_ptype, NULL);
1016
1017 ret = NET_RX_SUCCESS;
1018
1019out:
1020 if (orig_node_src)
1021 batadv_orig_node_free_ref(orig_node_src);
1022
1023 return ret;
1024}
1025
56303d34
SE
1026int batadv_recv_bcast_packet(struct sk_buff *skb,
1027 struct batadv_hard_iface *recv_if)
c6c8fea2 1028{
56303d34
SE
1029 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1030 struct batadv_orig_node *orig_node = NULL;
96412690 1031 struct batadv_bcast_packet *bcast_packet;
c6c8fea2 1032 struct ethhdr *ethhdr;
704509b8 1033 int hdr_size = sizeof(*bcast_packet);
f3e0008f 1034 int ret = NET_RX_DROP;
6b5e971a
SE
1035 s32 seq_diff;
1036 u32 seqno;
c6c8fea2
SE
1037
1038 /* drop packet if it has not necessary minimum size */
1039 if (unlikely(!pskb_may_pull(skb, hdr_size)))
f3e0008f 1040 goto out;
c6c8fea2 1041
7ed4be95 1042 ethhdr = eth_hdr(skb);
c6c8fea2
SE
1043
1044 /* packet with broadcast indication but unicast recipient */
1045 if (!is_broadcast_ether_addr(ethhdr->h_dest))
f3e0008f 1046 goto out;
c6c8fea2
SE
1047
1048 /* packet with broadcast sender address */
1049 if (is_broadcast_ether_addr(ethhdr->h_source))
f3e0008f 1050 goto out;
c6c8fea2
SE
1051
1052 /* ignore broadcasts sent by myself */
fe8a93b9 1053 if (batadv_is_my_mac(bat_priv, ethhdr->h_source))
f3e0008f 1054 goto out;
c6c8fea2 1055
96412690 1056 bcast_packet = (struct batadv_bcast_packet *)skb->data;
c6c8fea2
SE
1057
1058 /* ignore broadcasts originated by myself */
fe8a93b9 1059 if (batadv_is_my_mac(bat_priv, bcast_packet->orig))
f3e0008f 1060 goto out;
c6c8fea2 1061
a40d9b07 1062 if (bcast_packet->ttl < 2)
f3e0008f 1063 goto out;
c6c8fea2 1064
da641193 1065 orig_node = batadv_orig_hash_find(bat_priv, bcast_packet->orig);
f3e0008f
ML
1066
1067 if (!orig_node)
b5a6f69c 1068 goto out;
c6c8fea2 1069
f3e0008f 1070 spin_lock_bh(&orig_node->bcast_seqno_lock);
c6c8fea2 1071
3fba7325 1072 seqno = ntohl(bcast_packet->seqno);
c6c8fea2 1073 /* check whether the packet is a duplicate */
9b4a1159 1074 if (batadv_test_bit(orig_node->bcast_bits, orig_node->last_bcast_seqno,
3fba7325 1075 seqno))
f3e0008f 1076 goto spin_unlock;
c6c8fea2 1077
3fba7325 1078 seq_diff = seqno - orig_node->last_bcast_seqno;
c6c8fea2
SE
1079
1080 /* check whether the packet is old and the host just restarted. */
30d3c511 1081 if (batadv_window_protected(bat_priv, seq_diff,
81f02683
SW
1082 BATADV_BCAST_MAX_AGE,
1083 &orig_node->bcast_seqno_reset, NULL))
f3e0008f 1084 goto spin_unlock;
c6c8fea2
SE
1085
1086 /* mark broadcast in flood history, update window position
9cfc7bd6
SE
1087 * if required.
1088 */
0f5f9322 1089 if (batadv_bit_get_packet(bat_priv, orig_node->bcast_bits, seq_diff, 1))
3fba7325 1090 orig_node->last_bcast_seqno = seqno;
c6c8fea2 1091
f3e0008f 1092 spin_unlock_bh(&orig_node->bcast_seqno_lock);
f3e0008f 1093
fe2da6ff 1094 /* check whether this has been sent by another originator before */
004e86fc 1095 if (batadv_bla_check_bcast_duplist(bat_priv, skb))
fe2da6ff
SW
1096 goto out;
1097
c54f38c9
SW
1098 batadv_skb_set_priority(skb, sizeof(struct batadv_bcast_packet));
1099
c6c8fea2 1100 /* rebroadcast packet */
9455e34c 1101 batadv_add_bcast_packet_to_list(bat_priv, skb, 1);
c6c8fea2 1102
23721387
SW
1103 /* don't hand the broadcast up if it is from an originator
1104 * from the same backbone.
1105 */
08adf151 1106 if (batadv_bla_is_backbone_gw(skb, orig_node, hdr_size))
23721387
SW
1107 goto out;
1108
c384ea3e
AQ
1109 if (batadv_dat_snoop_incoming_arp_request(bat_priv, skb, hdr_size))
1110 goto rx_success;
1111 if (batadv_dat_snoop_incoming_arp_reply(bat_priv, skb, hdr_size))
1112 goto rx_success;
1113
c6c8fea2 1114 /* broadcast for me */
37135173
AQ
1115 batadv_interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size,
1116 orig_node);
c384ea3e
AQ
1117
1118rx_success:
f3e0008f
ML
1119 ret = NET_RX_SUCCESS;
1120 goto out;
c6c8fea2 1121
f3e0008f
ML
1122spin_unlock:
1123 spin_unlock_bh(&orig_node->bcast_seqno_lock);
f3e0008f
ML
1124out:
1125 if (orig_node)
7d211efc 1126 batadv_orig_node_free_ref(orig_node);
f3e0008f 1127 return ret;
c6c8fea2 1128}
This page took 0.379341 seconds and 5 git commands to generate.