2 * Copyright (C) 2007-2011 B.A.T.M.A.N. contributors:
4 * Marek Lindner, Simon Wunderlich
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.
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.
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
24 #include "translation-table.h"
25 #include "ring_buffer.h"
26 #include "originator.h"
28 #include "gateway_common.h"
29 #include "gateway_client.h"
30 #include "hard-interface.h"
33 void bat_ogm_init(struct hard_iface
*hard_iface
)
35 struct batman_ogm_packet
*batman_ogm_packet
;
37 hard_iface
->packet_len
= BATMAN_OGM_LEN
;
38 hard_iface
->packet_buff
= kmalloc(hard_iface
->packet_len
, GFP_ATOMIC
);
40 batman_ogm_packet
= (struct batman_ogm_packet
*)hard_iface
->packet_buff
;
41 batman_ogm_packet
->packet_type
= BAT_OGM
;
42 batman_ogm_packet
->version
= COMPAT_VERSION
;
43 batman_ogm_packet
->flags
= NO_FLAGS
;
44 batman_ogm_packet
->ttl
= 2;
45 batman_ogm_packet
->tq
= TQ_MAX_VALUE
;
46 batman_ogm_packet
->tt_num_changes
= 0;
47 batman_ogm_packet
->ttvn
= 0;
50 void bat_ogm_init_primary(struct hard_iface
*hard_iface
)
52 struct batman_ogm_packet
*batman_ogm_packet
;
54 batman_ogm_packet
= (struct batman_ogm_packet
*)hard_iface
->packet_buff
;
55 batman_ogm_packet
->flags
= PRIMARIES_FIRST_HOP
;
56 batman_ogm_packet
->ttl
= TTL
;
59 void bat_ogm_update_mac(struct hard_iface
*hard_iface
)
61 struct batman_ogm_packet
*batman_ogm_packet
;
63 batman_ogm_packet
= (struct batman_ogm_packet
*)hard_iface
->packet_buff
;
64 memcpy(batman_ogm_packet
->orig
,
65 hard_iface
->net_dev
->dev_addr
, ETH_ALEN
);
66 memcpy(batman_ogm_packet
->prev_sender
,
67 hard_iface
->net_dev
->dev_addr
, ETH_ALEN
);
70 /* when do we schedule our own ogm to be sent */
71 static unsigned long bat_ogm_emit_send_time(const struct bat_priv
*bat_priv
)
73 return jiffies
+ msecs_to_jiffies(
74 atomic_read(&bat_priv
->orig_interval
) -
75 JITTER
+ (random32() % 2*JITTER
));
78 /* when do we schedule a ogm packet to be sent */
79 static unsigned long bat_ogm_fwd_send_time(void)
81 return jiffies
+ msecs_to_jiffies(random32() % (JITTER
/2));
84 /* apply hop penalty for a normal link */
85 static uint8_t hop_penalty(uint8_t tq
, const struct bat_priv
*bat_priv
)
87 int hop_penalty
= atomic_read(&bat_priv
->hop_penalty
);
88 return (tq
* (TQ_MAX_VALUE
- hop_penalty
)) / (TQ_MAX_VALUE
);
91 /* is there another aggregated packet here? */
92 static int bat_ogm_aggr_packet(int buff_pos
, int packet_len
,
95 int next_buff_pos
= buff_pos
+ BATMAN_OGM_LEN
+ tt_len(tt_num_changes
);
97 return (next_buff_pos
<= packet_len
) &&
98 (next_buff_pos
<= MAX_AGGREGATION_BYTES
);
101 /* send a batman ogm to a given interface */
102 static void bat_ogm_send_to_if(struct forw_packet
*forw_packet
,
103 struct hard_iface
*hard_iface
)
105 struct bat_priv
*bat_priv
= netdev_priv(hard_iface
->soft_iface
);
109 struct batman_ogm_packet
*batman_ogm_packet
;
112 if (hard_iface
->if_status
!= IF_ACTIVE
)
117 batman_ogm_packet
= (struct batman_ogm_packet
*)forw_packet
->skb
->data
;
119 /* adjust all flags and log packets */
120 while (bat_ogm_aggr_packet(buff_pos
, forw_packet
->packet_len
,
121 batman_ogm_packet
->tt_num_changes
)) {
123 /* we might have aggregated direct link packets with an
124 * ordinary base packet */
125 if ((forw_packet
->direct_link_flags
& (1 << packet_num
)) &&
126 (forw_packet
->if_incoming
== hard_iface
))
127 batman_ogm_packet
->flags
|= DIRECTLINK
;
129 batman_ogm_packet
->flags
&= ~DIRECTLINK
;
131 fwd_str
= (packet_num
> 0 ? "Forwarding" : (forw_packet
->own
?
134 bat_dbg(DBG_BATMAN
, bat_priv
,
135 "%s %spacket (originator %pM, seqno %d, TQ %d, TTL %d,"
136 " IDF %s, ttvn %d) on interface %s [%pM]\n",
137 fwd_str
, (packet_num
> 0 ? "aggregated " : ""),
138 batman_ogm_packet
->orig
,
139 ntohl(batman_ogm_packet
->seqno
),
140 batman_ogm_packet
->tq
, batman_ogm_packet
->ttl
,
141 (batman_ogm_packet
->flags
& DIRECTLINK
?
143 batman_ogm_packet
->ttvn
, hard_iface
->net_dev
->name
,
144 hard_iface
->net_dev
->dev_addr
);
146 buff_pos
+= BATMAN_OGM_LEN
+
147 tt_len(batman_ogm_packet
->tt_num_changes
);
149 batman_ogm_packet
= (struct batman_ogm_packet
*)
150 (forw_packet
->skb
->data
+ buff_pos
);
153 /* create clone because function is called more than once */
154 skb
= skb_clone(forw_packet
->skb
, GFP_ATOMIC
);
156 send_skb_packet(skb
, hard_iface
, broadcast_addr
);
159 /* send a batman ogm packet */
160 void bat_ogm_emit(struct forw_packet
*forw_packet
)
162 struct hard_iface
*hard_iface
;
163 struct net_device
*soft_iface
;
164 struct bat_priv
*bat_priv
;
165 struct hard_iface
*primary_if
= NULL
;
166 struct batman_ogm_packet
*batman_ogm_packet
;
167 unsigned char directlink
;
169 batman_ogm_packet
= (struct batman_ogm_packet
*)
170 (forw_packet
->skb
->data
);
171 directlink
= (batman_ogm_packet
->flags
& DIRECTLINK
? 1 : 0);
173 if (!forw_packet
->if_incoming
) {
174 pr_err("Error - can't forward packet: incoming iface not "
179 soft_iface
= forw_packet
->if_incoming
->soft_iface
;
180 bat_priv
= netdev_priv(soft_iface
);
182 if (forw_packet
->if_incoming
->if_status
!= IF_ACTIVE
)
185 primary_if
= primary_if_get_selected(bat_priv
);
189 /* multihomed peer assumed */
190 /* non-primary OGMs are only broadcasted on their interface */
191 if ((directlink
&& (batman_ogm_packet
->ttl
== 1)) ||
192 (forw_packet
->own
&& (forw_packet
->if_incoming
!= primary_if
))) {
194 /* FIXME: what about aggregated packets ? */
195 bat_dbg(DBG_BATMAN
, bat_priv
,
196 "%s packet (originator %pM, seqno %d, TTL %d) "
197 "on interface %s [%pM]\n",
198 (forw_packet
->own
? "Sending own" : "Forwarding"),
199 batman_ogm_packet
->orig
,
200 ntohl(batman_ogm_packet
->seqno
),
201 batman_ogm_packet
->ttl
,
202 forw_packet
->if_incoming
->net_dev
->name
,
203 forw_packet
->if_incoming
->net_dev
->dev_addr
);
205 /* skb is only used once and than forw_packet is free'd */
206 send_skb_packet(forw_packet
->skb
, forw_packet
->if_incoming
,
208 forw_packet
->skb
= NULL
;
213 /* broadcast on every interface */
215 list_for_each_entry_rcu(hard_iface
, &hardif_list
, list
) {
216 if (hard_iface
->soft_iface
!= soft_iface
)
219 bat_ogm_send_to_if(forw_packet
, hard_iface
);
225 hardif_free_ref(primary_if
);
228 /* return true if new_packet can be aggregated with forw_packet */
229 static bool bat_ogm_can_aggregate(const struct batman_ogm_packet
230 *new_batman_ogm_packet
,
231 struct bat_priv
*bat_priv
,
232 int packet_len
, unsigned long send_time
,
234 const struct hard_iface
*if_incoming
,
235 const struct forw_packet
*forw_packet
)
237 struct batman_ogm_packet
*batman_ogm_packet
;
238 int aggregated_bytes
= forw_packet
->packet_len
+ packet_len
;
239 struct hard_iface
*primary_if
= NULL
;
242 batman_ogm_packet
= (struct batman_ogm_packet
*)forw_packet
->skb
->data
;
245 * we can aggregate the current packet to this aggregated packet
248 * - the send time is within our MAX_AGGREGATION_MS time
249 * - the resulting packet wont be bigger than
250 * MAX_AGGREGATION_BYTES
253 if (time_before(send_time
, forw_packet
->send_time
) &&
254 time_after_eq(send_time
+ msecs_to_jiffies(MAX_AGGREGATION_MS
),
255 forw_packet
->send_time
) &&
256 (aggregated_bytes
<= MAX_AGGREGATION_BYTES
)) {
259 * check aggregation compatibility
260 * -> direct link packets are broadcasted on
261 * their interface only
262 * -> aggregate packet if the current packet is
263 * a "global" packet as well as the base
267 primary_if
= primary_if_get_selected(bat_priv
);
271 /* packets without direct link flag and high TTL
272 * are flooded through the net */
274 (!(batman_ogm_packet
->flags
& DIRECTLINK
)) &&
275 (batman_ogm_packet
->ttl
!= 1) &&
277 /* own packets originating non-primary
278 * interfaces leave only that interface */
279 ((!forw_packet
->own
) ||
280 (forw_packet
->if_incoming
== primary_if
))) {
285 /* if the incoming packet is sent via this one
286 * interface only - we still can aggregate */
288 (new_batman_ogm_packet
->ttl
== 1) &&
289 (forw_packet
->if_incoming
== if_incoming
) &&
291 /* packets from direct neighbors or
292 * own secondary interface packets
293 * (= secondary interface packets in general) */
294 (batman_ogm_packet
->flags
& DIRECTLINK
||
296 forw_packet
->if_incoming
!= primary_if
))) {
304 hardif_free_ref(primary_if
);
308 /* create a new aggregated packet and add this packet to it */
309 static void bat_ogm_aggregate_new(const unsigned char *packet_buff
,
310 int packet_len
, unsigned long send_time
,
312 struct hard_iface
*if_incoming
,
315 struct bat_priv
*bat_priv
= netdev_priv(if_incoming
->soft_iface
);
316 struct forw_packet
*forw_packet_aggr
;
317 unsigned char *skb_buff
;
319 if (!atomic_inc_not_zero(&if_incoming
->refcount
))
322 /* own packet should always be scheduled */
324 if (!atomic_dec_not_zero(&bat_priv
->batman_queue_left
)) {
325 bat_dbg(DBG_BATMAN
, bat_priv
,
326 "batman packet queue full\n");
331 forw_packet_aggr
= kmalloc(sizeof(*forw_packet_aggr
), GFP_ATOMIC
);
332 if (!forw_packet_aggr
) {
334 atomic_inc(&bat_priv
->batman_queue_left
);
338 if ((atomic_read(&bat_priv
->aggregated_ogms
)) &&
339 (packet_len
< MAX_AGGREGATION_BYTES
))
340 forw_packet_aggr
->skb
= dev_alloc_skb(MAX_AGGREGATION_BYTES
+
341 sizeof(struct ethhdr
));
343 forw_packet_aggr
->skb
= dev_alloc_skb(packet_len
+
344 sizeof(struct ethhdr
));
346 if (!forw_packet_aggr
->skb
) {
348 atomic_inc(&bat_priv
->batman_queue_left
);
349 kfree(forw_packet_aggr
);
352 skb_reserve(forw_packet_aggr
->skb
, sizeof(struct ethhdr
));
354 INIT_HLIST_NODE(&forw_packet_aggr
->list
);
356 skb_buff
= skb_put(forw_packet_aggr
->skb
, packet_len
);
357 forw_packet_aggr
->packet_len
= packet_len
;
358 memcpy(skb_buff
, packet_buff
, packet_len
);
360 forw_packet_aggr
->own
= own_packet
;
361 forw_packet_aggr
->if_incoming
= if_incoming
;
362 forw_packet_aggr
->num_packets
= 0;
363 forw_packet_aggr
->direct_link_flags
= NO_FLAGS
;
364 forw_packet_aggr
->send_time
= send_time
;
366 /* save packet direct link flag status */
368 forw_packet_aggr
->direct_link_flags
|= 1;
370 /* add new packet to packet list */
371 spin_lock_bh(&bat_priv
->forw_bat_list_lock
);
372 hlist_add_head(&forw_packet_aggr
->list
, &bat_priv
->forw_bat_list
);
373 spin_unlock_bh(&bat_priv
->forw_bat_list_lock
);
375 /* start timer for this packet */
376 INIT_DELAYED_WORK(&forw_packet_aggr
->delayed_work
,
377 send_outstanding_bat_ogm_packet
);
378 queue_delayed_work(bat_event_workqueue
,
379 &forw_packet_aggr
->delayed_work
,
380 send_time
- jiffies
);
384 hardif_free_ref(if_incoming
);
387 /* aggregate a new packet into the existing ogm packet */
388 static void bat_ogm_aggregate(struct forw_packet
*forw_packet_aggr
,
389 const unsigned char *packet_buff
,
390 int packet_len
, bool direct_link
)
392 unsigned char *skb_buff
;
394 skb_buff
= skb_put(forw_packet_aggr
->skb
, packet_len
);
395 memcpy(skb_buff
, packet_buff
, packet_len
);
396 forw_packet_aggr
->packet_len
+= packet_len
;
397 forw_packet_aggr
->num_packets
++;
399 /* save packet direct link flag status */
401 forw_packet_aggr
->direct_link_flags
|=
402 (1 << forw_packet_aggr
->num_packets
);
405 static void bat_ogm_queue_add(struct bat_priv
*bat_priv
,
406 unsigned char *packet_buff
,
407 int packet_len
, struct hard_iface
*if_incoming
,
408 int own_packet
, unsigned long send_time
)
411 * _aggr -> pointer to the packet we want to aggregate with
412 * _pos -> pointer to the position in the queue
414 struct forw_packet
*forw_packet_aggr
= NULL
, *forw_packet_pos
= NULL
;
415 struct hlist_node
*tmp_node
;
416 struct batman_ogm_packet
*batman_ogm_packet
;
419 batman_ogm_packet
= (struct batman_ogm_packet
*)packet_buff
;
420 direct_link
= batman_ogm_packet
->flags
& DIRECTLINK
? 1 : 0;
422 /* find position for the packet in the forward queue */
423 spin_lock_bh(&bat_priv
->forw_bat_list_lock
);
424 /* own packets are not to be aggregated */
425 if ((atomic_read(&bat_priv
->aggregated_ogms
)) && (!own_packet
)) {
426 hlist_for_each_entry(forw_packet_pos
, tmp_node
,
427 &bat_priv
->forw_bat_list
, list
) {
428 if (bat_ogm_can_aggregate(batman_ogm_packet
,
429 bat_priv
, packet_len
,
430 send_time
, direct_link
,
433 forw_packet_aggr
= forw_packet_pos
;
439 /* nothing to aggregate with - either aggregation disabled or no
440 * suitable aggregation packet found */
441 if (!forw_packet_aggr
) {
442 /* the following section can run without the lock */
443 spin_unlock_bh(&bat_priv
->forw_bat_list_lock
);
446 * if we could not aggregate this packet with one of the others
447 * we hold it back for a while, so that it might be aggregated
451 (atomic_read(&bat_priv
->aggregated_ogms
)))
452 send_time
+= msecs_to_jiffies(MAX_AGGREGATION_MS
);
454 bat_ogm_aggregate_new(packet_buff
, packet_len
,
455 send_time
, direct_link
,
456 if_incoming
, own_packet
);
458 bat_ogm_aggregate(forw_packet_aggr
, packet_buff
, packet_len
,
460 spin_unlock_bh(&bat_priv
->forw_bat_list_lock
);
464 static void bat_ogm_forward(struct orig_node
*orig_node
,
465 const struct ethhdr
*ethhdr
,
466 struct batman_ogm_packet
*batman_ogm_packet
,
467 int directlink
, struct hard_iface
*if_incoming
)
469 struct bat_priv
*bat_priv
= netdev_priv(if_incoming
->soft_iface
);
470 struct neigh_node
*router
;
471 uint8_t in_tq
, in_ttl
, tq_avg
= 0;
472 uint8_t tt_num_changes
;
474 if (batman_ogm_packet
->ttl
<= 1) {
475 bat_dbg(DBG_BATMAN
, bat_priv
, "ttl exceeded\n");
479 router
= orig_node_get_router(orig_node
);
481 in_tq
= batman_ogm_packet
->tq
;
482 in_ttl
= batman_ogm_packet
->ttl
;
483 tt_num_changes
= batman_ogm_packet
->tt_num_changes
;
485 batman_ogm_packet
->ttl
--;
486 memcpy(batman_ogm_packet
->prev_sender
, ethhdr
->h_source
, ETH_ALEN
);
488 /* rebroadcast tq of our best ranking neighbor to ensure the rebroadcast
489 * of our best tq value */
490 if (router
&& router
->tq_avg
!= 0) {
492 /* rebroadcast ogm of best ranking neighbor as is */
493 if (!compare_eth(router
->addr
, ethhdr
->h_source
)) {
494 batman_ogm_packet
->tq
= router
->tq_avg
;
496 if (router
->last_ttl
)
497 batman_ogm_packet
->ttl
= router
->last_ttl
- 1;
500 tq_avg
= router
->tq_avg
;
504 neigh_node_free_ref(router
);
506 /* apply hop penalty */
507 batman_ogm_packet
->tq
= hop_penalty(batman_ogm_packet
->tq
, bat_priv
);
509 bat_dbg(DBG_BATMAN
, bat_priv
,
510 "Forwarding packet: tq_orig: %i, tq_avg: %i, "
511 "tq_forw: %i, ttl_orig: %i, ttl_forw: %i\n",
512 in_tq
, tq_avg
, batman_ogm_packet
->tq
, in_ttl
- 1,
513 batman_ogm_packet
->ttl
);
515 batman_ogm_packet
->seqno
= htonl(batman_ogm_packet
->seqno
);
516 batman_ogm_packet
->tt_crc
= htons(batman_ogm_packet
->tt_crc
);
518 /* switch of primaries first hop flag when forwarding */
519 batman_ogm_packet
->flags
&= ~PRIMARIES_FIRST_HOP
;
521 batman_ogm_packet
->flags
|= DIRECTLINK
;
523 batman_ogm_packet
->flags
&= ~DIRECTLINK
;
525 bat_ogm_queue_add(bat_priv
, (unsigned char *)batman_ogm_packet
,
526 BATMAN_OGM_LEN
+ tt_len(tt_num_changes
),
527 if_incoming
, 0, bat_ogm_fwd_send_time());
530 void bat_ogm_schedule(struct hard_iface
*hard_iface
, int tt_num_changes
)
532 struct bat_priv
*bat_priv
= netdev_priv(hard_iface
->soft_iface
);
533 struct batman_ogm_packet
*batman_ogm_packet
;
534 struct hard_iface
*primary_if
;
537 vis_server
= atomic_read(&bat_priv
->vis_mode
);
538 primary_if
= primary_if_get_selected(bat_priv
);
540 batman_ogm_packet
= (struct batman_ogm_packet
*)hard_iface
->packet_buff
;
542 /* change sequence number to network order */
543 batman_ogm_packet
->seqno
=
544 htonl((uint32_t)atomic_read(&hard_iface
->seqno
));
546 batman_ogm_packet
->ttvn
= atomic_read(&bat_priv
->ttvn
);
547 batman_ogm_packet
->tt_crc
= htons((uint16_t)
548 atomic_read(&bat_priv
->tt_crc
));
549 if (tt_num_changes
>= 0)
550 batman_ogm_packet
->tt_num_changes
= tt_num_changes
;
552 if (vis_server
== VIS_TYPE_SERVER_SYNC
)
553 batman_ogm_packet
->flags
|= VIS_SERVER
;
555 batman_ogm_packet
->flags
&= ~VIS_SERVER
;
557 if ((hard_iface
== primary_if
) &&
558 (atomic_read(&bat_priv
->gw_mode
) == GW_MODE_SERVER
))
559 batman_ogm_packet
->gw_flags
=
560 (uint8_t)atomic_read(&bat_priv
->gw_bandwidth
);
562 batman_ogm_packet
->gw_flags
= NO_FLAGS
;
564 atomic_inc(&hard_iface
->seqno
);
566 slide_own_bcast_window(hard_iface
);
567 bat_ogm_queue_add(bat_priv
, hard_iface
->packet_buff
,
568 hard_iface
->packet_len
, hard_iface
, 1,
569 bat_ogm_emit_send_time(bat_priv
));
572 hardif_free_ref(primary_if
);
575 static void bat_ogm_orig_update(struct bat_priv
*bat_priv
,
576 struct orig_node
*orig_node
,
577 const struct ethhdr
*ethhdr
,
578 const struct batman_ogm_packet
580 struct hard_iface
*if_incoming
,
581 const unsigned char *tt_buff
, int is_duplicate
)
583 struct neigh_node
*neigh_node
= NULL
, *tmp_neigh_node
= NULL
;
584 struct neigh_node
*router
= NULL
;
585 struct orig_node
*orig_node_tmp
;
586 struct hlist_node
*node
;
587 uint8_t bcast_own_sum_orig
, bcast_own_sum_neigh
;
589 bat_dbg(DBG_BATMAN
, bat_priv
, "update_originator(): "
590 "Searching and updating originator entry of received packet\n");
593 hlist_for_each_entry_rcu(tmp_neigh_node
, node
,
594 &orig_node
->neigh_list
, list
) {
595 if (compare_eth(tmp_neigh_node
->addr
, ethhdr
->h_source
) &&
596 (tmp_neigh_node
->if_incoming
== if_incoming
) &&
597 atomic_inc_not_zero(&tmp_neigh_node
->refcount
)) {
599 neigh_node_free_ref(neigh_node
);
600 neigh_node
= tmp_neigh_node
;
607 spin_lock_bh(&tmp_neigh_node
->tq_lock
);
608 ring_buffer_set(tmp_neigh_node
->tq_recv
,
609 &tmp_neigh_node
->tq_index
, 0);
610 tmp_neigh_node
->tq_avg
=
611 ring_buffer_avg(tmp_neigh_node
->tq_recv
);
612 spin_unlock_bh(&tmp_neigh_node
->tq_lock
);
616 struct orig_node
*orig_tmp
;
618 orig_tmp
= get_orig_node(bat_priv
, ethhdr
->h_source
);
622 neigh_node
= create_neighbor(orig_node
, orig_tmp
,
623 ethhdr
->h_source
, if_incoming
);
625 orig_node_free_ref(orig_tmp
);
629 bat_dbg(DBG_BATMAN
, bat_priv
,
630 "Updating existing last-hop neighbor of originator\n");
634 orig_node
->flags
= batman_ogm_packet
->flags
;
635 neigh_node
->last_valid
= jiffies
;
637 spin_lock_bh(&neigh_node
->tq_lock
);
638 ring_buffer_set(neigh_node
->tq_recv
,
639 &neigh_node
->tq_index
,
640 batman_ogm_packet
->tq
);
641 neigh_node
->tq_avg
= ring_buffer_avg(neigh_node
->tq_recv
);
642 spin_unlock_bh(&neigh_node
->tq_lock
);
645 orig_node
->last_ttl
= batman_ogm_packet
->ttl
;
646 neigh_node
->last_ttl
= batman_ogm_packet
->ttl
;
649 bonding_candidate_add(orig_node
, neigh_node
);
651 /* if this neighbor already is our next hop there is nothing
653 router
= orig_node_get_router(orig_node
);
654 if (router
== neigh_node
)
657 /* if this neighbor does not offer a better TQ we won't consider it */
658 if (router
&& (router
->tq_avg
> neigh_node
->tq_avg
))
661 /* if the TQ is the same and the link not more symmetric we
662 * won't consider it either */
663 if (router
&& (neigh_node
->tq_avg
== router
->tq_avg
)) {
664 orig_node_tmp
= router
->orig_node
;
665 spin_lock_bh(&orig_node_tmp
->ogm_cnt_lock
);
667 orig_node_tmp
->bcast_own_sum
[if_incoming
->if_num
];
668 spin_unlock_bh(&orig_node_tmp
->ogm_cnt_lock
);
670 orig_node_tmp
= neigh_node
->orig_node
;
671 spin_lock_bh(&orig_node_tmp
->ogm_cnt_lock
);
672 bcast_own_sum_neigh
=
673 orig_node_tmp
->bcast_own_sum
[if_incoming
->if_num
];
674 spin_unlock_bh(&orig_node_tmp
->ogm_cnt_lock
);
676 if (bcast_own_sum_orig
>= bcast_own_sum_neigh
)
680 update_route(bat_priv
, orig_node
, neigh_node
);
683 /* I have to check for transtable changes only if the OGM has been
684 * sent through a primary interface */
685 if (((batman_ogm_packet
->orig
!= ethhdr
->h_source
) &&
686 (batman_ogm_packet
->ttl
> 2)) ||
687 (batman_ogm_packet
->flags
& PRIMARIES_FIRST_HOP
))
688 tt_update_orig(bat_priv
, orig_node
, tt_buff
,
689 batman_ogm_packet
->tt_num_changes
,
690 batman_ogm_packet
->ttvn
,
691 batman_ogm_packet
->tt_crc
);
693 if (orig_node
->gw_flags
!= batman_ogm_packet
->gw_flags
)
694 gw_node_update(bat_priv
, orig_node
,
695 batman_ogm_packet
->gw_flags
);
697 orig_node
->gw_flags
= batman_ogm_packet
->gw_flags
;
699 /* restart gateway selection if fast or late switching was enabled */
700 if ((orig_node
->gw_flags
) &&
701 (atomic_read(&bat_priv
->gw_mode
) == GW_MODE_CLIENT
) &&
702 (atomic_read(&bat_priv
->gw_sel_class
) > 2))
703 gw_check_election(bat_priv
, orig_node
);
711 neigh_node_free_ref(neigh_node
);
713 neigh_node_free_ref(router
);
716 static int bat_ogm_calc_tq(struct orig_node
*orig_node
,
717 struct orig_node
*orig_neigh_node
,
718 struct batman_ogm_packet
*batman_ogm_packet
,
719 struct hard_iface
*if_incoming
)
721 struct bat_priv
*bat_priv
= netdev_priv(if_incoming
->soft_iface
);
722 struct neigh_node
*neigh_node
= NULL
, *tmp_neigh_node
;
723 struct hlist_node
*node
;
725 uint8_t orig_eq_count
, neigh_rq_count
, tq_own
;
726 int tq_asym_penalty
, ret
= 0;
728 /* find corresponding one hop neighbor */
730 hlist_for_each_entry_rcu(tmp_neigh_node
, node
,
731 &orig_neigh_node
->neigh_list
, list
) {
733 if (!compare_eth(tmp_neigh_node
->addr
, orig_neigh_node
->orig
))
736 if (tmp_neigh_node
->if_incoming
!= if_incoming
)
739 if (!atomic_inc_not_zero(&tmp_neigh_node
->refcount
))
742 neigh_node
= tmp_neigh_node
;
748 neigh_node
= create_neighbor(orig_neigh_node
,
750 orig_neigh_node
->orig
,
756 /* if orig_node is direct neighbor update neigh_node last_valid */
757 if (orig_node
== orig_neigh_node
)
758 neigh_node
->last_valid
= jiffies
;
760 orig_node
->last_valid
= jiffies
;
762 /* find packet count of corresponding one hop neighbor */
763 spin_lock_bh(&orig_node
->ogm_cnt_lock
);
764 orig_eq_count
= orig_neigh_node
->bcast_own_sum
[if_incoming
->if_num
];
765 neigh_rq_count
= neigh_node
->real_packet_count
;
766 spin_unlock_bh(&orig_node
->ogm_cnt_lock
);
768 /* pay attention to not get a value bigger than 100 % */
769 total_count
= (orig_eq_count
> neigh_rq_count
?
770 neigh_rq_count
: orig_eq_count
);
772 /* if we have too few packets (too less data) we set tq_own to zero */
773 /* if we receive too few packets it is not considered bidirectional */
774 if ((total_count
< TQ_LOCAL_BIDRECT_SEND_MINIMUM
) ||
775 (neigh_rq_count
< TQ_LOCAL_BIDRECT_RECV_MINIMUM
))
778 /* neigh_node->real_packet_count is never zero as we
779 * only purge old information when getting new
781 tq_own
= (TQ_MAX_VALUE
* total_count
) / neigh_rq_count
;
784 * 1 - ((1-x) ** 3), normalized to TQ_MAX_VALUE this does
785 * affect the nearly-symmetric links only a little, but
786 * punishes asymmetric links more. This will give a value
787 * between 0 and TQ_MAX_VALUE
789 tq_asym_penalty
= TQ_MAX_VALUE
- (TQ_MAX_VALUE
*
790 (TQ_LOCAL_WINDOW_SIZE
- neigh_rq_count
) *
791 (TQ_LOCAL_WINDOW_SIZE
- neigh_rq_count
) *
792 (TQ_LOCAL_WINDOW_SIZE
- neigh_rq_count
)) /
793 (TQ_LOCAL_WINDOW_SIZE
*
794 TQ_LOCAL_WINDOW_SIZE
*
795 TQ_LOCAL_WINDOW_SIZE
);
797 batman_ogm_packet
->tq
= ((batman_ogm_packet
->tq
* tq_own
799 (TQ_MAX_VALUE
* TQ_MAX_VALUE
));
801 bat_dbg(DBG_BATMAN
, bat_priv
,
803 "orig = %-15pM neigh = %-15pM => own_bcast = %2i, "
804 "real recv = %2i, local tq: %3i, asym_penalty: %3i, "
806 orig_node
->orig
, orig_neigh_node
->orig
, total_count
,
807 neigh_rq_count
, tq_own
, tq_asym_penalty
, batman_ogm_packet
->tq
);
809 /* if link has the minimum required transmission quality
810 * consider it bidirectional */
811 if (batman_ogm_packet
->tq
>= TQ_TOTAL_BIDRECT_LIMIT
)
816 neigh_node_free_ref(neigh_node
);
820 /* processes a batman packet for all interfaces, adjusts the sequence number and
821 * finds out whether it is a duplicate.
823 * 1 the packet is a duplicate
824 * 0 the packet has not yet been received
825 * -1 the packet is old and has been received while the seqno window
826 * was protected. Caller should drop it.
828 static int bat_ogm_update_seqnos(const struct ethhdr
*ethhdr
,
829 const struct batman_ogm_packet
831 const struct hard_iface
*if_incoming
)
833 struct bat_priv
*bat_priv
= netdev_priv(if_incoming
->soft_iface
);
834 struct orig_node
*orig_node
;
835 struct neigh_node
*tmp_neigh_node
;
836 struct hlist_node
*node
;
837 int is_duplicate
= 0;
840 int set_mark
, ret
= -1;
842 orig_node
= get_orig_node(bat_priv
, batman_ogm_packet
->orig
);
846 spin_lock_bh(&orig_node
->ogm_cnt_lock
);
847 seq_diff
= batman_ogm_packet
->seqno
- orig_node
->last_real_seqno
;
849 /* signalize caller that the packet is to be dropped. */
850 if (window_protected(bat_priv
, seq_diff
,
851 &orig_node
->batman_seqno_reset
))
855 hlist_for_each_entry_rcu(tmp_neigh_node
, node
,
856 &orig_node
->neigh_list
, list
) {
858 is_duplicate
|= get_bit_status(tmp_neigh_node
->real_bits
,
859 orig_node
->last_real_seqno
,
860 batman_ogm_packet
->seqno
);
862 if (compare_eth(tmp_neigh_node
->addr
, ethhdr
->h_source
) &&
863 (tmp_neigh_node
->if_incoming
== if_incoming
))
868 /* if the window moved, set the update flag. */
869 need_update
|= bit_get_packet(bat_priv
,
870 tmp_neigh_node
->real_bits
,
873 tmp_neigh_node
->real_packet_count
=
874 bit_packet_count(tmp_neigh_node
->real_bits
);
879 bat_dbg(DBG_BATMAN
, bat_priv
,
880 "updating last_seqno: old %d, new %d\n",
881 orig_node
->last_real_seqno
, batman_ogm_packet
->seqno
);
882 orig_node
->last_real_seqno
= batman_ogm_packet
->seqno
;
888 spin_unlock_bh(&orig_node
->ogm_cnt_lock
);
889 orig_node_free_ref(orig_node
);
893 static void bat_ogm_process(const struct ethhdr
*ethhdr
,
894 struct batman_ogm_packet
*batman_ogm_packet
,
895 const unsigned char *tt_buff
,
896 struct hard_iface
*if_incoming
)
898 struct bat_priv
*bat_priv
= netdev_priv(if_incoming
->soft_iface
);
899 struct hard_iface
*hard_iface
;
900 struct orig_node
*orig_neigh_node
, *orig_node
;
901 struct neigh_node
*router
= NULL
, *router_router
= NULL
;
902 struct neigh_node
*orig_neigh_router
= NULL
;
903 int has_directlink_flag
;
904 int is_my_addr
= 0, is_my_orig
= 0, is_my_oldorig
= 0;
905 int is_broadcast
= 0, is_bidirectional
, is_single_hop_neigh
;
907 uint32_t if_incoming_seqno
;
909 /* Silently drop when the batman packet is actually not a
912 * This might happen if a packet is padded (e.g. Ethernet has a
913 * minimum frame length of 64 byte) and the aggregation interprets
914 * it as an additional length.
916 * TODO: A more sane solution would be to have a bit in the
917 * batman_ogm_packet to detect whether the packet is the last
918 * packet in an aggregation. Here we expect that the padding
919 * is always zero (or not 0x01)
921 if (batman_ogm_packet
->packet_type
!= BAT_OGM
)
924 /* could be changed by schedule_own_packet() */
925 if_incoming_seqno
= atomic_read(&if_incoming
->seqno
);
927 has_directlink_flag
= (batman_ogm_packet
->flags
& DIRECTLINK
? 1 : 0);
929 is_single_hop_neigh
= (compare_eth(ethhdr
->h_source
,
930 batman_ogm_packet
->orig
) ? 1 : 0);
932 bat_dbg(DBG_BATMAN
, bat_priv
,
933 "Received BATMAN packet via NB: %pM, IF: %s [%pM] "
934 "(from OG: %pM, via prev OG: %pM, seqno %d, ttvn %u, "
935 "crc %u, changes %u, td %d, TTL %d, V %d, IDF %d)\n",
936 ethhdr
->h_source
, if_incoming
->net_dev
->name
,
937 if_incoming
->net_dev
->dev_addr
, batman_ogm_packet
->orig
,
938 batman_ogm_packet
->prev_sender
, batman_ogm_packet
->seqno
,
939 batman_ogm_packet
->ttvn
, batman_ogm_packet
->tt_crc
,
940 batman_ogm_packet
->tt_num_changes
, batman_ogm_packet
->tq
,
941 batman_ogm_packet
->ttl
, batman_ogm_packet
->version
,
942 has_directlink_flag
);
945 list_for_each_entry_rcu(hard_iface
, &hardif_list
, list
) {
946 if (hard_iface
->if_status
!= IF_ACTIVE
)
949 if (hard_iface
->soft_iface
!= if_incoming
->soft_iface
)
952 if (compare_eth(ethhdr
->h_source
,
953 hard_iface
->net_dev
->dev_addr
))
956 if (compare_eth(batman_ogm_packet
->orig
,
957 hard_iface
->net_dev
->dev_addr
))
960 if (compare_eth(batman_ogm_packet
->prev_sender
,
961 hard_iface
->net_dev
->dev_addr
))
964 if (is_broadcast_ether_addr(ethhdr
->h_source
))
969 if (batman_ogm_packet
->version
!= COMPAT_VERSION
) {
970 bat_dbg(DBG_BATMAN
, bat_priv
,
971 "Drop packet: incompatible batman version (%i)\n",
972 batman_ogm_packet
->version
);
977 bat_dbg(DBG_BATMAN
, bat_priv
,
978 "Drop packet: received my own broadcast (sender: %pM"
985 bat_dbg(DBG_BATMAN
, bat_priv
, "Drop packet: "
986 "ignoring all packets with broadcast source addr (sender: %pM"
987 ")\n", ethhdr
->h_source
);
995 orig_neigh_node
= get_orig_node(bat_priv
, ethhdr
->h_source
);
996 if (!orig_neigh_node
)
999 /* neighbor has to indicate direct link and it has to
1000 * come via the corresponding interface */
1001 /* save packet seqno for bidirectional check */
1002 if (has_directlink_flag
&&
1003 compare_eth(if_incoming
->net_dev
->dev_addr
,
1004 batman_ogm_packet
->orig
)) {
1005 offset
= if_incoming
->if_num
* NUM_WORDS
;
1007 spin_lock_bh(&orig_neigh_node
->ogm_cnt_lock
);
1008 word
= &(orig_neigh_node
->bcast_own
[offset
]);
1011 batman_ogm_packet
->seqno
- 2);
1012 orig_neigh_node
->bcast_own_sum
[if_incoming
->if_num
] =
1013 bit_packet_count(word
);
1014 spin_unlock_bh(&orig_neigh_node
->ogm_cnt_lock
);
1017 bat_dbg(DBG_BATMAN
, bat_priv
, "Drop packet: "
1018 "originator packet from myself (via neighbor)\n");
1019 orig_node_free_ref(orig_neigh_node
);
1023 if (is_my_oldorig
) {
1024 bat_dbg(DBG_BATMAN
, bat_priv
,
1025 "Drop packet: ignoring all rebroadcast echos (sender: "
1026 "%pM)\n", ethhdr
->h_source
);
1030 orig_node
= get_orig_node(bat_priv
, batman_ogm_packet
->orig
);
1034 is_duplicate
= bat_ogm_update_seqnos(ethhdr
, batman_ogm_packet
,
1037 if (is_duplicate
== -1) {
1038 bat_dbg(DBG_BATMAN
, bat_priv
,
1039 "Drop packet: packet within seqno protection time "
1040 "(sender: %pM)\n", ethhdr
->h_source
);
1044 if (batman_ogm_packet
->tq
== 0) {
1045 bat_dbg(DBG_BATMAN
, bat_priv
,
1046 "Drop packet: originator packet with tq equal 0\n");
1050 router
= orig_node_get_router(orig_node
);
1052 router_router
= orig_node_get_router(router
->orig_node
);
1054 /* avoid temporary routing loops */
1055 if (router
&& router_router
&&
1056 (compare_eth(router
->addr
, batman_ogm_packet
->prev_sender
)) &&
1057 !(compare_eth(batman_ogm_packet
->orig
,
1058 batman_ogm_packet
->prev_sender
)) &&
1059 (compare_eth(router
->addr
, router_router
->addr
))) {
1060 bat_dbg(DBG_BATMAN
, bat_priv
,
1061 "Drop packet: ignoring all rebroadcast packets that "
1062 "may make me loop (sender: %pM)\n", ethhdr
->h_source
);
1066 /* if sender is a direct neighbor the sender mac equals
1068 orig_neigh_node
= (is_single_hop_neigh
?
1070 get_orig_node(bat_priv
, ethhdr
->h_source
));
1071 if (!orig_neigh_node
)
1074 orig_neigh_router
= orig_node_get_router(orig_neigh_node
);
1076 /* drop packet if sender is not a direct neighbor and if we
1077 * don't route towards it */
1078 if (!is_single_hop_neigh
&& (!orig_neigh_router
)) {
1079 bat_dbg(DBG_BATMAN
, bat_priv
,
1080 "Drop packet: OGM via unknown neighbor!\n");
1084 is_bidirectional
= bat_ogm_calc_tq(orig_node
, orig_neigh_node
,
1085 batman_ogm_packet
, if_incoming
);
1087 bonding_save_primary(orig_node
, orig_neigh_node
, batman_ogm_packet
);
1089 /* update ranking if it is not a duplicate or has the same
1090 * seqno and similar ttl as the non-duplicate */
1091 if (is_bidirectional
&&
1093 ((orig_node
->last_real_seqno
== batman_ogm_packet
->seqno
) &&
1094 (orig_node
->last_ttl
- 3 <= batman_ogm_packet
->ttl
))))
1095 bat_ogm_orig_update(bat_priv
, orig_node
, ethhdr
,
1096 batman_ogm_packet
, if_incoming
,
1097 tt_buff
, is_duplicate
);
1099 /* is single hop (direct) neighbor */
1100 if (is_single_hop_neigh
) {
1102 /* mark direct link on incoming interface */
1103 bat_ogm_forward(orig_node
, ethhdr
, batman_ogm_packet
,
1106 bat_dbg(DBG_BATMAN
, bat_priv
, "Forwarding packet: "
1107 "rebroadcast neighbor packet with direct link flag\n");
1111 /* multihop originator */
1112 if (!is_bidirectional
) {
1113 bat_dbg(DBG_BATMAN
, bat_priv
,
1114 "Drop packet: not received via bidirectional link\n");
1119 bat_dbg(DBG_BATMAN
, bat_priv
,
1120 "Drop packet: duplicate packet received\n");
1124 bat_dbg(DBG_BATMAN
, bat_priv
,
1125 "Forwarding packet: rebroadcast originator packet\n");
1126 bat_ogm_forward(orig_node
, ethhdr
, batman_ogm_packet
, 0, if_incoming
);
1129 if ((orig_neigh_node
) && (!is_single_hop_neigh
))
1130 orig_node_free_ref(orig_neigh_node
);
1133 neigh_node_free_ref(router
);
1135 neigh_node_free_ref(router_router
);
1136 if (orig_neigh_router
)
1137 neigh_node_free_ref(orig_neigh_router
);
1139 orig_node_free_ref(orig_node
);
1142 void bat_ogm_receive(const struct ethhdr
*ethhdr
, unsigned char *packet_buff
,
1143 int packet_len
, struct hard_iface
*if_incoming
)
1145 struct batman_ogm_packet
*batman_ogm_packet
;
1147 unsigned char *tt_buff
;
1149 batman_ogm_packet
= (struct batman_ogm_packet
*)packet_buff
;
1151 /* unpack the aggregated packets and process them one by one */
1153 /* network to host order for our 32bit seqno and the
1155 batman_ogm_packet
->seqno
= ntohl(batman_ogm_packet
->seqno
);
1156 batman_ogm_packet
->tt_crc
= ntohs(batman_ogm_packet
->tt_crc
);
1158 tt_buff
= packet_buff
+ buff_pos
+ BATMAN_OGM_LEN
;
1160 bat_ogm_process(ethhdr
, batman_ogm_packet
,
1161 tt_buff
, if_incoming
);
1163 buff_pos
+= BATMAN_OGM_LEN
+
1164 tt_len(batman_ogm_packet
->tt_num_changes
);
1166 batman_ogm_packet
= (struct batman_ogm_packet
*)
1167 (packet_buff
+ buff_pos
);
1168 } while (bat_ogm_aggr_packet(buff_pos
, packet_len
,
1169 batman_ogm_packet
->tt_num_changes
));