1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#include "bat_iv_ogm.h"
20#include "main.h"
21
22#include <linux/atomic.h>
23#include <linux/bitmap.h>
24#include <linux/bitops.h>
25#include <linux/bug.h>
26#include <linux/byteorder/generic.h>
27#include <linux/cache.h>
28#include <linux/errno.h>
29#include <linux/etherdevice.h>
30#include <linux/gfp.h>
31#include <linux/if_ether.h>
32#include <linux/init.h>
33#include <linux/jiffies.h>
34#include <linux/kernel.h>
35#include <linux/kref.h>
36#include <linux/list.h>
37#include <linux/lockdep.h>
38#include <linux/netdevice.h>
39#include <linux/netlink.h>
40#include <linux/pkt_sched.h>
41#include <linux/printk.h>
42#include <linux/random.h>
43#include <linux/rculist.h>
44#include <linux/rcupdate.h>
45#include <linux/seq_file.h>
46#include <linux/skbuff.h>
47#include <linux/slab.h>
48#include <linux/spinlock.h>
49#include <linux/stddef.h>
50#include <linux/string.h>
51#include <linux/types.h>
52#include <linux/workqueue.h>
53#include <net/genetlink.h>
54#include <net/netlink.h>
55#include <uapi/linux/batadv_packet.h>
56#include <uapi/linux/batman_adv.h>
57
58#include "bat_algo.h"
59#include "bitarray.h"
60#include "gateway_client.h"
61#include "hard-interface.h"
62#include "hash.h"
63#include "log.h"
64#include "netlink.h"
65#include "network-coding.h"
66#include "originator.h"
67#include "routing.h"
68#include "send.h"
69#include "translation-table.h"
70#include "tvlv.h"
71
72static void batadv_iv_send_outstanding_bat_ogm_packet(struct work_struct *work);
73
74
75
76
77enum batadv_dup_status {
78
79 BATADV_NO_DUP = 0,
80
81
82
83
84
85 BATADV_ORIG_DUP,
86
87
88 BATADV_NEIGH_DUP,
89
90
91
92
93 BATADV_PROTECTED,
94};
95
96
97
98
99
100
101
102static void batadv_ring_buffer_set(u8 lq_recv[], u8 *lq_index, u8 value)
103{
104 lq_recv[*lq_index] = value;
105 *lq_index = (*lq_index + 1) % BATADV_TQ_GLOBAL_WINDOW_SIZE;
106}
107
108
109
110
111
112
113
114
115static u8 batadv_ring_buffer_avg(const u8 lq_recv[])
116{
117 const u8 *ptr;
118 u16 count = 0;
119 u16 i = 0;
120 u16 sum = 0;
121
122 ptr = lq_recv;
123
124 while (i < BATADV_TQ_GLOBAL_WINDOW_SIZE) {
125 if (*ptr != 0) {
126 count++;
127 sum += *ptr;
128 }
129
130 i++;
131 ptr++;
132 }
133
134 if (count == 0)
135 return 0;
136
137 return (u8)(sum / count);
138}
139
140
141
142
143
144
145static void batadv_iv_ogm_orig_free(struct batadv_orig_node *orig_node)
146{
147 kfree(orig_node->bat_iv.bcast_own);
148 kfree(orig_node->bat_iv.bcast_own_sum);
149}
150
151
152
153
154
155
156
157
158
159static int batadv_iv_ogm_orig_add_if(struct batadv_orig_node *orig_node,
160 unsigned int max_if_num)
161{
162 void *data_ptr;
163 size_t old_size;
164 int ret = -ENOMEM;
165
166 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
167
168 old_size = (max_if_num - 1) * sizeof(unsigned long) * BATADV_NUM_WORDS;
169 data_ptr = kmalloc_array(max_if_num,
170 BATADV_NUM_WORDS * sizeof(unsigned long),
171 GFP_ATOMIC);
172 if (!data_ptr)
173 goto unlock;
174
175 memcpy(data_ptr, orig_node->bat_iv.bcast_own, old_size);
176 kfree(orig_node->bat_iv.bcast_own);
177 orig_node->bat_iv.bcast_own = data_ptr;
178
179 data_ptr = kmalloc_array(max_if_num, sizeof(u8), GFP_ATOMIC);
180 if (!data_ptr)
181 goto unlock;
182
183 memcpy(data_ptr, orig_node->bat_iv.bcast_own_sum,
184 (max_if_num - 1) * sizeof(u8));
185 kfree(orig_node->bat_iv.bcast_own_sum);
186 orig_node->bat_iv.bcast_own_sum = data_ptr;
187
188 ret = 0;
189
190unlock:
191 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
192
193 return ret;
194}
195
196
197
198
199
200
201
202static void
203batadv_iv_ogm_drop_bcast_own_entry(struct batadv_orig_node *orig_node,
204 unsigned int max_if_num,
205 unsigned int del_if_num)
206{
207 size_t chunk_size;
208 size_t if_offset;
209 void *data_ptr;
210
211 lockdep_assert_held(&orig_node->bat_iv.ogm_cnt_lock);
212
213 chunk_size = sizeof(unsigned long) * BATADV_NUM_WORDS;
214 data_ptr = kmalloc_array(max_if_num, chunk_size, GFP_ATOMIC);
215 if (!data_ptr)
216
217 data_ptr = orig_node->bat_iv.bcast_own;
218
219
220 memmove(data_ptr, orig_node->bat_iv.bcast_own, del_if_num * chunk_size);
221
222
223 if_offset = (del_if_num + 1) * chunk_size;
224 memmove((char *)data_ptr + del_if_num * chunk_size,
225 (uint8_t *)orig_node->bat_iv.bcast_own + if_offset,
226 (max_if_num - del_if_num) * chunk_size);
227
228
229 if (orig_node->bat_iv.bcast_own != data_ptr) {
230 kfree(orig_node->bat_iv.bcast_own);
231 orig_node->bat_iv.bcast_own = data_ptr;
232 }
233}
234
235
236
237
238
239
240
241static void
242batadv_iv_ogm_drop_bcast_own_sum_entry(struct batadv_orig_node *orig_node,
243 unsigned int max_if_num,
244 unsigned int del_if_num)
245{
246 size_t if_offset;
247 void *data_ptr;
248
249 lockdep_assert_held(&orig_node->bat_iv.ogm_cnt_lock);
250
251 data_ptr = kmalloc_array(max_if_num, sizeof(u8), GFP_ATOMIC);
252 if (!data_ptr)
253
254 data_ptr = orig_node->bat_iv.bcast_own_sum;
255
256 memmove(data_ptr, orig_node->bat_iv.bcast_own_sum,
257 del_if_num * sizeof(u8));
258
259 if_offset = (del_if_num + 1) * sizeof(u8);
260 memmove((char *)data_ptr + del_if_num * sizeof(u8),
261 orig_node->bat_iv.bcast_own_sum + if_offset,
262 (max_if_num - del_if_num) * sizeof(u8));
263
264
265 if (orig_node->bat_iv.bcast_own_sum != data_ptr) {
266 kfree(orig_node->bat_iv.bcast_own_sum);
267 orig_node->bat_iv.bcast_own_sum = data_ptr;
268 }
269}
270
271
272
273
274
275
276
277
278
279
280static int batadv_iv_ogm_orig_del_if(struct batadv_orig_node *orig_node,
281 unsigned int max_if_num,
282 unsigned int del_if_num)
283{
284 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
285
286 if (max_if_num == 0) {
287 kfree(orig_node->bat_iv.bcast_own);
288 kfree(orig_node->bat_iv.bcast_own_sum);
289 orig_node->bat_iv.bcast_own = NULL;
290 orig_node->bat_iv.bcast_own_sum = NULL;
291 } else {
292 batadv_iv_ogm_drop_bcast_own_entry(orig_node, max_if_num,
293 del_if_num);
294 batadv_iv_ogm_drop_bcast_own_sum_entry(orig_node, max_if_num,
295 del_if_num);
296 }
297
298 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
299
300 return 0;
301}
302
303
304
305
306
307
308
309
310
311
312
313static struct batadv_orig_node *
314batadv_iv_ogm_orig_get(struct batadv_priv *bat_priv, const u8 *addr)
315{
316 struct batadv_orig_node *orig_node;
317 int hash_added;
318 size_t size;
319
320 orig_node = batadv_orig_hash_find(bat_priv, addr);
321 if (orig_node)
322 return orig_node;
323
324 orig_node = batadv_orig_node_new(bat_priv, addr);
325 if (!orig_node)
326 return NULL;
327
328 spin_lock_init(&orig_node->bat_iv.ogm_cnt_lock);
329
330 size = bat_priv->num_ifaces * sizeof(unsigned long) * BATADV_NUM_WORDS;
331 orig_node->bat_iv.bcast_own = kzalloc(size, GFP_ATOMIC);
332 if (!orig_node->bat_iv.bcast_own)
333 goto free_orig_node;
334
335 size = bat_priv->num_ifaces * sizeof(u8);
336 orig_node->bat_iv.bcast_own_sum = kzalloc(size, GFP_ATOMIC);
337 if (!orig_node->bat_iv.bcast_own_sum)
338 goto free_orig_node;
339
340 kref_get(&orig_node->refcount);
341 hash_added = batadv_hash_add(bat_priv->orig_hash, batadv_compare_orig,
342 batadv_choose_orig, orig_node,
343 &orig_node->hash_entry);
344 if (hash_added != 0)
345 goto free_orig_node_hash;
346
347 return orig_node;
348
349free_orig_node_hash:
350 batadv_orig_node_put(orig_node);
351free_orig_node:
352 batadv_orig_node_put(orig_node);
353
354 return NULL;
355}
356
357static struct batadv_neigh_node *
358batadv_iv_ogm_neigh_new(struct batadv_hard_iface *hard_iface,
359 const u8 *neigh_addr,
360 struct batadv_orig_node *orig_node,
361 struct batadv_orig_node *orig_neigh)
362{
363 struct batadv_neigh_node *neigh_node;
364
365 neigh_node = batadv_neigh_node_get_or_create(orig_node,
366 hard_iface, neigh_addr);
367 if (!neigh_node)
368 goto out;
369
370 neigh_node->orig_node = orig_neigh;
371
372out:
373 return neigh_node;
374}
375
376static int batadv_iv_ogm_iface_enable(struct batadv_hard_iface *hard_iface)
377{
378 struct batadv_ogm_packet *batadv_ogm_packet;
379 unsigned char *ogm_buff;
380 u32 random_seqno;
381
382
383 get_random_bytes(&random_seqno, sizeof(random_seqno));
384 atomic_set(&hard_iface->bat_iv.ogm_seqno, random_seqno);
385
386 hard_iface->bat_iv.ogm_buff_len = BATADV_OGM_HLEN;
387 ogm_buff = kmalloc(hard_iface->bat_iv.ogm_buff_len, GFP_ATOMIC);
388 if (!ogm_buff)
389 return -ENOMEM;
390
391 hard_iface->bat_iv.ogm_buff = ogm_buff;
392
393 batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
394 batadv_ogm_packet->packet_type = BATADV_IV_OGM;
395 batadv_ogm_packet->version = BATADV_COMPAT_VERSION;
396 batadv_ogm_packet->ttl = 2;
397 batadv_ogm_packet->flags = BATADV_NO_FLAGS;
398 batadv_ogm_packet->reserved = 0;
399 batadv_ogm_packet->tq = BATADV_TQ_MAX_VALUE;
400
401 return 0;
402}
403
404static void batadv_iv_ogm_iface_disable(struct batadv_hard_iface *hard_iface)
405{
406 kfree(hard_iface->bat_iv.ogm_buff);
407 hard_iface->bat_iv.ogm_buff = NULL;
408}
409
410static void batadv_iv_ogm_iface_update_mac(struct batadv_hard_iface *hard_iface)
411{
412 struct batadv_ogm_packet *batadv_ogm_packet;
413 unsigned char *ogm_buff = hard_iface->bat_iv.ogm_buff;
414
415 batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
416 ether_addr_copy(batadv_ogm_packet->orig,
417 hard_iface->net_dev->dev_addr);
418 ether_addr_copy(batadv_ogm_packet->prev_sender,
419 hard_iface->net_dev->dev_addr);
420}
421
422static void
423batadv_iv_ogm_primary_iface_set(struct batadv_hard_iface *hard_iface)
424{
425 struct batadv_ogm_packet *batadv_ogm_packet;
426 unsigned char *ogm_buff = hard_iface->bat_iv.ogm_buff;
427
428 batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
429 batadv_ogm_packet->ttl = BATADV_TTL;
430}
431
432
433static unsigned long
434batadv_iv_ogm_emit_send_time(const struct batadv_priv *bat_priv)
435{
436 unsigned int msecs;
437
438 msecs = atomic_read(&bat_priv->orig_interval) - BATADV_JITTER;
439 msecs += prandom_u32() % (2 * BATADV_JITTER);
440
441 return jiffies + msecs_to_jiffies(msecs);
442}
443
444
445static unsigned long batadv_iv_ogm_fwd_send_time(void)
446{
447 return jiffies + msecs_to_jiffies(prandom_u32() % (BATADV_JITTER / 2));
448}
449
450
451static u8 batadv_hop_penalty(u8 tq, const struct batadv_priv *bat_priv)
452{
453 int hop_penalty = atomic_read(&bat_priv->hop_penalty);
454 int new_tq;
455
456 new_tq = tq * (BATADV_TQ_MAX_VALUE - hop_penalty);
457 new_tq /= BATADV_TQ_MAX_VALUE;
458
459 return new_tq;
460}
461
462
463
464
465
466
467
468
469
470static bool batadv_iv_ogm_aggr_packet(int buff_pos, int packet_len,
471 __be16 tvlv_len)
472{
473 int next_buff_pos = 0;
474
475 next_buff_pos += buff_pos + BATADV_OGM_HLEN;
476 next_buff_pos += ntohs(tvlv_len);
477
478 return (next_buff_pos <= packet_len) &&
479 (next_buff_pos <= BATADV_MAX_AGGREGATION_BYTES);
480}
481
482
483static void batadv_iv_ogm_send_to_if(struct batadv_forw_packet *forw_packet,
484 struct batadv_hard_iface *hard_iface)
485{
486 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
487 const char *fwd_str;
488 u8 packet_num;
489 s16 buff_pos;
490 struct batadv_ogm_packet *batadv_ogm_packet;
491 struct sk_buff *skb;
492 u8 *packet_pos;
493
494 if (hard_iface->if_status != BATADV_IF_ACTIVE)
495 return;
496
497 packet_num = 0;
498 buff_pos = 0;
499 packet_pos = forw_packet->skb->data;
500 batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos;
501
502
503 while (batadv_iv_ogm_aggr_packet(buff_pos, forw_packet->packet_len,
504 batadv_ogm_packet->tvlv_len)) {
505
506
507
508 if (forw_packet->direct_link_flags & BIT(packet_num) &&
509 forw_packet->if_incoming == hard_iface)
510 batadv_ogm_packet->flags |= BATADV_DIRECTLINK;
511 else
512 batadv_ogm_packet->flags &= ~BATADV_DIRECTLINK;
513
514 if (packet_num > 0 || !forw_packet->own)
515 fwd_str = "Forwarding";
516 else
517 fwd_str = "Sending own";
518
519 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
520 "%s %spacket (originator %pM, seqno %u, TQ %d, TTL %d, IDF %s) on interface %s [%pM]\n",
521 fwd_str, (packet_num > 0 ? "aggregated " : ""),
522 batadv_ogm_packet->orig,
523 ntohl(batadv_ogm_packet->seqno),
524 batadv_ogm_packet->tq, batadv_ogm_packet->ttl,
525 ((batadv_ogm_packet->flags & BATADV_DIRECTLINK) ?
526 "on" : "off"),
527 hard_iface->net_dev->name,
528 hard_iface->net_dev->dev_addr);
529
530 buff_pos += BATADV_OGM_HLEN;
531 buff_pos += ntohs(batadv_ogm_packet->tvlv_len);
532 packet_num++;
533 packet_pos = forw_packet->skb->data + buff_pos;
534 batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos;
535 }
536
537
538 skb = skb_clone(forw_packet->skb, GFP_ATOMIC);
539 if (skb) {
540 batadv_inc_counter(bat_priv, BATADV_CNT_MGMT_TX);
541 batadv_add_counter(bat_priv, BATADV_CNT_MGMT_TX_BYTES,
542 skb->len + ETH_HLEN);
543 batadv_send_broadcast_skb(skb, hard_iface);
544 }
545}
546
547
548static void batadv_iv_ogm_emit(struct batadv_forw_packet *forw_packet)
549{
550 struct net_device *soft_iface;
551
552 if (!forw_packet->if_incoming) {
553 pr_err("Error - can't forward packet: incoming iface not specified\n");
554 return;
555 }
556
557 soft_iface = forw_packet->if_incoming->soft_iface;
558
559 if (WARN_ON(!forw_packet->if_outgoing))
560 return;
561
562 if (WARN_ON(forw_packet->if_outgoing->soft_iface != soft_iface))
563 return;
564
565 if (forw_packet->if_incoming->if_status != BATADV_IF_ACTIVE)
566 return;
567
568
569 batadv_iv_ogm_send_to_if(forw_packet, forw_packet->if_outgoing);
570}
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586static bool
587batadv_iv_ogm_can_aggregate(const struct batadv_ogm_packet *new_bat_ogm_packet,
588 struct batadv_priv *bat_priv,
589 int packet_len, unsigned long send_time,
590 bool directlink,
591 const struct batadv_hard_iface *if_incoming,
592 const struct batadv_hard_iface *if_outgoing,
593 const struct batadv_forw_packet *forw_packet)
594{
595 struct batadv_ogm_packet *batadv_ogm_packet;
596 int aggregated_bytes = forw_packet->packet_len + packet_len;
597 struct batadv_hard_iface *primary_if = NULL;
598 bool res = false;
599 unsigned long aggregation_end_time;
600
601 batadv_ogm_packet = (struct batadv_ogm_packet *)forw_packet->skb->data;
602 aggregation_end_time = send_time;
603 aggregation_end_time += msecs_to_jiffies(BATADV_MAX_AGGREGATION_MS);
604
605
606
607
608
609
610
611
612
613 if (!time_before(send_time, forw_packet->send_time) ||
614 !time_after_eq(aggregation_end_time, forw_packet->send_time))
615 return false;
616
617 if (aggregated_bytes > BATADV_MAX_AGGREGATION_BYTES)
618 return false;
619
620
621 if (forw_packet->if_outgoing != if_outgoing)
622 return false;
623
624
625
626
627
628
629
630
631 primary_if = batadv_primary_if_get_selected(bat_priv);
632 if (!primary_if)
633 return false;
634
635
636
637
638 if (!directlink &&
639 !(batadv_ogm_packet->flags & BATADV_DIRECTLINK) &&
640 batadv_ogm_packet->ttl != 1 &&
641
642
643
644
645 (!forw_packet->own ||
646 forw_packet->if_incoming == primary_if)) {
647 res = true;
648 goto out;
649 }
650
651
652
653
654 if (directlink &&
655 new_bat_ogm_packet->ttl == 1 &&
656 forw_packet->if_incoming == if_incoming &&
657
658
659
660
661
662 (batadv_ogm_packet->flags & BATADV_DIRECTLINK ||
663 (forw_packet->own &&
664 forw_packet->if_incoming != primary_if))) {
665 res = true;
666 goto out;
667 }
668
669out:
670 if (primary_if)
671 batadv_hardif_put(primary_if);
672 return res;
673}
674
675
676
677
678
679
680
681
682
683
684
685
686static void batadv_iv_ogm_aggregate_new(const unsigned char *packet_buff,
687 int packet_len, unsigned long send_time,
688 bool direct_link,
689 struct batadv_hard_iface *if_incoming,
690 struct batadv_hard_iface *if_outgoing,
691 int own_packet)
692{
693 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
694 struct batadv_forw_packet *forw_packet_aggr;
695 struct sk_buff *skb;
696 unsigned char *skb_buff;
697 unsigned int skb_size;
698 atomic_t *queue_left = own_packet ? NULL : &bat_priv->batman_queue_left;
699
700 if (atomic_read(&bat_priv->aggregated_ogms) &&
701 packet_len < BATADV_MAX_AGGREGATION_BYTES)
702 skb_size = BATADV_MAX_AGGREGATION_BYTES;
703 else
704 skb_size = packet_len;
705
706 skb_size += ETH_HLEN;
707
708 skb = netdev_alloc_skb_ip_align(NULL, skb_size);
709 if (!skb)
710 return;
711
712 forw_packet_aggr = batadv_forw_packet_alloc(if_incoming, if_outgoing,
713 queue_left, bat_priv, skb);
714 if (!forw_packet_aggr) {
715 kfree_skb(skb);
716 return;
717 }
718
719 forw_packet_aggr->skb->priority = TC_PRIO_CONTROL;
720 skb_reserve(forw_packet_aggr->skb, ETH_HLEN);
721
722 skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
723 forw_packet_aggr->packet_len = packet_len;
724 memcpy(skb_buff, packet_buff, packet_len);
725
726 forw_packet_aggr->own = own_packet;
727 forw_packet_aggr->direct_link_flags = BATADV_NO_FLAGS;
728 forw_packet_aggr->send_time = send_time;
729
730
731 if (direct_link)
732 forw_packet_aggr->direct_link_flags |= 1;
733
734 INIT_DELAYED_WORK(&forw_packet_aggr->delayed_work,
735 batadv_iv_send_outstanding_bat_ogm_packet);
736
737 batadv_forw_packet_ogmv1_queue(bat_priv, forw_packet_aggr, send_time);
738}
739
740
741static void batadv_iv_ogm_aggregate(struct batadv_forw_packet *forw_packet_aggr,
742 const unsigned char *packet_buff,
743 int packet_len, bool direct_link)
744{
745 unsigned long new_direct_link_flag;
746
747 skb_put_data(forw_packet_aggr->skb, packet_buff, packet_len);
748 forw_packet_aggr->packet_len += packet_len;
749 forw_packet_aggr->num_packets++;
750
751
752 if (direct_link) {
753 new_direct_link_flag = BIT(forw_packet_aggr->num_packets);
754 forw_packet_aggr->direct_link_flags |= new_direct_link_flag;
755 }
756}
757
758
759
760
761
762
763
764
765
766
767
768static void batadv_iv_ogm_queue_add(struct batadv_priv *bat_priv,
769 unsigned char *packet_buff,
770 int packet_len,
771 struct batadv_hard_iface *if_incoming,
772 struct batadv_hard_iface *if_outgoing,
773 int own_packet, unsigned long send_time)
774{
775
776
777
778 struct batadv_forw_packet *forw_packet_aggr = NULL;
779 struct batadv_forw_packet *forw_packet_pos = NULL;
780 struct batadv_ogm_packet *batadv_ogm_packet;
781 bool direct_link;
782 unsigned long max_aggregation_jiffies;
783
784 batadv_ogm_packet = (struct batadv_ogm_packet *)packet_buff;
785 direct_link = !!(batadv_ogm_packet->flags & BATADV_DIRECTLINK);
786 max_aggregation_jiffies = msecs_to_jiffies(BATADV_MAX_AGGREGATION_MS);
787
788
789 spin_lock_bh(&bat_priv->forw_bat_list_lock);
790
791 if (atomic_read(&bat_priv->aggregated_ogms) && !own_packet) {
792 hlist_for_each_entry(forw_packet_pos,
793 &bat_priv->forw_bat_list, list) {
794 if (batadv_iv_ogm_can_aggregate(batadv_ogm_packet,
795 bat_priv, packet_len,
796 send_time, direct_link,
797 if_incoming,
798 if_outgoing,
799 forw_packet_pos)) {
800 forw_packet_aggr = forw_packet_pos;
801 break;
802 }
803 }
804 }
805
806
807
808
809 if (!forw_packet_aggr) {
810
811 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
812
813
814
815
816
817 if (!own_packet && atomic_read(&bat_priv->aggregated_ogms))
818 send_time += max_aggregation_jiffies;
819
820 batadv_iv_ogm_aggregate_new(packet_buff, packet_len,
821 send_time, direct_link,
822 if_incoming, if_outgoing,
823 own_packet);
824 } else {
825 batadv_iv_ogm_aggregate(forw_packet_aggr, packet_buff,
826 packet_len, direct_link);
827 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
828 }
829}
830
831static void batadv_iv_ogm_forward(struct batadv_orig_node *orig_node,
832 const struct ethhdr *ethhdr,
833 struct batadv_ogm_packet *batadv_ogm_packet,
834 bool is_single_hop_neigh,
835 bool is_from_best_next_hop,
836 struct batadv_hard_iface *if_incoming,
837 struct batadv_hard_iface *if_outgoing)
838{
839 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
840 u16 tvlv_len;
841
842 if (batadv_ogm_packet->ttl <= 1) {
843 batadv_dbg(BATADV_DBG_BATMAN, bat_priv, "ttl exceeded\n");
844 return;
845 }
846
847 if (!is_from_best_next_hop) {
848
849
850
851
852
853
854 if (is_single_hop_neigh)
855 batadv_ogm_packet->flags |= BATADV_NOT_BEST_NEXT_HOP;
856 else
857 return;
858 }
859
860 tvlv_len = ntohs(batadv_ogm_packet->tvlv_len);
861
862 batadv_ogm_packet->ttl--;
863 ether_addr_copy(batadv_ogm_packet->prev_sender, ethhdr->h_source);
864
865
866 batadv_ogm_packet->tq = batadv_hop_penalty(batadv_ogm_packet->tq,
867 bat_priv);
868
869 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
870 "Forwarding packet: tq: %i, ttl: %i\n",
871 batadv_ogm_packet->tq, batadv_ogm_packet->ttl);
872
873 if (is_single_hop_neigh)
874 batadv_ogm_packet->flags |= BATADV_DIRECTLINK;
875 else
876 batadv_ogm_packet->flags &= ~BATADV_DIRECTLINK;
877
878 batadv_iv_ogm_queue_add(bat_priv, (unsigned char *)batadv_ogm_packet,
879 BATADV_OGM_HLEN + tvlv_len,
880 if_incoming, if_outgoing, 0,
881 batadv_iv_ogm_fwd_send_time());
882}
883
884
885
886
887
888
889static void
890batadv_iv_ogm_slide_own_bcast_window(struct batadv_hard_iface *hard_iface)
891{
892 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
893 struct batadv_hashtable *hash = bat_priv->orig_hash;
894 struct hlist_head *head;
895 struct batadv_orig_node *orig_node;
896 unsigned long *word;
897 u32 i;
898 size_t word_index;
899 u8 *w;
900 unsigned int if_num;
901
902 for (i = 0; i < hash->size; i++) {
903 head = &hash->table[i];
904
905 rcu_read_lock();
906 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
907 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
908 word_index = hard_iface->if_num * BATADV_NUM_WORDS;
909 word = &orig_node->bat_iv.bcast_own[word_index];
910
911 batadv_bit_get_packet(bat_priv, word, 1, 0);
912 if_num = hard_iface->if_num;
913 w = &orig_node->bat_iv.bcast_own_sum[if_num];
914 *w = bitmap_weight(word, BATADV_TQ_LOCAL_WINDOW_SIZE);
915 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
916 }
917 rcu_read_unlock();
918 }
919}
920
921static void batadv_iv_ogm_schedule(struct batadv_hard_iface *hard_iface)
922{
923 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
924 unsigned char **ogm_buff = &hard_iface->bat_iv.ogm_buff;
925 struct batadv_ogm_packet *batadv_ogm_packet;
926 struct batadv_hard_iface *primary_if, *tmp_hard_iface;
927 int *ogm_buff_len = &hard_iface->bat_iv.ogm_buff_len;
928 u32 seqno;
929 u16 tvlv_len = 0;
930 unsigned long send_time;
931
932 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE ||
933 hard_iface->if_status == BATADV_IF_TO_BE_REMOVED)
934 return;
935
936
937
938
939
940
941
942 if (hard_iface->if_status == BATADV_IF_TO_BE_ACTIVATED)
943 hard_iface->if_status = BATADV_IF_ACTIVE;
944
945 primary_if = batadv_primary_if_get_selected(bat_priv);
946
947 if (hard_iface == primary_if) {
948
949
950
951 batadv_tt_local_commit_changes(bat_priv);
952 tvlv_len = batadv_tvlv_container_ogm_append(bat_priv, ogm_buff,
953 ogm_buff_len,
954 BATADV_OGM_HLEN);
955 }
956
957 batadv_ogm_packet = (struct batadv_ogm_packet *)(*ogm_buff);
958 batadv_ogm_packet->tvlv_len = htons(tvlv_len);
959
960
961 seqno = (u32)atomic_read(&hard_iface->bat_iv.ogm_seqno);
962 batadv_ogm_packet->seqno = htonl(seqno);
963 atomic_inc(&hard_iface->bat_iv.ogm_seqno);
964
965 batadv_iv_ogm_slide_own_bcast_window(hard_iface);
966
967 send_time = batadv_iv_ogm_emit_send_time(bat_priv);
968
969 if (hard_iface != primary_if) {
970
971
972
973 batadv_iv_ogm_queue_add(bat_priv, *ogm_buff, *ogm_buff_len,
974 hard_iface, hard_iface, 1, send_time);
975 goto out;
976 }
977
978
979
980
981 rcu_read_lock();
982 list_for_each_entry_rcu(tmp_hard_iface, &batadv_hardif_list, list) {
983 if (tmp_hard_iface->soft_iface != hard_iface->soft_iface)
984 continue;
985
986 if (!kref_get_unless_zero(&tmp_hard_iface->refcount))
987 continue;
988
989 batadv_iv_ogm_queue_add(bat_priv, *ogm_buff,
990 *ogm_buff_len, hard_iface,
991 tmp_hard_iface, 1, send_time);
992
993 batadv_hardif_put(tmp_hard_iface);
994 }
995 rcu_read_unlock();
996
997out:
998 if (primary_if)
999 batadv_hardif_put(primary_if);
1000}
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014static void
1015batadv_iv_ogm_orig_update(struct batadv_priv *bat_priv,
1016 struct batadv_orig_node *orig_node,
1017 struct batadv_orig_ifinfo *orig_ifinfo,
1018 const struct ethhdr *ethhdr,
1019 const struct batadv_ogm_packet *batadv_ogm_packet,
1020 struct batadv_hard_iface *if_incoming,
1021 struct batadv_hard_iface *if_outgoing,
1022 enum batadv_dup_status dup_status)
1023{
1024 struct batadv_neigh_ifinfo *neigh_ifinfo = NULL;
1025 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
1026 struct batadv_neigh_node *neigh_node = NULL;
1027 struct batadv_neigh_node *tmp_neigh_node = NULL;
1028 struct batadv_neigh_node *router = NULL;
1029 struct batadv_orig_node *orig_node_tmp;
1030 unsigned int if_num;
1031 u8 sum_orig, sum_neigh;
1032 u8 *neigh_addr;
1033 u8 tq_avg;
1034
1035 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1036 "%s(): Searching and updating originator entry of received packet\n",
1037 __func__);
1038
1039 rcu_read_lock();
1040 hlist_for_each_entry_rcu(tmp_neigh_node,
1041 &orig_node->neigh_list, list) {
1042 neigh_addr = tmp_neigh_node->addr;
1043 if (batadv_compare_eth(neigh_addr, ethhdr->h_source) &&
1044 tmp_neigh_node->if_incoming == if_incoming &&
1045 kref_get_unless_zero(&tmp_neigh_node->refcount)) {
1046 if (WARN(neigh_node, "too many matching neigh_nodes"))
1047 batadv_neigh_node_put(neigh_node);
1048 neigh_node = tmp_neigh_node;
1049 continue;
1050 }
1051
1052 if (dup_status != BATADV_NO_DUP)
1053 continue;
1054
1055
1056 neigh_ifinfo = batadv_neigh_ifinfo_get(tmp_neigh_node,
1057 if_outgoing);
1058 if (!neigh_ifinfo)
1059 continue;
1060
1061 spin_lock_bh(&tmp_neigh_node->ifinfo_lock);
1062 batadv_ring_buffer_set(neigh_ifinfo->bat_iv.tq_recv,
1063 &neigh_ifinfo->bat_iv.tq_index, 0);
1064 tq_avg = batadv_ring_buffer_avg(neigh_ifinfo->bat_iv.tq_recv);
1065 neigh_ifinfo->bat_iv.tq_avg = tq_avg;
1066 spin_unlock_bh(&tmp_neigh_node->ifinfo_lock);
1067
1068 batadv_neigh_ifinfo_put(neigh_ifinfo);
1069 neigh_ifinfo = NULL;
1070 }
1071
1072 if (!neigh_node) {
1073 struct batadv_orig_node *orig_tmp;
1074
1075 orig_tmp = batadv_iv_ogm_orig_get(bat_priv, ethhdr->h_source);
1076 if (!orig_tmp)
1077 goto unlock;
1078
1079 neigh_node = batadv_iv_ogm_neigh_new(if_incoming,
1080 ethhdr->h_source,
1081 orig_node, orig_tmp);
1082
1083 batadv_orig_node_put(orig_tmp);
1084 if (!neigh_node)
1085 goto unlock;
1086 } else {
1087 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1088 "Updating existing last-hop neighbor of originator\n");
1089 }
1090
1091 rcu_read_unlock();
1092 neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node, if_outgoing);
1093 if (!neigh_ifinfo)
1094 goto out;
1095
1096 neigh_node->last_seen = jiffies;
1097
1098 spin_lock_bh(&neigh_node->ifinfo_lock);
1099 batadv_ring_buffer_set(neigh_ifinfo->bat_iv.tq_recv,
1100 &neigh_ifinfo->bat_iv.tq_index,
1101 batadv_ogm_packet->tq);
1102 tq_avg = batadv_ring_buffer_avg(neigh_ifinfo->bat_iv.tq_recv);
1103 neigh_ifinfo->bat_iv.tq_avg = tq_avg;
1104 spin_unlock_bh(&neigh_node->ifinfo_lock);
1105
1106 if (dup_status == BATADV_NO_DUP) {
1107 orig_ifinfo->last_ttl = batadv_ogm_packet->ttl;
1108 neigh_ifinfo->last_ttl = batadv_ogm_packet->ttl;
1109 }
1110
1111
1112
1113
1114 router = batadv_orig_router_get(orig_node, if_outgoing);
1115 if (router == neigh_node)
1116 goto out;
1117
1118 if (router) {
1119 router_ifinfo = batadv_neigh_ifinfo_get(router, if_outgoing);
1120 if (!router_ifinfo)
1121 goto out;
1122
1123
1124
1125
1126 if (router_ifinfo->bat_iv.tq_avg > neigh_ifinfo->bat_iv.tq_avg)
1127 goto out;
1128 }
1129
1130
1131
1132
1133 if (router_ifinfo &&
1134 neigh_ifinfo->bat_iv.tq_avg == router_ifinfo->bat_iv.tq_avg) {
1135 orig_node_tmp = router->orig_node;
1136 spin_lock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
1137 if_num = router->if_incoming->if_num;
1138 sum_orig = orig_node_tmp->bat_iv.bcast_own_sum[if_num];
1139 spin_unlock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
1140
1141 orig_node_tmp = neigh_node->orig_node;
1142 spin_lock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
1143 if_num = neigh_node->if_incoming->if_num;
1144 sum_neigh = orig_node_tmp->bat_iv.bcast_own_sum[if_num];
1145 spin_unlock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock);
1146
1147 if (sum_orig >= sum_neigh)
1148 goto out;
1149 }
1150
1151 batadv_update_route(bat_priv, orig_node, if_outgoing, neigh_node);
1152 goto out;
1153
1154unlock:
1155 rcu_read_unlock();
1156out:
1157 if (neigh_node)
1158 batadv_neigh_node_put(neigh_node);
1159 if (router)
1160 batadv_neigh_node_put(router);
1161 if (neigh_ifinfo)
1162 batadv_neigh_ifinfo_put(neigh_ifinfo);
1163 if (router_ifinfo)
1164 batadv_neigh_ifinfo_put(router_ifinfo);
1165}
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177static bool batadv_iv_ogm_calc_tq(struct batadv_orig_node *orig_node,
1178 struct batadv_orig_node *orig_neigh_node,
1179 struct batadv_ogm_packet *batadv_ogm_packet,
1180 struct batadv_hard_iface *if_incoming,
1181 struct batadv_hard_iface *if_outgoing)
1182{
1183 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1184 struct batadv_neigh_node *neigh_node = NULL, *tmp_neigh_node;
1185 struct batadv_neigh_ifinfo *neigh_ifinfo;
1186 u8 total_count;
1187 u8 orig_eq_count, neigh_rq_count, neigh_rq_inv, tq_own;
1188 unsigned int neigh_rq_inv_cube, neigh_rq_max_cube;
1189 unsigned int if_num;
1190 unsigned int tq_asym_penalty, inv_asym_penalty;
1191 unsigned int combined_tq;
1192 unsigned int tq_iface_penalty;
1193 bool ret = false;
1194
1195
1196 rcu_read_lock();
1197 hlist_for_each_entry_rcu(tmp_neigh_node,
1198 &orig_neigh_node->neigh_list, list) {
1199 if (!batadv_compare_eth(tmp_neigh_node->addr,
1200 orig_neigh_node->orig))
1201 continue;
1202
1203 if (tmp_neigh_node->if_incoming != if_incoming)
1204 continue;
1205
1206 if (!kref_get_unless_zero(&tmp_neigh_node->refcount))
1207 continue;
1208
1209 neigh_node = tmp_neigh_node;
1210 break;
1211 }
1212 rcu_read_unlock();
1213
1214 if (!neigh_node)
1215 neigh_node = batadv_iv_ogm_neigh_new(if_incoming,
1216 orig_neigh_node->orig,
1217 orig_neigh_node,
1218 orig_neigh_node);
1219
1220 if (!neigh_node)
1221 goto out;
1222
1223
1224 if (orig_node == orig_neigh_node)
1225 neigh_node->last_seen = jiffies;
1226
1227 orig_node->last_seen = jiffies;
1228
1229
1230 spin_lock_bh(&orig_neigh_node->bat_iv.ogm_cnt_lock);
1231 if_num = if_incoming->if_num;
1232 orig_eq_count = orig_neigh_node->bat_iv.bcast_own_sum[if_num];
1233 neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node, if_outgoing);
1234 if (neigh_ifinfo) {
1235 neigh_rq_count = neigh_ifinfo->bat_iv.real_packet_count;
1236 batadv_neigh_ifinfo_put(neigh_ifinfo);
1237 } else {
1238 neigh_rq_count = 0;
1239 }
1240 spin_unlock_bh(&orig_neigh_node->bat_iv.ogm_cnt_lock);
1241
1242
1243 if (orig_eq_count > neigh_rq_count)
1244 total_count = neigh_rq_count;
1245 else
1246 total_count = orig_eq_count;
1247
1248
1249
1250
1251 if (total_count < BATADV_TQ_LOCAL_BIDRECT_SEND_MINIMUM ||
1252 neigh_rq_count < BATADV_TQ_LOCAL_BIDRECT_RECV_MINIMUM)
1253 tq_own = 0;
1254 else
1255
1256
1257
1258
1259 tq_own = (BATADV_TQ_MAX_VALUE * total_count) / neigh_rq_count;
1260
1261
1262
1263
1264
1265
1266 neigh_rq_inv = BATADV_TQ_LOCAL_WINDOW_SIZE - neigh_rq_count;
1267 neigh_rq_inv_cube = neigh_rq_inv * neigh_rq_inv * neigh_rq_inv;
1268 neigh_rq_max_cube = BATADV_TQ_LOCAL_WINDOW_SIZE *
1269 BATADV_TQ_LOCAL_WINDOW_SIZE *
1270 BATADV_TQ_LOCAL_WINDOW_SIZE;
1271 inv_asym_penalty = BATADV_TQ_MAX_VALUE * neigh_rq_inv_cube;
1272 inv_asym_penalty /= neigh_rq_max_cube;
1273 tq_asym_penalty = BATADV_TQ_MAX_VALUE - inv_asym_penalty;
1274
1275
1276
1277
1278
1279 tq_iface_penalty = BATADV_TQ_MAX_VALUE;
1280 if (if_outgoing && if_incoming == if_outgoing &&
1281 batadv_is_wifi_hardif(if_outgoing))
1282 tq_iface_penalty = batadv_hop_penalty(BATADV_TQ_MAX_VALUE,
1283 bat_priv);
1284
1285 combined_tq = batadv_ogm_packet->tq *
1286 tq_own *
1287 tq_asym_penalty *
1288 tq_iface_penalty;
1289 combined_tq /= BATADV_TQ_MAX_VALUE *
1290 BATADV_TQ_MAX_VALUE *
1291 BATADV_TQ_MAX_VALUE;
1292 batadv_ogm_packet->tq = combined_tq;
1293
1294 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1295 "bidirectional: orig = %pM neigh = %pM => own_bcast = %2i, real recv = %2i, local tq: %3i, asym_penalty: %3i, iface_penalty: %3i, total tq: %3i, if_incoming = %s, if_outgoing = %s\n",
1296 orig_node->orig, orig_neigh_node->orig, total_count,
1297 neigh_rq_count, tq_own, tq_asym_penalty, tq_iface_penalty,
1298 batadv_ogm_packet->tq, if_incoming->net_dev->name,
1299 if_outgoing ? if_outgoing->net_dev->name : "DEFAULT");
1300
1301
1302
1303
1304 if (batadv_ogm_packet->tq >= BATADV_TQ_TOTAL_BIDRECT_LIMIT)
1305 ret = true;
1306
1307out:
1308 if (neigh_node)
1309 batadv_neigh_node_put(neigh_node);
1310 return ret;
1311}
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323static enum batadv_dup_status
1324batadv_iv_ogm_update_seqnos(const struct ethhdr *ethhdr,
1325 const struct batadv_ogm_packet *batadv_ogm_packet,
1326 const struct batadv_hard_iface *if_incoming,
1327 struct batadv_hard_iface *if_outgoing)
1328{
1329 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1330 struct batadv_orig_node *orig_node;
1331 struct batadv_orig_ifinfo *orig_ifinfo = NULL;
1332 struct batadv_neigh_node *neigh_node;
1333 struct batadv_neigh_ifinfo *neigh_ifinfo;
1334 bool is_dup;
1335 s32 seq_diff;
1336 bool need_update = false;
1337 int set_mark;
1338 enum batadv_dup_status ret = BATADV_NO_DUP;
1339 u32 seqno = ntohl(batadv_ogm_packet->seqno);
1340 u8 *neigh_addr;
1341 u8 packet_count;
1342 unsigned long *bitmap;
1343
1344 orig_node = batadv_iv_ogm_orig_get(bat_priv, batadv_ogm_packet->orig);
1345 if (!orig_node)
1346 return BATADV_NO_DUP;
1347
1348 orig_ifinfo = batadv_orig_ifinfo_new(orig_node, if_outgoing);
1349 if (WARN_ON(!orig_ifinfo)) {
1350 batadv_orig_node_put(orig_node);
1351 return 0;
1352 }
1353
1354 spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock);
1355 seq_diff = seqno - orig_ifinfo->last_real_seqno;
1356
1357
1358 if (!hlist_empty(&orig_node->neigh_list) &&
1359 batadv_window_protected(bat_priv, seq_diff,
1360 BATADV_TQ_LOCAL_WINDOW_SIZE,
1361 &orig_ifinfo->batman_seqno_reset, NULL)) {
1362 ret = BATADV_PROTECTED;
1363 goto out;
1364 }
1365
1366 rcu_read_lock();
1367 hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) {
1368 neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node,
1369 if_outgoing);
1370 if (!neigh_ifinfo)
1371 continue;
1372
1373 neigh_addr = neigh_node->addr;
1374 is_dup = batadv_test_bit(neigh_ifinfo->bat_iv.real_bits,
1375 orig_ifinfo->last_real_seqno,
1376 seqno);
1377
1378 if (batadv_compare_eth(neigh_addr, ethhdr->h_source) &&
1379 neigh_node->if_incoming == if_incoming) {
1380 set_mark = 1;
1381 if (is_dup)
1382 ret = BATADV_NEIGH_DUP;
1383 } else {
1384 set_mark = 0;
1385 if (is_dup && ret != BATADV_NEIGH_DUP)
1386 ret = BATADV_ORIG_DUP;
1387 }
1388
1389
1390 bitmap = neigh_ifinfo->bat_iv.real_bits;
1391 need_update |= batadv_bit_get_packet(bat_priv, bitmap,
1392 seq_diff, set_mark);
1393
1394 packet_count = bitmap_weight(bitmap,
1395 BATADV_TQ_LOCAL_WINDOW_SIZE);
1396 neigh_ifinfo->bat_iv.real_packet_count = packet_count;
1397 batadv_neigh_ifinfo_put(neigh_ifinfo);
1398 }
1399 rcu_read_unlock();
1400
1401 if (need_update) {
1402 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1403 "%s updating last_seqno: old %u, new %u\n",
1404 if_outgoing ? if_outgoing->net_dev->name : "DEFAULT",
1405 orig_ifinfo->last_real_seqno, seqno);
1406 orig_ifinfo->last_real_seqno = seqno;
1407 }
1408
1409out:
1410 spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock);
1411 batadv_orig_node_put(orig_node);
1412 batadv_orig_ifinfo_put(orig_ifinfo);
1413 return ret;
1414}
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425static void
1426batadv_iv_ogm_process_per_outif(const struct sk_buff *skb, int ogm_offset,
1427 struct batadv_orig_node *orig_node,
1428 struct batadv_hard_iface *if_incoming,
1429 struct batadv_hard_iface *if_outgoing)
1430{
1431 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1432 struct batadv_hardif_neigh_node *hardif_neigh = NULL;
1433 struct batadv_neigh_node *router = NULL;
1434 struct batadv_neigh_node *router_router = NULL;
1435 struct batadv_orig_node *orig_neigh_node;
1436 struct batadv_orig_ifinfo *orig_ifinfo;
1437 struct batadv_neigh_node *orig_neigh_router = NULL;
1438 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
1439 struct batadv_ogm_packet *ogm_packet;
1440 enum batadv_dup_status dup_status;
1441 bool is_from_best_next_hop = false;
1442 bool is_single_hop_neigh = false;
1443 bool sameseq, similar_ttl;
1444 struct sk_buff *skb_priv;
1445 struct ethhdr *ethhdr;
1446 u8 *prev_sender;
1447 bool is_bidirect;
1448
1449
1450
1451
1452 skb_priv = skb_copy(skb, GFP_ATOMIC);
1453 if (!skb_priv)
1454 return;
1455
1456 ethhdr = eth_hdr(skb_priv);
1457 ogm_packet = (struct batadv_ogm_packet *)(skb_priv->data + ogm_offset);
1458
1459 dup_status = batadv_iv_ogm_update_seqnos(ethhdr, ogm_packet,
1460 if_incoming, if_outgoing);
1461 if (batadv_compare_eth(ethhdr->h_source, ogm_packet->orig))
1462 is_single_hop_neigh = true;
1463
1464 if (dup_status == BATADV_PROTECTED) {
1465 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1466 "Drop packet: packet within seqno protection time (sender: %pM)\n",
1467 ethhdr->h_source);
1468 goto out;
1469 }
1470
1471 if (ogm_packet->tq == 0) {
1472 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1473 "Drop packet: originator packet with tq equal 0\n");
1474 goto out;
1475 }
1476
1477 if (is_single_hop_neigh) {
1478 hardif_neigh = batadv_hardif_neigh_get(if_incoming,
1479 ethhdr->h_source);
1480 if (hardif_neigh)
1481 hardif_neigh->last_seen = jiffies;
1482 }
1483
1484 router = batadv_orig_router_get(orig_node, if_outgoing);
1485 if (router) {
1486 router_router = batadv_orig_router_get(router->orig_node,
1487 if_outgoing);
1488 router_ifinfo = batadv_neigh_ifinfo_get(router, if_outgoing);
1489 }
1490
1491 if ((router_ifinfo && router_ifinfo->bat_iv.tq_avg != 0) &&
1492 (batadv_compare_eth(router->addr, ethhdr->h_source)))
1493 is_from_best_next_hop = true;
1494
1495 prev_sender = ogm_packet->prev_sender;
1496
1497 if (router && router_router &&
1498 (batadv_compare_eth(router->addr, prev_sender)) &&
1499 !(batadv_compare_eth(ogm_packet->orig, prev_sender)) &&
1500 (batadv_compare_eth(router->addr, router_router->addr))) {
1501 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1502 "Drop packet: ignoring all rebroadcast packets that may make me loop (sender: %pM)\n",
1503 ethhdr->h_source);
1504 goto out;
1505 }
1506
1507 if (if_outgoing == BATADV_IF_DEFAULT)
1508 batadv_tvlv_ogm_receive(bat_priv, ogm_packet, orig_node);
1509
1510
1511
1512
1513 if (is_single_hop_neigh)
1514 orig_neigh_node = orig_node;
1515 else
1516 orig_neigh_node = batadv_iv_ogm_orig_get(bat_priv,
1517 ethhdr->h_source);
1518
1519 if (!orig_neigh_node)
1520 goto out;
1521
1522
1523 batadv_nc_update_nc_node(bat_priv, orig_node, orig_neigh_node,
1524 ogm_packet, is_single_hop_neigh);
1525
1526 orig_neigh_router = batadv_orig_router_get(orig_neigh_node,
1527 if_outgoing);
1528
1529
1530
1531
1532 if (!is_single_hop_neigh && !orig_neigh_router) {
1533 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1534 "Drop packet: OGM via unknown neighbor!\n");
1535 goto out_neigh;
1536 }
1537
1538 is_bidirect = batadv_iv_ogm_calc_tq(orig_node, orig_neigh_node,
1539 ogm_packet, if_incoming,
1540 if_outgoing);
1541
1542
1543
1544
1545 orig_ifinfo = batadv_orig_ifinfo_new(orig_node, if_outgoing);
1546 if (!orig_ifinfo)
1547 goto out_neigh;
1548
1549 sameseq = orig_ifinfo->last_real_seqno == ntohl(ogm_packet->seqno);
1550 similar_ttl = (orig_ifinfo->last_ttl - 3) <= ogm_packet->ttl;
1551
1552 if (is_bidirect && (dup_status == BATADV_NO_DUP ||
1553 (sameseq && similar_ttl))) {
1554 batadv_iv_ogm_orig_update(bat_priv, orig_node,
1555 orig_ifinfo, ethhdr,
1556 ogm_packet, if_incoming,
1557 if_outgoing, dup_status);
1558 }
1559 batadv_orig_ifinfo_put(orig_ifinfo);
1560
1561
1562 if (if_outgoing == BATADV_IF_DEFAULT)
1563 goto out_neigh;
1564
1565
1566 if (is_single_hop_neigh) {
1567
1568
1569
1570 if (ogm_packet->ttl <= 2 &&
1571 if_incoming != if_outgoing) {
1572 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1573 "Drop packet: OGM from secondary interface and wrong outgoing interface\n");
1574 goto out_neigh;
1575 }
1576
1577 batadv_iv_ogm_forward(orig_node, ethhdr, ogm_packet,
1578 is_single_hop_neigh,
1579 is_from_best_next_hop, if_incoming,
1580 if_outgoing);
1581
1582 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1583 "Forwarding packet: rebroadcast neighbor packet with direct link flag\n");
1584 goto out_neigh;
1585 }
1586
1587
1588 if (!is_bidirect) {
1589 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1590 "Drop packet: not received via bidirectional link\n");
1591 goto out_neigh;
1592 }
1593
1594 if (dup_status == BATADV_NEIGH_DUP) {
1595 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1596 "Drop packet: duplicate packet received\n");
1597 goto out_neigh;
1598 }
1599
1600 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1601 "Forwarding packet: rebroadcast originator packet\n");
1602 batadv_iv_ogm_forward(orig_node, ethhdr, ogm_packet,
1603 is_single_hop_neigh, is_from_best_next_hop,
1604 if_incoming, if_outgoing);
1605
1606out_neigh:
1607 if (orig_neigh_node && !is_single_hop_neigh)
1608 batadv_orig_node_put(orig_neigh_node);
1609out:
1610 if (router_ifinfo)
1611 batadv_neigh_ifinfo_put(router_ifinfo);
1612 if (router)
1613 batadv_neigh_node_put(router);
1614 if (router_router)
1615 batadv_neigh_node_put(router_router);
1616 if (orig_neigh_router)
1617 batadv_neigh_node_put(orig_neigh_router);
1618 if (hardif_neigh)
1619 batadv_hardif_neigh_put(hardif_neigh);
1620
1621 consume_skb(skb_priv);
1622}
1623
1624
1625
1626
1627
1628
1629
1630static void batadv_iv_ogm_process(const struct sk_buff *skb, int ogm_offset,
1631 struct batadv_hard_iface *if_incoming)
1632{
1633 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1634 struct batadv_orig_node *orig_neigh_node, *orig_node;
1635 struct batadv_hard_iface *hard_iface;
1636 struct batadv_ogm_packet *ogm_packet;
1637 u32 if_incoming_seqno;
1638 bool has_directlink_flag;
1639 struct ethhdr *ethhdr;
1640 bool is_my_oldorig = false;
1641 bool is_my_addr = false;
1642 bool is_my_orig = false;
1643
1644 ogm_packet = (struct batadv_ogm_packet *)(skb->data + ogm_offset);
1645 ethhdr = eth_hdr(skb);
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659 if (ogm_packet->packet_type != BATADV_IV_OGM)
1660 return;
1661
1662
1663 if_incoming_seqno = atomic_read(&if_incoming->bat_iv.ogm_seqno);
1664
1665 if (ogm_packet->flags & BATADV_DIRECTLINK)
1666 has_directlink_flag = true;
1667 else
1668 has_directlink_flag = false;
1669
1670 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1671 "Received BATMAN packet via NB: %pM, IF: %s [%pM] (from OG: %pM, via prev OG: %pM, seqno %u, tq %d, TTL %d, V %d, IDF %d)\n",
1672 ethhdr->h_source, if_incoming->net_dev->name,
1673 if_incoming->net_dev->dev_addr, ogm_packet->orig,
1674 ogm_packet->prev_sender, ntohl(ogm_packet->seqno),
1675 ogm_packet->tq, ogm_packet->ttl,
1676 ogm_packet->version, has_directlink_flag);
1677
1678 rcu_read_lock();
1679 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
1680 if (hard_iface->if_status != BATADV_IF_ACTIVE)
1681 continue;
1682
1683 if (hard_iface->soft_iface != if_incoming->soft_iface)
1684 continue;
1685
1686 if (batadv_compare_eth(ethhdr->h_source,
1687 hard_iface->net_dev->dev_addr))
1688 is_my_addr = true;
1689
1690 if (batadv_compare_eth(ogm_packet->orig,
1691 hard_iface->net_dev->dev_addr))
1692 is_my_orig = true;
1693
1694 if (batadv_compare_eth(ogm_packet->prev_sender,
1695 hard_iface->net_dev->dev_addr))
1696 is_my_oldorig = true;
1697 }
1698 rcu_read_unlock();
1699
1700 if (is_my_addr) {
1701 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1702 "Drop packet: received my own broadcast (sender: %pM)\n",
1703 ethhdr->h_source);
1704 return;
1705 }
1706
1707 if (is_my_orig) {
1708 unsigned long *word;
1709 size_t offset;
1710 s32 bit_pos;
1711 unsigned int if_num;
1712 u8 *weight;
1713
1714 orig_neigh_node = batadv_iv_ogm_orig_get(bat_priv,
1715 ethhdr->h_source);
1716 if (!orig_neigh_node)
1717 return;
1718
1719
1720
1721
1722
1723 if (has_directlink_flag &&
1724 batadv_compare_eth(if_incoming->net_dev->dev_addr,
1725 ogm_packet->orig)) {
1726 if_num = if_incoming->if_num;
1727 offset = if_num * BATADV_NUM_WORDS;
1728
1729 spin_lock_bh(&orig_neigh_node->bat_iv.ogm_cnt_lock);
1730 word = &orig_neigh_node->bat_iv.bcast_own[offset];
1731 bit_pos = if_incoming_seqno - 2;
1732 bit_pos -= ntohl(ogm_packet->seqno);
1733 batadv_set_bit(word, bit_pos);
1734 weight = &orig_neigh_node->bat_iv.bcast_own_sum[if_num];
1735 *weight = bitmap_weight(word,
1736 BATADV_TQ_LOCAL_WINDOW_SIZE);
1737 spin_unlock_bh(&orig_neigh_node->bat_iv.ogm_cnt_lock);
1738 }
1739
1740 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1741 "Drop packet: originator packet from myself (via neighbor)\n");
1742 batadv_orig_node_put(orig_neigh_node);
1743 return;
1744 }
1745
1746 if (is_my_oldorig) {
1747 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1748 "Drop packet: ignoring all rebroadcast echos (sender: %pM)\n",
1749 ethhdr->h_source);
1750 return;
1751 }
1752
1753 if (ogm_packet->flags & BATADV_NOT_BEST_NEXT_HOP) {
1754 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1755 "Drop packet: ignoring all packets not forwarded from the best next hop (sender: %pM)\n",
1756 ethhdr->h_source);
1757 return;
1758 }
1759
1760 orig_node = batadv_iv_ogm_orig_get(bat_priv, ogm_packet->orig);
1761 if (!orig_node)
1762 return;
1763
1764 batadv_iv_ogm_process_per_outif(skb, ogm_offset, orig_node,
1765 if_incoming, BATADV_IF_DEFAULT);
1766
1767 rcu_read_lock();
1768 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
1769 if (hard_iface->if_status != BATADV_IF_ACTIVE)
1770 continue;
1771
1772 if (hard_iface->soft_iface != bat_priv->soft_iface)
1773 continue;
1774
1775 if (!kref_get_unless_zero(&hard_iface->refcount))
1776 continue;
1777
1778 batadv_iv_ogm_process_per_outif(skb, ogm_offset, orig_node,
1779 if_incoming, hard_iface);
1780
1781 batadv_hardif_put(hard_iface);
1782 }
1783 rcu_read_unlock();
1784
1785 batadv_orig_node_put(orig_node);
1786}
1787
1788static void batadv_iv_send_outstanding_bat_ogm_packet(struct work_struct *work)
1789{
1790 struct delayed_work *delayed_work;
1791 struct batadv_forw_packet *forw_packet;
1792 struct batadv_priv *bat_priv;
1793 bool dropped = false;
1794
1795 delayed_work = to_delayed_work(work);
1796 forw_packet = container_of(delayed_work, struct batadv_forw_packet,
1797 delayed_work);
1798 bat_priv = netdev_priv(forw_packet->if_incoming->soft_iface);
1799
1800 if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_DEACTIVATING) {
1801 dropped = true;
1802 goto out;
1803 }
1804
1805 batadv_iv_ogm_emit(forw_packet);
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815 if (forw_packet->own &&
1816 forw_packet->if_incoming == forw_packet->if_outgoing)
1817 batadv_iv_ogm_schedule(forw_packet->if_incoming);
1818
1819out:
1820
1821 if (batadv_forw_packet_steal(forw_packet,
1822 &bat_priv->forw_bat_list_lock))
1823 batadv_forw_packet_free(forw_packet, dropped);
1824}
1825
1826static int batadv_iv_ogm_receive(struct sk_buff *skb,
1827 struct batadv_hard_iface *if_incoming)
1828{
1829 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1830 struct batadv_ogm_packet *ogm_packet;
1831 u8 *packet_pos;
1832 int ogm_offset;
1833 bool res;
1834 int ret = NET_RX_DROP;
1835
1836 res = batadv_check_management_packet(skb, if_incoming, BATADV_OGM_HLEN);
1837 if (!res)
1838 goto free_skb;
1839
1840
1841
1842
1843 if (bat_priv->algo_ops->iface.enable != batadv_iv_ogm_iface_enable)
1844 goto free_skb;
1845
1846 batadv_inc_counter(bat_priv, BATADV_CNT_MGMT_RX);
1847 batadv_add_counter(bat_priv, BATADV_CNT_MGMT_RX_BYTES,
1848 skb->len + ETH_HLEN);
1849
1850 ogm_offset = 0;
1851 ogm_packet = (struct batadv_ogm_packet *)skb->data;
1852
1853
1854 while (batadv_iv_ogm_aggr_packet(ogm_offset, skb_headlen(skb),
1855 ogm_packet->tvlv_len)) {
1856 batadv_iv_ogm_process(skb, ogm_offset, if_incoming);
1857
1858 ogm_offset += BATADV_OGM_HLEN;
1859 ogm_offset += ntohs(ogm_packet->tvlv_len);
1860
1861 packet_pos = skb->data + ogm_offset;
1862 ogm_packet = (struct batadv_ogm_packet *)packet_pos;
1863 }
1864
1865 ret = NET_RX_SUCCESS;
1866
1867free_skb:
1868 if (ret == NET_RX_SUCCESS)
1869 consume_skb(skb);
1870 else
1871 kfree_skb(skb);
1872
1873 return ret;
1874}
1875
1876#ifdef CONFIG_BATMAN_ADV_DEBUGFS
1877
1878
1879
1880
1881
1882
1883
1884
1885static void
1886batadv_iv_ogm_orig_print_neigh(struct batadv_orig_node *orig_node,
1887 struct batadv_hard_iface *if_outgoing,
1888 struct seq_file *seq)
1889{
1890 struct batadv_neigh_node *neigh_node;
1891 struct batadv_neigh_ifinfo *n_ifinfo;
1892
1893 hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) {
1894 n_ifinfo = batadv_neigh_ifinfo_get(neigh_node, if_outgoing);
1895 if (!n_ifinfo)
1896 continue;
1897
1898 seq_printf(seq, " %pM (%3i)",
1899 neigh_node->addr,
1900 n_ifinfo->bat_iv.tq_avg);
1901
1902 batadv_neigh_ifinfo_put(n_ifinfo);
1903 }
1904}
1905
1906
1907
1908
1909
1910
1911
1912static void batadv_iv_ogm_orig_print(struct batadv_priv *bat_priv,
1913 struct seq_file *seq,
1914 struct batadv_hard_iface *if_outgoing)
1915{
1916 struct batadv_neigh_node *neigh_node;
1917 struct batadv_hashtable *hash = bat_priv->orig_hash;
1918 int last_seen_msecs, last_seen_secs;
1919 struct batadv_orig_node *orig_node;
1920 struct batadv_neigh_ifinfo *n_ifinfo;
1921 unsigned long last_seen_jiffies;
1922 struct hlist_head *head;
1923 int batman_count = 0;
1924 u32 i;
1925
1926 seq_puts(seq,
1927 " Originator last-seen (#/255) Nexthop [outgoingIF]: Potential nexthops ...\n");
1928
1929 for (i = 0; i < hash->size; i++) {
1930 head = &hash->table[i];
1931
1932 rcu_read_lock();
1933 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
1934 neigh_node = batadv_orig_router_get(orig_node,
1935 if_outgoing);
1936 if (!neigh_node)
1937 continue;
1938
1939 n_ifinfo = batadv_neigh_ifinfo_get(neigh_node,
1940 if_outgoing);
1941 if (!n_ifinfo)
1942 goto next;
1943
1944 if (n_ifinfo->bat_iv.tq_avg == 0)
1945 goto next;
1946
1947 last_seen_jiffies = jiffies - orig_node->last_seen;
1948 last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
1949 last_seen_secs = last_seen_msecs / 1000;
1950 last_seen_msecs = last_seen_msecs % 1000;
1951
1952 seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:",
1953 orig_node->orig, last_seen_secs,
1954 last_seen_msecs, n_ifinfo->bat_iv.tq_avg,
1955 neigh_node->addr,
1956 neigh_node->if_incoming->net_dev->name);
1957
1958 batadv_iv_ogm_orig_print_neigh(orig_node, if_outgoing,
1959 seq);
1960 seq_putc(seq, '\n');
1961 batman_count++;
1962
1963next:
1964 batadv_neigh_node_put(neigh_node);
1965 if (n_ifinfo)
1966 batadv_neigh_ifinfo_put(n_ifinfo);
1967 }
1968 rcu_read_unlock();
1969 }
1970
1971 if (batman_count == 0)
1972 seq_puts(seq, "No batman nodes in range ...\n");
1973}
1974#endif
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985static bool
1986batadv_iv_ogm_neigh_get_tq_avg(struct batadv_neigh_node *neigh_node,
1987 struct batadv_hard_iface *if_outgoing,
1988 u8 *tq_avg)
1989{
1990 struct batadv_neigh_ifinfo *n_ifinfo;
1991
1992 n_ifinfo = batadv_neigh_ifinfo_get(neigh_node, if_outgoing);
1993 if (!n_ifinfo)
1994 return false;
1995
1996 *tq_avg = n_ifinfo->bat_iv.tq_avg;
1997 batadv_neigh_ifinfo_put(n_ifinfo);
1998
1999 return true;
2000}
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016static int
2017batadv_iv_ogm_orig_dump_subentry(struct sk_buff *msg, u32 portid, u32 seq,
2018 struct batadv_priv *bat_priv,
2019 struct batadv_hard_iface *if_outgoing,
2020 struct batadv_orig_node *orig_node,
2021 struct batadv_neigh_node *neigh_node,
2022 bool best)
2023{
2024 void *hdr;
2025 u8 tq_avg;
2026 unsigned int last_seen_msecs;
2027
2028 last_seen_msecs = jiffies_to_msecs(jiffies - orig_node->last_seen);
2029
2030 if (!batadv_iv_ogm_neigh_get_tq_avg(neigh_node, if_outgoing, &tq_avg))
2031 return 0;
2032
2033 if (if_outgoing != BATADV_IF_DEFAULT &&
2034 if_outgoing != neigh_node->if_incoming)
2035 return 0;
2036
2037 hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family,
2038 NLM_F_MULTI, BATADV_CMD_GET_ORIGINATORS);
2039 if (!hdr)
2040 return -ENOBUFS;
2041
2042 if (nla_put(msg, BATADV_ATTR_ORIG_ADDRESS, ETH_ALEN,
2043 orig_node->orig) ||
2044 nla_put(msg, BATADV_ATTR_NEIGH_ADDRESS, ETH_ALEN,
2045 neigh_node->addr) ||
2046 nla_put_u32(msg, BATADV_ATTR_HARD_IFINDEX,
2047 neigh_node->if_incoming->net_dev->ifindex) ||
2048 nla_put_u8(msg, BATADV_ATTR_TQ, tq_avg) ||
2049 nla_put_u32(msg, BATADV_ATTR_LAST_SEEN_MSECS,
2050 last_seen_msecs))
2051 goto nla_put_failure;
2052
2053 if (best && nla_put_flag(msg, BATADV_ATTR_FLAG_BEST))
2054 goto nla_put_failure;
2055
2056 genlmsg_end(msg, hdr);
2057 return 0;
2058
2059 nla_put_failure:
2060 genlmsg_cancel(msg, hdr);
2061 return -EMSGSIZE;
2062}
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078static int
2079batadv_iv_ogm_orig_dump_entry(struct sk_buff *msg, u32 portid, u32 seq,
2080 struct batadv_priv *bat_priv,
2081 struct batadv_hard_iface *if_outgoing,
2082 struct batadv_orig_node *orig_node, int *sub_s)
2083{
2084 struct batadv_neigh_node *neigh_node_best;
2085 struct batadv_neigh_node *neigh_node;
2086 int sub = 0;
2087 bool best;
2088 u8 tq_avg_best;
2089
2090 neigh_node_best = batadv_orig_router_get(orig_node, if_outgoing);
2091 if (!neigh_node_best)
2092 goto out;
2093
2094 if (!batadv_iv_ogm_neigh_get_tq_avg(neigh_node_best, if_outgoing,
2095 &tq_avg_best))
2096 goto out;
2097
2098 if (tq_avg_best == 0)
2099 goto out;
2100
2101 hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) {
2102 if (sub++ < *sub_s)
2103 continue;
2104
2105 best = (neigh_node == neigh_node_best);
2106
2107 if (batadv_iv_ogm_orig_dump_subentry(msg, portid, seq,
2108 bat_priv, if_outgoing,
2109 orig_node, neigh_node,
2110 best)) {
2111 batadv_neigh_node_put(neigh_node_best);
2112
2113 *sub_s = sub - 1;
2114 return -EMSGSIZE;
2115 }
2116 }
2117
2118 out:
2119 if (neigh_node_best)
2120 batadv_neigh_node_put(neigh_node_best);
2121
2122 *sub_s = 0;
2123 return 0;
2124}
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140static int
2141batadv_iv_ogm_orig_dump_bucket(struct sk_buff *msg, u32 portid, u32 seq,
2142 struct batadv_priv *bat_priv,
2143 struct batadv_hard_iface *if_outgoing,
2144 struct hlist_head *head, int *idx_s, int *sub)
2145{
2146 struct batadv_orig_node *orig_node;
2147 int idx = 0;
2148
2149 rcu_read_lock();
2150 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
2151 if (idx++ < *idx_s)
2152 continue;
2153
2154 if (batadv_iv_ogm_orig_dump_entry(msg, portid, seq, bat_priv,
2155 if_outgoing, orig_node,
2156 sub)) {
2157 rcu_read_unlock();
2158 *idx_s = idx - 1;
2159 return -EMSGSIZE;
2160 }
2161 }
2162 rcu_read_unlock();
2163
2164 *idx_s = 0;
2165 *sub = 0;
2166 return 0;
2167}
2168
2169
2170
2171
2172
2173
2174
2175
2176static void
2177batadv_iv_ogm_orig_dump(struct sk_buff *msg, struct netlink_callback *cb,
2178 struct batadv_priv *bat_priv,
2179 struct batadv_hard_iface *if_outgoing)
2180{
2181 struct batadv_hashtable *hash = bat_priv->orig_hash;
2182 struct hlist_head *head;
2183 int bucket = cb->args[0];
2184 int idx = cb->args[1];
2185 int sub = cb->args[2];
2186 int portid = NETLINK_CB(cb->skb).portid;
2187
2188 while (bucket < hash->size) {
2189 head = &hash->table[bucket];
2190
2191 if (batadv_iv_ogm_orig_dump_bucket(msg, portid,
2192 cb->nlh->nlmsg_seq,
2193 bat_priv, if_outgoing, head,
2194 &idx, &sub))
2195 break;
2196
2197 bucket++;
2198 }
2199
2200 cb->args[0] = bucket;
2201 cb->args[1] = idx;
2202 cb->args[2] = sub;
2203}
2204
2205#ifdef CONFIG_BATMAN_ADV_DEBUGFS
2206
2207
2208
2209
2210
2211static void
2212batadv_iv_hardif_neigh_print(struct seq_file *seq,
2213 struct batadv_hardif_neigh_node *hardif_neigh)
2214{
2215 int last_secs, last_msecs;
2216
2217 last_secs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen) / 1000;
2218 last_msecs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen) % 1000;
2219
2220 seq_printf(seq, " %10s %pM %4i.%03is\n",
2221 hardif_neigh->if_incoming->net_dev->name,
2222 hardif_neigh->addr, last_secs, last_msecs);
2223}
2224
2225
2226
2227
2228
2229
2230static void batadv_iv_neigh_print(struct batadv_priv *bat_priv,
2231 struct seq_file *seq)
2232{
2233 struct net_device *net_dev = (struct net_device *)seq->private;
2234 struct batadv_hardif_neigh_node *hardif_neigh;
2235 struct batadv_hard_iface *hard_iface;
2236 int batman_count = 0;
2237
2238 seq_puts(seq, " IF Neighbor last-seen\n");
2239
2240 rcu_read_lock();
2241 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
2242 if (hard_iface->soft_iface != net_dev)
2243 continue;
2244
2245 hlist_for_each_entry_rcu(hardif_neigh,
2246 &hard_iface->neigh_list, list) {
2247 batadv_iv_hardif_neigh_print(seq, hardif_neigh);
2248 batman_count++;
2249 }
2250 }
2251 rcu_read_unlock();
2252
2253 if (batman_count == 0)
2254 seq_puts(seq, "No batman nodes in range ...\n");
2255}
2256#endif
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272static bool batadv_iv_ogm_neigh_diff(struct batadv_neigh_node *neigh1,
2273 struct batadv_hard_iface *if_outgoing1,
2274 struct batadv_neigh_node *neigh2,
2275 struct batadv_hard_iface *if_outgoing2,
2276 int *diff)
2277{
2278 struct batadv_neigh_ifinfo *neigh1_ifinfo, *neigh2_ifinfo;
2279 u8 tq1, tq2;
2280 bool ret = true;
2281
2282 neigh1_ifinfo = batadv_neigh_ifinfo_get(neigh1, if_outgoing1);
2283 neigh2_ifinfo = batadv_neigh_ifinfo_get(neigh2, if_outgoing2);
2284
2285 if (!neigh1_ifinfo || !neigh2_ifinfo) {
2286 ret = false;
2287 goto out;
2288 }
2289
2290 tq1 = neigh1_ifinfo->bat_iv.tq_avg;
2291 tq2 = neigh2_ifinfo->bat_iv.tq_avg;
2292 *diff = (int)tq1 - (int)tq2;
2293
2294out:
2295 if (neigh1_ifinfo)
2296 batadv_neigh_ifinfo_put(neigh1_ifinfo);
2297 if (neigh2_ifinfo)
2298 batadv_neigh_ifinfo_put(neigh2_ifinfo);
2299
2300 return ret;
2301}
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312static int
2313batadv_iv_ogm_neigh_dump_neigh(struct sk_buff *msg, u32 portid, u32 seq,
2314 struct batadv_hardif_neigh_node *hardif_neigh)
2315{
2316 void *hdr;
2317 unsigned int last_seen_msecs;
2318
2319 last_seen_msecs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen);
2320
2321 hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family,
2322 NLM_F_MULTI, BATADV_CMD_GET_NEIGHBORS);
2323 if (!hdr)
2324 return -ENOBUFS;
2325
2326 if (nla_put(msg, BATADV_ATTR_NEIGH_ADDRESS, ETH_ALEN,
2327 hardif_neigh->addr) ||
2328 nla_put_u32(msg, BATADV_ATTR_HARD_IFINDEX,
2329 hardif_neigh->if_incoming->net_dev->ifindex) ||
2330 nla_put_u32(msg, BATADV_ATTR_LAST_SEEN_MSECS,
2331 last_seen_msecs))
2332 goto nla_put_failure;
2333
2334 genlmsg_end(msg, hdr);
2335 return 0;
2336
2337 nla_put_failure:
2338 genlmsg_cancel(msg, hdr);
2339 return -EMSGSIZE;
2340}
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356static int
2357batadv_iv_ogm_neigh_dump_hardif(struct sk_buff *msg, u32 portid, u32 seq,
2358 struct batadv_priv *bat_priv,
2359 struct batadv_hard_iface *hard_iface,
2360 int *idx_s)
2361{
2362 struct batadv_hardif_neigh_node *hardif_neigh;
2363 int idx = 0;
2364
2365 hlist_for_each_entry_rcu(hardif_neigh,
2366 &hard_iface->neigh_list, list) {
2367 if (idx++ < *idx_s)
2368 continue;
2369
2370 if (batadv_iv_ogm_neigh_dump_neigh(msg, portid, seq,
2371 hardif_neigh)) {
2372 *idx_s = idx - 1;
2373 return -EMSGSIZE;
2374 }
2375 }
2376
2377 *idx_s = 0;
2378 return 0;
2379}
2380
2381
2382
2383
2384
2385
2386
2387
2388static void
2389batadv_iv_ogm_neigh_dump(struct sk_buff *msg, struct netlink_callback *cb,
2390 struct batadv_priv *bat_priv,
2391 struct batadv_hard_iface *single_hardif)
2392{
2393 struct batadv_hard_iface *hard_iface;
2394 int i_hardif = 0;
2395 int i_hardif_s = cb->args[0];
2396 int idx = cb->args[1];
2397 int portid = NETLINK_CB(cb->skb).portid;
2398
2399 rcu_read_lock();
2400 if (single_hardif) {
2401 if (i_hardif_s == 0) {
2402 if (batadv_iv_ogm_neigh_dump_hardif(msg, portid,
2403 cb->nlh->nlmsg_seq,
2404 bat_priv,
2405 single_hardif,
2406 &idx) == 0)
2407 i_hardif++;
2408 }
2409 } else {
2410 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list,
2411 list) {
2412 if (hard_iface->soft_iface != bat_priv->soft_iface)
2413 continue;
2414
2415 if (i_hardif++ < i_hardif_s)
2416 continue;
2417
2418 if (batadv_iv_ogm_neigh_dump_hardif(msg, portid,
2419 cb->nlh->nlmsg_seq,
2420 bat_priv,
2421 hard_iface, &idx)) {
2422 i_hardif--;
2423 break;
2424 }
2425 }
2426 }
2427 rcu_read_unlock();
2428
2429 cb->args[0] = i_hardif;
2430 cb->args[1] = idx;
2431}
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443static int batadv_iv_ogm_neigh_cmp(struct batadv_neigh_node *neigh1,
2444 struct batadv_hard_iface *if_outgoing1,
2445 struct batadv_neigh_node *neigh2,
2446 struct batadv_hard_iface *if_outgoing2)
2447{
2448 bool ret;
2449 int diff;
2450
2451 ret = batadv_iv_ogm_neigh_diff(neigh1, if_outgoing1, neigh2,
2452 if_outgoing2, &diff);
2453 if (!ret)
2454 return 0;
2455
2456 return diff;
2457}
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470static bool
2471batadv_iv_ogm_neigh_is_sob(struct batadv_neigh_node *neigh1,
2472 struct batadv_hard_iface *if_outgoing1,
2473 struct batadv_neigh_node *neigh2,
2474 struct batadv_hard_iface *if_outgoing2)
2475{
2476 bool ret;
2477 int diff;
2478
2479 ret = batadv_iv_ogm_neigh_diff(neigh1, if_outgoing1, neigh2,
2480 if_outgoing2, &diff);
2481 if (!ret)
2482 return false;
2483
2484 ret = diff > -BATADV_TQ_SIMILARITY_THRESHOLD;
2485 return ret;
2486}
2487
2488static void batadv_iv_iface_activate(struct batadv_hard_iface *hard_iface)
2489{
2490
2491 batadv_iv_ogm_schedule(hard_iface);
2492}
2493
2494
2495
2496
2497
2498static void batadv_iv_init_sel_class(struct batadv_priv *bat_priv)
2499{
2500
2501 atomic_set(&bat_priv->gw.sel_class, 20);
2502}
2503
2504static struct batadv_gw_node *
2505batadv_iv_gw_get_best_gw_node(struct batadv_priv *bat_priv)
2506{
2507 struct batadv_neigh_node *router;
2508 struct batadv_neigh_ifinfo *router_ifinfo;
2509 struct batadv_gw_node *gw_node, *curr_gw = NULL;
2510 u64 max_gw_factor = 0;
2511 u64 tmp_gw_factor = 0;
2512 u8 max_tq = 0;
2513 u8 tq_avg;
2514 struct batadv_orig_node *orig_node;
2515
2516 rcu_read_lock();
2517 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.gateway_list, list) {
2518 orig_node = gw_node->orig_node;
2519 router = batadv_orig_router_get(orig_node, BATADV_IF_DEFAULT);
2520 if (!router)
2521 continue;
2522
2523 router_ifinfo = batadv_neigh_ifinfo_get(router,
2524 BATADV_IF_DEFAULT);
2525 if (!router_ifinfo)
2526 goto next;
2527
2528 if (!kref_get_unless_zero(&gw_node->refcount))
2529 goto next;
2530
2531 tq_avg = router_ifinfo->bat_iv.tq_avg;
2532
2533 switch (atomic_read(&bat_priv->gw.sel_class)) {
2534 case 1:
2535 tmp_gw_factor = tq_avg * tq_avg;
2536 tmp_gw_factor *= gw_node->bandwidth_down;
2537 tmp_gw_factor *= 100 * 100;
2538 tmp_gw_factor >>= 18;
2539
2540 if (tmp_gw_factor > max_gw_factor ||
2541 (tmp_gw_factor == max_gw_factor &&
2542 tq_avg > max_tq)) {
2543 if (curr_gw)
2544 batadv_gw_node_put(curr_gw);
2545 curr_gw = gw_node;
2546 kref_get(&curr_gw->refcount);
2547 }
2548 break;
2549
2550 default:
2551
2552
2553
2554
2555
2556
2557 if (tq_avg > max_tq) {
2558 if (curr_gw)
2559 batadv_gw_node_put(curr_gw);
2560 curr_gw = gw_node;
2561 kref_get(&curr_gw->refcount);
2562 }
2563 break;
2564 }
2565
2566 if (tq_avg > max_tq)
2567 max_tq = tq_avg;
2568
2569 if (tmp_gw_factor > max_gw_factor)
2570 max_gw_factor = tmp_gw_factor;
2571
2572 batadv_gw_node_put(gw_node);
2573
2574next:
2575 batadv_neigh_node_put(router);
2576 if (router_ifinfo)
2577 batadv_neigh_ifinfo_put(router_ifinfo);
2578 }
2579 rcu_read_unlock();
2580
2581 return curr_gw;
2582}
2583
2584static bool batadv_iv_gw_is_eligible(struct batadv_priv *bat_priv,
2585 struct batadv_orig_node *curr_gw_orig,
2586 struct batadv_orig_node *orig_node)
2587{
2588 struct batadv_neigh_ifinfo *router_orig_ifinfo = NULL;
2589 struct batadv_neigh_ifinfo *router_gw_ifinfo = NULL;
2590 struct batadv_neigh_node *router_gw = NULL;
2591 struct batadv_neigh_node *router_orig = NULL;
2592 u8 gw_tq_avg, orig_tq_avg;
2593 bool ret = false;
2594
2595
2596 if (atomic_read(&bat_priv->gw.sel_class) <= 2)
2597 return false;
2598
2599 router_gw = batadv_orig_router_get(curr_gw_orig, BATADV_IF_DEFAULT);
2600 if (!router_gw) {
2601 ret = true;
2602 goto out;
2603 }
2604
2605 router_gw_ifinfo = batadv_neigh_ifinfo_get(router_gw,
2606 BATADV_IF_DEFAULT);
2607 if (!router_gw_ifinfo) {
2608 ret = true;
2609 goto out;
2610 }
2611
2612 router_orig = batadv_orig_router_get(orig_node, BATADV_IF_DEFAULT);
2613 if (!router_orig)
2614 goto out;
2615
2616 router_orig_ifinfo = batadv_neigh_ifinfo_get(router_orig,
2617 BATADV_IF_DEFAULT);
2618 if (!router_orig_ifinfo)
2619 goto out;
2620
2621 gw_tq_avg = router_gw_ifinfo->bat_iv.tq_avg;
2622 orig_tq_avg = router_orig_ifinfo->bat_iv.tq_avg;
2623
2624
2625 if (orig_tq_avg < gw_tq_avg)
2626 goto out;
2627
2628
2629
2630
2631 if ((atomic_read(&bat_priv->gw.sel_class) > 3) &&
2632 (orig_tq_avg - gw_tq_avg < atomic_read(&bat_priv->gw.sel_class)))
2633 goto out;
2634
2635 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
2636 "Restarting gateway selection: better gateway found (tq curr: %i, tq new: %i)\n",
2637 gw_tq_avg, orig_tq_avg);
2638
2639 ret = true;
2640out:
2641 if (router_gw_ifinfo)
2642 batadv_neigh_ifinfo_put(router_gw_ifinfo);
2643 if (router_orig_ifinfo)
2644 batadv_neigh_ifinfo_put(router_orig_ifinfo);
2645 if (router_gw)
2646 batadv_neigh_node_put(router_gw);
2647 if (router_orig)
2648 batadv_neigh_node_put(router_orig);
2649
2650 return ret;
2651}
2652
2653#ifdef CONFIG_BATMAN_ADV_DEBUGFS
2654
2655static int batadv_iv_gw_write_buffer_text(struct batadv_priv *bat_priv,
2656 struct seq_file *seq,
2657 const struct batadv_gw_node *gw_node)
2658{
2659 struct batadv_gw_node *curr_gw;
2660 struct batadv_neigh_node *router;
2661 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
2662 int ret = -1;
2663
2664 router = batadv_orig_router_get(gw_node->orig_node, BATADV_IF_DEFAULT);
2665 if (!router)
2666 goto out;
2667
2668 router_ifinfo = batadv_neigh_ifinfo_get(router, BATADV_IF_DEFAULT);
2669 if (!router_ifinfo)
2670 goto out;
2671
2672 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
2673
2674 seq_printf(seq, "%s %pM (%3i) %pM [%10s]: %u.%u/%u.%u MBit\n",
2675 (curr_gw == gw_node ? "=>" : " "),
2676 gw_node->orig_node->orig,
2677 router_ifinfo->bat_iv.tq_avg, router->addr,
2678 router->if_incoming->net_dev->name,
2679 gw_node->bandwidth_down / 10,
2680 gw_node->bandwidth_down % 10,
2681 gw_node->bandwidth_up / 10,
2682 gw_node->bandwidth_up % 10);
2683 ret = seq_has_overflowed(seq) ? -1 : 0;
2684
2685 if (curr_gw)
2686 batadv_gw_node_put(curr_gw);
2687out:
2688 if (router_ifinfo)
2689 batadv_neigh_ifinfo_put(router_ifinfo);
2690 if (router)
2691 batadv_neigh_node_put(router);
2692 return ret;
2693}
2694
2695static void batadv_iv_gw_print(struct batadv_priv *bat_priv,
2696 struct seq_file *seq)
2697{
2698 struct batadv_gw_node *gw_node;
2699 int gw_count = 0;
2700
2701 seq_puts(seq,
2702 " Gateway (#/255) Nexthop [outgoingIF]: advertised uplink bandwidth\n");
2703
2704 rcu_read_lock();
2705 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.gateway_list, list) {
2706
2707 if (batadv_iv_gw_write_buffer_text(bat_priv, seq, gw_node) < 0)
2708 continue;
2709
2710 gw_count++;
2711 }
2712 rcu_read_unlock();
2713
2714 if (gw_count == 0)
2715 seq_puts(seq, "No gateways in range ...\n");
2716}
2717#endif
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729static int batadv_iv_gw_dump_entry(struct sk_buff *msg, u32 portid, u32 seq,
2730 struct batadv_priv *bat_priv,
2731 struct batadv_gw_node *gw_node)
2732{
2733 struct batadv_neigh_ifinfo *router_ifinfo = NULL;
2734 struct batadv_neigh_node *router;
2735 struct batadv_gw_node *curr_gw = NULL;
2736 int ret = 0;
2737 void *hdr;
2738
2739 router = batadv_orig_router_get(gw_node->orig_node, BATADV_IF_DEFAULT);
2740 if (!router)
2741 goto out;
2742
2743 router_ifinfo = batadv_neigh_ifinfo_get(router, BATADV_IF_DEFAULT);
2744 if (!router_ifinfo)
2745 goto out;
2746
2747 curr_gw = batadv_gw_get_selected_gw_node(bat_priv);
2748
2749 hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family,
2750 NLM_F_MULTI, BATADV_CMD_GET_GATEWAYS);
2751 if (!hdr) {
2752 ret = -ENOBUFS;
2753 goto out;
2754 }
2755
2756 ret = -EMSGSIZE;
2757
2758 if (curr_gw == gw_node)
2759 if (nla_put_flag(msg, BATADV_ATTR_FLAG_BEST)) {
2760 genlmsg_cancel(msg, hdr);
2761 goto out;
2762 }
2763
2764 if (nla_put(msg, BATADV_ATTR_ORIG_ADDRESS, ETH_ALEN,
2765 gw_node->orig_node->orig) ||
2766 nla_put_u8(msg, BATADV_ATTR_TQ, router_ifinfo->bat_iv.tq_avg) ||
2767 nla_put(msg, BATADV_ATTR_ROUTER, ETH_ALEN,
2768 router->addr) ||
2769 nla_put_string(msg, BATADV_ATTR_HARD_IFNAME,
2770 router->if_incoming->net_dev->name) ||
2771 nla_put_u32(msg, BATADV_ATTR_BANDWIDTH_DOWN,
2772 gw_node->bandwidth_down) ||
2773 nla_put_u32(msg, BATADV_ATTR_BANDWIDTH_UP,
2774 gw_node->bandwidth_up)) {
2775 genlmsg_cancel(msg, hdr);
2776 goto out;
2777 }
2778
2779 genlmsg_end(msg, hdr);
2780 ret = 0;
2781
2782out:
2783 if (curr_gw)
2784 batadv_gw_node_put(curr_gw);
2785 if (router_ifinfo)
2786 batadv_neigh_ifinfo_put(router_ifinfo);
2787 if (router)
2788 batadv_neigh_node_put(router);
2789 return ret;
2790}
2791
2792
2793
2794
2795
2796
2797
2798static void batadv_iv_gw_dump(struct sk_buff *msg, struct netlink_callback *cb,
2799 struct batadv_priv *bat_priv)
2800{
2801 int portid = NETLINK_CB(cb->skb).portid;
2802 struct batadv_gw_node *gw_node;
2803 int idx_skip = cb->args[0];
2804 int idx = 0;
2805
2806 rcu_read_lock();
2807 hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.gateway_list, list) {
2808 if (idx++ < idx_skip)
2809 continue;
2810
2811 if (batadv_iv_gw_dump_entry(msg, portid, cb->nlh->nlmsg_seq,
2812 bat_priv, gw_node)) {
2813 idx_skip = idx - 1;
2814 goto unlock;
2815 }
2816 }
2817
2818 idx_skip = idx;
2819unlock:
2820 rcu_read_unlock();
2821
2822 cb->args[0] = idx_skip;
2823}
2824
2825static struct batadv_algo_ops batadv_batman_iv __read_mostly = {
2826 .name = "BATMAN_IV",
2827 .iface = {
2828 .activate = batadv_iv_iface_activate,
2829 .enable = batadv_iv_ogm_iface_enable,
2830 .disable = batadv_iv_ogm_iface_disable,
2831 .update_mac = batadv_iv_ogm_iface_update_mac,
2832 .primary_set = batadv_iv_ogm_primary_iface_set,
2833 },
2834 .neigh = {
2835 .cmp = batadv_iv_ogm_neigh_cmp,
2836 .is_similar_or_better = batadv_iv_ogm_neigh_is_sob,
2837#ifdef CONFIG_BATMAN_ADV_DEBUGFS
2838 .print = batadv_iv_neigh_print,
2839#endif
2840 .dump = batadv_iv_ogm_neigh_dump,
2841 },
2842 .orig = {
2843#ifdef CONFIG_BATMAN_ADV_DEBUGFS
2844 .print = batadv_iv_ogm_orig_print,
2845#endif
2846 .dump = batadv_iv_ogm_orig_dump,
2847 .free = batadv_iv_ogm_orig_free,
2848 .add_if = batadv_iv_ogm_orig_add_if,
2849 .del_if = batadv_iv_ogm_orig_del_if,
2850 },
2851 .gw = {
2852 .init_sel_class = batadv_iv_init_sel_class,
2853 .get_best_gw_node = batadv_iv_gw_get_best_gw_node,
2854 .is_eligible = batadv_iv_gw_is_eligible,
2855#ifdef CONFIG_BATMAN_ADV_DEBUGFS
2856 .print = batadv_iv_gw_print,
2857#endif
2858 .dump = batadv_iv_gw_dump,
2859 },
2860};
2861
2862
2863
2864
2865
2866
2867int __init batadv_iv_init(void)
2868{
2869 int ret;
2870
2871
2872 ret = batadv_recv_handler_register(BATADV_IV_OGM,
2873 batadv_iv_ogm_receive);
2874 if (ret < 0)
2875 goto out;
2876
2877 ret = batadv_algo_register(&batadv_batman_iv);
2878 if (ret < 0)
2879 goto handler_unregister;
2880
2881 goto out;
2882
2883handler_unregister:
2884 batadv_recv_handler_unregister(BATADV_IV_OGM);
2885out:
2886 return ret;
2887}
2888