batman-adv: Prefix unicast non-static functions with batadv_
[deliverable/linux.git] / net / batman-adv / routing.c
CommitLineData
c6c8fea2 1/*
567db7b0 2 * Copyright (C) 2007-2012 B.A.T.M.A.N. contributors:
c6c8fea2
SE
3 *
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"
c6c8fea2
SE
25#include "soft-interface.h"
26#include "hard-interface.h"
27#include "icmp_socket.h"
28#include "translation-table.h"
29#include "originator.h"
c6c8fea2 30#include "vis.h"
c6c8fea2 31#include "unicast.h"
23721387 32#include "bridge_loop_avoidance.h"
c6c8fea2 33
a7f6ee94
SW
34static int route_unicast_packet(struct sk_buff *skb,
35 struct hard_iface *recv_if);
36
30d3c511 37void batadv_slide_own_bcast_window(struct hard_iface *hard_iface)
c6c8fea2 38{
e6c10f43 39 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
c6c8fea2 40 struct hashtable_t *hash = bat_priv->orig_hash;
7aadf889 41 struct hlist_node *node;
c6c8fea2 42 struct hlist_head *head;
c6c8fea2
SE
43 struct orig_node *orig_node;
44 unsigned long *word;
c90681b8 45 uint32_t i;
c6c8fea2
SE
46 size_t word_index;
47
c6c8fea2
SE
48 for (i = 0; i < hash->size; i++) {
49 head = &hash->table[i];
50
fb778ea1 51 rcu_read_lock();
7aadf889 52 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
2ae2daf6 53 spin_lock_bh(&orig_node->ogm_cnt_lock);
e6c10f43 54 word_index = hard_iface->if_num * NUM_WORDS;
c6c8fea2
SE
55 word = &(orig_node->bcast_own[word_index]);
56
0f5f9322 57 batadv_bit_get_packet(bat_priv, word, 1, 0);
e6c10f43 58 orig_node->bcast_own_sum[hard_iface->if_num] =
0079d2ce 59 bitmap_weight(word, TQ_LOCAL_WINDOW_SIZE);
2ae2daf6 60 spin_unlock_bh(&orig_node->ogm_cnt_lock);
c6c8fea2 61 }
fb778ea1 62 rcu_read_unlock();
c6c8fea2 63 }
c6c8fea2
SE
64}
65
fc957275
ML
66static void _update_route(struct bat_priv *bat_priv,
67 struct orig_node *orig_node,
68 struct neigh_node *neigh_node)
c6c8fea2 69{
e1a5382f
LL
70 struct neigh_node *curr_router;
71
7d211efc 72 curr_router = batadv_orig_node_get_router(orig_node);
a8e7f4bc 73
c6c8fea2 74 /* route deleted */
e1a5382f 75 if ((curr_router) && (!neigh_node)) {
c6c8fea2
SE
76 bat_dbg(DBG_ROUTES, bat_priv, "Deleting route towards: %pM\n",
77 orig_node->orig);
08c36d3e
SE
78 batadv_tt_global_del_orig(bat_priv, orig_node,
79 "Deleted route towards originator");
c6c8fea2 80
e1a5382f
LL
81 /* route added */
82 } else if ((!curr_router) && (neigh_node)) {
c6c8fea2
SE
83
84 bat_dbg(DBG_ROUTES, bat_priv,
85 "Adding route towards: %pM (via %pM)\n",
86 orig_node->orig, neigh_node->addr);
e1a5382f 87 /* route changed */
bb899b89 88 } else if (neigh_node && curr_router) {
c6c8fea2 89 bat_dbg(DBG_ROUTES, bat_priv,
86ceb360 90 "Changing route towards: %pM (now via %pM - was via %pM)\n",
c6c8fea2 91 orig_node->orig, neigh_node->addr,
e1a5382f 92 curr_router->addr);
c6c8fea2
SE
93 }
94
e1a5382f 95 if (curr_router)
7d211efc 96 batadv_neigh_node_free_ref(curr_router);
e1a5382f
LL
97
98 /* increase refcount of new best neighbor */
44524fcd
ML
99 if (neigh_node && !atomic_inc_not_zero(&neigh_node->refcount))
100 neigh_node = NULL;
e1a5382f
LL
101
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)
7d211efc 108 batadv_neigh_node_free_ref(curr_router);
c6c8fea2
SE
109}
110
30d3c511
SE
111void batadv_update_route(struct bat_priv *bat_priv, struct orig_node *orig_node,
112 struct neigh_node *neigh_node)
c6c8fea2 113{
e1a5382f 114 struct neigh_node *router = NULL;
c6c8fea2
SE
115
116 if (!orig_node)
e1a5382f
LL
117 goto out;
118
7d211efc 119 router = batadv_orig_node_get_router(orig_node);
c6c8fea2 120
e1a5382f 121 if (router != neigh_node)
fc957275 122 _update_route(bat_priv, orig_node, neigh_node);
e1a5382f
LL
123
124out:
125 if (router)
7d211efc 126 batadv_neigh_node_free_ref(router);
c6c8fea2
SE
127}
128
a4c135c5 129/* caller must hold the neigh_list_lock */
30d3c511
SE
130void batadv_bonding_candidate_del(struct orig_node *orig_node,
131 struct neigh_node *neigh_node)
a4c135c5
SW
132{
133 /* this neighbor is not part of our candidate list */
134 if (list_empty(&neigh_node->bonding_list))
135 goto out;
136
137 list_del_rcu(&neigh_node->bonding_list);
a4c135c5 138 INIT_LIST_HEAD(&neigh_node->bonding_list);
7d211efc 139 batadv_neigh_node_free_ref(neigh_node);
a4c135c5
SW
140 atomic_dec(&orig_node->bond_candidates);
141
142out:
143 return;
144}
145
30d3c511
SE
146void batadv_bonding_candidate_add(struct orig_node *orig_node,
147 struct neigh_node *neigh_node)
a4c135c5
SW
148{
149 struct hlist_node *node;
e1a5382f
LL
150 struct neigh_node *tmp_neigh_node, *router = NULL;
151 uint8_t interference_candidate = 0;
a4c135c5
SW
152
153 spin_lock_bh(&orig_node->neigh_list_lock);
154
155 /* only consider if it has the same primary address ... */
39901e71
ML
156 if (!compare_eth(orig_node->orig,
157 neigh_node->orig_node->primary_addr))
a4c135c5
SW
158 goto candidate_del;
159
7d211efc 160 router = batadv_orig_node_get_router(orig_node);
e1a5382f 161 if (!router)
a4c135c5
SW
162 goto candidate_del;
163
a4c135c5 164 /* ... and is good enough to be considered */
e1a5382f 165 if (neigh_node->tq_avg < router->tq_avg - BONDING_TQ_THRESHOLD)
a4c135c5
SW
166 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) ||
39901e71 185 (compare_eth(neigh_node->addr, tmp_neigh_node->addr))) {
a4c135c5
SW
186 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
44524fcd
ML
199 if (!atomic_inc_not_zero(&neigh_node->refcount))
200 goto out;
201
a4c135c5 202 list_add_rcu(&neigh_node->bonding_list, &orig_node->bond_list);
a4c135c5
SW
203 atomic_inc(&orig_node->bond_candidates);
204 goto out;
205
206candidate_del:
30d3c511 207 batadv_bonding_candidate_del(orig_node, neigh_node);
a4c135c5
SW
208
209out:
210 spin_unlock_bh(&orig_node->neigh_list_lock);
e1a5382f
LL
211
212 if (router)
7d211efc 213 batadv_neigh_node_free_ref(router);
a4c135c5
SW
214}
215
216/* copy primary address for bonding */
30d3c511
SE
217void
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)
a4c135c5 221{
b6da4bf5 222 if (!(batman_ogm_packet->flags & PRIMARIES_FIRST_HOP))
a4c135c5
SW
223 return;
224
225 memcpy(orig_neigh_node->primary_addr, orig_node->orig, ETH_ALEN);
226}
227
c6c8fea2
SE
228/* 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 */
30d3c511
SE
233int batadv_window_protected(struct bat_priv *bat_priv, int32_t seq_num_diff,
234 unsigned long *last_reset)
c6c8fea2 235{
7c64fd98
SE
236 if ((seq_num_diff <= -TQ_LOCAL_WINDOW_SIZE) ||
237 (seq_num_diff >= EXPECTED_SEQNO_RANGE)) {
8c7bf248 238 if (!has_timed_out(*last_reset, RESET_PROTECTION_MS))
c6c8fea2 239 return 1;
8c7bf248
ML
240
241 *last_reset = jiffies;
242 bat_dbg(DBG_BATMAN, bat_priv,
243 "old packet received, start protection\n");
c6c8fea2 244 }
8c7bf248 245
c6c8fea2
SE
246 return 0;
247}
248
30d3c511
SE
249bool batadv_check_management_packet(struct sk_buff *skb,
250 struct hard_iface *hard_iface,
251 int header_len)
c6c8fea2 252{
c6c8fea2
SE
253 struct ethhdr *ethhdr;
254
255 /* drop packet if it has not necessary minimum size */
c3e29312
ML
256 if (unlikely(!pskb_may_pull(skb, header_len)))
257 return false;
c6c8fea2
SE
258
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))
c3e29312 263 return false;
c6c8fea2
SE
264
265 /* packet with broadcast sender address */
266 if (is_broadcast_ether_addr(ethhdr->h_source))
c3e29312 267 return false;
c6c8fea2
SE
268
269 /* create a copy of the skb, if needed, to modify it. */
270 if (skb_cow(skb, 0) < 0)
c3e29312 271 return false;
c6c8fea2
SE
272
273 /* keep skb linear */
274 if (skb_linearize(skb) < 0)
c3e29312 275 return false;
c6c8fea2 276
c3e29312 277 return true;
c6c8fea2
SE
278}
279
280static int recv_my_icmp_packet(struct bat_priv *bat_priv,
281 struct sk_buff *skb, size_t icmp_len)
282{
32ae9b22 283 struct hard_iface *primary_if = NULL;
44524fcd 284 struct orig_node *orig_node = NULL;
e1a5382f 285 struct neigh_node *router = NULL;
c6c8fea2 286 struct icmp_packet_rr *icmp_packet;
44524fcd 287 int ret = NET_RX_DROP;
c6c8fea2
SE
288
289 icmp_packet = (struct icmp_packet_rr *)skb->data;
c6c8fea2
SE
290
291 /* add data to device queue */
292 if (icmp_packet->msg_type != ECHO_REQUEST) {
9039dc7e 293 batadv_socket_receive_packet(icmp_packet, icmp_len);
44524fcd 294 goto out;
c6c8fea2
SE
295 }
296
32ae9b22
ML
297 primary_if = primary_if_get_selected(bat_priv);
298 if (!primary_if)
44524fcd 299 goto out;
c6c8fea2
SE
300
301 /* answer echo request (ping) */
302 /* get routing information */
7aadf889 303 orig_node = orig_hash_find(bat_priv, icmp_packet->orig);
44524fcd 304 if (!orig_node)
e1a5382f 305 goto out;
c6c8fea2 306
7d211efc 307 router = batadv_orig_node_get_router(orig_node);
e1a5382f
LL
308 if (!router)
309 goto out;
c6c8fea2 310
44524fcd 311 /* create a copy of the skb, if needed, to modify it. */
0d125074 312 if (skb_cow(skb, ETH_HLEN) < 0)
44524fcd
ML
313 goto out;
314
315 icmp_packet = (struct icmp_packet_rr *)skb->data;
316
317 memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN);
32ae9b22 318 memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
44524fcd 319 icmp_packet->msg_type = ECHO_REPLY;
76543d14 320 icmp_packet->header.ttl = TTL;
44524fcd 321
9455e34c 322 batadv_send_skb_packet(skb, router->if_incoming, router->addr);
44524fcd 323 ret = NET_RX_SUCCESS;
c6c8fea2 324
44524fcd 325out:
32ae9b22
ML
326 if (primary_if)
327 hardif_free_ref(primary_if);
e1a5382f 328 if (router)
7d211efc 329 batadv_neigh_node_free_ref(router);
44524fcd 330 if (orig_node)
7d211efc 331 batadv_orig_node_free_ref(orig_node);
c6c8fea2
SE
332 return ret;
333}
334
335static int recv_icmp_ttl_exceeded(struct bat_priv *bat_priv,
74ef1153 336 struct sk_buff *skb)
c6c8fea2 337{
32ae9b22 338 struct hard_iface *primary_if = NULL;
44524fcd 339 struct orig_node *orig_node = NULL;
e1a5382f 340 struct neigh_node *router = NULL;
c6c8fea2 341 struct icmp_packet *icmp_packet;
44524fcd 342 int ret = NET_RX_DROP;
c6c8fea2
SE
343
344 icmp_packet = (struct icmp_packet *)skb->data;
c6c8fea2
SE
345
346 /* send TTL exceeded if packet is an echo request (traceroute) */
347 if (icmp_packet->msg_type != ECHO_REQUEST) {
86ceb360
SE
348 pr_debug("Warning - can't forward icmp packet from %pM to %pM: ttl exceeded\n",
349 icmp_packet->orig, icmp_packet->dst);
44524fcd 350 goto out;
c6c8fea2
SE
351 }
352
32ae9b22
ML
353 primary_if = primary_if_get_selected(bat_priv);
354 if (!primary_if)
44524fcd 355 goto out;
c6c8fea2
SE
356
357 /* get routing information */
7aadf889 358 orig_node = orig_hash_find(bat_priv, icmp_packet->orig);
44524fcd 359 if (!orig_node)
e1a5382f 360 goto out;
c6c8fea2 361
7d211efc 362 router = batadv_orig_node_get_router(orig_node);
e1a5382f
LL
363 if (!router)
364 goto out;
c6c8fea2 365
44524fcd 366 /* create a copy of the skb, if needed, to modify it. */
0d125074 367 if (skb_cow(skb, ETH_HLEN) < 0)
44524fcd 368 goto out;
c6c8fea2 369
44524fcd 370 icmp_packet = (struct icmp_packet *)skb->data;
c6c8fea2 371
44524fcd 372 memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN);
32ae9b22 373 memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
44524fcd 374 icmp_packet->msg_type = TTL_EXCEEDED;
76543d14 375 icmp_packet->header.ttl = TTL;
44524fcd 376
9455e34c 377 batadv_send_skb_packet(skb, router->if_incoming, router->addr);
44524fcd 378 ret = NET_RX_SUCCESS;
c6c8fea2 379
44524fcd 380out:
32ae9b22
ML
381 if (primary_if)
382 hardif_free_ref(primary_if);
e1a5382f 383 if (router)
7d211efc 384 batadv_neigh_node_free_ref(router);
44524fcd 385 if (orig_node)
7d211efc 386 batadv_orig_node_free_ref(orig_node);
c6c8fea2
SE
387 return ret;
388}
389
390
30d3c511 391int batadv_recv_icmp_packet(struct sk_buff *skb, struct hard_iface *recv_if)
c6c8fea2
SE
392{
393 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
394 struct icmp_packet_rr *icmp_packet;
395 struct ethhdr *ethhdr;
44524fcd 396 struct orig_node *orig_node = NULL;
e1a5382f 397 struct neigh_node *router = NULL;
c6c8fea2 398 int hdr_size = sizeof(struct icmp_packet);
44524fcd 399 int ret = NET_RX_DROP;
c6c8fea2
SE
400
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)))
44524fcd 409 goto out;
c6c8fea2
SE
410
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))
44524fcd 415 goto out;
c6c8fea2
SE
416
417 /* packet with broadcast sender address */
418 if (is_broadcast_ether_addr(ethhdr->h_source))
44524fcd 419 goto out;
c6c8fea2
SE
420
421 /* not for me */
422 if (!is_my_mac(ethhdr->h_dest))
44524fcd 423 goto out;
c6c8fea2
SE
424
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]),
7c64fd98 431 ethhdr->h_dest, ETH_ALEN);
c6c8fea2
SE
432 icmp_packet->rr_cur++;
433 }
434
435 /* packet for me */
436 if (is_my_mac(icmp_packet->dst))
437 return recv_my_icmp_packet(bat_priv, skb, hdr_size);
438
439 /* TTL exceeded */
76543d14 440 if (icmp_packet->header.ttl < 2)
74ef1153 441 return recv_icmp_ttl_exceeded(bat_priv, skb);
c6c8fea2 442
c6c8fea2 443 /* get routing information */
7aadf889 444 orig_node = orig_hash_find(bat_priv, icmp_packet->dst);
44524fcd 445 if (!orig_node)
e1a5382f 446 goto out;
c6c8fea2 447
7d211efc 448 router = batadv_orig_node_get_router(orig_node);
e1a5382f
LL
449 if (!router)
450 goto out;
c6c8fea2 451
44524fcd 452 /* create a copy of the skb, if needed, to modify it. */
0d125074 453 if (skb_cow(skb, ETH_HLEN) < 0)
44524fcd 454 goto out;
c6c8fea2 455
44524fcd 456 icmp_packet = (struct icmp_packet_rr *)skb->data;
c6c8fea2 457
44524fcd 458 /* decrement ttl */
76543d14 459 icmp_packet->header.ttl--;
44524fcd
ML
460
461 /* route it */
9455e34c 462 batadv_send_skb_packet(skb, router->if_incoming, router->addr);
44524fcd 463 ret = NET_RX_SUCCESS;
c6c8fea2 464
44524fcd 465out:
e1a5382f 466 if (router)
7d211efc 467 batadv_neigh_node_free_ref(router);
44524fcd 468 if (orig_node)
7d211efc 469 batadv_orig_node_free_ref(orig_node);
c6c8fea2
SE
470 return ret;
471}
472
55158629
LL
473/* 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,
747e4221 479 const struct hard_iface *recv_if)
55158629
LL
480{
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,
747e4221 530 const struct hard_iface *recv_if)
55158629
LL
531{
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)
7d211efc 555 batadv_neigh_node_free_ref(router);
55158629
LL
556
557 router = tmp_neigh_node;
558 atomic_inc_not_zero(&router->refcount);
559 }
560
7d211efc 561 batadv_neigh_node_free_ref(tmp_neigh_node);
55158629
LL
562 }
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
30d3c511 573int batadv_recv_tt_query(struct sk_buff *skb, struct hard_iface *recv_if)
a73105b8
AQ
574{
575 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
576 struct tt_query_packet *tt_query;
f25bd58a 577 uint16_t tt_size;
a73105b8
AQ
578 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
a73105b8
AQ
600 switch (tt_query->flags & TT_QUERY_TYPE_MASK) {
601 case TT_REQUEST:
f8214865
MH
602 batadv_inc_counter(bat_priv, BAT_CNT_TT_REQUEST_RX);
603
a73105b8
AQ
604 /* If we cannot provide an answer the tt_request is
605 * forwarded */
08c36d3e 606 if (!batadv_send_tt_response(bat_priv, tt_query)) {
a73105b8
AQ
607 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' : '.'));
a73105b8
AQ
611 return route_unicast_packet(skb, recv_if);
612 }
613 break;
614 case TT_RESPONSE:
f8214865
MH
615 batadv_inc_counter(bat_priv, BAT_CNT_TT_RESPONSE_RX);
616
dc58fe32
AQ
617 if (is_my_mac(tt_query->dst)) {
618 /* packet needs to be linearized to access the TT
619 * changes */
620 if (skb_linearize(skb) < 0)
621 goto out;
d2b6cc8e
AQ
622 /* skb_linearize() possibly changed skb->data */
623 tt_query = (struct tt_query_packet *)skb->data;
a73105b8 624
08c36d3e 625 tt_size = batadv_tt_len(ntohs(tt_query->tt_data));
8b7342d6
AQ
626
627 /* Ensure we have all the claimed data */
628 if (unlikely(skb_headlen(skb) <
f25bd58a 629 sizeof(struct tt_query_packet) + tt_size))
8b7342d6
AQ
630 goto out;
631
08c36d3e 632 batadv_handle_tt_response(bat_priv, tt_query);
dc58fe32 633 } else {
a73105b8
AQ
634 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' : '.'));
a73105b8
AQ
638 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
30d3c511 648int batadv_recv_roam_adv(struct sk_buff *skb, struct hard_iface *recv_if)
cc47f66e
AQ
649{
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
f8214865
MH
669 batadv_inc_counter(bat_priv, BAT_CNT_TT_ROAM_ADV_RX);
670
cc47f66e
AQ
671 roam_adv_packet = (struct roam_adv_packet *)skb->data;
672
673 if (!is_my_mac(roam_adv_packet->dst))
674 return route_unicast_packet(skb, recv_if);
675
20ff9d59
SW
676 /* 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 */
08adf151 680 if (batadv_bla_is_backbone_gw_orig(bat_priv, roam_adv_packet->src))
20ff9d59
SW
681 goto out;
682
cc47f66e
AQ
683 orig_node = orig_hash_find(bat_priv, roam_adv_packet->src);
684 if (!orig_node)
685 goto out;
686
86ceb360
SE
687 bat_dbg(DBG_TT, bat_priv,
688 "Received ROAMING_ADV from %pM (client %pM)\n",
689 roam_adv_packet->src, roam_adv_packet->client);
cc47f66e 690
08c36d3e
SE
691 batadv_tt_global_add(bat_priv, orig_node, roam_adv_packet->client,
692 atomic_read(&orig_node->last_ttvn) + 1, true,
693 false);
cc47f66e
AQ
694
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
7d211efc 700 batadv_orig_node_free_ref(orig_node);
cc47f66e
AQ
701out:
702 /* returning NET_RX_DROP will make the caller function kfree the skb */
703 return NET_RX_DROP;
704}
705
c6c8fea2 706/* find a suitable router for this originator, and use
a4c135c5
SW
707 * bonding if possible. increases the found neighbors
708 * refcount.*/
30d3c511
SE
709struct neigh_node *batadv_find_router(struct bat_priv *bat_priv,
710 struct orig_node *orig_node,
711 const struct hard_iface *recv_if)
c6c8fea2
SE
712{
713 struct orig_node *primary_orig_node;
714 struct orig_node *router_orig;
55158629 715 struct neigh_node *router;
c6c8fea2
SE
716 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
7d211efc 722 router = batadv_orig_node_get_router(orig_node);
e1a5382f 723 if (!router)
01df2b65 724 goto err;
c6c8fea2
SE
725
726 /* without bonding, the first node should
727 * always choose the default router. */
c6c8fea2
SE
728 bonding_enabled = atomic_read(&bat_priv->bonding);
729
a4c135c5
SW
730 rcu_read_lock();
731 /* select default router to output */
e1a5382f 732 router_orig = router->orig_node;
01df2b65
ML
733 if (!router_orig)
734 goto err_unlock;
a4c135c5 735
a4c135c5
SW
736 if ((!recv_if) && (!bonding_enabled))
737 goto return_router;
c6c8fea2
SE
738
739 /* if we have something in the primary_addr, we can search
740 * for a potential bonding candidate. */
39901e71 741 if (compare_eth(router_orig->primary_addr, zero_mac))
a4c135c5 742 goto return_router;
c6c8fea2
SE
743
744 /* find the orig_node which has the primary interface. might
745 * even be the same as our router_orig in many cases */
746
39901e71 747 if (compare_eth(router_orig->primary_addr, router_orig->orig)) {
c6c8fea2
SE
748 primary_orig_node = router_orig;
749 } else {
7aadf889
ML
750 primary_orig_node = orig_hash_find(bat_priv,
751 router_orig->primary_addr);
c6c8fea2 752 if (!primary_orig_node)
a4c135c5 753 goto return_router;
7aadf889 754
7d211efc 755 batadv_orig_node_free_ref(primary_orig_node);
c6c8fea2
SE
756 }
757
758 /* with less than 2 candidates, we can't do any
759 * bonding and prefer the original router. */
a4c135c5
SW
760 if (atomic_read(&primary_orig_node->bond_candidates) < 2)
761 goto return_router;
c6c8fea2 762
c6c8fea2
SE
763 /* all nodes between should choose a candidate which
764 * is is not on the interface where the packet came
765 * in. */
a4c135c5 766
7d211efc 767 batadv_neigh_node_free_ref(router);
c6c8fea2 768
55158629
LL
769 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);
c6c8fea2 773
a4c135c5 774return_router:
e2cbc11c
AQ
775 if (router && router->if_incoming->if_status != IF_ACTIVE)
776 goto err_unlock;
777
a4c135c5 778 rcu_read_unlock();
c6c8fea2 779 return router;
01df2b65
ML
780err_unlock:
781 rcu_read_unlock();
782err:
783 if (router)
7d211efc 784 batadv_neigh_node_free_ref(router);
01df2b65 785 return NULL;
c6c8fea2
SE
786}
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 */
807 if (!is_my_mac(ethhdr->h_dest))
808 return -1;
809
810 return 0;
811}
812
a7f6ee94 813static int route_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
c6c8fea2
SE
814{
815 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
44524fcd
ML
816 struct orig_node *orig_node = NULL;
817 struct neigh_node *neigh_node = NULL;
c6c8fea2
SE
818 struct unicast_packet *unicast_packet;
819 struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb);
44524fcd 820 int ret = NET_RX_DROP;
c6c8fea2
SE
821 struct sk_buff *new_skb;
822
823 unicast_packet = (struct unicast_packet *)skb->data;
824
825 /* TTL exceeded */
76543d14 826 if (unicast_packet->header.ttl < 2) {
86ceb360
SE
827 pr_debug("Warning - can't forward unicast packet from %pM to %pM: ttl exceeded\n",
828 ethhdr->h_source, unicast_packet->dest);
44524fcd 829 goto out;
c6c8fea2
SE
830 }
831
832 /* get routing information */
7aadf889
ML
833 orig_node = orig_hash_find(bat_priv, unicast_packet->dest);
834
44524fcd 835 if (!orig_node)
b5a6f69c 836 goto out;
c6c8fea2 837
a4c135c5 838 /* find_router() increases neigh_nodes refcount if found. */
30d3c511 839 neigh_node = batadv_find_router(bat_priv, orig_node, recv_if);
c6c8fea2 840
d0072609 841 if (!neigh_node)
44524fcd 842 goto out;
c6c8fea2
SE
843
844 /* create a copy of the skb, if needed, to modify it. */
0d125074 845 if (skb_cow(skb, ETH_HLEN) < 0)
44524fcd 846 goto out;
c6c8fea2
SE
847
848 unicast_packet = (struct unicast_packet *)skb->data;
849
76543d14 850 if (unicast_packet->header.packet_type == BAT_UNICAST &&
c6c8fea2 851 atomic_read(&bat_priv->fragmentation) &&
d0072609 852 skb->len > neigh_node->if_incoming->net_dev->mtu) {
88ed1e77
SE
853 ret = batadv_frag_send_skb(skb, bat_priv,
854 neigh_node->if_incoming,
855 neigh_node->addr);
d0072609
ML
856 goto out;
857 }
c6c8fea2 858
76543d14 859 if (unicast_packet->header.packet_type == BAT_UNICAST_FRAG &&
d0072609 860 frag_can_reassemble(skb, neigh_node->if_incoming->net_dev->mtu)) {
c6c8fea2 861
88ed1e77 862 ret = batadv_frag_reassemble_skb(skb, bat_priv, &new_skb);
c6c8fea2
SE
863
864 if (ret == NET_RX_DROP)
44524fcd 865 goto out;
c6c8fea2
SE
866
867 /* packet was buffered for late merge */
44524fcd
ML
868 if (!new_skb) {
869 ret = NET_RX_SUCCESS;
870 goto out;
871 }
c6c8fea2
SE
872
873 skb = new_skb;
874 unicast_packet = (struct unicast_packet *)skb->data;
875 }
876
877 /* decrement ttl */
76543d14 878 unicast_packet->header.ttl--;
c6c8fea2 879
f8214865
MH
880 /* 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
c6c8fea2 885 /* route it */
9455e34c 886 batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
44524fcd 887 ret = NET_RX_SUCCESS;
c6c8fea2 888
44524fcd
ML
889out:
890 if (neigh_node)
7d211efc 891 batadv_neigh_node_free_ref(neigh_node);
44524fcd 892 if (orig_node)
7d211efc 893 batadv_orig_node_free_ref(orig_node);
44524fcd 894 return ret;
c6c8fea2
SE
895}
896
a73105b8
AQ
897static 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;
cc47f66e 904 bool tt_poss_change;
a73105b8
AQ
905
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
cc47f66e
AQ
912 if (is_my_mac(unicast_packet->dest)) {
913 tt_poss_change = bat_priv->tt_poss_change;
a73105b8 914 curr_ttvn = (uint8_t)atomic_read(&bat_priv->ttvn);
cc47f66e 915 } else {
a73105b8
AQ
916 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);
cc47f66e 922 tt_poss_change = orig_node->tt_poss_change;
7d211efc 923 batadv_orig_node_free_ref(orig_node);
a73105b8
AQ
924 }
925
926 /* Check whether I have to reroute the packet */
cc47f66e 927 if (seq_before(unicast_packet->ttvn, curr_ttvn) || tt_poss_change) {
8710e261
AQ
928 /* check if there is enough data before accessing it */
929 if (pskb_may_pull(skb, sizeof(struct unicast_packet) +
930 ETH_HLEN) < 0)
a73105b8
AQ
931 return 0;
932
933 ethhdr = (struct ethhdr *)(skb->data +
934 sizeof(struct unicast_packet));
3275e7cc
AQ
935
936 /* we don't have an updated route for this client, so we should
937 * not try to reroute the packet!!
938 */
08c36d3e
SE
939 if (batadv_tt_global_client_is_roaming(bat_priv,
940 ethhdr->h_dest))
3275e7cc
AQ
941 return 1;
942
08c36d3e
SE
943 orig_node = batadv_transtable_search(bat_priv, NULL,
944 ethhdr->h_dest);
a73105b8
AQ
945
946 if (!orig_node) {
08c36d3e 947 if (!batadv_is_my_client(bat_priv, ethhdr->h_dest))
a73105b8
AQ
948 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);
7d211efc 960 batadv_orig_node_free_ref(orig_node);
a73105b8
AQ
961 }
962
86ceb360
SE
963 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);
a73105b8
AQ
967
968 unicast_packet->ttvn = curr_ttvn;
969 }
970 return 1;
971}
972
30d3c511 973int batadv_recv_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
c6c8fea2 974{
a73105b8 975 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
c6c8fea2 976 struct unicast_packet *unicast_packet;
704509b8 977 int hdr_size = sizeof(*unicast_packet);
c6c8fea2
SE
978
979 if (check_unicast_packet(skb, hdr_size) < 0)
980 return NET_RX_DROP;
981
a73105b8
AQ
982 if (!check_unicast_ttvn(bat_priv, skb))
983 return NET_RX_DROP;
984
c6c8fea2
SE
985 unicast_packet = (struct unicast_packet *)skb->data;
986
987 /* packet for me */
988 if (is_my_mac(unicast_packet->dest)) {
04b482a2
SE
989 batadv_interface_rx(recv_if->soft_iface, skb, recv_if,
990 hdr_size);
c6c8fea2
SE
991 return NET_RX_SUCCESS;
992 }
993
7cefb149 994 return route_unicast_packet(skb, recv_if);
c6c8fea2
SE
995}
996
30d3c511
SE
997int batadv_recv_ucast_frag_packet(struct sk_buff *skb,
998 struct hard_iface *recv_if)
c6c8fea2
SE
999{
1000 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1001 struct unicast_frag_packet *unicast_packet;
704509b8 1002 int hdr_size = sizeof(*unicast_packet);
c6c8fea2
SE
1003 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
a73105b8
AQ
1009 if (!check_unicast_ttvn(bat_priv, skb))
1010 return NET_RX_DROP;
1011
c6c8fea2
SE
1012 unicast_packet = (struct unicast_frag_packet *)skb->data;
1013
1014 /* packet for me */
1015 if (is_my_mac(unicast_packet->dest)) {
1016
88ed1e77 1017 ret = batadv_frag_reassemble_skb(skb, bat_priv, &new_skb);
c6c8fea2
SE
1018
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
04b482a2
SE
1026 batadv_interface_rx(recv_if->soft_iface, new_skb, recv_if,
1027 sizeof(struct unicast_packet));
c6c8fea2
SE
1028 return NET_RX_SUCCESS;
1029 }
1030
7cefb149 1031 return route_unicast_packet(skb, recv_if);
c6c8fea2
SE
1032}
1033
1034
30d3c511 1035int batadv_recv_bcast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
c6c8fea2
SE
1036{
1037 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
f3e0008f 1038 struct orig_node *orig_node = NULL;
c6c8fea2
SE
1039 struct bcast_packet *bcast_packet;
1040 struct ethhdr *ethhdr;
704509b8 1041 int hdr_size = sizeof(*bcast_packet);
f3e0008f 1042 int ret = NET_RX_DROP;
c6c8fea2
SE
1043 int32_t seq_diff;
1044
1045 /* drop packet if it has not necessary minimum size */
1046 if (unlikely(!pskb_may_pull(skb, hdr_size)))
f3e0008f 1047 goto out;
c6c8fea2
SE
1048
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))
f3e0008f 1053 goto out;
c6c8fea2
SE
1054
1055 /* packet with broadcast sender address */
1056 if (is_broadcast_ether_addr(ethhdr->h_source))
f3e0008f 1057 goto out;
c6c8fea2
SE
1058
1059 /* ignore broadcasts sent by myself */
1060 if (is_my_mac(ethhdr->h_source))
f3e0008f 1061 goto out;
c6c8fea2
SE
1062
1063 bcast_packet = (struct bcast_packet *)skb->data;
1064
1065 /* ignore broadcasts originated by myself */
1066 if (is_my_mac(bcast_packet->orig))
f3e0008f 1067 goto out;
c6c8fea2 1068
76543d14 1069 if (bcast_packet->header.ttl < 2)
f3e0008f 1070 goto out;
c6c8fea2 1071
7aadf889 1072 orig_node = orig_hash_find(bat_priv, bcast_packet->orig);
f3e0008f
ML
1073
1074 if (!orig_node)
b5a6f69c 1075 goto out;
c6c8fea2 1076
f3e0008f 1077 spin_lock_bh(&orig_node->bcast_seqno_lock);
c6c8fea2
SE
1078
1079 /* check whether the packet is a duplicate */
0079d2ce
SE
1080 if (bat_test_bit(orig_node->bcast_bits, orig_node->last_bcast_seqno,
1081 ntohl(bcast_packet->seqno)))
f3e0008f 1082 goto spin_unlock;
c6c8fea2
SE
1083
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. */
30d3c511
SE
1087 if (batadv_window_protected(bat_priv, seq_diff,
1088 &orig_node->bcast_seqno_reset))
f3e0008f 1089 goto spin_unlock;
c6c8fea2
SE
1090
1091 /* mark broadcast in flood history, update window position
1092 * if required. */
0f5f9322 1093 if (batadv_bit_get_packet(bat_priv, orig_node->bcast_bits, seq_diff, 1))
c6c8fea2
SE
1094 orig_node->last_bcast_seqno = ntohl(bcast_packet->seqno);
1095
f3e0008f 1096 spin_unlock_bh(&orig_node->bcast_seqno_lock);
f3e0008f 1097
fe2da6ff 1098 /* check whether this has been sent by another originator before */
08adf151 1099 if (batadv_bla_check_bcast_duplist(bat_priv, bcast_packet, hdr_size))
fe2da6ff
SW
1100 goto out;
1101
c6c8fea2 1102 /* rebroadcast packet */
9455e34c 1103 batadv_add_bcast_packet_to_list(bat_priv, skb, 1);
c6c8fea2 1104
23721387
SW
1105 /* don't hand the broadcast up if it is from an originator
1106 * from the same backbone.
1107 */
08adf151 1108 if (batadv_bla_is_backbone_gw(skb, orig_node, hdr_size))
23721387
SW
1109 goto out;
1110
c6c8fea2 1111 /* broadcast for me */
04b482a2 1112 batadv_interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size);
f3e0008f
ML
1113 ret = NET_RX_SUCCESS;
1114 goto out;
c6c8fea2 1115
f3e0008f
ML
1116spin_unlock:
1117 spin_unlock_bh(&orig_node->bcast_seqno_lock);
f3e0008f
ML
1118out:
1119 if (orig_node)
7d211efc 1120 batadv_orig_node_free_ref(orig_node);
f3e0008f 1121 return ret;
c6c8fea2
SE
1122}
1123
30d3c511 1124int batadv_recv_vis_packet(struct sk_buff *skb, struct hard_iface *recv_if)
c6c8fea2
SE
1125{
1126 struct vis_packet *vis_packet;
1127 struct ethhdr *ethhdr;
1128 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
704509b8 1129 int hdr_size = sizeof(*vis_packet);
c6c8fea2
SE
1130
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 */
1142 if (!is_my_mac(ethhdr->h_dest))
1143 return NET_RX_DROP;
1144
1145 /* ignore own packets */
1146 if (is_my_mac(vis_packet->vis_orig))
1147 return NET_RX_DROP;
1148
1149 if (is_my_mac(vis_packet->sender_orig))
1150 return NET_RX_DROP;
1151
1152 switch (vis_packet->vis_type) {
1153 case VIS_TYPE_SERVER_SYNC:
1154 receive_server_sync_packet(bat_priv, vis_packet,
1155 skb_headlen(skb));
1156 break;
1157
1158 case VIS_TYPE_CLIENT_UPDATE:
1159 receive_client_update_packet(bat_priv, vis_packet,
1160 skb_headlen(skb));
1161 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}
This page took 0.164628 seconds and 5 git commands to generate.