netfilter: conntrack: disable generic tracking for known protocols
[pandora-kernel.git] / net / batman-adv / routing.c
1 /*
2  * Copyright (C) 2007-2011 B.A.T.M.A.N. contributors:
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"
25 #include "soft-interface.h"
26 #include "hard-interface.h"
27 #include "icmp_socket.h"
28 #include "translation-table.h"
29 #include "originator.h"
30 #include "vis.h"
31 #include "unicast.h"
32 #include "bat_ogm.h"
33
34 void slide_own_bcast_window(struct hard_iface *hard_iface)
35 {
36         struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
37         struct hashtable_t *hash = bat_priv->orig_hash;
38         struct hlist_node *node;
39         struct hlist_head *head;
40         struct orig_node *orig_node;
41         unsigned long *word;
42         int i;
43         size_t word_index;
44
45         for (i = 0; i < hash->size; i++) {
46                 head = &hash->table[i];
47
48                 rcu_read_lock();
49                 hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
50                         spin_lock_bh(&orig_node->ogm_cnt_lock);
51                         word_index = hard_iface->if_num * NUM_WORDS;
52                         word = &(orig_node->bcast_own[word_index]);
53
54                         bit_get_packet(bat_priv, word, 1, 0);
55                         orig_node->bcast_own_sum[hard_iface->if_num] =
56                                 bit_packet_count(word);
57                         spin_unlock_bh(&orig_node->ogm_cnt_lock);
58                 }
59                 rcu_read_unlock();
60         }
61 }
62
63 static void _update_route(struct bat_priv *bat_priv,
64                           struct orig_node *orig_node,
65                           struct neigh_node *neigh_node)
66 {
67         struct neigh_node *curr_router;
68
69         curr_router = orig_node_get_router(orig_node);
70
71         /* route deleted */
72         if ((curr_router) && (!neigh_node)) {
73                 bat_dbg(DBG_ROUTES, bat_priv, "Deleting route towards: %pM\n",
74                         orig_node->orig);
75                 tt_global_del_orig(bat_priv, orig_node,
76                                     "Deleted route towards originator");
77
78         /* route added */
79         } else if ((!curr_router) && (neigh_node)) {
80
81                 bat_dbg(DBG_ROUTES, bat_priv,
82                         "Adding route towards: %pM (via %pM)\n",
83                         orig_node->orig, neigh_node->addr);
84         /* route changed */
85         } else if (neigh_node && curr_router) {
86                 bat_dbg(DBG_ROUTES, bat_priv,
87                         "Changing route towards: %pM "
88                         "(now via %pM - was via %pM)\n",
89                         orig_node->orig, neigh_node->addr,
90                         curr_router->addr);
91         }
92
93         if (curr_router)
94                 neigh_node_free_ref(curr_router);
95
96         /* increase refcount of new best neighbor */
97         if (neigh_node && !atomic_inc_not_zero(&neigh_node->refcount))
98                 neigh_node = NULL;
99
100         spin_lock_bh(&orig_node->neigh_list_lock);
101         rcu_assign_pointer(orig_node->router, neigh_node);
102         spin_unlock_bh(&orig_node->neigh_list_lock);
103
104         /* decrease refcount of previous best neighbor */
105         if (curr_router)
106                 neigh_node_free_ref(curr_router);
107 }
108
109 void update_route(struct bat_priv *bat_priv, struct orig_node *orig_node,
110                   struct neigh_node *neigh_node)
111 {
112         struct neigh_node *router = NULL;
113
114         if (!orig_node)
115                 goto out;
116
117         router = orig_node_get_router(orig_node);
118
119         if (router != neigh_node)
120                 _update_route(bat_priv, orig_node, neigh_node);
121
122 out:
123         if (router)
124                 neigh_node_free_ref(router);
125 }
126
127 /* caller must hold the neigh_list_lock */
128 void bonding_candidate_del(struct orig_node *orig_node,
129                            struct neigh_node *neigh_node)
130 {
131         /* this neighbor is not part of our candidate list */
132         if (list_empty(&neigh_node->bonding_list))
133                 goto out;
134
135         list_del_rcu(&neigh_node->bonding_list);
136         INIT_LIST_HEAD(&neigh_node->bonding_list);
137         neigh_node_free_ref(neigh_node);
138         atomic_dec(&orig_node->bond_candidates);
139
140 out:
141         return;
142 }
143
144 void bonding_candidate_add(struct orig_node *orig_node,
145                            struct neigh_node *neigh_node)
146 {
147         struct hlist_node *node;
148         struct neigh_node *tmp_neigh_node, *router = NULL;
149         uint8_t interference_candidate = 0;
150
151         spin_lock_bh(&orig_node->neigh_list_lock);
152
153         /* only consider if it has the same primary address ...  */
154         if (!compare_eth(orig_node->orig,
155                          neigh_node->orig_node->primary_addr))
156                 goto candidate_del;
157
158         router = orig_node_get_router(orig_node);
159         if (!router)
160                 goto candidate_del;
161
162         /* ... and is good enough to be considered */
163         if (neigh_node->tq_avg < router->tq_avg - BONDING_TQ_THRESHOLD)
164                 goto candidate_del;
165
166         /**
167          * check if we have another candidate with the same mac address or
168          * interface. If we do, we won't select this candidate because of
169          * possible interference.
170          */
171         hlist_for_each_entry_rcu(tmp_neigh_node, node,
172                                  &orig_node->neigh_list, list) {
173
174                 if (tmp_neigh_node == neigh_node)
175                         continue;
176
177                 /* we only care if the other candidate is even
178                 * considered as candidate. */
179                 if (list_empty(&tmp_neigh_node->bonding_list))
180                         continue;
181
182                 if ((neigh_node->if_incoming == tmp_neigh_node->if_incoming) ||
183                     (compare_eth(neigh_node->addr, tmp_neigh_node->addr))) {
184                         interference_candidate = 1;
185                         break;
186                 }
187         }
188
189         /* don't care further if it is an interference candidate */
190         if (interference_candidate)
191                 goto candidate_del;
192
193         /* this neighbor already is part of our candidate list */
194         if (!list_empty(&neigh_node->bonding_list))
195                 goto out;
196
197         if (!atomic_inc_not_zero(&neigh_node->refcount))
198                 goto out;
199
200         list_add_rcu(&neigh_node->bonding_list, &orig_node->bond_list);
201         atomic_inc(&orig_node->bond_candidates);
202         goto out;
203
204 candidate_del:
205         bonding_candidate_del(orig_node, neigh_node);
206
207 out:
208         spin_unlock_bh(&orig_node->neigh_list_lock);
209
210         if (router)
211                 neigh_node_free_ref(router);
212 }
213
214 /* copy primary address for bonding */
215 void bonding_save_primary(const struct orig_node *orig_node,
216                           struct orig_node *orig_neigh_node,
217                           const struct batman_ogm_packet *batman_ogm_packet)
218 {
219         if (!(batman_ogm_packet->flags & PRIMARIES_FIRST_HOP))
220                 return;
221
222         memcpy(orig_neigh_node->primary_addr, orig_node->orig, ETH_ALEN);
223 }
224
225 /* checks whether the host restarted and is in the protection time.
226  * returns:
227  *  0 if the packet is to be accepted
228  *  1 if the packet is to be ignored.
229  */
230 int window_protected(struct bat_priv *bat_priv, int32_t seq_num_diff,
231                      unsigned long *last_reset)
232 {
233         if ((seq_num_diff <= -TQ_LOCAL_WINDOW_SIZE)
234                 || (seq_num_diff >= EXPECTED_SEQNO_RANGE)) {
235                 if (time_after(jiffies, *last_reset +
236                         msecs_to_jiffies(RESET_PROTECTION_MS))) {
237
238                         *last_reset = jiffies;
239                         bat_dbg(DBG_BATMAN, bat_priv,
240                                 "old packet received, start protection\n");
241
242                         return 0;
243                 } else
244                         return 1;
245         }
246         return 0;
247 }
248
249 int recv_bat_ogm_packet(struct sk_buff *skb, struct hard_iface *hard_iface)
250 {
251         struct ethhdr *ethhdr;
252
253         /* drop packet if it has not necessary minimum size */
254         if (unlikely(!pskb_may_pull(skb, BATMAN_OGM_LEN)))
255                 return NET_RX_DROP;
256
257         ethhdr = (struct ethhdr *)skb_mac_header(skb);
258
259         /* packet with broadcast indication but unicast recipient */
260         if (!is_broadcast_ether_addr(ethhdr->h_dest))
261                 return NET_RX_DROP;
262
263         /* packet with broadcast sender address */
264         if (is_broadcast_ether_addr(ethhdr->h_source))
265                 return NET_RX_DROP;
266
267         /* create a copy of the skb, if needed, to modify it. */
268         if (skb_cow(skb, 0) < 0)
269                 return NET_RX_DROP;
270
271         /* keep skb linear */
272         if (skb_linearize(skb) < 0)
273                 return NET_RX_DROP;
274
275         ethhdr = (struct ethhdr *)skb_mac_header(skb);
276
277         bat_ogm_receive(ethhdr, skb->data, skb_headlen(skb), hard_iface);
278
279         kfree_skb(skb);
280         return NET_RX_SUCCESS;
281 }
282
283 static int recv_my_icmp_packet(struct bat_priv *bat_priv,
284                                struct sk_buff *skb, size_t icmp_len)
285 {
286         struct hard_iface *primary_if = NULL;
287         struct orig_node *orig_node = NULL;
288         struct neigh_node *router = NULL;
289         struct icmp_packet_rr *icmp_packet;
290         int ret = NET_RX_DROP;
291
292         icmp_packet = (struct icmp_packet_rr *)skb->data;
293
294         /* add data to device queue */
295         if (icmp_packet->msg_type != ECHO_REQUEST) {
296                 bat_socket_receive_packet(icmp_packet, icmp_len);
297                 goto out;
298         }
299
300         primary_if = primary_if_get_selected(bat_priv);
301         if (!primary_if)
302                 goto out;
303
304         /* answer echo request (ping) */
305         /* get routing information */
306         orig_node = orig_hash_find(bat_priv, icmp_packet->orig);
307         if (!orig_node)
308                 goto out;
309
310         router = orig_node_get_router(orig_node);
311         if (!router)
312                 goto out;
313
314         /* create a copy of the skb, if needed, to modify it. */
315         if (skb_cow(skb, sizeof(struct ethhdr)) < 0)
316                 goto out;
317
318         icmp_packet = (struct icmp_packet_rr *)skb->data;
319
320         memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN);
321         memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
322         icmp_packet->msg_type = ECHO_REPLY;
323         icmp_packet->ttl = TTL;
324
325         send_skb_packet(skb, router->if_incoming, router->addr);
326         ret = NET_RX_SUCCESS;
327
328 out:
329         if (primary_if)
330                 hardif_free_ref(primary_if);
331         if (router)
332                 neigh_node_free_ref(router);
333         if (orig_node)
334                 orig_node_free_ref(orig_node);
335         return ret;
336 }
337
338 static int recv_icmp_ttl_exceeded(struct bat_priv *bat_priv,
339                                   struct sk_buff *skb)
340 {
341         struct hard_iface *primary_if = NULL;
342         struct orig_node *orig_node = NULL;
343         struct neigh_node *router = NULL;
344         struct icmp_packet *icmp_packet;
345         int ret = NET_RX_DROP;
346
347         icmp_packet = (struct icmp_packet *)skb->data;
348
349         /* send TTL exceeded if packet is an echo request (traceroute) */
350         if (icmp_packet->msg_type != ECHO_REQUEST) {
351                 pr_debug("Warning - can't forward icmp packet from %pM to "
352                          "%pM: ttl exceeded\n", icmp_packet->orig,
353                          icmp_packet->dst);
354                 goto out;
355         }
356
357         primary_if = primary_if_get_selected(bat_priv);
358         if (!primary_if)
359                 goto out;
360
361         /* get routing information */
362         orig_node = orig_hash_find(bat_priv, icmp_packet->orig);
363         if (!orig_node)
364                 goto out;
365
366         router = orig_node_get_router(orig_node);
367         if (!router)
368                 goto out;
369
370         /* create a copy of the skb, if needed, to modify it. */
371         if (skb_cow(skb, sizeof(struct ethhdr)) < 0)
372                 goto out;
373
374         icmp_packet = (struct icmp_packet *)skb->data;
375
376         memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN);
377         memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN);
378         icmp_packet->msg_type = TTL_EXCEEDED;
379         icmp_packet->ttl = TTL;
380
381         send_skb_packet(skb, router->if_incoming, router->addr);
382         ret = NET_RX_SUCCESS;
383
384 out:
385         if (primary_if)
386                 hardif_free_ref(primary_if);
387         if (router)
388                 neigh_node_free_ref(router);
389         if (orig_node)
390                 orig_node_free_ref(orig_node);
391         return ret;
392 }
393
394
395 int recv_icmp_packet(struct sk_buff *skb, struct hard_iface *recv_if)
396 {
397         struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
398         struct icmp_packet_rr *icmp_packet;
399         struct ethhdr *ethhdr;
400         struct orig_node *orig_node = NULL;
401         struct neigh_node *router = NULL;
402         int hdr_size = sizeof(struct icmp_packet);
403         int ret = NET_RX_DROP;
404
405         /**
406          * we truncate all incoming icmp packets if they don't match our size
407          */
408         if (skb->len >= sizeof(struct icmp_packet_rr))
409                 hdr_size = sizeof(struct icmp_packet_rr);
410
411         /* drop packet if it has not necessary minimum size */
412         if (unlikely(!pskb_may_pull(skb, hdr_size)))
413                 goto out;
414
415         ethhdr = (struct ethhdr *)skb_mac_header(skb);
416
417         /* packet with unicast indication but broadcast recipient */
418         if (is_broadcast_ether_addr(ethhdr->h_dest))
419                 goto out;
420
421         /* packet with broadcast sender address */
422         if (is_broadcast_ether_addr(ethhdr->h_source))
423                 goto out;
424
425         /* not for me */
426         if (!is_my_mac(ethhdr->h_dest))
427                 goto out;
428
429         icmp_packet = (struct icmp_packet_rr *)skb->data;
430
431         /* add record route information if not full */
432         if ((hdr_size == sizeof(struct icmp_packet_rr)) &&
433             (icmp_packet->rr_cur < BAT_RR_LEN)) {
434                 memcpy(&(icmp_packet->rr[icmp_packet->rr_cur]),
435                         ethhdr->h_dest, ETH_ALEN);
436                 icmp_packet->rr_cur++;
437         }
438
439         /* packet for me */
440         if (is_my_mac(icmp_packet->dst))
441                 return recv_my_icmp_packet(bat_priv, skb, hdr_size);
442
443         /* TTL exceeded */
444         if (icmp_packet->ttl < 2)
445                 return recv_icmp_ttl_exceeded(bat_priv, skb);
446
447         /* get routing information */
448         orig_node = orig_hash_find(bat_priv, icmp_packet->dst);
449         if (!orig_node)
450                 goto out;
451
452         router = orig_node_get_router(orig_node);
453         if (!router)
454                 goto out;
455
456         /* create a copy of the skb, if needed, to modify it. */
457         if (skb_cow(skb, sizeof(struct ethhdr)) < 0)
458                 goto out;
459
460         icmp_packet = (struct icmp_packet_rr *)skb->data;
461
462         /* decrement ttl */
463         icmp_packet->ttl--;
464
465         /* route it */
466         send_skb_packet(skb, router->if_incoming, router->addr);
467         ret = NET_RX_SUCCESS;
468
469 out:
470         if (router)
471                 neigh_node_free_ref(router);
472         if (orig_node)
473                 orig_node_free_ref(orig_node);
474         return ret;
475 }
476
477 /* In the bonding case, send the packets in a round
478  * robin fashion over the remaining interfaces.
479  *
480  * This method rotates the bonding list and increases the
481  * returned router's refcount. */
482 static struct neigh_node *find_bond_router(struct orig_node *primary_orig,
483                                            const struct hard_iface *recv_if)
484 {
485         struct neigh_node *tmp_neigh_node;
486         struct neigh_node *router = NULL, *first_candidate = NULL;
487
488         rcu_read_lock();
489         list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list,
490                                 bonding_list) {
491                 if (!first_candidate)
492                         first_candidate = tmp_neigh_node;
493
494                 /* recv_if == NULL on the first node. */
495                 if (tmp_neigh_node->if_incoming == recv_if)
496                         continue;
497
498                 if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
499                         continue;
500
501                 router = tmp_neigh_node;
502                 break;
503         }
504
505         /* use the first candidate if nothing was found. */
506         if (!router && first_candidate &&
507             atomic_inc_not_zero(&first_candidate->refcount))
508                 router = first_candidate;
509
510         if (!router)
511                 goto out;
512
513         /* selected should point to the next element
514          * after the current router */
515         spin_lock_bh(&primary_orig->neigh_list_lock);
516         /* this is a list_move(), which unfortunately
517          * does not exist as rcu version */
518         list_del_rcu(&primary_orig->bond_list);
519         list_add_rcu(&primary_orig->bond_list,
520                      &router->bonding_list);
521         spin_unlock_bh(&primary_orig->neigh_list_lock);
522
523 out:
524         rcu_read_unlock();
525         return router;
526 }
527
528 /* Interface Alternating: Use the best of the
529  * remaining candidates which are not using
530  * this interface.
531  *
532  * Increases the returned router's refcount */
533 static struct neigh_node *find_ifalter_router(struct orig_node *primary_orig,
534                                               const struct hard_iface *recv_if)
535 {
536         struct neigh_node *tmp_neigh_node;
537         struct neigh_node *router = NULL, *first_candidate = NULL;
538
539         rcu_read_lock();
540         list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list,
541                                 bonding_list) {
542                 if (!first_candidate)
543                         first_candidate = tmp_neigh_node;
544
545                 /* recv_if == NULL on the first node. */
546                 if (tmp_neigh_node->if_incoming == recv_if)
547                         continue;
548
549                 if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
550                         continue;
551
552                 /* if we don't have a router yet
553                  * or this one is better, choose it. */
554                 if ((!router) ||
555                     (tmp_neigh_node->tq_avg > router->tq_avg)) {
556                         /* decrement refcount of
557                          * previously selected router */
558                         if (router)
559                                 neigh_node_free_ref(router);
560
561                         router = tmp_neigh_node;
562                         atomic_inc_not_zero(&router->refcount);
563                 }
564
565                 neigh_node_free_ref(tmp_neigh_node);
566         }
567
568         /* use the first candidate if nothing was found. */
569         if (!router && first_candidate &&
570             atomic_inc_not_zero(&first_candidate->refcount))
571                 router = first_candidate;
572
573         rcu_read_unlock();
574         return router;
575 }
576
577 int recv_tt_query(struct sk_buff *skb, struct hard_iface *recv_if)
578 {
579         struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
580         struct tt_query_packet *tt_query;
581         struct ethhdr *ethhdr;
582
583         /* drop packet if it has not necessary minimum size */
584         if (unlikely(!pskb_may_pull(skb, sizeof(struct tt_query_packet))))
585                 goto out;
586
587         /* I could need to modify it */
588         if (skb_cow(skb, sizeof(struct tt_query_packet)) < 0)
589                 goto out;
590
591         ethhdr = (struct ethhdr *)skb_mac_header(skb);
592
593         /* packet with unicast indication but broadcast recipient */
594         if (is_broadcast_ether_addr(ethhdr->h_dest))
595                 goto out;
596
597         /* packet with broadcast sender address */
598         if (is_broadcast_ether_addr(ethhdr->h_source))
599                 goto out;
600
601         tt_query = (struct tt_query_packet *)skb->data;
602
603         tt_query->tt_data = ntohs(tt_query->tt_data);
604
605         switch (tt_query->flags & TT_QUERY_TYPE_MASK) {
606         case TT_REQUEST:
607                 /* If we cannot provide an answer the tt_request is
608                  * forwarded */
609                 if (!send_tt_response(bat_priv, tt_query)) {
610                         bat_dbg(DBG_TT, bat_priv,
611                                 "Routing TT_REQUEST to %pM [%c]\n",
612                                 tt_query->dst,
613                                 (tt_query->flags & TT_FULL_TABLE ? 'F' : '.'));
614                         tt_query->tt_data = htons(tt_query->tt_data);
615                         return route_unicast_packet(skb, recv_if);
616                 }
617                 break;
618         case TT_RESPONSE:
619                 /* packet needs to be linearized to access the TT changes */
620                 if (skb_linearize(skb) < 0)
621                         goto out;
622                 /* skb_linearize() possibly changed skb->data */
623                 tt_query = (struct tt_query_packet *)skb->data;
624
625                 if (is_my_mac(tt_query->dst))
626                         handle_tt_response(bat_priv, tt_query);
627                 else {
628                         bat_dbg(DBG_TT, bat_priv,
629                                 "Routing TT_RESPONSE to %pM [%c]\n",
630                                 tt_query->dst,
631                                 (tt_query->flags & TT_FULL_TABLE ? 'F' : '.'));
632                         tt_query->tt_data = htons(tt_query->tt_data);
633                         return route_unicast_packet(skb, recv_if);
634                 }
635                 break;
636         }
637
638 out:
639         /* returning NET_RX_DROP will make the caller function kfree the skb */
640         return NET_RX_DROP;
641 }
642
643 int recv_roam_adv(struct sk_buff *skb, struct hard_iface *recv_if)
644 {
645         struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
646         struct roam_adv_packet *roam_adv_packet;
647         struct orig_node *orig_node;
648         struct ethhdr *ethhdr;
649
650         /* drop packet if it has not necessary minimum size */
651         if (unlikely(!pskb_may_pull(skb, sizeof(struct roam_adv_packet))))
652                 goto out;
653
654         ethhdr = (struct ethhdr *)skb_mac_header(skb);
655
656         /* packet with unicast indication but broadcast recipient */
657         if (is_broadcast_ether_addr(ethhdr->h_dest))
658                 goto out;
659
660         /* packet with broadcast sender address */
661         if (is_broadcast_ether_addr(ethhdr->h_source))
662                 goto out;
663
664         roam_adv_packet = (struct roam_adv_packet *)skb->data;
665
666         if (!is_my_mac(roam_adv_packet->dst))
667                 return route_unicast_packet(skb, recv_if);
668
669         orig_node = orig_hash_find(bat_priv, roam_adv_packet->src);
670         if (!orig_node)
671                 goto out;
672
673         bat_dbg(DBG_TT, bat_priv, "Received ROAMING_ADV from %pM "
674                 "(client %pM)\n", roam_adv_packet->src,
675                 roam_adv_packet->client);
676
677         tt_global_add(bat_priv, orig_node, roam_adv_packet->client,
678                       atomic_read(&orig_node->last_ttvn) + 1, true, false);
679
680         /* Roaming phase starts: I have new information but the ttvn has not
681          * been incremented yet. This flag will make me check all the incoming
682          * packets for the correct destination. */
683         bat_priv->tt_poss_change = true;
684
685         orig_node_free_ref(orig_node);
686 out:
687         /* returning NET_RX_DROP will make the caller function kfree the skb */
688         return NET_RX_DROP;
689 }
690
691 /* find a suitable router for this originator, and use
692  * bonding if possible. increases the found neighbors
693  * refcount.*/
694 struct neigh_node *find_router(struct bat_priv *bat_priv,
695                                struct orig_node *orig_node,
696                                const struct hard_iface *recv_if)
697 {
698         struct orig_node *primary_orig_node;
699         struct orig_node *router_orig;
700         struct neigh_node *router;
701         static uint8_t zero_mac[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
702         int bonding_enabled;
703
704         if (!orig_node)
705                 return NULL;
706
707         router = orig_node_get_router(orig_node);
708         if (!router)
709                 goto err;
710
711         /* without bonding, the first node should
712          * always choose the default router. */
713         bonding_enabled = atomic_read(&bat_priv->bonding);
714
715         rcu_read_lock();
716         /* select default router to output */
717         router_orig = router->orig_node;
718         if (!router_orig)
719                 goto err_unlock;
720
721         if ((!recv_if) && (!bonding_enabled))
722                 goto return_router;
723
724         /* if we have something in the primary_addr, we can search
725          * for a potential bonding candidate. */
726         if (compare_eth(router_orig->primary_addr, zero_mac))
727                 goto return_router;
728
729         /* find the orig_node which has the primary interface. might
730          * even be the same as our router_orig in many cases */
731
732         if (compare_eth(router_orig->primary_addr, router_orig->orig)) {
733                 primary_orig_node = router_orig;
734         } else {
735                 primary_orig_node = orig_hash_find(bat_priv,
736                                                    router_orig->primary_addr);
737                 if (!primary_orig_node)
738                         goto return_router;
739
740                 orig_node_free_ref(primary_orig_node);
741         }
742
743         /* with less than 2 candidates, we can't do any
744          * bonding and prefer the original router. */
745         if (atomic_read(&primary_orig_node->bond_candidates) < 2)
746                 goto return_router;
747
748         /* all nodes between should choose a candidate which
749          * is is not on the interface where the packet came
750          * in. */
751
752         neigh_node_free_ref(router);
753
754         if (bonding_enabled)
755                 router = find_bond_router(primary_orig_node, recv_if);
756         else
757                 router = find_ifalter_router(primary_orig_node, recv_if);
758
759 return_router:
760         if (router && router->if_incoming->if_status != IF_ACTIVE)
761                 goto err_unlock;
762
763         rcu_read_unlock();
764         return router;
765 err_unlock:
766         rcu_read_unlock();
767 err:
768         if (router)
769                 neigh_node_free_ref(router);
770         return NULL;
771 }
772
773 static int check_unicast_packet(struct sk_buff *skb, int hdr_size)
774 {
775         struct ethhdr *ethhdr;
776
777         /* drop packet if it has not necessary minimum size */
778         if (unlikely(!pskb_may_pull(skb, hdr_size)))
779                 return -1;
780
781         ethhdr = (struct ethhdr *)skb_mac_header(skb);
782
783         /* packet with unicast indication but broadcast recipient */
784         if (is_broadcast_ether_addr(ethhdr->h_dest))
785                 return -1;
786
787         /* packet with broadcast sender address */
788         if (is_broadcast_ether_addr(ethhdr->h_source))
789                 return -1;
790
791         /* not for me */
792         if (!is_my_mac(ethhdr->h_dest))
793                 return -1;
794
795         return 0;
796 }
797
798 int route_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
799 {
800         struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
801         struct orig_node *orig_node = NULL;
802         struct neigh_node *neigh_node = NULL;
803         struct unicast_packet *unicast_packet;
804         struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb);
805         int ret = NET_RX_DROP;
806         struct sk_buff *new_skb;
807
808         unicast_packet = (struct unicast_packet *)skb->data;
809
810         /* TTL exceeded */
811         if (unicast_packet->ttl < 2) {
812                 pr_debug("Warning - can't forward unicast packet from %pM to "
813                          "%pM: ttl exceeded\n", ethhdr->h_source,
814                          unicast_packet->dest);
815                 goto out;
816         }
817
818         /* get routing information */
819         orig_node = orig_hash_find(bat_priv, unicast_packet->dest);
820
821         if (!orig_node)
822                 goto out;
823
824         /* find_router() increases neigh_nodes refcount if found. */
825         neigh_node = find_router(bat_priv, orig_node, recv_if);
826
827         if (!neigh_node)
828                 goto out;
829
830         /* create a copy of the skb, if needed, to modify it. */
831         if (skb_cow(skb, sizeof(struct ethhdr)) < 0)
832                 goto out;
833
834         unicast_packet = (struct unicast_packet *)skb->data;
835
836         if (unicast_packet->packet_type == BAT_UNICAST &&
837             atomic_read(&bat_priv->fragmentation) &&
838             skb->len > neigh_node->if_incoming->net_dev->mtu) {
839                 ret = frag_send_skb(skb, bat_priv,
840                                     neigh_node->if_incoming, neigh_node->addr);
841                 goto out;
842         }
843
844         if (unicast_packet->packet_type == BAT_UNICAST_FRAG &&
845             frag_can_reassemble(skb, neigh_node->if_incoming->net_dev->mtu)) {
846
847                 ret = frag_reassemble_skb(skb, bat_priv, &new_skb);
848
849                 if (ret == NET_RX_DROP)
850                         goto out;
851
852                 /* packet was buffered for late merge */
853                 if (!new_skb) {
854                         ret = NET_RX_SUCCESS;
855                         goto out;
856                 }
857
858                 skb = new_skb;
859                 unicast_packet = (struct unicast_packet *)skb->data;
860         }
861
862         /* decrement ttl */
863         unicast_packet->ttl--;
864
865         /* route it */
866         send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
867         ret = NET_RX_SUCCESS;
868
869 out:
870         if (neigh_node)
871                 neigh_node_free_ref(neigh_node);
872         if (orig_node)
873                 orig_node_free_ref(orig_node);
874         return ret;
875 }
876
877 static int check_unicast_ttvn(struct bat_priv *bat_priv,
878                                struct sk_buff *skb) {
879         uint8_t curr_ttvn;
880         struct orig_node *orig_node;
881         struct ethhdr *ethhdr;
882         struct hard_iface *primary_if;
883         struct unicast_packet *unicast_packet;
884         bool tt_poss_change;
885
886         /* I could need to modify it */
887         if (skb_cow(skb, sizeof(struct unicast_packet)) < 0)
888                 return 0;
889
890         unicast_packet = (struct unicast_packet *)skb->data;
891
892         if (is_my_mac(unicast_packet->dest)) {
893                 tt_poss_change = bat_priv->tt_poss_change;
894                 curr_ttvn = (uint8_t)atomic_read(&bat_priv->ttvn);
895         } else {
896                 orig_node = orig_hash_find(bat_priv, unicast_packet->dest);
897
898                 if (!orig_node)
899                         return 0;
900
901                 curr_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
902                 tt_poss_change = orig_node->tt_poss_change;
903                 orig_node_free_ref(orig_node);
904         }
905
906         /* Check whether I have to reroute the packet */
907         if (seq_before(unicast_packet->ttvn, curr_ttvn) || tt_poss_change) {
908                 /* Linearize the skb before accessing it */
909                 if (skb_linearize(skb) < 0)
910                         return 0;
911
912                 ethhdr = (struct ethhdr *)(skb->data +
913                         sizeof(struct unicast_packet));
914                 orig_node = transtable_search(bat_priv, NULL, ethhdr->h_dest);
915
916                 if (!orig_node) {
917                         if (!is_my_client(bat_priv, ethhdr->h_dest))
918                                 return 0;
919                         primary_if = primary_if_get_selected(bat_priv);
920                         if (!primary_if)
921                                 return 0;
922                         memcpy(unicast_packet->dest,
923                                primary_if->net_dev->dev_addr, ETH_ALEN);
924                         hardif_free_ref(primary_if);
925                 } else {
926                         memcpy(unicast_packet->dest, orig_node->orig,
927                                ETH_ALEN);
928                         curr_ttvn = (uint8_t)
929                                 atomic_read(&orig_node->last_ttvn);
930                         orig_node_free_ref(orig_node);
931                 }
932
933                 bat_dbg(DBG_ROUTES, bat_priv, "TTVN mismatch (old_ttvn %u "
934                         "new_ttvn %u)! Rerouting unicast packet (for %pM) to "
935                         "%pM\n", unicast_packet->ttvn, curr_ttvn,
936                         ethhdr->h_dest, unicast_packet->dest);
937
938                 unicast_packet->ttvn = curr_ttvn;
939         }
940         return 1;
941 }
942
943 int recv_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
944 {
945         struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
946         struct unicast_packet *unicast_packet;
947         int hdr_size = sizeof(*unicast_packet);
948
949         if (check_unicast_packet(skb, hdr_size) < 0)
950                 return NET_RX_DROP;
951
952         if (!check_unicast_ttvn(bat_priv, skb))
953                 return NET_RX_DROP;
954
955         unicast_packet = (struct unicast_packet *)skb->data;
956
957         /* packet for me */
958         if (is_my_mac(unicast_packet->dest)) {
959                 interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size);
960                 return NET_RX_SUCCESS;
961         }
962
963         return route_unicast_packet(skb, recv_if);
964 }
965
966 int recv_ucast_frag_packet(struct sk_buff *skb, struct hard_iface *recv_if)
967 {
968         struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
969         struct unicast_frag_packet *unicast_packet;
970         int hdr_size = sizeof(*unicast_packet);
971         struct sk_buff *new_skb = NULL;
972         int ret;
973
974         if (check_unicast_packet(skb, hdr_size) < 0)
975                 return NET_RX_DROP;
976
977         if (!check_unicast_ttvn(bat_priv, skb))
978                 return NET_RX_DROP;
979
980         unicast_packet = (struct unicast_frag_packet *)skb->data;
981
982         /* packet for me */
983         if (is_my_mac(unicast_packet->dest)) {
984
985                 ret = frag_reassemble_skb(skb, bat_priv, &new_skb);
986
987                 if (ret == NET_RX_DROP)
988                         return NET_RX_DROP;
989
990                 /* packet was buffered for late merge */
991                 if (!new_skb)
992                         return NET_RX_SUCCESS;
993
994                 interface_rx(recv_if->soft_iface, new_skb, recv_if,
995                              sizeof(struct unicast_packet));
996                 return NET_RX_SUCCESS;
997         }
998
999         return route_unicast_packet(skb, recv_if);
1000 }
1001
1002
1003 int recv_bcast_packet(struct sk_buff *skb, struct hard_iface *recv_if)
1004 {
1005         struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1006         struct orig_node *orig_node = NULL;
1007         struct bcast_packet *bcast_packet;
1008         struct ethhdr *ethhdr;
1009         int hdr_size = sizeof(*bcast_packet);
1010         int ret = NET_RX_DROP;
1011         int32_t seq_diff;
1012
1013         /* drop packet if it has not necessary minimum size */
1014         if (unlikely(!pskb_may_pull(skb, hdr_size)))
1015                 goto out;
1016
1017         ethhdr = (struct ethhdr *)skb_mac_header(skb);
1018
1019         /* packet with broadcast indication but unicast recipient */
1020         if (!is_broadcast_ether_addr(ethhdr->h_dest))
1021                 goto out;
1022
1023         /* packet with broadcast sender address */
1024         if (is_broadcast_ether_addr(ethhdr->h_source))
1025                 goto out;
1026
1027         /* ignore broadcasts sent by myself */
1028         if (is_my_mac(ethhdr->h_source))
1029                 goto out;
1030
1031         bcast_packet = (struct bcast_packet *)skb->data;
1032
1033         /* ignore broadcasts originated by myself */
1034         if (is_my_mac(bcast_packet->orig))
1035                 goto out;
1036
1037         if (bcast_packet->ttl < 2)
1038                 goto out;
1039
1040         orig_node = orig_hash_find(bat_priv, bcast_packet->orig);
1041
1042         if (!orig_node)
1043                 goto out;
1044
1045         spin_lock_bh(&orig_node->bcast_seqno_lock);
1046
1047         /* check whether the packet is a duplicate */
1048         if (get_bit_status(orig_node->bcast_bits, orig_node->last_bcast_seqno,
1049                            ntohl(bcast_packet->seqno)))
1050                 goto spin_unlock;
1051
1052         seq_diff = ntohl(bcast_packet->seqno) - orig_node->last_bcast_seqno;
1053
1054         /* check whether the packet is old and the host just restarted. */
1055         if (window_protected(bat_priv, seq_diff,
1056                              &orig_node->bcast_seqno_reset))
1057                 goto spin_unlock;
1058
1059         /* mark broadcast in flood history, update window position
1060          * if required. */
1061         if (bit_get_packet(bat_priv, orig_node->bcast_bits, seq_diff, 1))
1062                 orig_node->last_bcast_seqno = ntohl(bcast_packet->seqno);
1063
1064         spin_unlock_bh(&orig_node->bcast_seqno_lock);
1065
1066         /* rebroadcast packet */
1067         add_bcast_packet_to_list(bat_priv, skb, 1);
1068
1069         /* broadcast for me */
1070         interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size);
1071         ret = NET_RX_SUCCESS;
1072         goto out;
1073
1074 spin_unlock:
1075         spin_unlock_bh(&orig_node->bcast_seqno_lock);
1076 out:
1077         if (orig_node)
1078                 orig_node_free_ref(orig_node);
1079         return ret;
1080 }
1081
1082 int recv_vis_packet(struct sk_buff *skb, struct hard_iface *recv_if)
1083 {
1084         struct vis_packet *vis_packet;
1085         struct ethhdr *ethhdr;
1086         struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
1087         int hdr_size = sizeof(*vis_packet);
1088
1089         /* keep skb linear */
1090         if (skb_linearize(skb) < 0)
1091                 return NET_RX_DROP;
1092
1093         if (unlikely(!pskb_may_pull(skb, hdr_size)))
1094                 return NET_RX_DROP;
1095
1096         vis_packet = (struct vis_packet *)skb->data;
1097         ethhdr = (struct ethhdr *)skb_mac_header(skb);
1098
1099         /* not for me */
1100         if (!is_my_mac(ethhdr->h_dest))
1101                 return NET_RX_DROP;
1102
1103         /* ignore own packets */
1104         if (is_my_mac(vis_packet->vis_orig))
1105                 return NET_RX_DROP;
1106
1107         if (is_my_mac(vis_packet->sender_orig))
1108                 return NET_RX_DROP;
1109
1110         switch (vis_packet->vis_type) {
1111         case VIS_TYPE_SERVER_SYNC:
1112                 receive_server_sync_packet(bat_priv, vis_packet,
1113                                            skb_headlen(skb));
1114                 break;
1115
1116         case VIS_TYPE_CLIENT_UPDATE:
1117                 receive_client_update_packet(bat_priv, vis_packet,
1118                                              skb_headlen(skb));
1119                 break;
1120
1121         default:        /* ignore unknown packet */
1122                 break;
1123         }
1124
1125         /* We take a copy of the data in the packet, so we should
1126            always free the skbuf. */
1127         return NET_RX_DROP;
1128 }